Commit 768bbedf authored by Tina Yang's avatar Tina Yang Committed by David S. Miller

RDS: Enable per-cpu workqueue threads

Create per-cpu workqueue threads instead of a single
krdsd thread. This is a step towards better scalability.
Signed-off-by: default avatarAndy Grover <andy.grover@oracle.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 561c7df6
...@@ -259,7 +259,7 @@ void rds_threads_exit(void) ...@@ -259,7 +259,7 @@ void rds_threads_exit(void)
int __init rds_threads_init(void) int __init rds_threads_init(void)
{ {
rds_wq = create_singlethread_workqueue("krdsd"); rds_wq = create_workqueue("krdsd");
if (rds_wq == NULL) if (rds_wq == NULL)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment