diff options
author | Chad Dupuis <chad.dupuis@qlogic.com> | 2014-02-26 04:15:05 -0500 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2014-03-15 13:17:50 -0400 |
commit | 624f28be81097d06796e12c4c10aa7611305b334 (patch) | |
tree | 218eaaaff5f1d5bce348f8fcfb3f5c8833d66d18 | |
parent | 3b1bef644ea93339bbaffdcba99d5eed83751ba3 (diff) |
[SCSI] scsi_transport_fc: Add 32Gbps speed definition.
Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: Saurav Kashyap <saurav.kashyap@qlogic.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
-rw-r--r-- | drivers/scsi/scsi_transport_fc.c | 1 | ||||
-rw-r--r-- | include/scsi/scsi_transport_fc.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/scsi_transport_fc.c b/drivers/scsi/scsi_transport_fc.c index 4628fd5e0688..f80908f74ca9 100644 --- a/drivers/scsi/scsi_transport_fc.c +++ b/drivers/scsi/scsi_transport_fc.c | |||
@@ -261,6 +261,7 @@ static const struct { | |||
261 | { FC_PORTSPEED_10GBIT, "10 Gbit" }, | 261 | { FC_PORTSPEED_10GBIT, "10 Gbit" }, |
262 | { FC_PORTSPEED_8GBIT, "8 Gbit" }, | 262 | { FC_PORTSPEED_8GBIT, "8 Gbit" }, |
263 | { FC_PORTSPEED_16GBIT, "16 Gbit" }, | 263 | { FC_PORTSPEED_16GBIT, "16 Gbit" }, |
264 | { FC_PORTSPEED_32GBIT, "32 Gbit" }, | ||
264 | { FC_PORTSPEED_NOT_NEGOTIATED, "Not Negotiated" }, | 265 | { FC_PORTSPEED_NOT_NEGOTIATED, "Not Negotiated" }, |
265 | }; | 266 | }; |
266 | fc_bitfield_name_search(port_speed, fc_port_speed_names) | 267 | fc_bitfield_name_search(port_speed, fc_port_speed_names) |
diff --git a/include/scsi/scsi_transport_fc.h b/include/scsi/scsi_transport_fc.h index b797e8fad669..8c79980dc8f2 100644 --- a/include/scsi/scsi_transport_fc.h +++ b/include/scsi/scsi_transport_fc.h | |||
@@ -130,6 +130,7 @@ enum fc_vport_state { | |||
130 | #define FC_PORTSPEED_4GBIT 8 | 130 | #define FC_PORTSPEED_4GBIT 8 |
131 | #define FC_PORTSPEED_8GBIT 0x10 | 131 | #define FC_PORTSPEED_8GBIT 0x10 |
132 | #define FC_PORTSPEED_16GBIT 0x20 | 132 | #define FC_PORTSPEED_16GBIT 0x20 |
133 | #define FC_PORTSPEED_32GBIT 0x40 | ||
133 | #define FC_PORTSPEED_NOT_NEGOTIATED (1 << 15) /* Speed not established */ | 134 | #define FC_PORTSPEED_NOT_NEGOTIATED (1 << 15) /* Speed not established */ |
134 | 135 | ||
135 | /* | 136 | /* |