[PATCH 18/19] scsi: hisi_sas: replace kfree with scsi_host_put

2017-08-10 Thread John Garry
Instances of kfree(shost) should be replaced with
scsi_host_put().

In addition, a missing scsi_host_put() is added for
error path in hisi_sas_shost_alloc_pci() and v3 driver
removal.

Signed-off-by: Pan Bian  # For main.c changes
Signed-off-by: John Garry 
---
 drivers/scsi/hisi_sas/hisi_sas_main.c  |  6 +++---
 drivers/scsi/hisi_sas/hisi_sas_v3_hw.c | 13 +
 2 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/drivers/scsi/hisi_sas/hisi_sas_main.c 
b/drivers/scsi/hisi_sas/hisi_sas_main.c
index 4112afd..9427835 100644
--- a/drivers/scsi/hisi_sas/hisi_sas_main.c
+++ b/drivers/scsi/hisi_sas/hisi_sas_main.c
@@ -1900,7 +1900,7 @@ static struct Scsi_Host *hisi_sas_shost_alloc(struct 
platform_device *pdev,
 
return shost;
 err_out:
-   kfree(shost);
+   scsi_host_put(shost);
dev_err(dev, "shost alloc failed\n");
return NULL;
 }
@@ -1991,7 +1991,7 @@ int hisi_sas_probe(struct platform_device *pdev,
scsi_remove_host(shost);
 err_out_ha:
hisi_sas_free(hisi_hba);
-   kfree(shost);
+   scsi_host_put(shost);
return rc;
 }
 EXPORT_SYMBOL_GPL(hisi_sas_probe);
@@ -2006,7 +2006,7 @@ int hisi_sas_remove(struct platform_device *pdev)
sas_remove_host(sha->core.shost);
 
hisi_sas_free(hisi_hba);
-   kfree(shost);
+   scsi_host_put(shost);
return 0;
 }
 EXPORT_SYMBOL_GPL(hisi_sas_remove);
diff --git a/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c 
b/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
index 3620a3e..a20e354 100644
--- a/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
+++ b/drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
@@ -1811,8 +1811,10 @@ static int soft_reset_v3_hw(struct hisi_hba *hisi_hba)
struct device *dev = &pdev->dev;
 
shost = scsi_host_alloc(hisi_sas_sht, sizeof(*hisi_hba));
-   if (!shost)
-   goto err_out;
+   if (!shost) {
+   dev_err(dev, "shost alloc failed\n");
+   return NULL;
+   }
hisi_hba = shost_priv(shost);
 
hisi_hba->hw = &hisi_sas_v3_hw;
@@ -1833,6 +1835,7 @@ static int soft_reset_v3_hw(struct hisi_hba *hisi_hba)
 
return shost;
 err_out:
+   scsi_host_put(shost);
dev_err(dev, "shost alloc failed\n");
return NULL;
 }
@@ -1941,7 +1944,7 @@ static int soft_reset_v3_hw(struct hisi_hba *hisi_hba)
 err_out_register_ha:
scsi_remove_host(shost);
 err_out_ha:
-   kfree(shost);
+   scsi_host_put(shost);
 err_out_regions:
pci_release_regions(pdev);
 err_out_disable_device:
@@ -1971,14 +1974,16 @@ static void hisi_sas_v3_remove(struct pci_dev *pdev)
struct device *dev = &pdev->dev;
struct sas_ha_struct *sha = dev_get_drvdata(dev);
struct hisi_hba *hisi_hba = sha->lldd_ha;
+   struct Scsi_Host *shost = sha->core.shost;
 
sas_unregister_ha(sha);
sas_remove_host(sha->core.shost);
 
-   hisi_sas_free(hisi_hba);
hisi_sas_v3_destroy_irqs(pdev, hisi_hba);
pci_release_regions(pdev);
pci_disable_device(pdev);
+   hisi_sas_free(hisi_hba);
+   scsi_host_put(shost);
 }
 
 enum {
-- 
1.9.1



Re: scsi: hisi_sas: replace kfree with scsi_host_put

2017-08-08 Thread PanBian
On Tue, Aug 08, 2017 at 03:56:22PM +0100, John Garry wrote:
> On 08/08/2017 12:37, Pan Bian wrote:
> >Return value of scsi_host_alloc() should be released with
> >scsi_host_put() rather than kfree().
> >
> >Signed-off-by: Pan Bian 
> 
> We also have a kfree(shost) in newly added pci-based v3 driver which
> would need replacing for consistency.
> 
> But, apart from that, we seem to have a pre-existing issue in
> hisi_sas_shost_alloc_pci(), which is missing the shost clean-up for
> error path.
> 
> Let me know if you want me to take over this patch and fix up the
> other places.

Yes, of course.

> 
> John
> 

Thank you,
Pan Bian

> >---
> > drivers/scsi/hisi_sas/hisi_sas_main.c | 6 +++---
> > 1 file changed, 3 insertions(+), 3 deletions(-)
> >
> >diff --git a/drivers/scsi/hisi_sas/hisi_sas_main.c 
> >b/drivers/scsi/hisi_sas/hisi_sas_main.c
> >index 4022c3f..22d8922 100644
> >--- a/drivers/scsi/hisi_sas/hisi_sas_main.c
> >+++ b/drivers/scsi/hisi_sas/hisi_sas_main.c
> >@@ -1825,7 +1825,7 @@ static struct Scsi_Host *hisi_sas_shost_alloc(struct 
> >platform_device *pdev,
> >
> > return shost;
> > err_out:
> >-kfree(shost);
> >+scsi_host_put(shost);
> > dev_err(dev, "shost alloc failed\n");
> > return NULL;
> > }
> >@@ -1916,7 +1916,7 @@ int hisi_sas_probe(struct platform_device *pdev,
> > scsi_remove_host(shost);
> > err_out_ha:
> > hisi_sas_free(hisi_hba);
> >-kfree(shost);
> >+scsi_host_put(shost);
> > return rc;
> > }
> > EXPORT_SYMBOL_GPL(hisi_sas_probe);
> >@@ -1931,7 +1931,7 @@ int hisi_sas_remove(struct platform_device *pdev)
> > sas_remove_host(sha->core.shost);
> >
> > hisi_sas_free(hisi_hba);
> >-kfree(shost);
> >+scsi_host_put(shost);
> > return 0;
> > }
> > EXPORT_SYMBOL_GPL(hisi_sas_remove);
> >
> 
> 



