summaryrefslogtreecommitdiffstats
path: root/VNFs/vFW
diff options
context:
space:
mode:
authorDeepak S <deepak.s@linux.intel.com>2017-05-31 18:11:54 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-31 18:11:54 +0000
commit561b7b64c7fb53bcd861eb92631e3f800d7d0ef8 (patch)
tree6fdea573eb35b6129099b93c443db9b1e67c9929 /VNFs/vFW
parent71918b6858fbaf5745fe088403e4c9851af66046 (diff)
parentd77a6c15ee9e899ceb7b46a6d7a4b2a267ef1b13 (diff)
Merge "vFW: Clear the pkt drop count for unsupported type in clearstats cmd"
Diffstat (limited to 'VNFs/vFW')
-rw-r--r--VNFs/vFW/pipeline/pipeline_vfw.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/VNFs/vFW/pipeline/pipeline_vfw.c b/VNFs/vFW/pipeline/pipeline_vfw.c
index 934e442a..f235bc59 100644
--- a/VNFs/vFW/pipeline/pipeline_vfw.c
+++ b/VNFs/vFW/pipeline/pipeline_vfw.c
@@ -2420,6 +2420,7 @@ static void cmd_vfw_clearstats_parsed(__attribute__ ((unused))
rte_vfw_counter_table[i].pkts_drop_ttl = 0;
rte_vfw_counter_table[i].pkts_drop_bad_size = 0;
rte_vfw_counter_table[i].pkts_drop_fragmented = 0;
+ rte_vfw_counter_table[i].pkts_drop_unsupported_type = 0;
rte_vfw_counter_table[i].pkts_drop_without_arp_entry = 0;
rte_vfw_counter_table[i].internal_time_sum = 0;
rte_vfw_counter_table[i].external_time_sum = 0;