Commit 1e0303fd authored by Jacob Keller's avatar Jacob Keller Committed by Jeff Kirsher
Browse files

i40e: reset veb.tc_stats when resetting veb.stats



The stats structure for the VEB switch statistics is reset periodically,
but the tc_stats are not reset at the same time.

Signed-off-by: default avatarJacob Keller <jacob.e.keller@intel.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent f93b3fd9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -534,6 +534,10 @@ void i40e_pf_reset_stats(struct i40e_pf *pf)
			       sizeof(pf->veb[i]->stats));
			memset(&pf->veb[i]->stats_offsets, 0,
			       sizeof(pf->veb[i]->stats_offsets));
			memset(&pf->veb[i]->tc_stats, 0,
			       sizeof(pf->veb[i]->tc_stats));
			memset(&pf->veb[i]->tc_stats_offsets, 0,
			       sizeof(pf->veb[i]->tc_stats_offsets));
			pf->veb[i]->stat_offsets_loaded = false;
		}
	}