diff options
author | Steven Luong <sluong@cisco.com> | 2019-10-04 14:18:37 -0700 |
---|---|---|
committer | steven luong <sluong@cisco.com> | 2019-10-05 16:44:23 +0000 |
commit | b0da3eb983ce7e73265c717973fc6004cb5f376e (patch) | |
tree | 7996cbaecd79eaceadf31e9a35ad76e0985c54d9 /src/vnet/bonding | |
parent | 2961dfda406df702606b31b03dd30a1683f92e7c (diff) |
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 <sluong@cisco.com>
Change-Id: I603027f5a7305478f48a102ac8035ffde9102c53
(cherry picked from commit 0471cdbd3fe04a88a8b70b5f0eff0c378e19abf7)
Diffstat (limited to 'src/vnet/bonding')
-rw-r--r-- | src/vnet/bonding/device.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/bonding/device.c b/src/vnet/bonding/device.c index c3ff566681d..ae0cec19221 100644 --- a/src/vnet/bonding/device.c +++ b/src/vnet/bonding/device.c @@ -444,6 +444,7 @@ bond_tx_inline (vlib_main_t * vm, vlib_node_runtime_t * node, n_left -= 1; b += 1; + h += 1; } } |