mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
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>
This commit is contained in:
parent
ba28b93a52
commit
e1fcc7e2a7
@ -808,7 +808,7 @@ static int __init af_rxrpc_init(void)
|
||||
goto error_call_jar;
|
||||
}
|
||||
|
||||
rxrpc_workqueue = create_workqueue("krxrpcd");
|
||||
rxrpc_workqueue = alloc_workqueue("krxrpcd", 0, 1);
|
||||
if (!rxrpc_workqueue) {
|
||||
printk(KERN_NOTICE "RxRPC: Failed to allocate work queue\n");
|
||||
goto error_work_queue;
|
||||
|
Loading…
Reference in New Issue
Block a user