summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorTejun Heo2013-07-30 14:40:27 +0200
committerSage Weil2013-08-10 02:55:29 +0200
commit4d1829a59de402fc95daf4576c51aa0a7439aee8 (patch)
treec10944a1a672e63d323753f9ad7d7a23884dd87e /net
parentceph: Add check returned value on func ceph_calc_ceph_pg. (diff)
downloadkernel-qcow2-linux-4d1829a59de402fc95daf4576c51aa0a7439aee8.tar.gz
kernel-qcow2-linux-4d1829a59de402fc95daf4576c51aa0a7439aee8.tar.xz
kernel-qcow2-linux-4d1829a59de402fc95daf4576c51aa0a7439aee8.zip
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')
-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 eb0a46a49bd4..dd9b5857ef5c 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;