diff options
author | Neale Ranns <nranns@cisco.com> | 2017-05-30 09:53:52 -0700 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-06-01 17:15:44 +0000 |
commit | c2aad53aa5430137ac5a76a8746f11604277835a (patch) | |
tree | 869340b20ecee5d88d8ebac60540fe927c02e34e /src/vnet/mfib/mfib_entry.h | |
parent | 10d8cc6bf92851fcaec4a6b4c6d3554dc1eb2386 (diff) |
IP Mcast - recalculate on interface up/dowm
Change-Id: Ie5b88fd7187ed62218a2e4e0e493c33e3e9ecc2f
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/mfib/mfib_entry.h')
-rw-r--r-- | src/vnet/mfib/mfib_entry.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/vnet/mfib/mfib_entry.h b/src/vnet/mfib/mfib_entry.h index 4f62b18ec65..d4377878a2c 100644 --- a/src/vnet/mfib/mfib_entry.h +++ b/src/vnet/mfib/mfib_entry.h @@ -49,6 +49,16 @@ typedef struct mfib_entry_t_ { struct mfib_entry_src_t_ *mfe_srcs; /** + * The path-list of which this entry is a child + */ + fib_node_index_t mfe_pl; + + /** + * The sibling index on the path-list + */ + u32 mfe_sibling; + + /** * 2nd cache line has the members used in the data plane */ CLIB_CACHE_LINE_ALIGN_MARK(cacheline1); |