Home
last modified time | relevance | path

Searched refs:perfmgr_mad_stats (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_perfmgr.c82 } perfmgr_mad_stats = { variable
89 if (new < perfmgr_mad_stats.fastest_us) in update_mad_stats()
90 perfmgr_mad_stats.fastest_us = new; in update_mad_stats()
91 if (new > perfmgr_mad_stats.slowest_us) in update_mad_stats()
92 perfmgr_mad_stats.slowest_us = new; in update_mad_stats()
94 perfmgr_mad_stats.avg_us = in update_mad_stats()
95 ((perfmgr_mad_stats.avg_us * perfmgr_mad_stats.num) + new) in update_mad_stats()
96 / (perfmgr_mad_stats.num + 1); in update_mad_stats()
97 perfmgr_mad_stats.num++; in update_mad_stats()
102 perfmgr_mad_stats.fastest_us = DBL_MAX; in clear_mad_stats()
[all …]