David Teigland wrote: > Call schedule() in a bunch of places where the recovery code loops > through lists of locks. The theory is that these lists become so > long that looping through them triggers the softlockup watchdog. > (usually on ia64, doesn't seem to happen often on other arch's). > > Signed-off-by: David Teigland <[EMAIL PROTECTED]>
I think we're encouraged to use cond_resched() instead these days. It has the same effect but doesn't force a schedule if there is nothing else to run. -- Patrick