blob: 1cc79907b377329cce913c6c59823d9d05e1e029 [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
Bill O'Donnell80529c42015-10-12 05:19:45 +110021struct xstats xfsstats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Bill O'Donnell80529c42015-10-12 05:19:45 +110023static int counter_val(struct xfsstats __percpu *stats, int idx)
Christoph Hellwig48776fd2012-03-13 08:52:33 +000024{
25 int val = 0, cpu;
26
27 for_each_possible_cpu(cpu)
Bill O'Donnell80529c42015-10-12 05:19:45 +110028 val += *(((__u32 *)per_cpu_ptr(stats, cpu) + idx));
Christoph Hellwig48776fd2012-03-13 08:52:33 +000029 return val;
30}
31
Bill O'Donnell80529c42015-10-12 05:19:45 +110032int xfs_stats_format(struct xfsstats __percpu *stats, char *buf)
Bill O'Donnellbb230c12015-10-12 05:15:45 +110033{
34 int i, j;
35 int len = 0;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -070036 uint64_t xs_xstrat_bytes = 0;
37 uint64_t xs_write_bytes = 0;
38 uint64_t xs_read_bytes = 0;
Bill O'Donnellbb230c12015-10-12 05:15:45 +110039
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 },
Darrick J. Wong00f4e4f2016-08-03 11:31:11 +100064 { "rmapbt", XFSSTAT_END_RMAP_V2 },
Darrick J. Wong46eeb522016-10-03 09:11:16 -070065 { "refcntbt", XFSSTAT_END_REFCOUNT },
Bill O'Donnellbb230c12015-10-12 05:15:45 +110066 /* we print both series of quota information together */
67 { "qm", XFSSTAT_END_QM },
68 };
69
70 /* Loop over all stats groups */
71
72 for (i = j = 0; i < ARRAY_SIZE(xstats); i++) {
73 len += snprintf(buf + len, PATH_MAX - len, "%s",
74 xstats[i].desc);
75 /* inner loop does each group */
76 for (; j < xstats[i].endpoint; j++)
77 len += snprintf(buf + len, PATH_MAX - len, " %u",
Bill O'Donnell80529c42015-10-12 05:19:45 +110078 counter_val(stats, j));
Bill O'Donnellbb230c12015-10-12 05:15:45 +110079 len += snprintf(buf + len, PATH_MAX - len, "\n");
80 }
81 /* extra precision counters */
82 for_each_possible_cpu(i) {
Dave Chinner11ef38a2016-12-05 14:38:58 +110083 xs_xstrat_bytes += per_cpu_ptr(stats, i)->s.xs_xstrat_bytes;
84 xs_write_bytes += per_cpu_ptr(stats, i)->s.xs_write_bytes;
85 xs_read_bytes += per_cpu_ptr(stats, i)->s.xs_read_bytes;
Bill O'Donnellbb230c12015-10-12 05:15:45 +110086 }
87
88 len += snprintf(buf + len, PATH_MAX-len, "xpc %Lu %Lu %Lu\n",
89 xs_xstrat_bytes, xs_write_bytes, xs_read_bytes);
90 len += snprintf(buf + len, PATH_MAX-len, "debug %u\n",
91#if defined(DEBUG)
92 1);
93#else
94 0);
95#endif
96
97 return len;
98}
99
Bill O'Donnell80529c42015-10-12 05:19:45 +1100100void xfs_stats_clearall(struct xfsstats __percpu *stats)
Bill O'Donnellbb230c12015-10-12 05:15:45 +1100101{
102 int c;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700103 uint32_t vn_active;
Bill O'Donnellbb230c12015-10-12 05:15:45 +1100104
105 xfs_notice(NULL, "Clearing xfsstats");
106 for_each_possible_cpu(c) {
107 preempt_disable();
108 /* save vn_active, it's a universal truth! */
Dave Chinner11ef38a2016-12-05 14:38:58 +1100109 vn_active = per_cpu_ptr(stats, c)->s.vn_active;
Bill O'Donnell80529c42015-10-12 05:19:45 +1100110 memset(per_cpu_ptr(stats, c), 0, sizeof(*stats));
Dave Chinner11ef38a2016-12-05 14:38:58 +1100111 per_cpu_ptr(stats, c)->s.vn_active = vn_active;
Bill O'Donnellbb230c12015-10-12 05:15:45 +1100112 preempt_enable();
113 }
114}
115
Arnd Bergmann5ef03db2018-05-25 17:16:04 +0200116#ifdef CONFIG_PROC_FS
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000117/* legacy quota interfaces */
118#ifdef CONFIG_XFS_QUOTA
119static int xqm_proc_show(struct seq_file *m, void *v)
120{
121 /* maximum; incore; ratio free to inuse; freelist */
122 seq_printf(m, "%d\t%d\t%d\t%u\n",
Bill O'Donnell80529c42015-10-12 05:19:45 +1100123 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT),
124 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT + 1));
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000125 return 0;
126}
127
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000128/* legacy quota stats interface no 2 */
129static int xqmstat_proc_show(struct seq_file *m, void *v)
130{
131 int j;
132
133 seq_printf(m, "qm");
134 for (j = XFSSTAT_END_IBT_V2; j < XFSSTAT_END_XQMSTAT; j++)
Bill O'Donnell80529c42015-10-12 05:19:45 +1100135 seq_printf(m, " %u", counter_val(xfsstats.xs_stats, j));
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000136 seq_putc(m, '\n');
137 return 0;
138}
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000139#endif /* CONFIG_XFS_QUOTA */
140
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000141int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142xfs_init_procfs(void)
143{
144 if (!proc_mkdir("fs/xfs", NULL))
Eric Sandeen9e920542015-10-12 18:21:22 +1100145 return -ENOMEM;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000146
Bill O'Donnell32f0ea02015-10-12 05:16:45 +1100147 if (!proc_symlink("fs/xfs/stat", NULL,
148 "/sys/fs/xfs/stats/stats"))
Eric Sandeen9e920542015-10-12 18:21:22 +1100149 goto out;
Bill O'Donnell32f0ea02015-10-12 05:16:45 +1100150
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000151#ifdef CONFIG_XFS_QUOTA
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200152 if (!proc_create_single("fs/xfs/xqmstat", 0, NULL, xqmstat_proc_show))
Eric Sandeen9e920542015-10-12 18:21:22 +1100153 goto out;
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200154 if (!proc_create_single("fs/xfs/xqm", 0, NULL, xqm_proc_show))
Eric Sandeen9e920542015-10-12 18:21:22 +1100155 goto out;
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000156#endif
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000157 return 0;
158
Eric Sandeen9e920542015-10-12 18:21:22 +1100159out:
160 remove_proc_subtree("fs/xfs", NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000161 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164void
165xfs_cleanup_procfs(void)
166{
Eric Sandeen9e920542015-10-12 18:21:22 +1100167 remove_proc_subtree("fs/xfs", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
Dave Chinner985ef4d2015-10-19 08:42:46 +1100169#endif /* CONFIG_PROC_FS */