diff options
Diffstat (limited to 'arch/parisc/kernel/unaligned.c')
-rw-r--r-- | arch/parisc/kernel/unaligned.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/kernel/unaligned.c b/arch/parisc/kernel/unaligned.c index 932bfc0b7cd8..3ccc3a69469c 100644 --- a/arch/parisc/kernel/unaligned.c +++ b/arch/parisc/kernel/unaligned.c | |||
@@ -690,14 +690,14 @@ void handle_unaligned(struct pt_regs *regs) | |||
690 | if (ret == ERR_PAGEFAULT) | 690 | if (ret == ERR_PAGEFAULT) |
691 | { | 691 | { |
692 | force_sig_fault(SIGSEGV, SEGV_MAPERR, | 692 | force_sig_fault(SIGSEGV, SEGV_MAPERR, |
693 | (void __user *)regs->ior, current); | 693 | (void __user *)regs->ior); |
694 | } | 694 | } |
695 | else | 695 | else |
696 | { | 696 | { |
697 | force_sigbus: | 697 | force_sigbus: |
698 | /* couldn't handle it ... */ | 698 | /* couldn't handle it ... */ |
699 | force_sig_fault(SIGBUS, BUS_ADRALN, | 699 | force_sig_fault(SIGBUS, BUS_ADRALN, |
700 | (void __user *)regs->ior, current); | 700 | (void __user *)regs->ior); |
701 | } | 701 | } |
702 | 702 | ||
703 | return; | 703 | return; |