Home
last modified time | relevance | path

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

/linux-4.19.296/fs/xfs/
Dxfs_stats.h186 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v++; \
187 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v++; \
192 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v--; \
193 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v--; \
198 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v += (inc); \
199 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v += (inc); \
204 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off]++; \
205 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]++; \
210 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off]; \
211 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]; \
[all …]
Dxfs_stats.c111 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT), in xqm_proc_show()
112 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT + 1)); in xqm_proc_show()
123 seq_printf(m, " %u", counter_val(xfsstats.xs_stats, j)); in xqmstat_proc_show()
Dxfs_super.c1634 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats); in xfs_fs_fill_super()
1635 if (!mp->m_stats.xs_stats) { in xfs_fs_fill_super()
1742 free_percpu(mp->m_stats.xs_stats); in xfs_fs_fill_super()
1777 free_percpu(mp->m_stats.xs_stats); in xfs_fs_put_super()
2102 xfsstats.xs_stats = alloc_percpu(struct xfsstats); in init_xfs_fs()
2103 if (!xfsstats.xs_stats) { in init_xfs_fs()
2138 free_percpu(xfsstats.xs_stats); in init_xfs_fs()
2166 free_percpu(xfsstats.xs_stats); in exit_xfs_fs()
Dxfs_linux.h162 struct xfsstats __percpu *xs_stats; member
Dxfs_sysctl.c28 xfs_stats_clearall(xfsstats.xs_stats); in xfs_stats_clear_proc_handler()
Dxfs_sysfs.c218 return xfs_stats_format(stats->xs_stats, buf); in stats_show()
239 xfs_stats_clearall(stats->xs_stats); in stats_clear_store()