aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/scsi/zfcp_scsi.c
diff options
context:
space:
mode:
authorAndreas Herrmann <aherrman@de.ibm.com>2006-01-12 20:26:11 -0500
committerJames Bottomley <jejb@mulgrave.(none)>2006-01-14 11:54:52 -0500
commitad757cdfd2a40c9d5310d00f24427525788341cd (patch)
tree9353d40be65f6834b5e22c59db17273bb10f051e /drivers/s390/scsi/zfcp_scsi.c
parentf6cd94b126aa78ebaa21075df3b9577fbf995968 (diff)
[SCSI] zfcp: transport class adaptations II
Replaced zfcp adapter attributes with fc_host attributes: fc_topology by port_type, physical_wwpn by permanent_port_name. Make use of fc_host attribute supported_speeds. Removed zfcp adapter attribute physical_s_id. Signed-off-by: Andreas Herrmann <aherrman@de.ibm.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/s390/scsi/zfcp_scsi.c')
-rw-r--r--drivers/s390/scsi/zfcp_scsi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/s390/scsi/zfcp_scsi.c b/drivers/s390/scsi/zfcp_scsi.c
index 5ca0992e97f4..3c2cbcccbf54 100644
--- a/drivers/s390/scsi/zfcp_scsi.c
+++ b/drivers/s390/scsi/zfcp_scsi.c
@@ -865,13 +865,16 @@ struct fc_function_template zfcp_transport_functions = {
865 .show_rport_supported_classes = 1, 865 .show_rport_supported_classes = 1,
866 .show_host_node_name = 1, 866 .show_host_node_name = 1,
867 .show_host_port_name = 1, 867 .show_host_port_name = 1,
868 .show_host_permanent_port_name = 1,
868 .show_host_supported_classes = 1, 869 .show_host_supported_classes = 1,
870 .show_host_supported_speeds = 1,
869 .show_host_maxframe_size = 1, 871 .show_host_maxframe_size = 1,
870 .show_host_serial_number = 1, 872 .show_host_serial_number = 1,
871 .get_fc_host_stats = zfcp_get_fc_host_stats, 873 .get_fc_host_stats = zfcp_get_fc_host_stats,
872 .reset_fc_host_stats = zfcp_reset_fc_host_stats, 874 .reset_fc_host_stats = zfcp_reset_fc_host_stats,
873 /* no functions registered for following dynamic attributes but 875 /* no functions registered for following dynamic attributes but
874 directly set by LLDD */ 876 directly set by LLDD */
877 .show_host_port_type = 1,
875 .show_host_speed = 1, 878 .show_host_speed = 1,
876 .show_host_port_id = 1, 879 .show_host_port_id = 1,
877}; 880};