IB/mad: Remove deprecated create_singlethread_workqueue
authorBhaktipriya Shridhar <bhaktipriya96@gmail.com>
Mon, 15 Aug 2016 17:58:07 +0000 (23:28 +0530)
committerDoug Ledford <dledford@redhat.com>
Fri, 7 Oct 2016 20:54:23 +0000 (16:54 -0400)
The workqueue "ib_nl" queues work items &ib_nl_timed_work and
&mad_agent_priv->local_work. It has been identity converted.

WQ_MEM_RECLAIM has been set to ensure forward progress under
memory pressure.

Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/core/mad.c

index 95d33a3..40cbd6b 100644 (file)
@@ -3177,7 +3177,7 @@ static int ib_mad_port_open(struct ib_device *device,
                goto error7;
 
        snprintf(name, sizeof name, "ib_mad%d", port_num);
-       port_priv->wq = create_singlethread_workqueue(name);
+       port_priv->wq = alloc_ordered_workqueue(name, WQ_MEM_RECLAIM);
        if (!port_priv->wq) {
                ret = -ENOMEM;
                goto error8;