Searched refs:xfsstats (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/fs/xfs/ |
D | xfs_stats.c | 21 struct xstats xfsstats; variable 23 static int counter_val(struct xfsstats __percpu *stats, int idx) in counter_val() 32 int xfs_stats_format(struct xfsstats __percpu *stats, char *buf) in xfs_stats_format() 98 void xfs_stats_clearall(struct xfsstats __percpu *stats) in xfs_stats_clearall() 120 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT), in xqm_proc_show() 121 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()
|
D | xfs_stats.h | 27 struct xfsstats { struct 216 int xfs_stats_format(struct xfsstats __percpu *stats, char *buf); argument 217 void xfs_stats_clearall(struct xfsstats __percpu *stats); 218 extern struct xstats xfsstats; 222 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->v++; \ 228 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->v--; \ 234 per_cpu_ptr(xfsstats.xs_stats, current_cpu())->v += (inc); \
|
D | xfs_super.c | 1489 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats); in xfs_fs_fill_super() 1865 xfsstats.xs_kobj.kobject.kset = xfs_kset; in init_xfs_fs() 1867 xfsstats.xs_stats = alloc_percpu(struct xfsstats); in init_xfs_fs() 1868 if (!xfsstats.xs_stats) { in init_xfs_fs() 1873 error = xfs_sysfs_init(&xfsstats.xs_kobj, &xfs_stats_ktype, NULL, in init_xfs_fs() 1901 xfs_sysfs_del(&xfsstats.xs_kobj); in init_xfs_fs() 1903 free_percpu(xfsstats.xs_stats); in init_xfs_fs() 1930 xfs_sysfs_del(&xfsstats.xs_kobj); in exit_xfs_fs() 1931 free_percpu(xfsstats.xs_stats); in exit_xfs_fs()
|
D | xfs_linux.h | 175 struct xfsstats __percpu *xs_stats; 179 extern struct xstats xfsstats;
|
D | xfs_sysctl.c | 40 xfs_stats_clearall(xfsstats.xs_stats); in xfs_stats_clear_proc_handler()
|