diff options
author | Deepak S <deepak.s@linux.intel.com> | 2017-05-31 18:11:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-31 18:11:54 +0000 |
commit | 561b7b64c7fb53bcd861eb92631e3f800d7d0ef8 (patch) | |
tree | 6fdea573eb35b6129099b93c443db9b1e67c9929 | |
parent | 71918b6858fbaf5745fe088403e4c9851af66046 (diff) | |
parent | d77a6c15ee9e899ceb7b46a6d7a4b2a267ef1b13 (diff) |
Merge "vFW: Clear the pkt drop count for unsupported type in clearstats cmd"
-rw-r--r-- | VNFs/vFW/pipeline/pipeline_vfw.c | 1 |
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; |