diff options
author | Bhaktipriya Shridhar <bhaktipriya96@gmail.com> | 2016-08-15 14:14:03 -0400 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-10-07 16:54:31 -0400 |
commit | 9e5df3125c9d88d402dcb97abdc6b7dc6a6c8841 (patch) | |
tree | aec99eba74549c33fe2d1d92363ce342ed0c0417 | |
parent | fcf621dd2ba2950a3a6717fc0a3c1f908107a546 (diff) |
IB/nes: Remove deprecated create_singlethread_workqueue
alloc_ordered_workqueue() replaces deprecated
create_singlethread_workqueue().
The workqueue "event_wq" queues work item &event->event_work and the
workqueue "disconn_wq" queues work item work (maps to
g_cm_core->disconn_wq).
WQ_MEM_RECLAIM has not been set since the workqueues are not being used
on a memory reclaim path.
Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
-rw-r--r-- | drivers/infiniband/hw/nes/nes_cm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/nes/nes_cm.c b/drivers/infiniband/hw/nes/nes_cm.c index 7f0aa23aef9d..57db9b332f44 100644 --- a/drivers/infiniband/hw/nes/nes_cm.c +++ b/drivers/infiniband/hw/nes/nes_cm.c | |||
@@ -2692,12 +2692,12 @@ static struct nes_cm_core *nes_cm_alloc_core(void) | |||
2692 | nes_debug(NES_DBG_CM, "Init CM Core completed -- cm_core=%p\n", cm_core); | 2692 | nes_debug(NES_DBG_CM, "Init CM Core completed -- cm_core=%p\n", cm_core); |
2693 | 2693 | ||
2694 | nes_debug(NES_DBG_CM, "Enable QUEUE EVENTS\n"); | 2694 | nes_debug(NES_DBG_CM, "Enable QUEUE EVENTS\n"); |
2695 | cm_core->event_wq = create_singlethread_workqueue("nesewq"); | 2695 | cm_core->event_wq = alloc_ordered_workqueue("nesewq", 0); |
2696 | if (!cm_core->event_wq) | 2696 | if (!cm_core->event_wq) |
2697 | goto out_free_cmcore; | 2697 | goto out_free_cmcore; |
2698 | cm_core->post_event = nes_cm_post_event; | 2698 | cm_core->post_event = nes_cm_post_event; |
2699 | nes_debug(NES_DBG_CM, "Enable QUEUE DISCONNECTS\n"); | 2699 | nes_debug(NES_DBG_CM, "Enable QUEUE DISCONNECTS\n"); |
2700 | cm_core->disconn_wq = create_singlethread_workqueue("nesdwq"); | 2700 | cm_core->disconn_wq = alloc_ordered_workqueue("nesdwq", 0); |
2701 | if (!cm_core->disconn_wq) | 2701 | if (!cm_core->disconn_wq) |
2702 | goto out_free_wq; | 2702 | goto out_free_wq; |
2703 | 2703 | ||