diff options
author | Tejun Heo <tj@kernel.org> | 2011-01-25 08:35:54 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2011-01-25 08:35:54 -0500 |
commit | ada609ee2ac2e03bd8abb07f9b3e92cd2e650f19 (patch) | |
tree | ccc1051a961b12448420428b5a400a6333d3e821 /drivers/md/md.c | |
parent | c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 (diff) |
workqueue: use WQ_MEM_RECLAIM instead of WQ_RESCUER
WQ_RESCUER is now an internal flag and should only be used in the
workqueue implementation proper. Use WQ_MEM_RECLAIM instead.
This doesn't introduce any functional difference.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: dm-devel@redhat.com
Cc: Neil Brown <neilb@suse.de>
Diffstat (limited to 'drivers/md/md.c')
-rw-r--r-- | drivers/md/md.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index b76cfc89e1b5..6352e84fd512 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
@@ -7321,7 +7321,7 @@ static int __init md_init(void) | |||
7321 | { | 7321 | { |
7322 | int ret = -ENOMEM; | 7322 | int ret = -ENOMEM; |
7323 | 7323 | ||
7324 | md_wq = alloc_workqueue("md", WQ_RESCUER, 0); | 7324 | md_wq = alloc_workqueue("md", WQ_MEM_RECLAIM, 0); |
7325 | if (!md_wq) | 7325 | if (!md_wq) |
7326 | goto err_wq; | 7326 | goto err_wq; |
7327 | 7327 | ||