aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64/mm/fault.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2006-01-11 16:42:23 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-11 22:01:11 -0500
commit8b1bde93175182d7c11d9a1230b2210a5815e747 (patch)
tree1394674c50a08138e8c47d943335124ae88d3397 /arch/x86_64/mm/fault.c
parent505cc4e1d6885acaee008950ac9c6e838f2209f8 (diff)
[PATCH] x86_64: Adjust page fault handling
Adjust page fault protection error check before considering it to be a vmalloc synchronization candidate. Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/mm/fault.c')
-rw-r--r--arch/x86_64/mm/fault.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/x86_64/mm/fault.c b/arch/x86_64/mm/fault.c
index 21d1596946d6..fd07b86c062d 100644
--- a/arch/x86_64/mm/fault.c
+++ b/arch/x86_64/mm/fault.c
@@ -299,7 +299,8 @@ int exception_trace = 1;
299 * bit 0 == 0 means no page found, 1 means protection fault 299 * bit 0 == 0 means no page found, 1 means protection fault
300 * bit 1 == 0 means read, 1 means write 300 * bit 1 == 0 means read, 1 means write
301 * bit 2 == 0 means kernel, 1 means user-mode 301 * bit 2 == 0 means kernel, 1 means user-mode
302 * bit 3 == 1 means fault was an instruction fetch 302 * bit 3 == 1 means use of reserved bit detected
303 * bit 4 == 1 means fault was an instruction fetch
303 */ 304 */
304asmlinkage void __kprobes do_page_fault(struct pt_regs *regs, 305asmlinkage void __kprobes do_page_fault(struct pt_regs *regs,
305 unsigned long error_code) 306 unsigned long error_code)
@@ -342,10 +343,10 @@ asmlinkage void __kprobes do_page_fault(struct pt_regs *regs,
342 * 343 *
343 * This verifies that the fault happens in kernel space 344 * This verifies that the fault happens in kernel space
344 * (error_code & 4) == 0, and that the fault was not a 345 * (error_code & 4) == 0, and that the fault was not a
345 * protection error (error_code & 1) == 0. 346 * protection error (error_code & 9) == 0.
346 */ 347 */
347 if (unlikely(address >= TASK_SIZE64)) { 348 if (unlikely(address >= TASK_SIZE64)) {
348 if (!(error_code & 5) && 349 if (!(error_code & 0xd) &&
349 ((address >= VMALLOC_START && address < VMALLOC_END) || 350 ((address >= VMALLOC_START && address < VMALLOC_END) ||
350 (address >= MODULES_VADDR && address < MODULES_END))) { 351 (address >= MODULES_VADDR && address < MODULES_END))) {
351 if (vmalloc_fault(address) < 0) 352 if (vmalloc_fault(address) < 0)