Linux Audio

Check our new training course

Loading...
v3.15
 
  1/*
  2 * Copyright (c) 2000,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#ifndef __XFS_STATS_H__
 19#define __XFS_STATS_H__
 20
 21
 22#if defined(CONFIG_PROC_FS) && !defined(XFS_STATS_OFF)
 23
 24#include <linux/percpu.h>
 25
 26/*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 27 * XFS global statistics
 28 */
 29struct xfsstats {
 30# define XFSSTAT_END_EXTENT_ALLOC	4
 31	__uint32_t		xs_allocx;
 32	__uint32_t		xs_allocb;
 33	__uint32_t		xs_freex;
 34	__uint32_t		xs_freeb;
 35# define XFSSTAT_END_ALLOC_BTREE	(XFSSTAT_END_EXTENT_ALLOC+4)
 36	__uint32_t		xs_abt_lookup;
 37	__uint32_t		xs_abt_compare;
 38	__uint32_t		xs_abt_insrec;
 39	__uint32_t		xs_abt_delrec;
 40# define XFSSTAT_END_BLOCK_MAPPING	(XFSSTAT_END_ALLOC_BTREE+7)
 41	__uint32_t		xs_blk_mapr;
 42	__uint32_t		xs_blk_mapw;
 43	__uint32_t		xs_blk_unmap;
 44	__uint32_t		xs_add_exlist;
 45	__uint32_t		xs_del_exlist;
 46	__uint32_t		xs_look_exlist;
 47	__uint32_t		xs_cmp_exlist;
 48# define XFSSTAT_END_BLOCK_MAP_BTREE	(XFSSTAT_END_BLOCK_MAPPING+4)
 49	__uint32_t		xs_bmbt_lookup;
 50	__uint32_t		xs_bmbt_compare;
 51	__uint32_t		xs_bmbt_insrec;
 52	__uint32_t		xs_bmbt_delrec;
 53# define XFSSTAT_END_DIRECTORY_OPS	(XFSSTAT_END_BLOCK_MAP_BTREE+4)
 54	__uint32_t		xs_dir_lookup;
 55	__uint32_t		xs_dir_create;
 56	__uint32_t		xs_dir_remove;
 57	__uint32_t		xs_dir_getdents;
 58# define XFSSTAT_END_TRANSACTIONS	(XFSSTAT_END_DIRECTORY_OPS+3)
 59	__uint32_t		xs_trans_sync;
 60	__uint32_t		xs_trans_async;
 61	__uint32_t		xs_trans_empty;
 62# define XFSSTAT_END_INODE_OPS		(XFSSTAT_END_TRANSACTIONS+7)
 63	__uint32_t		xs_ig_attempts;
 64	__uint32_t		xs_ig_found;
 65	__uint32_t		xs_ig_frecycle;
 66	__uint32_t		xs_ig_missed;
 67	__uint32_t		xs_ig_dup;
 68	__uint32_t		xs_ig_reclaims;
 69	__uint32_t		xs_ig_attrchg;
 70# define XFSSTAT_END_LOG_OPS		(XFSSTAT_END_INODE_OPS+5)
 71	__uint32_t		xs_log_writes;
 72	__uint32_t		xs_log_blocks;
 73	__uint32_t		xs_log_noiclogs;
 74	__uint32_t		xs_log_force;
 75	__uint32_t		xs_log_force_sleep;
 76# define XFSSTAT_END_TAIL_PUSHING	(XFSSTAT_END_LOG_OPS+10)
 77	__uint32_t		xs_try_logspace;
 78	__uint32_t		xs_sleep_logspace;
 79	__uint32_t		xs_push_ail;
 80	__uint32_t		xs_push_ail_success;
 81	__uint32_t		xs_push_ail_pushbuf;
 82	__uint32_t		xs_push_ail_pinned;
 83	__uint32_t		xs_push_ail_locked;
 84	__uint32_t		xs_push_ail_flushing;
 85	__uint32_t		xs_push_ail_restarts;
 86	__uint32_t		xs_push_ail_flush;
 87# define XFSSTAT_END_WRITE_CONVERT	(XFSSTAT_END_TAIL_PUSHING+2)
 88	__uint32_t		xs_xstrat_quick;
 89	__uint32_t		xs_xstrat_split;
 90# define XFSSTAT_END_READ_WRITE_OPS	(XFSSTAT_END_WRITE_CONVERT+2)
 91	__uint32_t		xs_write_calls;
 92	__uint32_t		xs_read_calls;
 93# define XFSSTAT_END_ATTRIBUTE_OPS	(XFSSTAT_END_READ_WRITE_OPS+4)
 94	__uint32_t		xs_attr_get;
 95	__uint32_t		xs_attr_set;
 96	__uint32_t		xs_attr_remove;
 97	__uint32_t		xs_attr_list;
 98# define XFSSTAT_END_INODE_CLUSTER	(XFSSTAT_END_ATTRIBUTE_OPS+3)
 99	__uint32_t		xs_iflush_count;
100	__uint32_t		xs_icluster_flushcnt;
101	__uint32_t		xs_icluster_flushinode;
102# define XFSSTAT_END_VNODE_OPS		(XFSSTAT_END_INODE_CLUSTER+8)
103	__uint32_t		vn_active;	/* # vnodes not on free lists */
104	__uint32_t		vn_alloc;	/* # times vn_alloc called */
105	__uint32_t		vn_get;		/* # times vn_get called */
106	__uint32_t		vn_hold;	/* # times vn_hold called */
107	__uint32_t		vn_rele;	/* # times vn_rele called */
108	__uint32_t		vn_reclaim;	/* # times vn_reclaim called */
109	__uint32_t		vn_remove;	/* # times vn_remove called */
110	__uint32_t		vn_free;	/* # times vn_free called */
111#define XFSSTAT_END_BUF			(XFSSTAT_END_VNODE_OPS+9)
112	__uint32_t		xb_get;
113	__uint32_t		xb_create;
114	__uint32_t		xb_get_locked;
115	__uint32_t		xb_get_locked_waited;
116	__uint32_t		xb_busy_locked;
117	__uint32_t		xb_miss_locked;
118	__uint32_t		xb_page_retries;
119	__uint32_t		xb_page_found;
120	__uint32_t		xb_get_read;
121/* Version 2 btree counters */
122#define XFSSTAT_END_ABTB_V2		(XFSSTAT_END_BUF+15)
123	__uint32_t		xs_abtb_2_lookup;
124	__uint32_t		xs_abtb_2_compare;
125	__uint32_t		xs_abtb_2_insrec;
126	__uint32_t		xs_abtb_2_delrec;
127	__uint32_t		xs_abtb_2_newroot;
128	__uint32_t		xs_abtb_2_killroot;
129	__uint32_t		xs_abtb_2_increment;
130	__uint32_t		xs_abtb_2_decrement;
131	__uint32_t		xs_abtb_2_lshift;
132	__uint32_t		xs_abtb_2_rshift;
133	__uint32_t		xs_abtb_2_split;
134	__uint32_t		xs_abtb_2_join;
135	__uint32_t		xs_abtb_2_alloc;
136	__uint32_t		xs_abtb_2_free;
137	__uint32_t		xs_abtb_2_moves;
138#define XFSSTAT_END_ABTC_V2		(XFSSTAT_END_ABTB_V2+15)
139	__uint32_t		xs_abtc_2_lookup;
140	__uint32_t		xs_abtc_2_compare;
141	__uint32_t		xs_abtc_2_insrec;
142	__uint32_t		xs_abtc_2_delrec;
143	__uint32_t		xs_abtc_2_newroot;
144	__uint32_t		xs_abtc_2_killroot;
145	__uint32_t		xs_abtc_2_increment;
146	__uint32_t		xs_abtc_2_decrement;
147	__uint32_t		xs_abtc_2_lshift;
148	__uint32_t		xs_abtc_2_rshift;
149	__uint32_t		xs_abtc_2_split;
150	__uint32_t		xs_abtc_2_join;
151	__uint32_t		xs_abtc_2_alloc;
152	__uint32_t		xs_abtc_2_free;
153	__uint32_t		xs_abtc_2_moves;
154#define XFSSTAT_END_BMBT_V2		(XFSSTAT_END_ABTC_V2+15)
155	__uint32_t		xs_bmbt_2_lookup;
156	__uint32_t		xs_bmbt_2_compare;
157	__uint32_t		xs_bmbt_2_insrec;
158	__uint32_t		xs_bmbt_2_delrec;
159	__uint32_t		xs_bmbt_2_newroot;
160	__uint32_t		xs_bmbt_2_killroot;
161	__uint32_t		xs_bmbt_2_increment;
162	__uint32_t		xs_bmbt_2_decrement;
163	__uint32_t		xs_bmbt_2_lshift;
164	__uint32_t		xs_bmbt_2_rshift;
165	__uint32_t		xs_bmbt_2_split;
166	__uint32_t		xs_bmbt_2_join;
167	__uint32_t		xs_bmbt_2_alloc;
168	__uint32_t		xs_bmbt_2_free;
169	__uint32_t		xs_bmbt_2_moves;
170#define XFSSTAT_END_IBT_V2		(XFSSTAT_END_BMBT_V2+15)
171	__uint32_t		xs_ibt_2_lookup;
172	__uint32_t		xs_ibt_2_compare;
173	__uint32_t		xs_ibt_2_insrec;
174	__uint32_t		xs_ibt_2_delrec;
175	__uint32_t		xs_ibt_2_newroot;
176	__uint32_t		xs_ibt_2_killroot;
177	__uint32_t		xs_ibt_2_increment;
178	__uint32_t		xs_ibt_2_decrement;
179	__uint32_t		xs_ibt_2_lshift;
180	__uint32_t		xs_ibt_2_rshift;
181	__uint32_t		xs_ibt_2_split;
182	__uint32_t		xs_ibt_2_join;
183	__uint32_t		xs_ibt_2_alloc;
184	__uint32_t		xs_ibt_2_free;
185	__uint32_t		xs_ibt_2_moves;
186#define XFSSTAT_END_XQMSTAT		(XFSSTAT_END_IBT_V2+6)
187	__uint32_t		xs_qm_dqreclaims;
188	__uint32_t		xs_qm_dqreclaim_misses;
189	__uint32_t		xs_qm_dquot_dups;
190	__uint32_t		xs_qm_dqcachemisses;
191	__uint32_t		xs_qm_dqcachehits;
192	__uint32_t		xs_qm_dqwants;
193#define XFSSTAT_END_QM			(XFSSTAT_END_XQMSTAT+2)
194	__uint32_t		xs_qm_dquot;
195	__uint32_t		xs_qm_dquot_unused;
196/* Extra precision counters */
197	__uint64_t		xs_xstrat_bytes;
198	__uint64_t		xs_write_bytes;
199	__uint64_t		xs_read_bytes;
 
200};
201
202DECLARE_PER_CPU(struct xfsstats, xfsstats);
 
 
 
 
 
 
 
