Commit a88218f7 authored by Varun Prakash's avatar Varun Prakash Committed by Greg Kroah-Hartman

scsi: csiostor: fix incorrect dma device in case of vport

[ Upstream commit 9934613e ]

In case of ->vport_create() call scsi_add_host_with_dma() instead of
scsi_add_host() to pass correct dma device.
Signed-off-by: default avatarVarun Prakash <varun@chelsio.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent a76bee5c
...@@ -649,7 +649,7 @@ csio_shost_init(struct csio_hw *hw, struct device *dev, ...@@ -649,7 +649,7 @@ csio_shost_init(struct csio_hw *hw, struct device *dev,
if (csio_lnode_init(ln, hw, pln)) if (csio_lnode_init(ln, hw, pln))
goto err_shost_put; 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; goto err_lnode_exit;
return ln; return ln;
......
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