blob: e19b84a327d117ad9cc45d514955af49b7807da0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
19#include <linux/proc_fs.h>
20
21DEFINE_PER_CPU(struct xfsstats, xfsstats);
22
Christoph Hellwig48776fd2012-03-13 08:52:33 +000023static int counter_val(int idx)
24{
25 int val = 0, cpu;
26
27 for_each_possible_cpu(cpu)
28 val += *(((__u32 *)&per_cpu(xfsstats, cpu) + idx));
29 return val;
30}
31
Bill O'Donnellbb230c12015-10-12 05:15:45 +110032int xfs_stats_format(char *buf)
33{
34 int i, j;
35 int len = 0;
36 __uint64_t xs_xstrat_bytes = 0;
37 __uint64_t xs_write_bytes = 0;
38 __uint64_t xs_read_bytes = 0;
39
40 static const struct xstats_entry {
41 char *desc;
42 int endpoint;
43 } xstats[] = {
44 { "extent_alloc", XFSSTAT_END_EXTENT_ALLOC },
45 { "abt", XFSSTAT_END_ALLOC_BTREE },
46 { "blk_map", XFSSTAT_END_BLOCK_MAPPING },
47 { "bmbt", XFSSTAT_END_BLOCK_MAP_BTREE },
48 { "dir", XFSSTAT_END_DIRECTORY_OPS },
49 { "trans", XFSSTAT_END_TRANSACTIONS },
50 { "ig", XFSSTAT_END_INODE_OPS },
51 { "log", XFSSTAT_END_LOG_OPS },
52 { "push_ail", XFSSTAT_END_TAIL_PUSHING },
53 { "xstrat", XFSSTAT_END_WRITE_CONVERT },
54 { "rw", XFSSTAT_END_READ_WRITE_OPS },
55 { "attr", XFSSTAT_END_ATTRIBUTE_OPS },
56 { "icluster", XFSSTAT_END_INODE_CLUSTER },
57 { "vnodes", XFSSTAT_END_VNODE_OPS },
58 { "buf", XFSSTAT_END_BUF },
59 { "abtb2", XFSSTAT_END_ABTB_V2 },
60 { "abtc2", XFSSTAT_END_ABTC_V2 },
61 { "bmbt2", XFSSTAT_END_BMBT_V2 },
62 { "ibt2", XFSSTAT_END_IBT_V2 },
63 { "fibt2", XFSSTAT_END_FIBT_V2 },
64 /* we print both series of quota information together */
65 { "qm", XFSSTAT_END_QM },
66 };
67
68 /* Loop over all stats groups */
69
70 for (i = j = 0; i < ARRAY_SIZE(xstats); i++) {
71 len += snprintf(buf + len, PATH_MAX - len, "%s",
72 xstats[i].desc);
73 /* inner loop does each group */
74 for (; j < xstats[i].endpoint; j++)
75 len += snprintf(buf + len, PATH_MAX - len, " %u",
76 counter_val(j));
77 len += snprintf(buf + len, PATH_MAX - len, "\n");
78 }
79 /* extra precision counters */
80 for_each_possible_cpu(i) {
81 xs_xstrat_bytes += per_cpu(xfsstats, i).xs_xstrat_bytes;
82 xs_write_bytes += per_cpu(xfsstats, i).xs_write_bytes;
83 xs_read_bytes += per_cpu(xfsstats, i).xs_read_bytes;
84 }
85
86 len += snprintf(buf + len, PATH_MAX-len, "xpc %Lu %Lu %Lu\n",
87 xs_xstrat_bytes, xs_write_bytes, xs_read_bytes);
88 len += snprintf(buf + len, PATH_MAX-len, "debug %u\n",
89#if defined(DEBUG)
90 1);
91#else
92 0);
93#endif
94
95 return len;
96}
97
98void xfs_stats_clearall(void)
99{
100 int c;
101 __uint32_t vn_active;
102
103 xfs_notice(NULL, "Clearing xfsstats");
104 for_each_possible_cpu(c) {
105 preempt_disable();
106 /* save vn_active, it's a universal truth! */
107 vn_active = per_cpu(xfsstats, c).vn_active;
108 memset(&per_cpu(xfsstats, c), 0, sizeof(struct xfsstats));
109 per_cpu(xfsstats, c).vn_active = vn_active;
110 preempt_enable();
111 }
112}
113
Alexey Dobriyan361735f2009-08-28 23:55:00 +0400114static int xfs_stat_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000116 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 __uint64_t xs_xstrat_bytes = 0;
118 __uint64_t xs_write_bytes = 0;
119 __uint64_t xs_read_bytes = 0;
120
Christoph Hellwig1df84c92006-01-11 15:29:52 +1100121 static const struct xstats_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 char *desc;
123 int endpoint;
124 } xstats[] = {
125 { "extent_alloc", XFSSTAT_END_EXTENT_ALLOC },
126 { "abt", XFSSTAT_END_ALLOC_BTREE },
127 { "blk_map", XFSSTAT_END_BLOCK_MAPPING },
128 { "bmbt", XFSSTAT_END_BLOCK_MAP_BTREE },
129 { "dir", XFSSTAT_END_DIRECTORY_OPS },
130 { "trans", XFSSTAT_END_TRANSACTIONS },
131 { "ig", XFSSTAT_END_INODE_OPS },
132 { "log", XFSSTAT_END_LOG_OPS },
133 { "push_ail", XFSSTAT_END_TAIL_PUSHING },
134 { "xstrat", XFSSTAT_END_WRITE_CONVERT },
135 { "rw", XFSSTAT_END_READ_WRITE_OPS },
136 { "attr", XFSSTAT_END_ATTRIBUTE_OPS },
137 { "icluster", XFSSTAT_END_INODE_CLUSTER },
138 { "vnodes", XFSSTAT_END_VNODE_OPS },
139 { "buf", XFSSTAT_END_BUF },
David Chinner854929f2008-10-30 16:55:03 +1100140 { "abtb2", XFSSTAT_END_ABTB_V2 },
141 { "abtc2", XFSSTAT_END_ABTC_V2 },
142 { "bmbt2", XFSSTAT_END_BMBT_V2 },
143 { "ibt2", XFSSTAT_END_IBT_V2 },
Brian Fosteraafc3c22014-04-24 16:00:52 +1000144 { "fibt2", XFSSTAT_END_FIBT_V2 },
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000145 /* we print both series of quota information together */
146 { "qm", XFSSTAT_END_QM },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 };
148
149 /* Loop over all stats groups */
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000150 for (i = j = 0; i < ARRAY_SIZE(xstats); i++) {
Alexey Dobriyan361735f2009-08-28 23:55:00 +0400151 seq_printf(m, "%s", xstats[i].desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 /* inner loop does each group */
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000153 for (; j < xstats[i].endpoint; j++)
154 seq_printf(m, " %u", counter_val(j));
Alexey Dobriyan361735f2009-08-28 23:55:00 +0400155 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157 /* extra precision counters */
KAMEZAWA Hiroyuki6f0419e2006-06-23 02:03:00 -0700158 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 xs_xstrat_bytes += per_cpu(xfsstats, i).xs_xstrat_bytes;
160 xs_write_bytes += per_cpu(xfsstats, i).xs_write_bytes;
161 xs_read_bytes += per_cpu(xfsstats, i).xs_read_bytes;
162 }
163
Alexey Dobriyan361735f2009-08-28 23:55:00 +0400164 seq_printf(m, "xpc %Lu %Lu %Lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 xs_xstrat_bytes, xs_write_bytes, xs_read_bytes);
Alexey Dobriyan361735f2009-08-28 23:55:00 +0400166 seq_printf(m, "debug %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#if defined(DEBUG)
168 1);
169#else
170 0);
171#endif
Alexey Dobriyan361735f2009-08-28 23:55:00 +0400172 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Alexey Dobriyan361735f2009-08-28 23:55:00 +0400175static int xfs_stat_proc_open(struct inode *inode, struct file *file)
176{
177 return single_open(file, xfs_stat_proc_show, NULL);
178}
179
180static const struct file_operations xfs_stat_proc_fops = {
181 .owner = THIS_MODULE,
182 .open = xfs_stat_proc_open,
183 .read = seq_read,
184 .llseek = seq_lseek,
185 .release = single_release,
186};
187
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000188/* legacy quota interfaces */
189#ifdef CONFIG_XFS_QUOTA
190static int xqm_proc_show(struct seq_file *m, void *v)
191{
192 /* maximum; incore; ratio free to inuse; freelist */
193 seq_printf(m, "%d\t%d\t%d\t%u\n",
194 0,
195 counter_val(XFSSTAT_END_XQMSTAT),
196 0,
197 counter_val(XFSSTAT_END_XQMSTAT + 1));
198 return 0;
199}
200
201static int xqm_proc_open(struct inode *inode, struct file *file)
202{
203 return single_open(file, xqm_proc_show, NULL);
204}
205
206static const struct file_operations xqm_proc_fops = {
207 .owner = THIS_MODULE,
208 .open = xqm_proc_open,
209 .read = seq_read,
210 .llseek = seq_lseek,
211 .release = single_release,
212};
213
214/* legacy quota stats interface no 2 */
215static int xqmstat_proc_show(struct seq_file *m, void *v)
216{
217 int j;
218
219 seq_printf(m, "qm");
220 for (j = XFSSTAT_END_IBT_V2; j < XFSSTAT_END_XQMSTAT; j++)
221 seq_printf(m, " %u", counter_val(j));
222 seq_putc(m, '\n');
223 return 0;
224}
225
226static int xqmstat_proc_open(struct inode *inode, struct file *file)
227{
228 return single_open(file, xqmstat_proc_show, NULL);
229}
230
231static const struct file_operations xqmstat_proc_fops = {
232 .owner = THIS_MODULE,
233 .open = xqmstat_proc_open,
234 .read = seq_read,
235 .llseek = seq_lseek,
236 .release = single_release,
237};
238#endif /* CONFIG_XFS_QUOTA */
239
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000240int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241xfs_init_procfs(void)
242{
243 if (!proc_mkdir("fs/xfs", NULL))
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000244 goto out;
245
Alexey Dobriyan361735f2009-08-28 23:55:00 +0400246 if (!proc_create("fs/xfs/stat", 0, NULL,
247 &xfs_stat_proc_fops))
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000248 goto out_remove_xfs_dir;
249#ifdef CONFIG_XFS_QUOTA
250 if (!proc_create("fs/xfs/xqmstat", 0, NULL,
251 &xqmstat_proc_fops))
252 goto out_remove_stat_file;
253 if (!proc_create("fs/xfs/xqm", 0, NULL,
254 &xqm_proc_fops))
255 goto out_remove_xqmstat_file;
256#endif
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000257 return 0;
258
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000259#ifdef CONFIG_XFS_QUOTA
260 out_remove_xqmstat_file:
261 remove_proc_entry("fs/xfs/xqmstat", NULL);
262 out_remove_stat_file:
263 remove_proc_entry("fs/xfs/stat", NULL);
264#endif
265 out_remove_xfs_dir:
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000266 remove_proc_entry("fs/xfs", NULL);
267 out:
268 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271void
272xfs_cleanup_procfs(void)
273{
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000274#ifdef CONFIG_XFS_QUOTA
275 remove_proc_entry("fs/xfs/xqm", NULL);
276 remove_proc_entry("fs/xfs/xqmstat", NULL);
277#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 remove_proc_entry("fs/xfs/stat", NULL);
279 remove_proc_entry("fs/xfs", NULL);
280}