xfs_stats.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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. #include <linux/percpu.h>
  9. /*
  10. * The btree stats arrays have fixed offsets for the different stats. We
  11. * store the base index in the btree cursor via XFS_STATS_CALC_INDEX() and
  12. * that allows us to use fixed offsets into the stats array for each btree
  13. * stat. These index offsets are defined in the order they will be emitted
  14. * in the stats files, so it is possible to add new btree stat types by
  15. * appending to the enum list below.
  16. */
  17. enum {
  18. __XBTS_lookup = 0,
  19. __XBTS_compare = 1,
  20. __XBTS_insrec = 2,
  21. __XBTS_delrec = 3,
  22. __XBTS_newroot = 4,
  23. __XBTS_killroot = 5,
  24. __XBTS_increment = 6,
  25. __XBTS_decrement = 7,
  26. __XBTS_lshift = 8,
  27. __XBTS_rshift = 9,
  28. __XBTS_split = 10,
  29. __XBTS_join = 11,
  30. __XBTS_alloc = 12,
  31. __XBTS_free = 13,
  32. __XBTS_moves = 14,
  33. __XBTS_MAX = 15,
  34. };
  35. /*
  36. * XFS global statistics
  37. */
  38. struct __xfsstats {
  39. # define XFSSTAT_END_EXTENT_ALLOC 4
  40. uint32_t xs_allocx;
  41. uint32_t xs_allocb;
  42. uint32_t xs_freex;
  43. uint32_t xs_freeb;
  44. # define XFSSTAT_END_ALLOC_BTREE (XFSSTAT_END_EXTENT_ALLOC+4)
  45. uint32_t xs_abt_lookup;
  46. uint32_t xs_abt_compare;
  47. uint32_t xs_abt_insrec;
  48. uint32_t xs_abt_delrec;
  49. # define XFSSTAT_END_BLOCK_MAPPING (XFSSTAT_END_ALLOC_BTREE+7)
  50. uint32_t xs_blk_mapr;
  51. uint32_t xs_blk_mapw;
  52. uint32_t xs_blk_unmap;
  53. uint32_t xs_add_exlist;
  54. uint32_t xs_del_exlist;
  55. uint32_t xs_look_exlist;
  56. uint32_t xs_cmp_exlist;
  57. # define XFSSTAT_END_BLOCK_MAP_BTREE (XFSSTAT_END_BLOCK_MAPPING+4)
  58. uint32_t xs_bmbt_lookup;
  59. uint32_t xs_bmbt_compare;
  60. uint32_t xs_bmbt_insrec;
  61. uint32_t xs_bmbt_delrec;
  62. # define XFSSTAT_END_DIRECTORY_OPS (XFSSTAT_END_BLOCK_MAP_BTREE+4)
  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. # define XFSSTAT_END_TRANSACTIONS (XFSSTAT_END_DIRECTORY_OPS+3)
  68. uint32_t xs_trans_sync;
  69. uint32_t xs_trans_async;
  70. uint32_t xs_trans_empty;
  71. # define XFSSTAT_END_INODE_OPS (XFSSTAT_END_TRANSACTIONS+7)
  72. uint32_t xs_ig_attempts;
  73. uint32_t xs_ig_found;
  74. uint32_t xs_ig_frecycle;
  75. uint32_t xs_ig_missed;
  76. uint32_t xs_ig_dup;
  77. uint32_t xs_ig_reclaims;
  78. uint32_t xs_ig_attrchg;
  79. # define XFSSTAT_END_LOG_OPS (XFSSTAT_END_INODE_OPS+5)
  80. uint32_t xs_log_writes;
  81. uint32_t xs_log_blocks;
  82. uint32_t xs_log_noiclogs;
  83. uint32_t xs_log_force;
  84. uint32_t xs_log_force_sleep;
  85. # define XFSSTAT_END_TAIL_PUSHING (XFSSTAT_END_LOG_OPS+10)
  86. uint32_t xs_try_logspace;
  87. uint32_t xs_sleep_logspace;
  88. uint32_t xs_push_ail;
  89. uint32_t xs_push_ail_success;
  90. uint32_t xs_push_ail_pushbuf;
  91. uint32_t xs_push_ail_pinned;
  92. uint32_t xs_push_ail_locked;
  93. uint32_t xs_push_ail_flushing;
  94. uint32_t xs_push_ail_restarts;
  95. uint32_t xs_push_ail_flush;
  96. # define XFSSTAT_END_WRITE_CONVERT (XFSSTAT_END_TAIL_PUSHING+2)
  97. uint32_t xs_xstrat_quick;
  98. uint32_t xs_xstrat_split;
  99. # define XFSSTAT_END_READ_WRITE_OPS (XFSSTAT_END_WRITE_CONVERT+2)
  100. uint32_t xs_write_calls;
  101. uint32_t xs_read_calls;
  102. # define XFSSTAT_END_ATTRIBUTE_OPS (XFSSTAT_END_READ_WRITE_OPS+4)
  103. uint32_t xs_attr_get;
  104. uint32_t xs_attr_set;
  105. uint32_t xs_attr_remove;
  106. uint32_t xs_attr_list;
  107. # define XFSSTAT_END_INODE_CLUSTER (XFSSTAT_END_ATTRIBUTE_OPS+3)
  108. uint32_t xs_iflush_count;
  109. uint32_t xs_icluster_flushcnt;
  110. uint32_t xs_icluster_flushinode;
  111. # define XFSSTAT_END_VNODE_OPS (XFSSTAT_END_INODE_CLUSTER+8)
  112. uint32_t vn_active; /* # vnodes not on free lists */
  113. uint32_t vn_alloc; /* # times vn_alloc called */
  114. uint32_t vn_get; /* # times vn_get called */
  115. uint32_t vn_hold; /* # times vn_hold called */
  116. uint32_t vn_rele; /* # times vn_rele called */
  117. uint32_t vn_reclaim; /* # times vn_reclaim called */
  118. uint32_t vn_remove; /* # times vn_remove called */
  119. uint32_t vn_free; /* # times vn_free called */
  120. #define XFSSTAT_END_BUF (XFSSTAT_END_VNODE_OPS+9)
  121. uint32_t xb_get;
  122. uint32_t xb_create;
  123. uint32_t xb_get_locked;
  124. uint32_t xb_get_locked_waited;
  125. uint32_t xb_busy_locked;
  126. uint32_t xb_miss_locked;
  127. uint32_t xb_page_retries;
  128. uint32_t xb_page_found;
  129. uint32_t xb_get_read;
  130. /* Version 2 btree counters */
  131. #define XFSSTAT_END_ABTB_V2 (XFSSTAT_END_BUF + __XBTS_MAX)
  132. uint32_t xs_abtb_2[__XBTS_MAX];
  133. #define XFSSTAT_END_ABTC_V2 (XFSSTAT_END_ABTB_V2 + __XBTS_MAX)
  134. uint32_t xs_abtc_2[__XBTS_MAX];
  135. #define XFSSTAT_END_BMBT_V2 (XFSSTAT_END_ABTC_V2 + __XBTS_MAX)
  136. uint32_t xs_bmbt_2[__XBTS_MAX];
  137. #define XFSSTAT_END_IBT_V2 (XFSSTAT_END_BMBT_V2 + __XBTS_MAX)
  138. uint32_t xs_ibt_2[__XBTS_MAX];
  139. #define XFSSTAT_END_FIBT_V2 (XFSSTAT_END_IBT_V2 + __XBTS_MAX)
  140. uint32_t xs_fibt_2[__XBTS_MAX];
  141. #define XFSSTAT_END_RMAP_V2 (XFSSTAT_END_FIBT_V2 + __XBTS_MAX)
  142. uint32_t xs_rmap_2[__XBTS_MAX];
  143. #define XFSSTAT_END_REFCOUNT (XFSSTAT_END_RMAP_V2 + __XBTS_MAX)
  144. uint32_t xs_refcbt_2[__XBTS_MAX];
  145. #define XFSSTAT_END_XQMSTAT (XFSSTAT_END_REFCOUNT + 6)
  146. uint32_t xs_qm_dqreclaims;
  147. uint32_t xs_qm_dqreclaim_misses;
  148. uint32_t xs_qm_dquot_dups;
  149. uint32_t xs_qm_dqcachemisses;
  150. uint32_t xs_qm_dqcachehits;
  151. uint32_t xs_qm_dqwants;
  152. #define XFSSTAT_END_QM (XFSSTAT_END_XQMSTAT+2)
  153. uint32_t xs_qm_dquot;
  154. uint32_t xs_qm_dquot_unused;
  155. /* Extra precision counters */
  156. uint64_t xs_xstrat_bytes;
  157. uint64_t xs_write_bytes;
  158. uint64_t xs_read_bytes;
  159. };
  160. struct xfsstats {
  161. union {
  162. struct __xfsstats s;
  163. uint32_t a[XFSSTAT_END_XQMSTAT];
  164. };
  165. };
  166. /*
  167. * simple wrapper for getting the array index of s struct member offset
  168. */
  169. #define XFS_STATS_CALC_INDEX(member) \
  170. (offsetof(struct __xfsstats, member) / (int)sizeof(uint32_t))
  171. int xfs_stats_format(struct xfsstats __percpu *stats, char *buf);
  172. void xfs_stats_clearall(struct xfsstats __percpu *stats);
  173. extern struct xstats xfsstats;
  174. #define XFS_STATS_INC(mp, v) \
  175. do { \
  176. per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v++; \
  177. per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v++; \
  178. } while (0)
  179. #define XFS_STATS_DEC(mp, v) \
  180. do { \
  181. per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v--; \
  182. per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v--; \
  183. } while (0)
  184. #define XFS_STATS_ADD(mp, v, inc) \
  185. do { \
  186. per_cpu_ptr(xfsstats.xs_stats, current_cpu())->s.v += (inc); \
  187. per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->s.v += (inc); \
  188. } while (0)
  189. #define XFS_STATS_INC_OFF(mp, off) \
  190. do { \
  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. #define XFS_STATS_DEC_OFF(mp, off) \
  195. do { \
  196. per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off]; \
  197. per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off]; \
  198. } while (0)
  199. #define XFS_STATS_ADD_OFF(mp, off, inc) \
  200. do { \
  201. per_cpu_ptr(xfsstats.xs_stats, current_cpu())->a[off] += (inc); \
  202. per_cpu_ptr(mp->m_stats.xs_stats, current_cpu())->a[off] += (inc); \
  203. } while (0)
  204. #if defined(CONFIG_PROC_FS)
  205. extern int xfs_init_procfs(void);
  206. extern void xfs_cleanup_procfs(void);
  207. #else /* !CONFIG_PROC_FS */
  208. static inline int xfs_init_procfs(void)
  209. {
  210. return 0;
  211. }
  212. static inline void xfs_cleanup_procfs(void)
  213. {
  214. }
  215. #endif /* !CONFIG_PROC_FS */
  216. #endif /* __XFS_STATS_H__ */