Loading kernel/workqueue.c +7 −0 Original line number Diff line number Diff line Loading @@ -49,6 +49,7 @@ #include <linux/moduleparam.h> #include <linux/uaccess.h> #include <linux/bug.h> #include <linux/delay.h> #include "workqueue_internal.h" Loading Loading @@ -1285,6 +1286,12 @@ fail: if (work_is_canceling(work)) return -ENOENT; cpu_relax(); /* * The queueing is in progress in another context. If we keep * taking the pool->lock in a busy loop, the other context may * never get the lock. Give 1 usec delay to avoid this contention. */ udelay(1); return -EAGAIN; } Loading Loading
kernel/workqueue.c +7 −0 Original line number Diff line number Diff line Loading @@ -49,6 +49,7 @@ #include <linux/moduleparam.h> #include <linux/uaccess.h> #include <linux/bug.h> #include <linux/delay.h> #include "workqueue_internal.h" Loading Loading @@ -1285,6 +1286,12 @@ fail: if (work_is_canceling(work)) return -ENOENT; cpu_relax(); /* * The queueing is in progress in another context. If we keep * taking the pool->lock in a busy loop, the other context may * never get the lock. Give 1 usec delay to avoid this contention. */ udelay(1); return -EAGAIN; } Loading