diff options
author | Mike Christie <michaelc@cs.wisc.edu> | 2008-05-21 16:53:57 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-07-12 09:22:15 -0400 |
commit | d3826721b198001c55353b1c54e10843068aae63 (patch) | |
tree | 7f2348a674da1f0d513c65d6225eea5f49ffff66 /drivers/scsi/scsi_transport_iscsi.c | |
parent | 40753caa364bfba60ebd5e2a8bdf366ef175d03c (diff) |
[SCSI] iscsi class, iscsi drivers: remove unused iscsi_transport attrs
max_cmd_len and max_conn are not really used. max_cmd_len is
always 16 and can be set by the LLD. max_conn is always one
since we do not support MCS.
Signed-off-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/scsi_transport_iscsi.c')
-rw-r--r-- | drivers/scsi/scsi_transport_iscsi.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/scsi/scsi_transport_iscsi.c b/drivers/scsi/scsi_transport_iscsi.c index 2a6669d967cb..e6a090e9c8a4 100644 --- a/drivers/scsi/scsi_transport_iscsi.c +++ b/drivers/scsi/scsi_transport_iscsi.c | |||
@@ -102,15 +102,11 @@ static DEVICE_ATTR(name, S_IRUGO, show_transport_##name, NULL); | |||
102 | 102 | ||
103 | show_transport_attr(caps, "0x%x"); | 103 | show_transport_attr(caps, "0x%x"); |
104 | show_transport_attr(max_lun, "%d"); | 104 | show_transport_attr(max_lun, "%d"); |
105 | show_transport_attr(max_conn, "%d"); | ||
106 | show_transport_attr(max_cmd_len, "%d"); | ||
107 | 105 | ||
108 | static struct attribute *iscsi_transport_attrs[] = { | 106 | static struct attribute *iscsi_transport_attrs[] = { |
109 | &dev_attr_handle.attr, | 107 | &dev_attr_handle.attr, |
110 | &dev_attr_caps.attr, | 108 | &dev_attr_caps.attr, |
111 | &dev_attr_max_lun.attr, | 109 | &dev_attr_max_lun.attr, |
112 | &dev_attr_max_conn.attr, | ||
113 | &dev_attr_max_cmd_len.attr, | ||
114 | NULL, | 110 | NULL, |
115 | }; | 111 | }; |
116 | 112 | ||