diff options
author | Tejun Heo <tj@kernel.org> | 2013-07-30 08:40:27 -0400 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-08-09 20:55:29 -0400 |
commit | 4d1829a59de402fc95daf4576c51aa0a7439aee8 (patch) | |
tree | c10944a1a672e63d323753f9ad7d7a23884dd87e /net | |
parent | 2fbcbff1d6b9243ef71c64a8ab993bc3c7bb7af1 (diff) |
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.c | 2 |
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) | |||
290 | if (ceph_msgr_slab_init()) | 290 | if (ceph_msgr_slab_init()) |
291 | return -ENOMEM; | 291 | return -ENOMEM; |
292 | 292 | ||
293 | ceph_msgr_wq = alloc_workqueue("ceph-msgr", WQ_NON_REENTRANT, 0); | 293 | ceph_msgr_wq = alloc_workqueue("ceph-msgr", 0, 0); |
294 | if (ceph_msgr_wq) | 294 | if (ceph_msgr_wq) |
295 | return 0; | 295 | return 0; |
296 | 296 | ||