l2: fix MAC learn counter update on adding MAC entry 32/24232/2
authorJohn Lo <loj@cisco.com>
Tue, 7 Jan 2020 21:35:29 +0000 (16:35 -0500)
committerFlorin Coras <florin.coras@gmail.com>
Wed, 8 Jan 2020 15:17:39 +0000 (15:17 +0000)
Type: fix

Signed-off-by: John Lo <loj@cisco.com>
Change-Id: I711432f589ee4a4527cf795526d3b4031999f71d

src/vnet/l2/l2_fib.c

index 3e71f77..57325af 100644 (file)
@@ -414,6 +414,7 @@ l2fib_add_entry (const u8 * mac, u32 bd_index,
 
   /* set up key */
   key.raw = l2fib_make_key (mac, bd_index);
+  kv.key = key.raw;
 
   /* check if entry already exist */
   if (BV (clib_bihash_search) (&fm->mac_table, &kv, &kv))
@@ -433,7 +434,6 @@ l2fib_add_entry (const u8 * mac, u32 bd_index,
   /* no aging for provisioned entry */
   l2fib_entry_result_set_AGE_NOT (&result);
 
-  kv.key = key.raw;
   kv.value = result.raw;
 
   BV (clib_bihash_add_del) (&fm->mac_table, &kv, 1 /* is_add */ );