summaryrefslogtreecommitdiffstats
path: root/include/linux/workqueue.h
diff options
context:
space:
mode:
authorTejun Heo2013-03-12 19:30:04 +0100
committerTejun Heo2013-03-12 19:30:04 +0100
commit618b01eb426dd2d73a4b5e5ebc6379e4eee3b123 (patch)
tree9068381e7a25dde3d4d72fd8b9fe8a814bc85efe /include/linux/workqueue.h
parentworkqueue: implement apply_workqueue_attrs() (diff)
downloadkernel-qcow2-linux-618b01eb426dd2d73a4b5e5ebc6379e4eee3b123.tar.gz
kernel-qcow2-linux-618b01eb426dd2d73a4b5e5ebc6379e4eee3b123.tar.xz
kernel-qcow2-linux-618b01eb426dd2d73a4b5e5ebc6379e4eee3b123.zip
workqueue: make it clear that WQ_DRAINING is an internal flag
We're gonna add another internal WQ flag. Let's make the distinction clear. Prefix WQ_DRAINING with __ and move it to bit 16. Signed-off-by: Tejun Heo <tj@kernel.org> Reviewed-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Diffstat (limited to 'include/linux/workqueue.h')
-rw-r--r--include/linux/workqueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index e152394fa7eb..1751ec4c47c9 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -294,7 +294,7 @@ enum {
WQ_HIGHPRI = 1 << 4, /* high priority */
WQ_CPU_INTENSIVE = 1 << 5, /* cpu instensive workqueue */
- WQ_DRAINING = 1 << 6, /* internal: workqueue is draining */
+ __WQ_DRAINING = 1 << 16, /* internal: workqueue is draining */
WQ_MAX_ACTIVE = 512, /* I like 512, better ideas? */
WQ_MAX_UNBOUND_PER_CPU = 4, /* 4 * #cpus for unbound wq */