DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/bonding: fix bond 8023ad mode enable using wrong index
@ 2017-11-20  7:15 Lilijun (Jerry)
  2017-11-23 16:53 ` Kyle Larose
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Lilijun (Jerry) @ 2017-11-20  7:15 UTC (permalink / raw)
  To: dev, tomaszx.kulasek; +Cc: Zhang, Jerry, Wanghanlin

Hi all,

In the function bond_mode_8023ad_enable(), the var i is to used to as the second parameter to pass the slave dev's dpdk port id to the function bond_mode_8023ad_activate_slave(). 
I think this variable is only a index for array internals->active_slaves. So its need to be fixed and change i to internals->active_slaves[i].


[Patch] net/bonding: fix bond 8023ad mode enable using wrong index.
Signed-off-by: Lilijun <jerry.lilijun@huawei.com>

diff --git a/drivers/net/bonding/rte_eth_bond_8023ad.c b/drivers/net/bonding/rte_eth_bond_8023ad.c
index a2313b3..20a08dc 100644
--- a/drivers/net/bonding/rte_eth_bond_8023ad.c
+++ b/drivers/net/bonding/rte_eth_bond_8023ad.c
@@ -1159,7 +1159,7 @@
        uint8_t i;

        for (i = 0; i < internals->active_slave_count; i++)
-               bond_mode_8023ad_activate_slave(bond_dev, i);
+               bond_mode_8023ad_activate_slave(bond_dev, internals->active_slaves[i]);

        return 0;
}

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-12-15 20:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-20  7:15 [dpdk-dev] [PATCH] net/bonding: fix bond 8023ad mode enable using wrong index Lilijun (Jerry)
2017-11-23 16:53 ` Kyle Larose
2017-11-23 22:56   ` Kyle Larose
2017-11-23 22:57 ` Kyle Larose
2017-12-12 15:58 ` Doherty, Declan
2017-12-15 20:48   ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).