Home
last modified time | relevance | path

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

/Linux-v4.19/fs/xfs/
Dxfs_stats.h187 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v++; \
193 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v--; \
199 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v += (inc); \
205 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]++; \
211 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]; \
217 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off] += (inc); \
Dxfs_mount.c758 error = xfs_sysfs_init(&mp->m_stats.xs_kobj, &xfs_stats_ktype, in xfs_mountfs()
1080 xfs_sysfs_del(&mp->m_stats.xs_kobj); in xfs_mountfs()
1184 xfs_sysfs_del(&mp->m_stats.xs_kobj); in xfs_unmountfs()
Dxfs_super.c1627 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats); in xfs_fs_fill_super()
1628 if (!mp->m_stats.xs_stats) { in xfs_fs_fill_super()
1735 free_percpu(mp->m_stats.xs_stats); in xfs_fs_fill_super()
1770 free_percpu(mp->m_stats.xs_stats); in xfs_fs_put_super()
Dxfs_mount.h164 struct xstats m_stats; /* per-fs stats */ member