Skip to content

Commit

Permalink
bonding: 3ad: add support for 200G speed
Browse files Browse the repository at this point in the history
In order to be able to use 3ad mode with 200G devices we need to extend
the supported speeds.

Signed-off-by: Nikolay Aleksandrov <nikolay@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Nikolay Aleksandrov authored and David S. Miller committed Feb 11, 2021
1 parent 6bda2f6 commit ab73447
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions drivers/net/bonding/bond_3ad.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ enum ad_link_speed_type {
AD_LINK_SPEED_50000MBPS,
AD_LINK_SPEED_56000MBPS,
AD_LINK_SPEED_100000MBPS,
AD_LINK_SPEED_200000MBPS,
};

/* compare MAC addresses */
Expand Down Expand Up @@ -245,6 +246,7 @@ static inline int __check_agg_selection_timer(struct port *port)
* %AD_LINK_SPEED_50000MBPS
* %AD_LINK_SPEED_56000MBPS
* %AD_LINK_SPEED_100000MBPS
* %AD_LINK_SPEED_200000MBPS
*/
static u16 __get_link_speed(struct port *port)
{
Expand Down Expand Up @@ -312,6 +314,10 @@ static u16 __get_link_speed(struct port *port)
speed = AD_LINK_SPEED_100000MBPS;
break;

case SPEED_200000:
speed = AD_LINK_SPEED_200000MBPS;
break;

default:
/* unknown speed value from ethtool. shouldn't happen */
if (slave->speed != SPEED_UNKNOWN)
Expand Down Expand Up @@ -733,6 +739,9 @@ static u32 __get_agg_bandwidth(struct aggregator *aggregator)
case AD_LINK_SPEED_100000MBPS:
bandwidth = nports * 100000;
break;
case AD_LINK_SPEED_200000MBPS:
bandwidth = nports * 200000;
break;
default:
bandwidth = 0; /* to silence the compiler */
}
Expand Down

0 comments on commit ab73447

Please sign in to comment.