Commit c7f743a6 authored by Sean Hefty's avatar Sean Hefty Committed by Roland Dreier

IB: Remove redundant "_wq" from workqueue names

Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent aedec080
...@@ -373,7 +373,7 @@ static struct notifier_block nb = { ...@@ -373,7 +373,7 @@ static struct notifier_block nb = {
static int addr_init(void) static int addr_init(void)
{ {
addr_wq = create_singlethread_workqueue("ib_addr_wq"); addr_wq = create_singlethread_workqueue("ib_addr");
if (!addr_wq) if (!addr_wq)
return -ENOMEM; return -ENOMEM;
......
...@@ -2494,7 +2494,7 @@ static int cma_init(void) ...@@ -2494,7 +2494,7 @@ static int cma_init(void)
next_port = (next_port % (sysctl_local_port_range[1] - next_port = (next_port % (sysctl_local_port_range[1] -
sysctl_local_port_range[0])) + sysctl_local_port_range[0])) +
sysctl_local_port_range[0]; sysctl_local_port_range[0];
cma_wq = create_singlethread_workqueue("rdma_cm_wq"); cma_wq = create_singlethread_workqueue("rdma_cm");
if (!cma_wq) if (!cma_wq)
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