diff options
author | Neale Ranns <nranns@cisco.com> | 2018-09-06 06:22:56 -0700 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2018-09-07 13:35:58 +0000 |
commit | b54d081873ac975e06be2569a17e6150779e3018 (patch) | |
tree | e65062d3e2d3bd941b6cd5b5841eb333e112ef54 /src/vnet/l2/l2_input.c | |
parent | 3b93be5d76cbcb5dc3d3aee5c72a797014a346f9 (diff) |
L2-FIB: replace bit-fields with flags
Change-Id: Ic31da442a0e0477569d53b4a72627bbb25e93365
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/l2/l2_input.c')
-rw-r--r-- | src/vnet/l2/l2_input.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vnet/l2/l2_input.c b/src/vnet/l2/l2_input.c index feab40c2cd3..fd6f9eb462c 100644 --- a/src/vnet/l2/l2_input.c +++ b/src/vnet/l2/l2_input.c @@ -684,7 +684,9 @@ set_int_l2_mode (vlib_main_t * vm, vnet_main_t * vnet_main, /* */ config->bvi = 1; /* create the l2fib entry for the bvi interface */ - l2fib_add_fwd_entry (hi->hw_address, bd_index, sw_if_index, 1, 1); /* static + bvi */ + l2fib_add_entry (hi->hw_address, bd_index, sw_if_index, + L2FIB_ENTRY_RESULT_FLAG_BVI | + L2FIB_ENTRY_RESULT_FLAG_STATIC); /* Disable learning by default. no use since l2fib entry is static. */ config->feature_bitmap &= ~L2INPUT_FEAT_LEARN; |