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