diff options
author | Christoph Hellwig <hch@lst.de> | 2005-10-19 14:01:17 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-10-28 20:06:45 -0400 |
commit | ac01bbbd3b7ebfca64357aed12cf476b16abe3ce (patch) | |
tree | e0ab34ebdabb88f31a0b06321df5c7ff7122455a /drivers/scsi/scsi_transport_sas.c | |
parent | 80d904c43b11105c16395b240078ccc2f7ac6074 (diff) |
[SCSI] sas: add flag for locally attached PHYs
Add a flag to mark a PHY as attached to the HBA as opposed to beeing on
an expander. This is needed because various features are only supported
on those. This is a crude hack, the proper fix would be to use
different classes for host-attached vs expander phys. I'm looking into
that.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/scsi_transport_sas.c')
-rw-r--r-- | drivers/scsi/scsi_transport_sas.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/scsi_transport_sas.c b/drivers/scsi/scsi_transport_sas.c index 63445f90097e..f5618c1116f4 100644 --- a/drivers/scsi/scsi_transport_sas.c +++ b/drivers/scsi/scsi_transport_sas.c | |||
@@ -266,6 +266,9 @@ show_sas_phy_##field(struct class_device *cdev, char *buf) \ | |||
266 | struct sas_internal *i = to_sas_internal(shost->transportt); \ | 266 | struct sas_internal *i = to_sas_internal(shost->transportt); \ |
267 | int error; \ | 267 | int error; \ |
268 | \ | 268 | \ |
269 | if (!phy->local_attached) \ | ||
270 | return -EINVAL; \ | ||
271 | \ | ||
269 | error = i->f->get_linkerrors(phy); \ | 272 | error = i->f->get_linkerrors(phy); \ |
270 | if (error) \ | 273 | if (error) \ |
271 | return error; \ | 274 | return error; \ |