summaryrefslogtreecommitdiff
path: root/net/ceph
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2013-07-30 12:40:27 (GMT)
committerSage Weil <sage@inktank.com>2013-08-10 00:55:29 (GMT)
commit4d1829a59de402fc95daf4576c51aa0a7439aee8 (patch)
treec10944a1a672e63d323753f9ad7d7a23884dd87e /net/ceph
parent2fbcbff1d6b9243ef71c64a8ab993bc3c7bb7af1 (diff)
downloadlinux-fsl-qoriq-4d1829a59de402fc95daf4576c51aa0a7439aee8.tar.xz
ceph: WQ_NON_REENTRANT is meaningless and going away
dbf2576e37 ("workqueue: make all workqueues non-reentrant") made WQ_NON_REENTRANT no-op and the flag is going away. Remove its usages. This patch doesn't introduce any behavior changes. Signed-off-by: Tejun Heo <tj@kernel.org> Reviewed-by: Sage Weil <sage@inktank.com> Cc: ceph-devel@vger.kernel.org
Diffstat (limited to 'net/ceph')
-rw-r--r--net/ceph/messenger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c
index eb0a46a..dd9b585 100644
--- a/net/ceph/messenger.c
+++ b/net/ceph/messenger.c
@@ -290,7 +290,7 @@ int ceph_msgr_init(void)
if (ceph_msgr_slab_init())
return -ENOMEM;
- ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_NON_REENTRANT, 0);
+ ceph_msgr_wq = alloc_workqueue("ceph-msgr", 0, 0);
if (ceph_msgr_wq)
return 0;