aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2011-01-25 08:35:54 -0500
committerTejun Heo <tj@kernel.org>2011-01-25 08:35:54 -0500
commitada609ee2ac2e03bd8abb07f9b3e92cd2e650f19 (patch)
treeccc1051a961b12448420428b5a400a6333d3e821 /fs
parentc723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 (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 'fs')
-rw-r--r--fs/nfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index d8512423ba72..0855acdfe706 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -1505,7 +1505,7 @@ static int nfsiod_start(void)
1505{ 1505{
1506 struct workqueue_struct *wq; 1506 struct workqueue_struct *wq;
1507 dprintk("RPC: creating workqueue nfsiod\n"); 1507 dprintk("RPC: creating workqueue nfsiod\n");
1508 wq = alloc_workqueue("nfsiod", WQ_RESCUER, 0); 1508 wq = alloc_workqueue("nfsiod", WQ_MEM_RECLAIM, 0);
1509 if (wq == NULL) 1509 if (wq == NULL)
1510 return -ENOMEM; 1510 return -ENOMEM;
1511 nfsiod_workqueue = wq; 1511 nfsiod_workqueue = wq;