aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/unix
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2018-07-13 20:12:45 -0400
committerDamjan Marion <dmarion@me.com>2018-07-15 08:51:15 +0000
commit635ec3bdd073101dd513083be4f1edfb64e29098 (patch)
tree5f837acadc4955f07f42da45694ecbe1261ea08c /src/vnet/unix
parent0e6f4d6af4191340a5f542c9eeb0f34dda32e745 (diff)
VPP-1341: fix loopback interface graph arcs
Remove broken special case from l2_input.c:set_int_l2_mode(), which turns out to confuse the graph dispatch engine. The loopback TX function needs to push packets to either ethernet-input or to l2-input, based on bridge / BVI configuration. Rather than overloading a single graph arc - and making vain attempts to reconfigure it - create both arcs and use the correct one. Rewrote the loopback tx function as an idosyncratic multi-arch quad/single loop fn. Change-Id: I15b56ce641d90a11e7b3c7d23859f40e168dd7b2 Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'src/vnet/unix')
-rw-r--r--src/vnet/unix/tapcli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/unix/tapcli.c b/src/vnet/unix/tapcli.c
index 4a5628e34fa..00f093eb067 100644
--- a/src/vnet/unix/tapcli.c
+++ b/src/vnet/unix/tapcli.c
@@ -275,7 +275,7 @@ tapcli_rx_iface (vlib_main_t * vm,
vnet_main_t *vnm;
vnet_sw_interface_t *si;
u8 admin_down;
- u32 next = node->cached_next_index;
+ u32 next = VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT;
u32 n_left_to_next, next_index;
u32 *to_next;