ipsec: fix combined counters in ah-encrypt node 80/19980/4
authorFilip Tehlar <ftehlar@cisco.com>
Mon, 3 Jun 2019 23:36:10 +0000 (23:36 +0000)
committerDamjan Marion <dmarion@me.com>
Wed, 5 Jun 2019 19:03:48 +0000 (19:03 +0000)
Type: fix
Fixes: 1197449
Change-Id: Icdda3c667ba76542ea3af5d66cc7c3fb10ade1ca
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
src/vnet/ipsec/ah_encrypt.c

index f90267b..1620f87 100644 (file)
@@ -169,12 +169,14 @@ ah_encrypt_inline (vlib_main_t * vm,
 
       if (vnet_buffer (b[0])->ipsec.sad_index != current_sa_index)
        {
+         if (current_sa_index != ~0)
+           vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
+                                            current_sa_index,
+                                            current_sa_pkts,
+                                            current_sa_bytes);
          current_sa_index = vnet_buffer (b[0])->ipsec.sad_index;
          sa0 = pool_elt_at_index (im->sad, current_sa_index);
 
-         vlib_increment_combined_counter (&ipsec_sa_counters, thread_index,
-                                          current_sa_index, current_sa_pkts,
-                                          current_sa_bytes);
          current_sa_bytes = current_sa_pkts = 0;
        }