Searched refs:xfsstats (Results 1 – 5 of 5) sorted by relevance
/fs/xfs/ |
D | xfs_stats.h | 144 struct xfsstats { struct 158 int xfs_stats_format(struct xfsstats __percpu *stats, char *buf); argument 159 void xfs_stats_clearall(struct xfsstats __percpu *stats); 160 extern struct xstats xfsstats; 164 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v++; \ 170 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v--; \ 176 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v += (inc); \ 182 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off]++; \ 188 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off]; \ 194 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off] += (inc); \
|
D | xfs_stats.c | 8 struct xstats xfsstats; variable 10 static int counter_val(struct xfsstats __percpu *stats, int idx) in counter_val() 19 int xfs_stats_format(struct xfsstats __percpu *stats, char *buf) in xfs_stats_format() 87 void xfs_stats_clearall(struct xfsstats __percpu *stats) in xfs_stats_clearall() 114 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT), in xqm_proc_show() 115 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT + 1)); in xqm_proc_show() 126 seq_printf(m, " %u", counter_val(xfsstats.xs_stats, j)); in xqmstat_proc_show()
|
D | xfs_linux.h | 160 struct xfsstats __percpu *xs_stats; 164 extern struct xstats xfsstats;
|
D | xfs_super.c | 1635 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats); in xfs_fs_fill_super() 2107 xfsstats.xs_kobj.kobject.kset = xfs_kset; in init_xfs_fs() 2109 xfsstats.xs_stats = alloc_percpu(struct xfsstats); in init_xfs_fs() 2110 if (!xfsstats.xs_stats) { in init_xfs_fs() 2115 error = xfs_sysfs_init(&xfsstats.xs_kobj, &xfs_stats_ktype, NULL, in init_xfs_fs() 2143 xfs_sysfs_del(&xfsstats.xs_kobj); in init_xfs_fs() 2145 free_percpu(xfsstats.xs_stats); in init_xfs_fs() 2172 xfs_sysfs_del(&xfsstats.xs_kobj); in exit_xfs_fs() 2173 free_percpu(xfsstats.xs_stats); in exit_xfs_fs()
|
D | xfs_sysctl.c | 25 xfs_stats_clearall(xfsstats.xs_stats); in xfs_stats_clear_proc_handler()
|