aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/traps.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c
index bb6f04167361..c76aaca5694d 100644
--- a/arch/x86/kernel/traps.c
+++ b/arch/x86/kernel/traps.c
@@ -351,9 +351,11 @@ io_check_error(unsigned char reason, struct pt_regs *regs)
351 reason = (reason & 0xf) | 8; 351 reason = (reason & 0xf) | 8;
352 outb(reason, 0x61); 352 outb(reason, 0x61);
353 353
354 i = 2000; 354 i = 20000;
355 while (--i) 355 while (--i) {
356 udelay(1000); 356 touch_nmi_watchdog();
357 udelay(100);
358 }
357 359
358 reason &= ~8; 360 reason &= ~8;
359 outb(reason, 0x61); 361 outb(reason, 0x61);