mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 06:25:52 +02:00
libceph: ceph-msgr workqueue needs a resque worker
commitf9865f06f7upstream. Commitf363e45fd1("net/ceph: make ceph_msgr_wq non-reentrant") effectively removed WQ_MEM_RECLAIM flag from ceph_msgr_wq. This is wrong - libceph is very much a memory reclaim path, so restore it. Signed-off-by: Ilya Dryomov <idryomov@redhat.com> Tested-by: Micha Krause <micha@krausam.de> Reviewed-by: Sage Weil <sage@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
58f382ffaf
commit
f05c0daaf6
|
|
@ -290,7 +290,8 @@ 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",
|
||||
WQ_NON_REENTRANT | WQ_MEM_RECLAIM, 0);
|
||||
if (ceph_msgr_wq)
|
||||
return 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user