diff options
author | Benoît Ganne <bganne@cisco.com> | 2019-07-17 14:47:23 +0200 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-07-28 14:24:29 +0000 |
commit | 99c358d62ab5106c710da23c563cd1b529a68f5a (patch) | |
tree | a5e6caca1de068ddbff136d5a7bf3b01cb790601 /src/vnet/fib/fib_entry_src.h | |
parent | 3cf9e67f5963e5f317e849892a6ec55be70a782d (diff) |
fib: add invalid source type and fix debug log
Add the FIB_SOURCE_INVALID fib source type. This allows to spot
uninitialized fib source more easily (0 no longer means special) and we
can use it as placeholder when no source is present.
Use it to fix FIB_ENTRY_DBG() which was accessing the 1st source, even
when no sources were present.
Type: fix
Fixes: 710071bf0e
Change-Id: I980b6a6a07616d4a8d6f2db166a1dd335721c74d
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/vnet/fib/fib_entry_src.h')
-rw-r--r-- | src/vnet/fib/fib_entry_src.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vnet/fib/fib_entry_src.h b/src/vnet/fib/fib_entry_src.h index 1d5f252eb87..a859b9c734a 100644 --- a/src/vnet/fib/fib_entry_src.h +++ b/src/vnet/fib/fib_entry_src.h @@ -33,9 +33,9 @@ extern vlib_log_class_t fib_entry_logger; format_fib_prefix, \ &_e->fe_prefix, \ format_fib_entry_flags, \ - _e->fe_srcs[0].fes_entry_flags, \ + fib_entry_get_flags_i(_e), \ format_fib_source, \ - _e->fe_srcs[0].fes_src, \ + fib_entry_get_source_i(_e), \ ##_args); \ } @@ -316,6 +316,7 @@ extern void fib_entry_src_inherit (const fib_entry_t *cover, extern fib_forward_chain_type_t fib_entry_get_default_chain_type( const fib_entry_t *fib_entry); +extern fib_source_t fib_entry_get_source_i(const fib_entry_t *fib_entry); extern fib_entry_flag_t fib_entry_get_flags_i(const fib_entry_t *fib_entry); extern fib_path_list_flags_t fib_entry_src_flags_2_path_list_flags( |