]> err.no Git - linux-2.6/commit
[SCSI] libsas: Fix incorrect sas_port deformation in sas_form_port
authorDarrick J. Wong <djwong@us.ibm.com>
Fri, 26 Jan 2007 22:08:41 +0000 (14:08 -0800)
committerJames Bottomley <jejb@mulgrave.il.steeleye.com>
Sat, 27 Jan 2007 16:04:58 +0000 (10:04 -0600)
commit3b6e9fafc40e36f50f0bd0f1ee758eecd79f1098
tree7e535b1ba59f883e03c1c468cb56a14aaf06bd44
parenta5364c5a311f73eade88f37bf5b614797ce30ec9
[SCSI] libsas: Fix incorrect sas_port deformation in sas_form_port

Currently, sas_form_port checks the given asd_sas_phy's sas_phy to see if
there's already a port attached.  If so, the SAS addresses of the port and
the phy are compared to determine if we need to detach from the port
because the addresses don't match or if we can stop; the SAS address stored
in the sas_port reflects whatever device _was_ attached to the port/phy, and
the SAS address stored in the sas_port reflects whatever device we just
discovered.  As written, the code detaches from the port if the addresses
_do_ match, and prints an error if they do _not_ match.  I believe this to
be incorrect, as it seems more logical to keep the port if the addresses
match (i.e. the phy was reset but the device didn't change), and detach it
they do not (i.e. the device changed).

Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
drivers/scsi/libsas/sas_port.c