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/fault.c | |
parent | 4a1485131a6038ba5382f407db48badc332672c4 (diff) | |
download | op-kernel-dev-93809be8b140c101d27f00d0a622ebac90bc7a67.zip op-kernel-dev-93809be8b140c101d27f00d0a622ebac90bc7a67.tar.gz |
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/fault.c')
-rw-r--r-- | arch/x86/mm/fault.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c index e28cc52..e4440d0 100644 --- a/arch/x86/mm/fault.c +++ b/arch/x86/mm/fault.c @@ -382,7 +382,7 @@ static void show_fault_oops(struct pt_regs *regs, unsigned long error_code, #ifdef CONFIG_X86_PAE if (error_code & PF_INSTR) { - int level; + unsigned int level; pte_t *pte = lookup_address(address, &level); if (pte && pte_present(*pte) && !pte_exec(*pte)) |