Message ID | 1428004252.6933.1.camel@myfc17 (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 04/02/2015 09:50 PM, James Smart wrote: > Add FC transport support for 25Gbit speed > > Signed-off-by: James Smart <james.smart@emulex.com> Reviewed-by: Hannes Reinecke <hare@suse.de> Cheers, Hannes
On Thu, 2015-04-02 at 15:50 -0400, James Smart wrote: > Add FC transport support for 25Gbit speed > > Signed-off-by: James Smart <james.smart@emulex.com> > --- > drivers/scsi/scsi_transport_fc.c | 1 + > include/scsi/scsi_transport_fc.h | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/drivers/scsi/scsi_transport_fc.c b/drivers/scsi/scsi_transport_fc.c > index 5d6f348..24eaaf6 100644 > --- a/drivers/scsi/scsi_transport_fc.c > +++ b/drivers/scsi/scsi_transport_fc.c > @@ -265,6 +265,7 @@ static const struct { > { FC_PORTSPEED_40GBIT, "40 Gbit" }, > { FC_PORTSPEED_50GBIT, "50 Gbit" }, > { FC_PORTSPEED_100GBIT, "100 Gbit" }, > + { FC_PORTSPEED_25GBIT, "25 Gbit" }, > { FC_PORTSPEED_NOT_NEGOTIATED, "Not Negotiated" }, > }; > 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 007a0bc..784bc2c 100644 > --- a/include/scsi/scsi_transport_fc.h > +++ b/include/scsi/scsi_transport_fc.h > @@ -135,6 +135,7 @@ enum fc_vport_state { > #define FC_PORTSPEED_40GBIT 0x100 > #define FC_PORTSPEED_50GBIT 0x200 > #define FC_PORTSPEED_100GBIT 0x400 > +#define FC_PORTSPEED_25GBIT 0x800 > #define FC_PORTSPEED_NOT_NEGOTIATED (1 << 15) /* Speed not established */ > > /* Reviewed-by: Ewan D. Milne <emilne@redhat.com> -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/scsi/scsi_transport_fc.c b/drivers/scsi/scsi_transport_fc.c index 5d6f348..24eaaf6 100644 --- a/drivers/scsi/scsi_transport_fc.c +++ b/drivers/scsi/scsi_transport_fc.c @@ -265,6 +265,7 @@ static const struct { { FC_PORTSPEED_40GBIT, "40 Gbit" }, { FC_PORTSPEED_50GBIT, "50 Gbit" }, { FC_PORTSPEED_100GBIT, "100 Gbit" }, + { FC_PORTSPEED_25GBIT, "25 Gbit" }, { FC_PORTSPEED_NOT_NEGOTIATED, "Not Negotiated" }, }; 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 007a0bc..784bc2c 100644 --- a/include/scsi/scsi_transport_fc.h +++ b/include/scsi/scsi_transport_fc.h @@ -135,6 +135,7 @@ enum fc_vport_state { #define FC_PORTSPEED_40GBIT 0x100 #define FC_PORTSPEED_50GBIT 0x200 #define FC_PORTSPEED_100GBIT 0x400 +#define FC_PORTSPEED_25GBIT 0x800 #define FC_PORTSPEED_NOT_NEGOTIATED (1 << 15) /* Speed not established */ /*
Add FC transport support for 25Gbit speed Signed-off-by: James Smart <james.smart@emulex.com> --- drivers/scsi/scsi_transport_fc.c | 1 + include/scsi/scsi_transport_fc.h | 1 + 2 files changed, 2 insertions(+)