From f2ddba8c1911c3f440cb3e989a364d5d16c119dd Mon Sep 17 00:00:00 2001 From: Matthew Wilcox Date: Mon, 1 Nov 2004 01:03:49 -0800 Subject: [PATCH] parisc: Remove isr verification Remove isr verification printf. This is not needed, and was never needed, we always have access to the page if we made it past the security check in traps.c Committed-by: Carlos O'Donell --- arch/parisc/kernel/unaligned.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/arch/parisc/kernel/unaligned.c b/arch/parisc/kernel/unaligned.c index 530235c0b17e..4ed01b08664a 100644 --- a/arch/parisc/kernel/unaligned.c +++ b/arch/parisc/kernel/unaligned.c @@ -492,7 +492,6 @@ void handle_unaligned(struct pt_regs *regs) show_regs(regs); #endif } - if (!unaligned_enabled) goto force_sigbus; } @@ -557,16 +556,6 @@ void handle_unaligned(struct pt_regs *regs) break; } - if (regs->isr != regs->sr[7]) - { - printk(KERN_CRIT "isr verification failed (isr: " RFMT ", sr7: " RFMT "\n", - regs->isr, regs->sr[7]); - - /* don't kill him though, since he has appropriate access to the page, or we - * would never have gotten here. - */ - } - /* TODO: make this cleaner... */ switch (regs->iir & OPCODE1_MASK) { -- cgit v1.2.3