ocfs2: use cond_resched() in dlm_thread()
yield() does not yield. cond_resched() does. Signed-off-by: Kurt Hackel <kurt.hackel@oracle.com> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
This commit is contained in:
parent
ad8100e0d2
commit
f85cd47a58
|
@ -731,7 +731,7 @@ in_progress:
|
||||||
|
|
||||||
/* yield and continue right away if there is more work to do */
|
/* yield and continue right away if there is more work to do */
|
||||||
if (!n) {
|
if (!n) {
|
||||||
yield();
|
cond_resched();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue