diff options
author | Steven Luong <sluong@cisco.com> | 2019-10-04 14:18:37 -0700 |
---|---|---|
committer | Steven Luong <sluong@cisco.com> | 2019-10-04 14:20:20 -0700 |
commit | 0471cdbd3fe04a88a8b70b5f0eff0c378e19abf7 (patch) | |
tree | 9fc9f525590826f2b39dedf517ae05963a6e6c82 /src/vnet | |
parent | 0f902cc876d85dadb249443213759fc035537405 (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
Diffstat (limited to 'src/vnet')
-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 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; } } |