mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 11:36:41 +07:00
i40e: clear VEB stats when pf stats are cleared
The VEB really is part of the whole PF and should be cleared at the same time. Change-ID: Ia1d4d1df5cf421f2578a22486650dd256cc4617a Signed-off-by: Shannon Nelson <shannon.nelson@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
b5d06f058b
commit
e91fdf7666
@ -444,9 +444,21 @@ void i40e_vsi_reset_stats(struct i40e_vsi *vsi)
|
||||
**/
|
||||
void i40e_pf_reset_stats(struct i40e_pf *pf)
|
||||
{
|
||||
int i;
|
||||
|
||||
memset(&pf->stats, 0, sizeof(pf->stats));
|
||||
memset(&pf->stats_offsets, 0, sizeof(pf->stats_offsets));
|
||||
pf->stat_offsets_loaded = false;
|
||||
|
||||
for (i = 0; i < I40E_MAX_VEB; i++) {
|
||||
if (pf->veb[i]) {
|
||||
memset(&pf->veb[i]->stats, 0,
|
||||
sizeof(pf->veb[i]->stats));
|
||||
memset(&pf->veb[i]->stats_offsets, 0,
|
||||
sizeof(pf->veb[i]->stats_offsets));
|
||||
pf->veb[i]->stat_offsets_loaded = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user