Remove unused members from ip4_fib_t 41/13341/2
authorNeale Ranns <neale.ranns@cisco.com>
Wed, 4 Jul 2018 06:29:49 +0000 (23:29 -0700)
committerMarco Varlese <marco.varlese@suse.de>
Wed, 4 Jul 2018 08:43:46 +0000 (08:43 +0000)
Change-Id: I8b92652d512bad5d774c7862f9808c306bbeff18
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
src/vnet/fib/ip4_fib.c
src/vnet/fib/ip4_fib.h

index 4ab6b1b..a3cb682 100644 (file)
@@ -129,8 +129,6 @@ ip4_create_fib_with_table_id (u32 table_id,
        v4_fib->table_id =
            table_id;
     fib_table->ft_flow_hash_config = IP_FLOW_HASH_DEFAULT;
-    v4_fib->fwd_classify_table_index = ~0;
-    v4_fib->rev_classify_table_index = ~0;
     
     fib_table_lock(fib_table->ft_index, FIB_PROTOCOL_IP4, src);
 
index 7fc2d3f..ff00b41 100644 (file)
@@ -38,6 +38,9 @@
 
 typedef struct ip4_fib_t_
 {
+  /** Required for pool_get_aligned */
+  CLIB_CACHE_LINE_ALIGN_MARK(cacheline0);
+
   /**
    * Mtrie for fast lookups. Hash is used to maintain overlapping prefixes.
    * First member so it's in the first cacheline.
@@ -52,13 +55,6 @@ typedef struct ip4_fib_t_
 
   /* Index into FIB vector. */
   u32 index;
-
-  /* N-tuple classifier indices */
-  u32 fwd_classify_table_index;
-  u32 rev_classify_table_index;
-
-  /* Required for pool_get_aligned */
-  CLIB_CACHE_LINE_ALIGN_MARK(cacheline0);
 } ip4_fib_t;
 
 extern fib_node_index_t ip4_fib_table_lookup(const ip4_fib_t *fib,