]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[SCSI] libsas: fix leak of dev->sata_dev.identify_[packet_]device
authorDan Williams <dan.j.williams@intel.com>
Fri, 18 Nov 2011 01:59:48 +0000 (17:59 -0800)
committerJames Bottomley <JBottomley@Parallels.com>
Sun, 19 Feb 2012 19:39:36 +0000 (13:39 -0600)
These are never freed in the nominal path.  A domain_device has a
different lifetime than a sas_rphy we need a dev->rphy independent way
of identifying sata devices.

Reviewed-by: Jack Wang <jack_wang@usish.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/libsas/sas_discover.c
include/scsi/sas_ata.h

index 4e649306ef4e84361ec3216b4f1d985d1d5fd30b..dc52b1fa218ed4dff8623de17fa2236a2e7f72cb 100644 (file)
@@ -30,6 +30,7 @@
 
 #include <scsi/scsi_transport.h>
 #include <scsi/scsi_transport_sas.h>
+#include <scsi/sas_ata.h>
 #include "../scsi_sas_internal.h"
 
 /* ---------- Basic task processing for discovery purposes ---------- */
@@ -231,6 +232,11 @@ void sas_free_device(struct kref *kref)
        if (dev->dev_type == EDGE_DEV || dev->dev_type == FANOUT_DEV)
                kfree(dev->ex_dev.ex_phy);
 
+       if (dev_is_sata(dev)) {
+               kfree(dev->sata_dev.identify_device);
+               kfree(dev->sata_dev.identify_packet_device);
+       }
+
        kfree(dev);
 }
 
index 9c159f74c6d038fcd88d49e03db1fc5e0d55bbaa..7d5013f8653d4baac394bb79ee63df8219e6f299 100644 (file)
@@ -32,7 +32,8 @@
 
 static inline int dev_is_sata(struct domain_device *dev)
 {
-       return (dev->rphy->identify.target_port_protocols & SAS_PROTOCOL_SATA);
+       return dev->dev_type == SATA_DEV || dev->dev_type == SATA_PM ||
+              dev->dev_type == SATA_PM_PORT;
 }
 
 int sas_ata_init_host_and_port(struct domain_device *found_dev,