diff options
| author | Matthew Wilcox <matthew@wil.cx> | 2004-11-01 01:03:49 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-11-01 01:03:49 -0800 |
| commit | f2ddba8c1911c3f440cb3e989a364d5d16c119dd (patch) | |
| tree | 652e4aede856f3bc2256dd1f5339263c00f84e0c /arch/parisc/kernel/unaligned.c | |
| parent | 1c48fbec1fa7c60d5e4f56ca5786d42e2c0298b9 (diff) | |
[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 <carlos@parisc-linux.org>
Diffstat (limited to 'arch/parisc/kernel/unaligned.c')
| -rw-r--r-- | arch/parisc/kernel/unaligned.c | 11 |
1 files changed, 0 insertions, 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) { |
