From: Steven Luong Date: Fri, 4 Oct 2019 21:18:37 +0000 (-0700) Subject: bonding: traffic traversing the wrong interface X-Git-Tag: v19.04.3~7 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F48%2F22548%2F1;p=vpp.git 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 --- 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; } }