mirror of https://gitee.com/openkylin/linux.git
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: Jacob Keller <jacob.e.keller@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
f93b3fd9a3
commit
1e0303fd29
|
@ -534,6 +534,10 @@ void i40e_pf_reset_stats(struct i40e_pf *pf)
|
||||||
sizeof(pf->veb[i]->stats));
|
sizeof(pf->veb[i]->stats));
|
||||||
memset(&pf->veb[i]->stats_offsets, 0,
|
memset(&pf->veb[i]->stats_offsets, 0,
|
||||||
sizeof(pf->veb[i]->stats_offsets));
|
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;
|
pf->veb[i]->stat_offsets_loaded = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue