diff options
-rw-r--r-- | sys/i386/i386/trap.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/i386/i386/trap.c b/sys/i386/i386/trap.c index 54ad150..3306e7c 100644 --- a/sys/i386/i386/trap.c +++ b/sys/i386/i386/trap.c @@ -454,13 +454,11 @@ trap(struct trapframe *frame) #ifndef TIMER_FREQ # define TIMER_FREQ 1193182 #endif - mtx_lock(&Giant); if (time_second - lastalert > 10) { log(LOG_WARNING, "NMI: power fail\n"); sysbeep(880, hz); lastalert = time_second; } - mtx_unlock(&Giant); goto userout; #else /* !POWERFAIL_NMI */ /* machine/parity/power fail/"kitchen sink" faults */ @@ -688,13 +686,11 @@ trap(struct trapframe *frame) #ifdef DEV_ISA case T_NMI: #ifdef POWERFAIL_NMI - mtx_lock(&Giant); if (time_second - lastalert > 10) { log(LOG_WARNING, "NMI: power fail\n"); sysbeep(880, hz); lastalert = time_second; } - mtx_unlock(&Giant); goto out; #else /* !POWERFAIL_NMI */ /* XXX Giant */ |