Linux Audio

Check our new training course

Loading...
v3.1
 
  1/*
  2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
  3 * All Rights Reserved.
  4 *
  5 * This program is free software; you can redistribute it and/or
  6 * modify it under the terms of the GNU General Public License as
  7 * published by the Free Software Foundation.
  8 *
  9 * This program is distributed in the hope that it would be useful,
 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 12 * GNU General Public License for more details.
 13 *
 14 * You should have received a copy of the GNU General Public License
 15 * along with this program; if not, write the Free Software Foundation,
 16 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 17 */
 18#include "xfs.h"
 19#include <linux/proc_fs.h>
 20
 21DEFINE_PER_CPU(struct xfsstats, xfsstats);
 22
 23static int xfs_stat_proc_show(struct seq_file *m, void *v)
 24{
 25	int		c, i, j, val;
 26	__uint64_t	xs_xstrat_bytes = 0;
 27	__uint64_t	xs_write_bytes = 0;
 28	__uint64_t	xs_read_bytes = 0;
 
 
 
 
 
 
 
 
 
 
 
 29
 30	static const struct xstats_entry {
 31		char	*desc;
 32		int	endpoint;
 33	} xstats[] = {
 34		{ "extent_alloc",	XFSSTAT_END_EXTENT_ALLOC	},
 35		{ "abt",		XFSSTAT_END_ALLOC_BTREE		},
 36		{ "blk_map",		XFSSTAT_END_BLOCK_MAPPING	},
 37		{ "bmbt",		XFSSTAT_END_BLOCK_MAP_BTREE	},
 38		{ "dir",		XFSSTAT_END_DIRECTORY_OPS	},
 39		{ "trans",		XFSSTAT_END_TRANSACTIONS	},
 40		{ "ig",			XFSSTAT_END_INODE_OPS		},
 41		{ "log",		XFSSTAT_END_LOG_OPS		},
 42		{ "push_ail",		XFSSTAT_END_TAIL_PUSHING	},
 43		{ "xstrat",		XFSSTAT_END_WRITE_CONVERT	},
 44		{ "rw",			XFSSTAT_END_READ_WRITE_OPS	},
 45		{ "attr",		XFSSTAT_END_ATTRIBUTE_OPS	},
 46		{ "icluster",		XFSSTAT_END_INODE_CLUSTER	},
 47		{ "vnodes",		XFSSTAT_END_VNODE_OPS		},
 48		{ "buf",		XFSSTAT_END_BUF			},
 49		{ "abtb2",		XFSSTAT_END_ABTB_V2		},
 50		{ "abtc2",		XFSSTAT_END_ABTC_V2		},
 51		{ "bmbt2",		XFSSTAT_END_BMBT_V2		},
 52		{ "ibt2",		XFSSTAT_END_IBT_V2		},
 
 
 
 
 
 53	};
 54
 55	/* Loop over all stats groups */
 56	for (i=j = 0; i < ARRAY_SIZE(xstats); i++) {
 57		seq_printf(m, "%s", xstats[i].desc);
 
 
 58		/* inner loop does each group */
 59		while (j < xstats[i].endpoint) {
 60			val = 0;
 61			/* sum over all cpus */
 62			for_each_possible_cpu(c)
 63				val += *(((__u32*)&per_cpu(xfsstats, c) + j));
 64			seq_printf(m, " %u", val);
 65			j++;
 66		}
 67		seq_putc(m, '\n');
 68	}
 69	/* extra precision counters */
 70	for_each_possible_cpu(i) {
 71		xs_xstrat_bytes += per_cpu(xfsstats, i).xs_xstrat_bytes;
 72		xs_write_bytes += per_cpu(xfsstats, i).xs_write_bytes;
 73		xs_read_bytes += per_cpu(xfsstats, i).xs_read_bytes;
 
 74	}
 75
 76	seq_printf(m, "xpc %Lu %Lu %Lu\n",
 77			xs_xstrat_bytes, xs_write_bytes, xs_read_bytes);
 78	seq_printf(m, "debug %u\n",
 
 
 79#if defined(DEBUG)
 80		1);
 81#else
 82		0);
 83#endif
 84	return 0;
 
 85}
 86
 87static int xfs_stat_proc_open(struct inode *inode, struct file *file)
 88{
 89	return single_open(file, xfs_stat_proc_show, NULL);
 
 
 
 
 
 
 
 
 
 
 
 90}
 91
 92static const struct file_operations xfs_stat_proc_fops = {
 93	.owner		= THIS_MODULE,
 94	.open		= xfs_stat_proc_open,
 95	.read		= seq_read,
 96	.llseek		= seq_lseek,
 97	.release	= single_release,
 98};
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 99
100int
101xfs_init_procfs(void)
102{
103	if (!proc_mkdir("fs/xfs", NULL))
 
 
 
 
104		goto out;
105
106	if (!proc_create("fs/xfs/stat", 0, NULL,
107			 &xfs_stat_proc_fops))
108		goto out_remove_entry;
 
 
 
109	return 0;
110
111 out_remove_entry:
112	remove_proc_entry("fs/xfs", NULL);
113 out:
114	return -ENOMEM;
115}
116
117void
118xfs_cleanup_procfs(void)
119{
120	remove_proc_entry("fs/xfs/stat", NULL);
121	remove_proc_entry("fs/xfs", NULL);
122}
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
  4 * All Rights Reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
  5 */
  6#include "xfs.h"
 
  7
  8struct xstats xfsstats;
  9
 10static int counter_val(struct xfsstats __percpu *stats, int idx)
 11{
 12	int val = 0, cpu;
 13
 14	for_each_possible_cpu(cpu)
 15		val += *(((__u32 *)per_cpu_ptr(stats, cpu) + idx));
 16	return val;
 17}
 18
 19int xfs_stats_format(struct xfsstats __percpu *stats, char *buf)
 20{
 21	int		i, j;
 22	int		len = 0;
 23	uint64_t	xs_xstrat_bytes = 0;
 24	uint64_t	xs_write_bytes = 0;
 25	uint64_t	xs_read_bytes = 0;
 26	uint64_t	defer_relog = 0;
 27
 28	static const struct xstats_entry {
 29		char	*desc;
 30		int	endpoint;
 31	} xstats[] = {
 32		{ "extent_alloc",	xfsstats_offset(xs_abt_lookup)	},
 33		{ "abt",		xfsstats_offset(xs_blk_mapr)	},
 34		{ "blk_map",		xfsstats_offset(xs_bmbt_lookup)	},
 35		{ "bmbt",		xfsstats_offset(xs_dir_lookup)	},
 36		{ "dir",		xfsstats_offset(xs_trans_sync)	},
 37		{ "trans",		xfsstats_offset(xs_ig_attempts)	},
 38		{ "ig",			xfsstats_offset(xs_log_writes)	},
 39		{ "log",		xfsstats_offset(xs_try_logspace)},
 40		{ "push_ail",		xfsstats_offset(xs_xstrat_quick)},
 41		{ "xstrat",		xfsstats_offset(xs_write_calls)	},
 42		{ "rw",			xfsstats_offset(xs_attr_get)	},
 43		{ "attr",		xfsstats_offset(xs_iflush_count)},
 44		{ "icluster",		xfsstats_offset(vn_active)	},
 45		{ "vnodes",		xfsstats_offset(xb_get)		},
 46		{ "buf",		xfsstats_offset(xs_abtb_2)	},
 47		{ "abtb2",		xfsstats_offset(xs_abtc_2)	},
 48		{ "abtc2",		xfsstats_offset(xs_bmbt_2)	},
 49		{ "bmbt2",		xfsstats_offset(xs_ibt_2)	},
 50		{ "ibt2",		xfsstats_offset(xs_fibt_2)	},
 51		{ "fibt2",		xfsstats_offset(xs_rmap_2)	},
 52		{ "rmapbt",		xfsstats_offset(xs_refcbt_2)	},
 53		{ "refcntbt",		xfsstats_offset(xs_qm_dqreclaims)},
 54		/* we print both series of quota information together */
 55		{ "qm",			xfsstats_offset(xs_xstrat_bytes)},
 56	};
 57
 58	/* Loop over all stats groups */
 59
 60	for (i = j = 0; i < ARRAY_SIZE(xstats); i++) {
 61		len += scnprintf(buf + len, PATH_MAX - len, "%s",
 62				xstats[i].desc);
 63		/* inner loop does each group */
 64		for (; j < xstats[i].endpoint; j++)
 65			len += scnprintf(buf + len, PATH_MAX - len, " %u",
 66					counter_val(stats, j));
 67		len += scnprintf(buf + len, PATH_MAX - len, "\n");
 
 
 
 
 
 68	}
 69	/* extra precision counters */
 70	for_each_possible_cpu(i) {
 71		xs_xstrat_bytes += per_cpu_ptr(stats, i)->s.xs_xstrat_bytes;
 72		xs_write_bytes += per_cpu_ptr(stats, i)->s.xs_write_bytes;
 73		xs_read_bytes += per_cpu_ptr(stats, i)->s.xs_read_bytes;
 74		defer_relog += per_cpu_ptr(stats, i)->s.defer_relog;
 75	}
 76
 77	len += scnprintf(buf + len, PATH_MAX-len, "xpc %llu %llu %llu\n",
 78			xs_xstrat_bytes, xs_write_bytes, xs_read_bytes);
 79	len += scnprintf(buf + len, PATH_MAX-len, "defer_relog %llu\n",
 80			defer_relog);
 81	len += scnprintf(buf + len, PATH_MAX-len, "debug %u\n",
 82#if defined(DEBUG)
 83		1);
 84#else
 85		0);
 86#endif
 87
 88	return len;
 89}
 90
 91void xfs_stats_clearall(struct xfsstats __percpu *stats)
 92{
 93	int		c;
 94	uint32_t	vn_active;
 95
 96	xfs_notice(NULL, "Clearing xfsstats");
 97	for_each_possible_cpu(c) {
 98		preempt_disable();
 99		/* save vn_active, it's a universal truth! */
100		vn_active = per_cpu_ptr(stats, c)->s.vn_active;
101		memset(per_cpu_ptr(stats, c), 0, sizeof(*stats));
102		per_cpu_ptr(stats, c)->s.vn_active = vn_active;
103		preempt_enable();
104	}
105}
106
107#ifdef CONFIG_PROC_FS
108/* legacy quota interfaces */
109#ifdef CONFIG_XFS_QUOTA
110
111#define XFSSTAT_START_XQMSTAT xfsstats_offset(xs_qm_dqreclaims)
112#define XFSSTAT_END_XQMSTAT xfsstats_offset(xs_qm_dquot)
113
114static int xqm_proc_show(struct seq_file *m, void *v)
115{
116	/* maximum; incore; ratio free to inuse; freelist */
117	seq_printf(m, "%d\t%d\t%d\t%u\n",
118		   0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT),
119		   0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT + 1));
120	return 0;
121}
122
123/* legacy quota stats interface no 2 */
124static int xqmstat_proc_show(struct seq_file *m, void *v)
125{
126	int j;
127
128	seq_puts(m, "qm");
129	for (j = XFSSTAT_START_XQMSTAT; j < XFSSTAT_END_XQMSTAT; j++)
130		seq_printf(m, " %u", counter_val(xfsstats.xs_stats, j));
131	seq_putc(m, '\n');
132	return 0;
133}
134#endif /* CONFIG_XFS_QUOTA */
135
136int
137xfs_init_procfs(void)
138{
139	if (!proc_mkdir("fs/xfs", NULL))
140		return -ENOMEM;
141
142	if (!proc_symlink("fs/xfs/stat", NULL,
143			  "/sys/fs/xfs/stats/stats"))
144		goto out;
145
146#ifdef CONFIG_XFS_QUOTA
147	if (!proc_create_single("fs/xfs/xqmstat", 0, NULL, xqmstat_proc_show))
148		goto out;
149	if (!proc_create_single("fs/xfs/xqm", 0, NULL, xqm_proc_show))
150		goto out;
151#endif
152	return 0;
153
154out:
155	remove_proc_subtree("fs/xfs", NULL);
 
156	return -ENOMEM;
157}
158
159void
160xfs_cleanup_procfs(void)
161{
162	remove_proc_subtree("fs/xfs", NULL);
 
163}
164#endif /* CONFIG_PROC_FS */