Re: scsi: hisi_sas: replace kfree with scsi_host_put

2017-08-08 Thread John Garry

On 08/08/2017 12:37, Pan Bian wrote:

Return value of scsi_host_alloc() should be released with
scsi_host_put() rather than kfree().

Signed-off-by: Pan Bian 


We also have a kfree(shost) in newly added pci-based v3 driver which 
would need replacing for consistency.


But, apart from that, we seem to have a pre-existing issue in 
hisi_sas_shost_alloc_pci(), which is missing the shost clean-up for 
error path.


Let me know if you want me to take over this patch and fix up the other 
places.


John


---
 drivers/scsi/hisi_sas/hisi_sas_main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/scsi/hisi_sas/hisi_sas_main.c 
b/drivers/scsi/hisi_sas/hisi_sas_main.c
index 4022c3f..22d8922 100644
--- a/drivers/scsi/hisi_sas/hisi_sas_main.c
+++ b/drivers/scsi/hisi_sas/hisi_sas_main.c
@@ -1825,7 +1825,7 @@ static struct Scsi_Host *hisi_sas_shost_alloc(struct 
platform_device *pdev,

return shost;
 err_out:
-   kfree(shost);
+   scsi_host_put(shost);
dev_err(dev, "shost alloc failed\n");
return NULL;
 }
@@ -1916,7 +1916,7 @@ int hisi_sas_probe(struct platform_device *pdev,
scsi_remove_host(shost);
 err_out_ha:
hisi_sas_free(hisi_hba);
-   kfree(shost);
+   scsi_host_put(shost);
return rc;
 }
 EXPORT_SYMBOL_GPL(hisi_sas_probe);
@@ -1931,7 +1931,7 @@ int hisi_sas_remove(struct platform_device *pdev)
sas_remove_host(sha->core.shost);

hisi_sas_free(hisi_hba);
-   kfree(shost);
+   scsi_host_put(shost);
return 0;
 }
 EXPORT_SYMBOL_GPL(hisi_sas_remove);






scsi: hisi_sas: replace kfree with scsi_host_put

2017-08-08 Thread Pan Bian
Return value of scsi_host_alloc() should be released with
scsi_host_put() rather than kfree().

Signed-off-by: Pan Bian 
---
 drivers/scsi/hisi_sas/hisi_sas_main.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/scsi/hisi_sas/hisi_sas_main.c 
b/drivers/scsi/hisi_sas/hisi_sas_main.c
index 4022c3f..22d8922 100644
--- a/drivers/scsi/hisi_sas/hisi_sas_main.c
+++ b/drivers/scsi/hisi_sas/hisi_sas_main.c
@@ -1825,7 +1825,7 @@ static struct Scsi_Host *hisi_sas_shost_alloc(struct 
platform_device *pdev,
 
return shost;
 err_out:
-   kfree(shost);
+   scsi_host_put(shost);
dev_err(dev, "shost alloc failed\n");
return NULL;
 }
@@ -1916,7 +1916,7 @@ int hisi_sas_probe(struct platform_device *pdev,
scsi_remove_host(shost);
 err_out_ha:
hisi_sas_free(hisi_hba);
-   kfree(shost);
+   scsi_host_put(shost);
return rc;
 }
 EXPORT_SYMBOL_GPL(hisi_sas_probe);
@@ -1931,7 +1931,7 @@ int hisi_sas_remove(struct platform_device *pdev)
sas_remove_host(sha->core.shost);
 
hisi_sas_free(hisi_hba);
-   kfree(shost);
+   scsi_host_put(shost);
return 0;
 }
 EXPORT_SYMBOL_GPL(hisi_sas_remove);
-- 
1.9.1