]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
scsi: qedf: Covert single-threaded workqueues to regular workqueues.
authorChad Dupuis <chad.dupuis@cavium.com>
Tue, 15 Aug 2017 17:08:19 +0000 (10:08 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 25 Aug 2017 02:29:03 +0000 (22:29 -0400)
There is no ordering required for the various workqueues the driver uses
so they can be converted to regular workqueues.

Signed-off-by: Chad Dupuis <chad.dupuis@cavium.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/qedf/qedf_main.c

index dc6a3f6b9e1f31a61b6cee8a48d4a8a19323295c..88cf9adc40f346134d651971f04659cfcdf5347f 100644 (file)
@@ -2989,7 +2989,7 @@ static int __qedf_probe(struct pci_dev *pdev, int mode)
 
        sprintf(host_buf, "qedf_%u_link",
            qedf->lport->host->host_no);
-       qedf->link_update_wq = create_singlethread_workqueue(host_buf);
+       qedf->link_update_wq = create_workqueue(host_buf);
        INIT_DELAYED_WORK(&qedf->link_update, qedf_handle_link_update);
        INIT_DELAYED_WORK(&qedf->link_recovery, qedf_link_recovery);
 
@@ -3159,7 +3159,7 @@ static int __qedf_probe(struct pci_dev *pdev, int mode)
        /* Start LL2 processing thread */
        snprintf(host_buf, 20, "qedf_%d_ll2", host->host_no);
        qedf->ll2_recv_wq =
-               create_singlethread_workqueue(host_buf);
+               create_workqueue(host_buf);
        if (!qedf->ll2_recv_wq) {
                QEDF_ERR(&(qedf->dbg_ctx), "Failed to LL2 workqueue.\n");
                goto err7;
@@ -3201,7 +3201,7 @@ static int __qedf_probe(struct pci_dev *pdev, int mode)
 
        sprintf(host_buf, "qedf_%u_timer", qedf->lport->host->host_no);
        qedf->timer_work_queue =
-               create_singlethread_workqueue(host_buf);
+               create_workqueue(host_buf);
        if (!qedf->timer_work_queue) {
                QEDF_ERR(&(qedf->dbg_ctx), "Failed to start timer "
                          "workqueue.\n");
@@ -3212,7 +3212,7 @@ static int __qedf_probe(struct pci_dev *pdev, int mode)
        if (mode != QEDF_MODE_RECOVERY) {
                sprintf(host_buf, "qedf_%u_dpc",
                    qedf->lport->host->host_no);
-               qedf->dpc_wq = create_singlethread_workqueue(host_buf);
+               qedf->dpc_wq = create_workqueue(host_buf);
        }
 
        /*