From 0471cdbd3fe04a88a8b70b5f0eff0c378e19abf7 Mon Sep 17 00:00:00 2001 From: Steven Luong Date: Fri, 4 Oct 2019 14:18:37 -0700 Subject: bonding: traffic traversing the wrong interface Missing an increment in the while loop. Hashes not stored in the array. Type: fix Signed-off-by: Steven Luong Change-Id: I603027f5a7305478f48a102ac8035ffde9102c53 --- src/vnet/bonding/device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vnet/bonding/device.c b/src/vnet/bonding/device.c index a3be0e33841..bcd7e586a2d 100644 --- a/src/vnet/bonding/device.c +++ b/src/vnet/bonding/device.c @@ -455,6 +455,7 @@ bond_tx_inline (vlib_main_t * vm, vlib_node_runtime_t * node, n_left -= 1; b += 1; + h += 1; } } -- cgit 1.2.3-korg