203
204/*
205 * We don't disable preempt, not too worried about poking the
206 * wrong CPU's stat for now (also aggregated before reporting).
207 */
208#define XFS_STATS_INC(v)	(per_cpu(xfsstats, current_cpu()).v++)
209#define XFS_STATS_DEC(v)	(per_cpu(xfsstats, current_cpu()).v--)
210#define XFS_STATS_ADD(v, inc)	(per_cpu(xfsstats, current_cpu()).v += (inc))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211
212extern int xfs_init_procfs(void);
213extern void xfs_cleanup_procfs(void);
214
215
216#else	/* !CONFIG_PROC_FS */
217
218# define XFS_STATS_INC(count)
219# define XFS_STATS_DEC(count)
220# define XFS_STATS_ADD(count, inc)
221
222static inline int xfs_init_procfs(void)
223{
224	return 0;
225}
226
227static inline void xfs_cleanup_procfs(void)
228{
229}
230
231#endif	/* !CONFIG_PROC_FS */
232
233#endif /* __XFS_STATS_H__ */
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright (c) 2000,2005 Silicon Graphics, Inc.
  4 * All Rights Reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
  5 */
  6#ifndef __XFS_STATS_H__
  7#define __XFS_STATS_H__
  8
  9
 
 
 10#include <linux/percpu.h>
 11
 12/*
 13 * The btree stats arrays have fixed offsets for the different stats. We
 14 * store the base index in the btree cursor via XFS_STATS_CALC_INDEX() and
 15 * that allows us to use fixed offsets into the stats array for each btree
 16 * stat. These index offsets are defined in the order they will be emitted
 17 * in the stats files, so it is possible to add new btree stat types by
 18 * appending to the enum list below.
 19 */
 20enum {
 21	__XBTS_lookup = 0,
 22	__XBTS_compare = 1,
 23	__XBTS_insrec = 2,
 24	__XBTS_delrec = 3,
 25	__XBTS_newroot = 4,
 26	__XBTS_killroot = 5,
 27	__XBTS_increment = 6,
 28	__XBTS_decrement = 7,
 29	__XBTS_lshift = 8,
 30	__XBTS_rshift = 9,
 31	__XBTS_split = 10,
 32	__XBTS_join = 11,
 33	__XBTS_alloc = 12,
 34	__XBTS_free = 13,
 35	__XBTS_moves = 14,
 36
 37	__XBTS_MAX = 15,
 38};
 39
 40/*
 41 * XFS global statistics
 42 */
 43struct __xfsstats {
 44	uint32_t		xs_allocx;
 45	uint32_t		xs_allocb;
 46	uint32_t		xs_freex;
 47	uint32_t		xs_freeb;
 48	uint32_t		xs_abt_lookup;
 49	uint32_t		xs_abt_compare;
 50	uint32_t		xs_abt_insrec;
 51	uint32_t		xs_abt_delrec;
 52	uint32_t		xs_blk_mapr;
 53	uint32_t		xs_blk_mapw;
 54	uint32_t		xs_blk_unmap;
 55	uint32_t		xs_add_exlist;
 56	uint32_t		xs_del_exlist;
 57	uint32_t		xs_look_exlist;
 58	uint32_t		xs_cmp_exlist;
 59	uint32_t		xs_bmbt_lookup;
 60	uint32_t		xs_bmbt_compare;
 61	uint32_t		xs_bmbt_insrec;
 62	uint32_t		xs_bmbt_delrec;
 63	uint32_t		xs_dir_lookup;
 64	uint32_t		xs_dir_create;
 65	uint32_t		xs_dir_remove;
 66	uint32_t		xs_dir_getdents;
 67	uint32_t		xs_trans_sync;
 68	uint32_t		xs_trans_async;
 69	uint32_t		xs_trans_empty;
 70	uint32_t		xs_ig_attempts;
 71	uint32_t		xs_ig_found;
 72	uint32_t		xs_ig_frecycle;
 73	uint32_t		xs_ig_missed;
 74	uint32_t		xs_ig_dup;
 75	uint32_t		xs_ig_reclaims;
 76	uint32_t		xs_ig_attrchg;
 77	uint32_t		xs_log_writes;
 78	uint32_t		xs_log_blocks;
 79	uint32_t		xs_log_noiclogs;
 80	uint32_t		xs_log_force;
 81	uint32_t		xs_log_force_sleep;
 82	uint32_t		xs_try_logspace;
 83	uint32_t		xs_sleep_logspace;
 84	uint32_t		xs_push_ail;
 85	uint32_t		xs_push_ail_success;
 86	uint32_t		xs_push_ail_pushbuf;
 87	uint32_t		xs_push_ail_pinned;
 88	uint32_t		xs_push_ail_locked;
 89	uint32_t		xs_push_ail_flushing;
 90	uint32_t		xs_push_ail_restarts;
 91	uint32_t		xs_push_ail_flush;
 92	uint32_t		xs_xstrat_quick;
 93	uint32_t		xs_xstrat_split;
 94	uint32_t		xs_write_calls;
 95	uint32_t		xs_read_calls;
 96	uint32_t		xs_attr_get;
 97	uint32_t		xs_attr_set;
 98	uint32_t		xs_attr_remove;
 99	uint32_t		xs_attr_list;
100	uint32_t		xs_iflush_count;
101	uint32_t		xs_icluster_flushcnt;
102	uint32_t		xs_icluster_flushinode;
103	uint32_t		vn_active;	/* # vnodes not on free lists */
104	uint32_t		vn_alloc;	/* # times vn_alloc called */
105	uint32_t		vn_get;		/* # times vn_get called */
106	uint32_t		vn_hold;	/* # times vn_hold called */
107	uint32_t		vn_rele;	/* # times vn_rele called */
108	uint32_t		vn_reclaim;	/* # times vn_reclaim called */
109	uint32_t		vn_remove;	/* # times vn_remove called */
110	uint32_t		vn_free;	/* # times vn_free called */
111	uint32_t		xb_get;
112	uint32_t		xb_create;
113	uint32_t		xb_get_locked;
114	uint32_t		xb_get_locked_waited;
115	uint32_t		xb_busy_locked;
116	uint32_t		xb_miss_locked;
117	uint32_t		xb_page_retries;
118	uint32_t		xb_page_found;
119	uint32_t		xb_get_read;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120/* Version 2 btree counters */
121	uint32_t		xs_abtb_2[__XBTS_MAX];
122	uint32_t		xs_abtc_2[__XBTS_MAX];
123	uint32_t		xs_bmbt_2[__XBTS_MAX];
124	uint32_t		xs_ibt_2[__XBTS_MAX];
125	uint32_t		xs_fibt_2[__XBTS_MAX];
126	uint32_t		xs_rmap_2[__XBTS_MAX];
127	uint32_t		xs_refcbt_2[__XBTS_MAX];
128	uint32_t		xs_rmap_mem_2[__XBTS_MAX];
129	uint32_t		xs_rcbag_2[__XBTS_MAX];
130	uint32_t		xs_qm_dqreclaims;
131	uint32_t		xs_qm_dqreclaim_misses;
132	uint32_t		xs_qm_dquot_dups;
133	uint32_t		xs_qm_dqcachemisses;
134	uint32_t		xs_qm_dqcachehits;
135	uint32_t		xs_qm_dqwants;
136	uint32_t		xs_qm_dquot;
137	uint32_t		xs_qm_dquot_unused;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138/* Extra precision counters */
139	uint64_t		xs_xstrat_bytes;
140	uint64_t		xs_write_bytes;
141	uint64_t		xs_read_bytes;
142	uint64_t		defer_relog;
143};
144
145#define	xfsstats_offset(f)	(offsetof(struct __xfsstats, f)/sizeof(uint32_t))
146
147struct xfsstats {
148	union {
149		struct __xfsstats	s;
150		uint32_t		a[xfsstats_offset(xs_qm_dquot)];
151	};
152};
153
154/*
155 * simple wrapper for getting the array index of s struct member offset
 
156 */
157#define XFS_STATS_CALC_INDEX(member)	\
158	(offsetof(struct __xfsstats, member) / (int)sizeof(uint32_t))
159
160
161int xfs_stats_format(struct xfsstats __percpu *stats, char *buf);
162void xfs_stats_clearall(struct xfsstats __percpu *stats);
163extern struct xstats xfsstats;
164
165#define XFS_STATS_INC(mp, v)					\
166do {								\
167	per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v++;	\
168	per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v++;	\
169} while (0)
170
171#define XFS_STATS_DEC(mp, v)					\
172do {								\
173	per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v--;	\
174	per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v--;	\
175} while (0)
176
177#define XFS_STATS_ADD(mp, v, inc)					\
178do {									\
179	per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v += (inc);	\
180	per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v += (inc);	\
181} while (0)
182
183#define XFS_STATS_INC_OFF(mp, off)				\
184do {								\
185	per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off]++;	\
186	per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]++;	\
187} while (0)
188
189#define XFS_STATS_DEC_OFF(mp, off)					\
190do {								\
191	per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off];	\
192	per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off];	\
193} while (0)
194
195#define XFS_STATS_ADD_OFF(mp, off, inc)					\
196do {									\
197	per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off] += (inc);	\
198	per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off] += (inc);	\
199} while (0)
200
201#if defined(CONFIG_PROC_FS)
202
203extern int xfs_init_procfs(void);
204extern void xfs_cleanup_procfs(void);
205
206
207#else	/* !CONFIG_PROC_FS */
 
 
 
 
208
209static inline int xfs_init_procfs(void)
210{
211	return 0;
212}
213
214static inline void xfs_cleanup_procfs(void)
215{
216}
217
218#endif	/* !CONFIG_PROC_FS */
219
220#endif /* __XFS_STATS_H__ */