blob: cc509743facd8ddfedc6c8946446f515a79dfb69 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
7#include <linux/proc_fs.h>
8
Bill O'Donnell80529c42015-10-12 05:19:45 +11009struct xstats xfsstats;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Bill O'Donnell80529c42015-10-12 05:19:45 +110011static int counter_val(struct xfsstats __percpu *stats, int idx)
Christoph Hellwig48776fd2012-03-13 08:52:33 +000012{
13 int val = 0, cpu;
14
15 for_each_possible_cpu(cpu)
Bill O'Donnell80529c42015-10-12 05:19:45 +110016 val += *(((__u32 *)per_cpu_ptr(stats, cpu) + idx));
Christoph Hellwig48776fd2012-03-13 08:52:33 +000017 return val;
18}
19
Bill O'Donnell80529c42015-10-12 05:19:45 +110020int xfs_stats_format(struct xfsstats __percpu *stats, char *buf)
Bill O'Donnellbb230c12015-10-12 05:15:45 +110021{
22 int i, j;
23 int len = 0;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -070024 uint64_t xs_xstrat_bytes = 0;
25 uint64_t xs_write_bytes = 0;
26 uint64_t xs_read_bytes = 0;
Bill O'Donnellbb230c12015-10-12 05:15:45 +110027
28 static const struct xstats_entry {
29 char *desc;
30 int endpoint;
31 } xstats[] = {
Carlos Maiolino26ca3902018-10-18 17:21:39 +110032 { "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)},
Bill O'Donnellbb230c12015-10-12 05:15:45 +110054 /* we print both series of quota information together */
Carlos Maiolino26ca3902018-10-18 17:21:39 +110055 { "qm", xfsstats_offset(xs_xstrat_bytes)},
Bill O'Donnellbb230c12015-10-12 05:15:45 +110056 };
57
58 /* Loop over all stats groups */
59
60 for (i = j = 0; i < ARRAY_SIZE(xstats); i++) {
61 len += snprintf(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 += snprintf(buf + len, PATH_MAX - len, " %u",
Bill O'Donnell80529c42015-10-12 05:19:45 +110066 counter_val(stats, j));
Bill O'Donnellbb230c12015-10-12 05:15:45 +110067 len += snprintf(buf + len, PATH_MAX - len, "\n");
68 }
69 /* extra precision counters */
70 for_each_possible_cpu(i) {
Dave Chinner11ef38a2016-12-05 14:38:58 +110071 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;
Bill O'Donnellbb230c12015-10-12 05:15:45 +110074 }
75
76 len += snprintf(buf + len, PATH_MAX-len, "xpc %Lu %Lu %Lu\n",
77 xs_xstrat_bytes, xs_write_bytes, xs_read_bytes);
78 len += snprintf(buf + len, PATH_MAX-len, "debug %u\n",
79#if defined(DEBUG)
80 1);
81#else
82 0);
83#endif
84
85 return len;
86}
87
Bill O'Donnell80529c42015-10-12 05:19:45 +110088void xfs_stats_clearall(struct xfsstats __percpu *stats)
Bill O'Donnellbb230c12015-10-12 05:15:45 +110089{
90 int c;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -070091 uint32_t vn_active;
Bill O'Donnellbb230c12015-10-12 05:15:45 +110092
93 xfs_notice(NULL, "Clearing xfsstats");
94 for_each_possible_cpu(c) {
95 preempt_disable();
96 /* save vn_active, it's a universal truth! */
Dave Chinner11ef38a2016-12-05 14:38:58 +110097 vn_active = per_cpu_ptr(stats, c)->s.vn_active;
Bill O'Donnell80529c42015-10-12 05:19:45 +110098 memset(per_cpu_ptr(stats, c), 0, sizeof(*stats));
Dave Chinner11ef38a2016-12-05 14:38:58 +110099 per_cpu_ptr(stats, c)->s.vn_active = vn_active;
Bill O'Donnellbb230c12015-10-12 05:15:45 +1100100 preempt_enable();
101 }
102}
103
Arnd Bergmann5ef03db2018-05-25 17:16:04 +0200104#ifdef CONFIG_PROC_FS
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000105/* legacy quota interfaces */
106#ifdef CONFIG_XFS_QUOTA
Carlos Maiolino26ca3902018-10-18 17:21:39 +1100107
108#define XFSSTAT_START_XQMSTAT xfsstats_offset(xs_qm_dqreclaims)
109#define XFSSTAT_END_XQMSTAT xfsstats_offset(xs_qm_dquot)
110
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000111static int xqm_proc_show(struct seq_file *m, void *v)
112{
113 /* maximum; incore; ratio free to inuse; freelist */
114 seq_printf(m, "%d\t%d\t%d\t%u\n",
Bill O'Donnell80529c42015-10-12 05:19:45 +1100115 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT),
116 0, counter_val(xfsstats.xs_stats, XFSSTAT_END_XQMSTAT + 1));
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000117 return 0;
118}
119
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000120/* legacy quota stats interface no 2 */
121static int xqmstat_proc_show(struct seq_file *m, void *v)
122{
123 int j;
124
125 seq_printf(m, "qm");
Carlos Maiolino26ca3902018-10-18 17:21:39 +1100126 for (j = XFSSTAT_START_XQMSTAT; j < XFSSTAT_END_XQMSTAT; j++)
Bill O'Donnell80529c42015-10-12 05:19:45 +1100127 seq_printf(m, " %u", counter_val(xfsstats.xs_stats, j));
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000128 seq_putc(m, '\n');
129 return 0;
130}
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000131#endif /* CONFIG_XFS_QUOTA */
132
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000133int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134xfs_init_procfs(void)
135{
136 if (!proc_mkdir("fs/xfs", NULL))
Eric Sandeen9e920542015-10-12 18:21:22 +1100137 return -ENOMEM;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000138
Bill O'Donnell32f0ea02015-10-12 05:16:45 +1100139 if (!proc_symlink("fs/xfs/stat", NULL,
140 "/sys/fs/xfs/stats/stats"))
Eric Sandeen9e920542015-10-12 18:21:22 +1100141 goto out;
Bill O'Donnell32f0ea02015-10-12 05:16:45 +1100142
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000143#ifdef CONFIG_XFS_QUOTA
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200144 if (!proc_create_single("fs/xfs/xqmstat", 0, NULL, xqmstat_proc_show))
Eric Sandeen9e920542015-10-12 18:21:22 +1100145 goto out;
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200146 if (!proc_create_single("fs/xfs/xqm", 0, NULL, xqm_proc_show))
Eric Sandeen9e920542015-10-12 18:21:22 +1100147 goto out;
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000148#endif
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000149 return 0;
150
Eric Sandeen9e920542015-10-12 18:21:22 +1100151out:
152 remove_proc_subtree("fs/xfs", NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +1000153 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
156void
157xfs_cleanup_procfs(void)
158{
Eric Sandeen9e920542015-10-12 18:21:22 +1100159 remove_proc_subtree("fs/xfs", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
Dave Chinner985ef4d2015-10-19 08:42:46 +1100161#endif /* CONFIG_PROC_FS */