CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2017/03/03 13:49:47
Modified files:
sys/arch/amd64/amd64: db_interface.c trap.c
sys/arch/i386/i386: db_interface.c trap.c
Log message:
Whan an amd64 machine got an NMI, the current process in user land
was killed with SIGBUS. Better drop to ddb regardless wether a
user process is currently scheduled or not. NMI signals hardware
failure or a debug button. The code in i386 trap() has always been
that way. The switch in db_ktrap() must also not depend on the
fact wether kernel or user land is running.
OK deraadt@