diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-01-30 07:33:13 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:13 -0500 |
commit | 6f4d368ef9e9f91aa0019c11e90773ea32d94625 (patch) | |
tree | 9d3ff39d63f50ae779f9964f06efff4eb97cb3da /arch/x86/mm/fault_64.c | |
parent | 608566b4edda5079c7812c2108a89c0fcf2894bb (diff) |
x86: last of trivial fault_32|64.c unification
Comments, indentation, printk format.
Uses task_pid_nr() on X86_64 now, but this is always defined
to task->pid.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/mm/fault_64.c')
-rw-r--r-- | arch/x86/mm/fault_64.c | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/arch/x86/mm/fault_64.c b/arch/x86/mm/fault_64.c index c6b3ad515cf1..c48d95c306df 100644 --- a/arch/x86/mm/fault_64.c +++ b/arch/x86/mm/fault_64.c | |||
@@ -440,8 +440,11 @@ asmlinkage void __kprobes do_page_fault(struct pt_regs *regs, | |||
440 | if (!(vma->vm_flags & VM_GROWSDOWN)) | 440 | if (!(vma->vm_flags & VM_GROWSDOWN)) |
441 | goto bad_area; | 441 | goto bad_area; |
442 | if (error_code & PF_USER) { | 442 | if (error_code & PF_USER) { |
443 | /* Allow userspace just enough access below the stack pointer | 443 | /* |
444 | * to let the 'enter' instruction work. | 444 | * Accessing the stack below %sp is always a bug. |
445 | * The large cushion allows instructions like enter | ||
446 | * and pusha to work. ("enter $65535,$31" pushes | ||
447 | * 32 pointers and then decrements %sp by 65535.) | ||
445 | */ | 448 | */ |
446 | if (address + 65536 + 32 * sizeof(unsigned long) < regs->sp) | 449 | if (address + 65536 + 32 * sizeof(unsigned long) < regs->sp) |
447 | goto bad_area; | 450 | goto bad_area; |
@@ -522,10 +525,14 @@ bad_area_nosemaphore: | |||
522 | if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) && | 525 | if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) && |
523 | printk_ratelimit()) { | 526 | printk_ratelimit()) { |
524 | printk( | 527 | printk( |
525 | "%s%s[%d]: segfault at %lx ip %lx sp %lx error %lx\n", | 528 | #ifdef CONFIG_X86_32 |
526 | tsk->pid > 1 ? KERN_INFO : KERN_EMERG, | 529 | "%s%s[%d]: segfault at %08lx ip %08lx sp %08lx error %lx\n", |
527 | tsk->comm, tsk->pid, address, regs->ip, | 530 | #else |
528 | regs->sp, error_code); | 531 | "%s%s[%d]: segfault at %lx ip %lx sp %lx error %lx\n", |
532 | #endif | ||
533 | task_pid_nr(tsk) > 1 ? KERN_INFO : KERN_EMERG, | ||
534 | tsk->comm, task_pid_nr(tsk), address, regs->ip, | ||
535 | regs->sp, error_code); | ||
529 | } | 536 | } |
530 | 537 | ||
531 | tsk->thread.cr2 = address; | 538 | tsk->thread.cr2 = address; |
@@ -609,10 +616,12 @@ LIST_HEAD(pgd_list); | |||
609 | 616 | ||
610 | void vmalloc_sync_all(void) | 617 | void vmalloc_sync_all(void) |
611 | { | 618 | { |
612 | /* Note that races in the updates of insync and start aren't | 619 | /* |
613 | problematic: | 620 | * Note that races in the updates of insync and start aren't |
614 | insync can only get set bits added, and updates to start are only | 621 | * problematic: insync can only get set bits added, and updates to |
615 | improving performance (without affecting correctness if undone). */ | 622 | * start are only improving performance (without affecting correctness |
623 | * if undone). | ||
624 | */ | ||
616 | static DECLARE_BITMAP(insync, PTRS_PER_PGD); | 625 | static DECLARE_BITMAP(insync, PTRS_PER_PGD); |
617 | static unsigned long start = VMALLOC_START & PGDIR_MASK; | 626 | static unsigned long start = VMALLOC_START & PGDIR_MASK; |
618 | unsigned long address; | 627 | unsigned long address; |