Home
last modified time | relevance | path

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

/fs/xfs/
Dxfs_stats.h254 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->v++; \
255 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->v++; \
260 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->v--; \
261 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->v--; \
266 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->v += (inc); \
267 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->v += (inc); \
Dxfs_stats.c122 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT), in xqm_proc_show()
123 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT + 1)); in xqm_proc_show()
146 seq_printf(m, " %u", counter_val(xfsstats.xs_stats, j)); in xqmstat_proc_show()
Dxfs_super.c1579 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats); in xfs_fs_fill_super()
1580 if (!mp->m_stats.xs_stats) { in xfs_fs_fill_super()
1669 free_percpu(mp->m_stats.xs_stats); in xfs_fs_fill_super()
1699 free_percpu(mp->m_stats.xs_stats); in xfs_fs_put_super()
2018 xfsstats.xs_stats = alloc_percpu(struct xfsstats); in init_xfs_fs()
2019 if (!xfsstats.xs_stats) { in init_xfs_fs()
2054 free_percpu(xfsstats.xs_stats); in init_xfs_fs()
2082 free_percpu(xfsstats.xs_stats); in exit_xfs_fs()
Dxfs_sysfs.c208 return xfs_stats_format(stats->xs_stats, buf); in stats_show()
229 xfs_stats_clearall(stats->xs_stats); in stats_clear_store()
Dxfs_sysctl.c40 xfs_stats_clearall(xfsstats.xs_stats); in xfs_stats_clear_proc_handler()
Dxfs_linux.h176 struct xfsstats __percpu *xs_stats; member