]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
[PATCH] IPMI: add poll delay
authorCorey Minyard <minyard@acm.org>
Thu, 7 Dec 2006 04:41:06 +0000 (20:41 -0800)
committerLinus Torvalds <torvalds@woody.osdl.org>
Thu, 7 Dec 2006 16:39:47 +0000 (08:39 -0800)
Make sure to delay a little in the IPMI poll routine so we can pass in a
timeout time and thus time things out.

Signed-off-by: Corey Minyard <minyard@acm.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/char/ipmi/ipmi_si_intf.c

index c02f5177a8168a398e0a81faef7e10cd726c90f8..bedd76310045aadafbdcdbdb6fed848834a684e5 100644 (file)
@@ -807,7 +807,12 @@ static void poll(void *send_info)
 {
        struct smi_info *smi_info = send_info;
 
-       smi_event_handler(smi_info, 0);
+       /*
+        * Make sure there is some delay in the poll loop so we can
+        * drive time forward and timeout things.
+        */
+       udelay(10);
+       smi_event_handler(smi_info, 10);
 }
 
 static void request_events(void *send_info)