Commit e1fcc7e2a719d139322fab3f47cfbd4340cf3d82
Committed by
Linus Torvalds
1 parent
ba28b93a52
Exists in
master
and in
39 other branches
rxrpc: rxrpc_workqueue isn't used during memory reclaim
rxrpc_workqueue isn't depended upon while reclaiming memory. Convert to alloc_workqueue() without WQ_MEM_RECLAIM. Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: David Howells <dhowells@redhat.com> Cc: linux-afs@lists.infradead.org Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
net/rxrpc/af_rxrpc.c
... | ... | @@ -808,7 +808,7 @@ |
808 | 808 | goto error_call_jar; |
809 | 809 | } |
810 | 810 | |
811 | - rxrpc_workqueue = create_workqueue("krxrpcd"); | |
811 | + rxrpc_workqueue = alloc_workqueue("krxrpcd", 0, 1); | |
812 | 812 | if (!rxrpc_workqueue) { |
813 | 813 | printk(KERN_NOTICE "RxRPC: Failed to allocate work queue\n"); |
814 | 814 | goto error_work_queue; |