Re: [PATCH] hpsa: fix potential resource leak

2014-11-10 Thread Christoph Hellwig
Don, can you help me review Tomas hpsa patches, including those from the
last week of October?  Thanks!

--
To unsubscribe from this list: send the line unsubscribe linux-scsi in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] hpsa: fix potential resource leak

2014-11-07 Thread Tomas Henzl
We should free the cfgtable allocated a few lines above.

Signed-off-by: Tomas Henzl the...@redhat.com
---
 drivers/scsi/hpsa.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 1ce2b43608..7d4cef779f 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -5994,7 +5994,7 @@ static int hpsa_kdump_hard_reset_controller(struct 
pci_dev *pdev)
}
rc = write_driver_ver_to_cfgtable(cfgtable);
if (rc)
-   goto unmap_vaddr;
+   goto unmap_cfgtable;
 
/* If reset via doorbell register is supported, use that.
 * There are two such methods.  Favor the newest method.
-- 
1.9.3

--
To unsubscribe from this list: send the line unsubscribe linux-scsi in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] hpsa: fix potential resource leak

2014-11-07 Thread Tomas Henzl
We should free the cfgtable allocated a few lines above.

Signed-off-by: Tomas Henzl the...@redhat.com
---
 drivers/scsi/hpsa.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 1ce2b43608..7d4cef779f 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -5994,7 +5994,7 @@ static int hpsa_kdump_hard_reset_controller(struct 
pci_dev *pdev)
}
rc = write_driver_ver_to_cfgtable(cfgtable);
if (rc)
-   goto unmap_vaddr;
+   goto unmap_cfgtable;
 
/* If reset via doorbell register is supported, use that.
 * There are two such methods.  Favor the newest method.
-- 
1.9.3

--
To unsubscribe from this list: send the line unsubscribe linux-scsi in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] hpsa: fix potential resource leak

2014-11-07 Thread Tomas Henzl
My apologies for sending the same mail twice.

Please ignore this one.

--tms


On 11/07/2014 01:27 PM, Tomas Henzl wrote:

 We should free the cfgtable allocated a few lines above.

 Signed-off-by: Tomas Henzl the...@redhat.com
 ---
  drivers/scsi/hpsa.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

 diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
 index 1ce2b43608..7d4cef779f 100644
 --- a/drivers/scsi/hpsa.c
 +++ b/drivers/scsi/hpsa.c
 @@ -5994,7 +5994,7 @@ static int hpsa_kdump_hard_reset_controller(struct 
 pci_dev *pdev)
   }
   rc = write_driver_ver_to_cfgtable(cfgtable);
   if (rc)
 - goto unmap_vaddr;
 + goto unmap_cfgtable;
  
   /* If reset via doorbell register is supported, use that.
* There are two such methods.  Favor the newest method.

--
To unsubscribe from this list: send the line unsubscribe linux-scsi in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] hpsa: fix potential resource leak

2012-12-03 Thread Tomas Henzl
I think we should free also the cfgtable allocated a few lines
above this point.

Signed-off-by: Tomas Henzl the...@redhat.com
---
 drivers/scsi/hpsa.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 796482b..3cc18aa 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -3858,7 +3858,7 @@ static __devinit int 
hpsa_kdump_hard_reset_controller(struct pci_dev *pdev)
}
rc = write_driver_ver_to_cfgtable(cfgtable);
if (rc)
-   goto unmap_vaddr;
+   goto unmap_cfgtable;
 
/* If reset via doorbell register is supported, use that.
 * There are two such methods.  Favor the newest method.
-- 
1.7.11.7

--
To unsubscribe from this list: send the line unsubscribe linux-scsi in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html