Commit 41305d37 authored by Amit Cohen's avatar Amit Cohen Committed by David S. Miller

bonding: 3ad: Add support for 800G speed

Add support for 800Gbps speed to allow using 3ad mode with 800G devices.
Signed-off-by: default avatarAmit Cohen <amcohen@nvidia.com>
Reviewed-by: default avatarIdo Schimmel <idosch@nvidia.com>
Signed-off-by: default avatarPetr Machata <petrm@nvidia.com>
Acked-by: default avatarJay Vosburgh <jay.vosburgh@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cceef209
...@@ -75,6 +75,7 @@ enum ad_link_speed_type { ...@@ -75,6 +75,7 @@ enum ad_link_speed_type {
AD_LINK_SPEED_100000MBPS, AD_LINK_SPEED_100000MBPS,
AD_LINK_SPEED_200000MBPS, AD_LINK_SPEED_200000MBPS,
AD_LINK_SPEED_400000MBPS, AD_LINK_SPEED_400000MBPS,
AD_LINK_SPEED_800000MBPS,
}; };
/* compare MAC addresses */ /* compare MAC addresses */
...@@ -251,6 +252,7 @@ static inline int __check_agg_selection_timer(struct port *port) ...@@ -251,6 +252,7 @@ static inline int __check_agg_selection_timer(struct port *port)
* %AD_LINK_SPEED_100000MBPS * %AD_LINK_SPEED_100000MBPS
* %AD_LINK_SPEED_200000MBPS * %AD_LINK_SPEED_200000MBPS
* %AD_LINK_SPEED_400000MBPS * %AD_LINK_SPEED_400000MBPS
* %AD_LINK_SPEED_800000MBPS
*/ */
static u16 __get_link_speed(struct port *port) static u16 __get_link_speed(struct port *port)
{ {
...@@ -326,6 +328,10 @@ static u16 __get_link_speed(struct port *port) ...@@ -326,6 +328,10 @@ static u16 __get_link_speed(struct port *port)
speed = AD_LINK_SPEED_400000MBPS; speed = AD_LINK_SPEED_400000MBPS;
break; break;
case SPEED_800000:
speed = AD_LINK_SPEED_800000MBPS;
break;
default: default:
/* unknown speed value from ethtool. shouldn't happen */ /* unknown speed value from ethtool. shouldn't happen */
if (slave->speed != SPEED_UNKNOWN) if (slave->speed != SPEED_UNKNOWN)
...@@ -753,6 +759,9 @@ static u32 __get_agg_bandwidth(struct aggregator *aggregator) ...@@ -753,6 +759,9 @@ static u32 __get_agg_bandwidth(struct aggregator *aggregator)
case AD_LINK_SPEED_400000MBPS: case AD_LINK_SPEED_400000MBPS:
bandwidth = nports * 400000; bandwidth = nports * 400000;
break; break;
case AD_LINK_SPEED_800000MBPS:
bandwidth = nports * 800000;
break;
default: default:
bandwidth = 0; /* to silence the compiler */ bandwidth = 0; /* to silence the compiler */
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment