diff options
author | Neale Ranns <neale@graphiant.com> | 2021-12-20 18:18:42 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-12-21 11:13:41 +0000 |
commit | 53962fbccb4612af41e3fbd913cc50be09d3b24a (patch) | |
tree | b576686d35593d8e20b8f858eed4585ae3e8ff65 /src/vnet/fib/fib_path.h | |
parent | 3aa3d6d3f347784f3df5c164b3078bdc5e80e54a (diff) |
fib: MPLS EOS chains built for attached prefixes should link to a lookup DPO
Type: fix
Presently a local label associated with an attached or connected prefix will link to the glean. This is a problem since it will never use the adj-fibs that are installed for that attached prefix. Instead link the local label to a lookup in the table in which the attached link is bound.
Signed-off-by: Neale Ranns <neale@graphiant.com>
Change-Id: Iad49fb6168b9ba47216a9a52bd262363b49c3c43
Diffstat (limited to 'src/vnet/fib/fib_path.h')
-rw-r--r-- | src/vnet/fib/fib_path.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/fib/fib_path.h b/src/vnet/fib/fib_path.h index c0f76411390..f3442c23dd6 100644 --- a/src/vnet/fib/fib_path.h +++ b/src/vnet/fib/fib_path.h @@ -191,6 +191,7 @@ extern uword fib_path_hash(fib_node_index_t path_index); extern load_balance_path_t * fib_path_append_nh_for_multipath_hash( fib_node_index_t path_index, fib_forward_chain_type_t fct, + dpo_proto_t payload_proto, load_balance_path_t *hash_key); extern void fib_path_stack_mpls_disp(fib_node_index_t path_index, dpo_proto_t payload_proto, @@ -198,6 +199,7 @@ extern void fib_path_stack_mpls_disp(fib_node_index_t path_index, dpo_id_t *dpo); extern void fib_path_contribute_forwarding(fib_node_index_t path_index, fib_forward_chain_type_t type, + dpo_proto_t payload_proto, dpo_id_t *dpo); extern void fib_path_contribute_urpf(fib_node_index_t path_index, index_t urpf); |