blob: ce372b7d5644600ec6e52a23f8ec00584e1f2e9c [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
Alexey Dobriyan361735f2009-08-28 23:55:00 +040032static int xfs_stat_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Christoph Hellwig48776fd2012-03-13 08:52:33 +000034 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 __uint64_t xs_xstrat_bytes = 0;
36 __uint64_t xs_write_bytes = 0;
37 __uint64_t xs_read_bytes = 0;
38
Christoph Hellwig1df84c92006-01-11 15:29:52 +110039 static const struct xstats_entry {
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 char *desc;
41 int endpoint;
42 } xstats[] = {
43 { "extent_alloc", XFSSTAT_END_EXTENT_ALLOC },
44 { "abt", XFSSTAT_END_ALLOC_BTREE },
45 { "blk_map", XFSSTAT_END_BLOCK_MAPPING },
46 { "bmbt", XFSSTAT_END_BLOCK_MAP_BTREE },
47 { "dir", XFSSTAT_END_DIRECTORY_OPS },
48 { "trans", XFSSTAT_END_TRANSACTIONS },
49 { "ig", XFSSTAT_END_INODE_OPS },
50 { "log", XFSSTAT_END_LOG_OPS },
51 { "push_ail", XFSSTAT_END_TAIL_PUSHING },
52 { "xstrat", XFSSTAT_END_WRITE_CONVERT },
53 { "rw", XFSSTAT_END_READ_WRITE_OPS },
54 { "attr", XFSSTAT_END_ATTRIBUTE_OPS },
55 { "icluster", XFSSTAT_END_INODE_CLUSTER },
56 { "vnodes", XFSSTAT_END_VNODE_OPS },
57 { "buf", XFSSTAT_END_BUF },
David Chinner854929f2008-10-30 16:55:03 +110058 { "abtb2", XFSSTAT_END_ABTB_V2 },
59 { "abtc2", XFSSTAT_END_ABTC_V2 },
60 { "bmbt2", XFSSTAT_END_BMBT_V2 },
61 { "ibt2", XFSSTAT_END_IBT_V2 },
Christoph Hellwig48776fd2012-03-13 08:52:33 +000062 /* we print both series of quota information together */
63 { "qm", XFSSTAT_END_QM },
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 };
65
66 /* Loop over all stats groups */
Christoph Hellwig48776fd2012-03-13 08:52:33 +000067 for (i = j = 0; i < ARRAY_SIZE(xstats); i++) {
Alexey Dobriyan361735f2009-08-28 23:55:00 +040068 seq_printf(m, "%s", xstats[i].desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 /* inner loop does each group */
Christoph Hellwig48776fd2012-03-13 08:52:33 +000070 for (; j < xstats[i].endpoint; j++)
71 seq_printf(m, " %u", counter_val(j));
Alexey Dobriyan361735f2009-08-28 23:55:00 +040072 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 }
74 /* extra precision counters */
KAMEZAWA Hiroyuki6f0419e2006-06-23 02:03:00 -070075 for_each_possible_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 xs_xstrat_bytes += per_cpu(xfsstats, i).xs_xstrat_bytes;
77 xs_write_bytes += per_cpu(xfsstats, i).xs_write_bytes;
78 xs_read_bytes += per_cpu(xfsstats, i).xs_read_bytes;
79 }
80
Alexey Dobriyan361735f2009-08-28 23:55:00 +040081 seq_printf(m, "xpc %Lu %Lu %Lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 xs_xstrat_bytes, xs_write_bytes, xs_read_bytes);
Alexey Dobriyan361735f2009-08-28 23:55:00 +040083 seq_printf(m, "debug %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#if defined(DEBUG)
85 1);
86#else
87 0);
88#endif
Alexey Dobriyan361735f2009-08-28 23:55:00 +040089 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Alexey Dobriyan361735f2009-08-28 23:55:00 +040092static int xfs_stat_proc_open(struct inode *inode, struct file *file)
93{
94 return single_open(file, xfs_stat_proc_show, NULL);
95}
96
97static const struct file_operations xfs_stat_proc_fops = {
98 .owner = THIS_MODULE,
99 .open = xfs_stat_proc_open,
100 .read = seq_read,
101 .llseek = seq_lseek,
102 .release = single_release,
103};
104
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000105/* legacy quota interfaces */
106#ifdef CONFIG_XFS_QUOTA
107static int xqm_proc_show(struct seq_file *m, void *v)
108{
109 /* maximum; incore; ratio free to inuse; freelist */
110 seq_printf(m, "%d\t%d\t%d\t%u\n",
111 0,
112 counter_val(XFSSTAT_END_XQMSTAT),
113 0,
114 counter_val(XFSSTAT_END_XQMSTAT + 1));
115 return 0;
116}
117
118static int xqm_proc_open(struct inode *inode, struct file *file)
119{
120 return single_open(file, xqm_proc_show, NULL);
121}
122
123static const struct file_operations xqm_proc_fops = {
124 .owner = THIS_MODULE,
125 .open = xqm_proc_open,
126 .read = seq_read,
127 .llseek = seq_lseek,
128 .release = single_release,
129};
130
131/* legacy quota stats interface no 2 */
132static int xqmstat_proc_show(struct seq_file *m, void *v)
133{
134 int j;
135
136 seq_printf(m, "qm");
137 for (j = XFSSTAT_END_IBT_V2; j < XFSSTAT_END_XQMSTAT; j++)
138 seq_printf(m, " %u", counter_val(j));
139 seq_putc(m, '\n');
140 return 0;
141}
142
143static int xqmstat_proc_open(struct inode *inode, struct file *file)
144{
145 return single_open(file, xqmstat_proc_show, NULL);
146}
147
148static const struct file_operations xqmstat_proc_fops = {
149 .owner = THIS_MODULE,
150 .open = xqmstat_proc_open,
151 .read = seq_read,
152 .llseek = seq_lseek,
153 .release = single_release,
154};
155#endif /* CONFIG_XFS_QUOTA */
156
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000157int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158xfs_init_procfs(void)
159{
160 if (!proc_mkdir("fs/xfs", NULL))
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000161 goto out;
162
Alexey Dobriyan361735f2009-08-28 23:55:00 +0400163 if (!proc_create("fs/xfs/stat", 0, NULL,
164 &xfs_stat_proc_fops))
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000165 goto out_remove_xfs_dir;
166#ifdef CONFIG_XFS_QUOTA
167 if (!proc_create("fs/xfs/xqmstat", 0, NULL,
168 &xqmstat_proc_fops))
169 goto out_remove_stat_file;
170 if (!proc_create("fs/xfs/xqm", 0, NULL,
171 &xqm_proc_fops))
172 goto out_remove_xqmstat_file;
173#endif
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000174 return 0;
175
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000176#ifdef CONFIG_XFS_QUOTA
177 out_remove_xqmstat_file:
178 remove_proc_entry("fs/xfs/xqmstat", NULL);
179 out_remove_stat_file:
180 remove_proc_entry("fs/xfs/stat", NULL);
181#endif
182 out_remove_xfs_dir:
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000183 remove_proc_entry("fs/xfs", NULL);
184 out:
185 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188void
189xfs_cleanup_procfs(void)
190{
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000191#ifdef CONFIG_XFS_QUOTA
192 remove_proc_entry("fs/xfs/xqm", NULL);
193 remove_proc_entry("fs/xfs/xqmstat", NULL);
194#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 remove_proc_entry("fs/xfs/stat", NULL);
196 remove_proc_entry("fs/xfs", NULL);
197}