diff options
author | Neale Ranns <nranns@cisco.com> | 2019-03-26 07:02:58 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-03-26 16:33:28 +0000 |
commit | 4c3ba81709bab8f9fcdef650e7f742fe9ddbae32 (patch) | |
tree | fb8dba665f570749b785bd5dc76dfce317367fca /src/vnet/gre/gre.h | |
parent | af3f0783b0ef189d54bb8fdf0a112347a420e9bb (diff) |
ADJ: midchain delegate to performing stacking
this can be used by e.g. tunnels so it doesn't need to be
implemented for each tunnel type.
Change-Id: I0790f89aa49f83421612b35108cce67693285999
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/gre/gre.h')
-rw-r--r-- | src/vnet/gre/gre.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/vnet/gre/gre.h b/src/vnet/gre/gre.h index 416ab300877..a1a03dfb535 100644 --- a/src/vnet/gre/gre.h +++ b/src/vnet/gre/gre.h @@ -181,11 +181,6 @@ typedef struct CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); /** - * Linkage into the FIB object graph - */ - fib_node_t node; - - /** * The hash table's key stored in separate memory since the tunnel_t * memory can realloc. */ @@ -208,19 +203,6 @@ typedef struct gre_tunnel_type_t type; /** - * The FIB entry sourced by the tunnel for its destination prefix - */ - fib_node_index_t fib_entry_index; - - /** - * The tunnel is a child of the FIB entry for its desintion. This is - * so it receives updates when the forwarding information for that entry - * changes. - * The tunnels sibling index on the FIB entry's dependency list. - */ - u32 sibling_index; - - /** * an L2 tunnel always rquires an L2 midchain. cache here for DP. */ adj_index_t l2_adj_index; |