Home
last modified time | relevance | path

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

/linux-6.12.1/fs/xfs/
Dxfs_stats.h168 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v++; \
174 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v--; \
180 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v += (inc); \
186 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]++; \
192 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]; \
198 per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off] += (inc); \
Dxfs_mount.c728 error = xfs_sysfs_init(&mp->m_stats.xs_kobj, &xfs_stats_ktype, in xfs_mountfs()
1062 xfs_sysfs_del(&mp->m_stats.xs_kobj); in xfs_mountfs()
1136 xfs_sysfs_del(&mp->m_stats.xs_kobj); in xfs_unmountfs()
Dxfs_super.c1149 free_percpu(mp->m_stats.xs_stats); in xfs_fs_put_super()
1571 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats); in xfs_fs_fill_super()
1572 if (!mp->m_stats.xs_stats) { in xfs_fs_fill_super()
1789 free_percpu(mp->m_stats.xs_stats); in xfs_fs_fill_super()
Dxfs_mount.h221 struct xstats m_stats; /* per-fs stats */ member