You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] IPMI: use schedule in kthread
Corey Minyard <minyard@acm.org> The kthread used to speed up polling for IPMI was using udelay in its busy-wait polling loop when the lower-level state machine told it to do a short delay. This just used CPU and didn't help scheduling, thus causing bad problems with other tasks. Call schedule() instead. Signed-off-by: Corey Minyard <minyard@acm.org> Acked-by: Matt Domsch <Matt_Domsch@dell.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
c32e066057
commit
33979734cd
@@ -809,7 +809,7 @@ static int ipmi_thread(void *data)
|
||||
/* do nothing */
|
||||
}
|
||||
else if (smi_result == SI_SM_CALL_WITH_DELAY)
|
||||
udelay(1);
|
||||
schedule();
|
||||
else
|
||||
schedule_timeout_interruptible(1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user