Skip to content

Commit

Permalink
RDS: Enable per-cpu workqueue threads
Browse files Browse the repository at this point in the history
Create per-cpu workqueue threads instead of a single
krdsd thread. This is a step towards better scalability.

Signed-off-by: Andy Grover <andy.grover@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Tina Yang authored and David S. Miller committed Mar 17, 2010
1 parent 561c7df commit 768bbed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/rds/threads.c
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ void rds_threads_exit(void)

int __init rds_threads_init(void)
{
rds_wq = create_singlethread_workqueue("krdsd");
rds_wq = create_workqueue("krdsd");
if (rds_wq == NULL)
return -ENOMEM;

Expand Down

0 comments on commit 768bbed

Please sign in to comment.