diff options
author | Jan Beulich <jbeulich@novell.com> | 2006-01-11 21:42:11 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-12 03:01:10 (GMT) |
commit | 5c617cfa6422bfba9e79d8d004303a6cc3d2e7d7 (patch) | |
tree | c60f411ef40c648b06fff8e8fca286fcaa868f48 | |
parent | 0a5215882166dd33a95b313637dd318e4c143113 (diff) | |
download | linux-fsl-qoriq-5c617cfa6422bfba9e79d8d004303a6cc3d2e7d7.tar.xz |
[PATCH] x86_64: Removing unused function die_if_kernel().
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/x86_64/kernel/traps.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/x86_64/kernel/traps.c b/arch/x86_64/kernel/traps.c index 7ecc72a..0fd17e0 100644 --- a/arch/x86_64/kernel/traps.c +++ b/arch/x86_64/kernel/traps.c @@ -399,11 +399,6 @@ void die(const char * str, struct pt_regs * regs, long err) oops_end(flags); do_exit(SIGSEGV); } -static inline void die_if_kernel(const char * str, struct pt_regs * regs, long err) -{ - if (!(regs->eflags & VM_MASK) && (regs->cs == __KERNEL_CS)) - die(str, regs, err); -} void die_nmi(char *str, struct pt_regs *regs) { |