Home
last modified time | relevance | path

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

/openbmc/linux/drivers/misc/sgi-gru/
H A Dgruhandles.c28 struct mcs_op_statistic mcs_op_statistics[mcsop_last]; variable
35 atomic_long_inc(&mcs_op_statistics[op].count); in update_mcs_stats()
36 atomic_long_add(nsec, &mcs_op_statistics[op].total); in update_mcs_stats()
37 if (mcs_op_statistics[op].max < nsec) in update_mcs_stats()
38 mcs_op_statistics[op].max = nsec; in update_mcs_stats()
H A Dgruprocfs.c124 count = atomic_long_read(&mcs_op_statistics[op].count); in mcs_statistics_show()
125 total = atomic_long_read(&mcs_op_statistics[op].total); in mcs_statistics_show()
126 max = mcs_op_statistics[op].max; in mcs_statistics_show()
136 memset(mcs_op_statistics, 0, sizeof(mcs_op_statistics)); in mcs_statistics_write()
H A Dgrutables.h248 extern struct mcs_op_statistic mcs_op_statistics[mcsop_last];