[dpdk-dev] [PATCH] bond: update the NTT flag when partner's state changes from slow to fast

zhangsha (A) zhangsha.zhang at huawei.com
Mon May 22 08:40:38 CEST 2017


>From eddd395916002cca1c2f83a01d368b95295f2adf Mon Sep 17 00:00:00 2001
From: Sha Zhang <zhangsha.zhang at huawei.com>
Date: Mon, 22 May 2017 14:33:37 +0800
Subject: [PATCH] bond: update the NTT flag when partner's state changes from
slow to fast

According to the standard, state machine of lacp should transmit lacpdu
when partner's state changes from slow to fast, rather than from fast to slow.

Signed-off-by: Sha Zhang <zhangsha.zhang at huawei.com>
---
drivers/net/bonding/rte_eth_bond_8023ad.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/bonding/rte_eth_bond_8023ad.c b/drivers/net/bonding/rte_eth_bond_8023ad.c
index 7b863d6..742fd44 100644
--- a/drivers/net/bonding/rte_eth_bond_8023ad.c
+++ b/drivers/net/bonding/rte_eth_bond_8023ad.c
@@ -435,7 +435,7 @@
                                                * In other case (was fast and now it is slow) just switch
                                                * timeout to slow without forcing send of LACP (because standard
                                                * say so)*/
-                                              if (!is_partner_fast)
+                                             if (is_partner_fast)
                                                               SM_FLAG_SET(port, NTT);
                               } else
                                               return; /* Nothing changed */
--
1.8.3.1


More information about the dev mailing list