OSDN Git Service

scsi: csiostor: fix incorrect dma device in case of vport
authorVarun Prakash <varun@chelsio.com>
Wed, 19 Dec 2018 10:12:50 +0000 (15:42 +0530)
committerMartin K. Petersen <martin.petersen@oracle.com>
Thu, 20 Dec 2018 02:45:04 +0000 (21:45 -0500)
In case of ->vport_create() call scsi_add_host_with_dma() instead of
scsi_add_host() to pass correct dma device.

Signed-off-by: Varun Prakash <varun@chelsio.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/csiostor/csio_init.c

index a1bdf93..cf62938 100644 (file)
@@ -645,7 +645,7 @@ csio_shost_init(struct csio_hw *hw, struct device *dev,
        if (csio_lnode_init(ln, hw, pln))
                goto err_shost_put;
 
-       if (scsi_add_host(shost, dev))
+       if (scsi_add_host_with_dma(shost, dev, &hw->pdev->dev))
                goto err_lnode_exit;
 
        return ln;