From: Steven Luong Date: Fri, 4 Oct 2019 21:18:37 +0000 (-0700) Subject: bonding: traffic traversing the wrong interface X-Git-Tag: v19.08.2~240 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=8f4fccab9f7614f63dbae6aafd332c5beb71dba4;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 (cherry picked from commit 0471cdbd3fe04a88a8b70b5f0eff0c378e19abf7) --- diff --git a/src/vnet/bonding/device.c b/src/vnet/bonding/device.c index f5470c3ff2d..21bbcb51f1d 100644 --- a/src/vnet/bonding/device.c +++ b/src/vnet/bonding/device.c @@ -449,6 +449,7 @@ bond_tx_inline (vlib_main_t * vm, bond_if_t * bif, vlib_buffer_t ** b, n_left -= 1; b += 1; + h += 1; } }