Home
last modified time | relevance | path

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

/linux/fs/xfs/
H A Dxfs_stats.h177 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v++; \
178 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v++; \
183 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v--; \
184 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v--; \
189 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v += (inc); \
190 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v += (inc); \
195 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off]++; \
196 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]++; \
201 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off]; \
202 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]; \
[all …]
H A Dxfs_stats.c132 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT), in xqm_proc_show()
133 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT + 1), in xqm_proc_show()
145 seq_printf(m, " %u", counter_val(xfsstats.xs_stats, j)); in xqmstat_proc_show()
H A Dxfs_super.c1230 free_percpu(mp->m_stats.xs_stats); in xfs_fs_put_super()
1728 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats); in xfs_fs_fill_super()
1729 if (!mp->m_stats.xs_stats) { in xfs_fs_fill_super()
1964 free_percpu(mp->m_stats.xs_stats); in xfs_fs_fill_super()
2635 xfsstats.xs_stats = alloc_percpu(struct xfsstats); in init_xfs_fs()
2636 if (!xfsstats.xs_stats) { in init_xfs_fs()
2677 free_percpu(xfsstats.xs_stats); in init_xfs_fs()
2705 free_percpu(xfsstats.xs_stats); in exit_xfs_fs()
H A Dxfs_platform.h165 struct xfsstats __percpu *xs_stats; member