diff options
author | Neale Ranns <nranns@cisco.com> | 2018-10-10 15:55:01 +0000 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2018-10-11 13:36:43 +0000 |
commit | d29cc8893e4736f18d0fd21b0407527621886d1a (patch) | |
tree | a4955dfed3ac7eb1cfcd968fbddd02341ed91242 /src/vnet | |
parent | 642829de7958d5cd9c1c88f9845385882a7c211d (diff) |
L2: BM traffic does not use UU-FWD (VPP-1445)
Change-Id: I5495c37da2fb8ff48c4af14ccba021d64eac52b6
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/l2/l2_input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/l2/l2_input.c b/src/vnet/l2/l2_input.c index f94ef668c41..c4f6d6fc0ce 100644 --- a/src/vnet/l2/l2_input.c +++ b/src/vnet/l2/l2_input.c @@ -177,7 +177,8 @@ classify_and_dispatch (l2input_main_t * msm, vlib_buffer_t * b0, u32 * next0) /* Disable bridge forwarding (flooding will execute instead if not xconnect) */ feat_mask &= ~(L2INPUT_FEAT_FWD | - L2INPUT_FEAT_UU_FLOOD | L2INPUT_FEAT_GBP_FWD); + L2INPUT_FEAT_UU_FLOOD | + L2INPUT_FEAT_UU_FWD | L2INPUT_FEAT_GBP_FWD); /* Disable ARP-term for non-ARP and non-ICMP6 packet */ if (ethertype != ETHERNET_TYPE_ARP && |