diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-01 17:49:43 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-02-01 17:49:43 +0100 |
commit | 93809be8b140c101d27f00d0a622ebac90bc7a67 (patch) | |
tree | 2b5effc7e8d77e6f26a271838968cf793207767b /arch/x86/mm/pageattr-test.c | |
parent | x86: fix sparse warnings in cpu/common.c (diff) | |
download | linux-93809be8b140c101d27f00d0a622ebac90bc7a67.tar.xz linux-93809be8b140c101d27f00d0a622ebac90bc7a67.zip |
x86: fixes for lookup_address args
Signedness mismatches in level argument.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/pageattr-test.c')
-rw-r--r-- | arch/x86/mm/pageattr-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/pageattr-test.c b/arch/x86/mm/pageattr-test.c index 06353d43f72e..7573e786d2f2 100644 --- a/arch/x86/mm/pageattr-test.c +++ b/arch/x86/mm/pageattr-test.c @@ -42,7 +42,7 @@ static __init int print_split(struct split_state *s) s->max_exec = 0; for (i = 0; i < max_pfn_mapped; ) { unsigned long addr = (unsigned long)__va(i << PAGE_SHIFT); - int level; + unsigned int level; pte_t *pte; pte = lookup_address(addr, &level); @@ -106,7 +106,7 @@ static __init int exercise_pageattr(void) unsigned long *bm; pte_t *pte, pte0; int failed = 0; - int level; + unsigned int level; int i, k; int err; |