]> git.baikalelectronics.ru Git - kernel.git/commit
x86: don't send SIGBUS for kernel page faults
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 13 Aug 2010 16:49:20 +0000 (09:49 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 13 Aug 2010 16:49:20 +0000 (09:49 -0700)
commitaae83b0e8f65a97c7df251c14066cbb2072fc73b
tree13e249da75a0667e2c9d195e9c125fb14d721e71
parenta8028b681575e750c7eb3acbabb97bfa09f4c1d3
x86: don't send SIGBUS for kernel page faults

It's wrong for several reasons, but the most direct one is that the
fault may be for the stack accesses to set up a previous SIGBUS.  When
we have a kernel exception, the kernel exception handler does all the
fixups, not some user-level signal handler.

Even apart from the nested SIGBUS issue, it's also wrong to give out
kernel fault addresses in the signal handler info block, or to send a
SIGBUS when a system call already returns EFAULT.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/x86/mm/fault.c