]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/xfs/libxfs/xfs_btree.h
xfs: create a standard btree size calculator code
[mirror_ubuntu-artful-kernel.git] / fs / xfs / libxfs / xfs_btree.h
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
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
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
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.
1da177e4 13 *
7b718769
NS
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
1da177e4
LT
17 */
18#ifndef __XFS_BTREE_H__
19#define __XFS_BTREE_H__
20
21struct xfs_buf;
310a75a3 22struct xfs_defer_ops;
1da177e4
LT
23struct xfs_inode;
24struct xfs_mount;
25struct xfs_trans;
26
a8272ce0
DC
27extern kmem_zone_t *xfs_btree_cur_zone;
28
de227dd9
CH
29/*
30 * Generic key, ptr and record wrapper structures.
31 *
32 * These are disk format structures, and are converted where necessary
33 * by the btree specific code that needs to interpret them.
34 */
35union xfs_btree_ptr {
36 __be32 s; /* short form ptr */
37 __be64 l; /* long form ptr */
38};
39
2c813ad6 40/*
a1d46cff
DW
41 * The in-core btree key. Overlapping btrees actually store two keys
42 * per pointer, so we reserve enough memory to hold both. The __*bigkey
43 * items should never be accessed directly.
2c813ad6 44 */
a1d46cff 45union xfs_btree_key {
2c813ad6
DW
46 struct xfs_bmbt_key bmbt;
47 xfs_bmdr_key_t bmbr; /* bmbt root block */
48 xfs_alloc_key_t alloc;
49 struct xfs_inobt_key inobt;
a1d46cff
DW
50 struct xfs_rmap_key rmap;
51 struct xfs_rmap_key __rmap_bigkey[2];
2c813ad6
DW
52};
53
de227dd9 54union xfs_btree_rec {
035e00ac
DW
55 struct xfs_bmbt_rec bmbt;
56 xfs_bmdr_rec_t bmbr; /* bmbt root block */
57 struct xfs_alloc_rec alloc;
58 struct xfs_inobt_rec inobt;
59 struct xfs_rmap_rec rmap;
de227dd9
CH
60};
61
a4fbe6ab
DC
62/*
63 * This nonsense is to make -wlint happy.
64 */
65#define XFS_LOOKUP_EQ ((xfs_lookup_t)XFS_LOOKUP_EQi)
66#define XFS_LOOKUP_LE ((xfs_lookup_t)XFS_LOOKUP_LEi)
67#define XFS_LOOKUP_GE ((xfs_lookup_t)XFS_LOOKUP_GEi)
68
69#define XFS_BTNUM_BNO ((xfs_btnum_t)XFS_BTNUM_BNOi)
70#define XFS_BTNUM_CNT ((xfs_btnum_t)XFS_BTNUM_CNTi)
71#define XFS_BTNUM_BMAP ((xfs_btnum_t)XFS_BTNUM_BMAPi)
72#define XFS_BTNUM_INO ((xfs_btnum_t)XFS_BTNUM_INOi)
aafc3c24 73#define XFS_BTNUM_FINO ((xfs_btnum_t)XFS_BTNUM_FINOi)
b8704944 74#define XFS_BTNUM_RMAP ((xfs_btnum_t)XFS_BTNUM_RMAPi)
a4fbe6ab 75
1da177e4
LT
76/*
77 * For logging record fields.
78 */
21b5c978
DC
79#define XFS_BB_MAGIC (1 << 0)
80#define XFS_BB_LEVEL (1 << 1)
81#define XFS_BB_NUMRECS (1 << 2)
82#define XFS_BB_LEFTSIB (1 << 3)
83#define XFS_BB_RIGHTSIB (1 << 4)
84#define XFS_BB_BLKNO (1 << 5)
85#define XFS_BB_LSN (1 << 6)
86#define XFS_BB_UUID (1 << 7)
87#define XFS_BB_OWNER (1 << 8)
1da177e4
LT
88#define XFS_BB_NUM_BITS 5
89#define XFS_BB_ALL_BITS ((1 << XFS_BB_NUM_BITS) - 1)
21b5c978 90#define XFS_BB_NUM_BITS_CRC 9
ee1a47ab 91#define XFS_BB_ALL_BITS_CRC ((1 << XFS_BB_NUM_BITS_CRC) - 1)
1da177e4 92
854929f0
DC
93/*
94 * Generic stats interface
95 */
ff6d6af2
BD
96#define __XFS_BTREE_STATS_INC(mp, type, stat) \
97 XFS_STATS_INC(mp, xs_ ## type ## _2_ ## stat)
98#define XFS_BTREE_STATS_INC(cur, stat) \
854929f0 99do { \
ff6d6af2 100 struct xfs_mount *__mp = cur->bc_mp; \
854929f0 101 switch (cur->bc_btnum) { \
ff6d6af2
BD
102 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_INC(__mp, abtb, stat); break; \
103 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_INC(__mp, abtc, stat); break; \
104 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_INC(__mp, bmbt, stat); break; \
105 case XFS_BTNUM_INO: __XFS_BTREE_STATS_INC(__mp, ibt, stat); break; \
106 case XFS_BTNUM_FINO: __XFS_BTREE_STATS_INC(__mp, fibt, stat); break; \
00f4e4f9 107 case XFS_BTNUM_RMAP: __XFS_BTREE_STATS_INC(__mp, rmap, stat); break; \
854929f0
DC
108 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
109 } \
110} while (0)
111
ff6d6af2
BD
112#define __XFS_BTREE_STATS_ADD(mp, type, stat, val) \
113 XFS_STATS_ADD(mp, xs_ ## type ## _2_ ## stat, val)
854929f0
DC
114#define XFS_BTREE_STATS_ADD(cur, stat, val) \
115do { \
ff6d6af2 116 struct xfs_mount *__mp = cur->bc_mp; \
854929f0 117 switch (cur->bc_btnum) { \
ff6d6af2
BD
118 case XFS_BTNUM_BNO: \
119 __XFS_BTREE_STATS_ADD(__mp, abtb, stat, val); break; \
120 case XFS_BTNUM_CNT: \
121 __XFS_BTREE_STATS_ADD(__mp, abtc, stat, val); break; \
122 case XFS_BTNUM_BMAP: \
123 __XFS_BTREE_STATS_ADD(__mp, bmbt, stat, val); break; \
124 case XFS_BTNUM_INO: \
125 __XFS_BTREE_STATS_ADD(__mp, ibt, stat, val); break; \
126 case XFS_BTNUM_FINO: \
127 __XFS_BTREE_STATS_ADD(__mp, fibt, stat, val); break; \
00f4e4f9
DW
128 case XFS_BTNUM_RMAP: \
129 __XFS_BTREE_STATS_ADD(__mp, rmap, stat, val); break; \
ff6d6af2 130 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
854929f0
DC
131 } \
132} while (0)
1da177e4 133
df3954ff 134#define XFS_BTREE_MAXLEVELS 9 /* max of all btrees */
1da177e4 135
561f7d17 136struct xfs_btree_ops {
65f1eaea
CH
137 /* size of the key and record structures */
138 size_t key_len;
139 size_t rec_len;
140
561f7d17
CH
141 /* cursor operations */
142 struct xfs_btree_cur *(*dup_cursor)(struct xfs_btree_cur *);
4b22a571
CH
143 void (*update_cursor)(struct xfs_btree_cur *src,
144 struct xfs_btree_cur *dst);
8c4ed633 145
344207ce
CH
146 /* update btree root pointer */
147 void (*set_root)(struct xfs_btree_cur *cur,
c0e59e1a 148 union xfs_btree_ptr *nptr, int level_change);
344207ce 149
f5eb8e7c
CH
150 /* block allocation / freeing */
151 int (*alloc_block)(struct xfs_btree_cur *cur,
152 union xfs_btree_ptr *start_bno,
153 union xfs_btree_ptr *new_bno,
6f8950cd 154 int *stat);
d4b3a4b7 155 int (*free_block)(struct xfs_btree_cur *cur, struct xfs_buf *bp);
f5eb8e7c 156
278d0ca1
CH
157 /* update last record information */
158 void (*update_lastrec)(struct xfs_btree_cur *cur,
159 struct xfs_btree_block *block,
160 union xfs_btree_rec *rec,
161 int ptr, int reason);
162
ce5e42db 163 /* records in block/level */
91cca5df 164 int (*get_minrecs)(struct xfs_btree_cur *cur, int level);
ce5e42db
CH
165 int (*get_maxrecs)(struct xfs_btree_cur *cur, int level);
166
4b22a571
CH
167 /* records on disk. Matter for the root in inode case. */
168 int (*get_dmaxrecs)(struct xfs_btree_cur *cur, int level);
169
fe033cc8
CH
170 /* init values of btree structures */
171 void (*init_key_from_rec)(union xfs_btree_key *key,
172 union xfs_btree_rec *rec);
4b22a571
CH
173 void (*init_rec_from_cur)(struct xfs_btree_cur *cur,
174 union xfs_btree_rec *rec);
fe033cc8
CH
175 void (*init_ptr_from_cur)(struct xfs_btree_cur *cur,
176 union xfs_btree_ptr *ptr);
2c813ad6
DW
177 void (*init_high_key_from_rec)(union xfs_btree_key *key,
178 union xfs_btree_rec *rec);
fe033cc8
CH
179
180 /* difference between key value and cursor value */
181 __int64_t (*key_diff)(struct xfs_btree_cur *cur,
182 union xfs_btree_key *key);
183
2c813ad6
DW
184 /*
185 * Difference between key2 and key1 -- positive if key1 > key2,
186 * negative if key1 < key2, and zero if equal.
187 */
188 __int64_t (*diff_two_keys)(struct xfs_btree_cur *cur,
189 union xfs_btree_key *key1,
190 union xfs_btree_key *key2);
191
1813dd64 192 const struct xfs_buf_ops *buf_ops;
b0f539de 193
742ae1e3 194#if defined(DEBUG) || defined(XFS_WARN)
4a26e66e
CH
195 /* check that k1 is lower than k2 */
196 int (*keys_inorder)(struct xfs_btree_cur *cur,
197 union xfs_btree_key *k1,
198 union xfs_btree_key *k2);
199
200 /* check that r1 is lower than r2 */
201 int (*recs_inorder)(struct xfs_btree_cur *cur,
202 union xfs_btree_rec *r1,
203 union xfs_btree_rec *r2);
204#endif
561f7d17
CH
205};
206
278d0ca1
CH
207/*
208 * Reasons for the update_lastrec method to be called.
209 */
210#define LASTREC_UPDATE 0
4b22a571 211#define LASTREC_INSREC 1
91cca5df 212#define LASTREC_DELREC 2
278d0ca1
CH
213
214
105f7d83
DW
215union xfs_btree_irec {
216 struct xfs_alloc_rec_incore a;
217 struct xfs_bmbt_irec b;
218 struct xfs_inobt_rec_incore i;
4b8ed677 219 struct xfs_rmap_irec r;
105f7d83
DW
220};
221
1da177e4
LT
222/*
223 * Btree cursor structure.
224 * This collects all information needed by the btree code in one place.
225 */
226typedef struct xfs_btree_cur
227{
228 struct xfs_trans *bc_tp; /* transaction we're in, if any */
229 struct xfs_mount *bc_mp; /* file system mount struct */
561f7d17 230 const struct xfs_btree_ops *bc_ops;
8186e517 231 uint bc_flags; /* btree features - below */
105f7d83 232 union xfs_btree_irec bc_rec; /* current insert/search record value */
1da177e4
LT
233 struct xfs_buf *bc_bufs[XFS_BTREE_MAXLEVELS]; /* buf ptr per level */
234 int bc_ptrs[XFS_BTREE_MAXLEVELS]; /* key/record # */
235 __uint8_t bc_ra[XFS_BTREE_MAXLEVELS]; /* readahead bits */
236#define XFS_BTCUR_LEFTRA 1 /* left sibling has been read-ahead */
237#define XFS_BTCUR_RIGHTRA 2 /* right sibling has been read-ahead */
238 __uint8_t bc_nlevels; /* number of levels in the tree */
239 __uint8_t bc_blocklog; /* log2(blocksize) of btree blocks */
240 xfs_btnum_t bc_btnum; /* identifies which btree type */
241 union {
169d6227
CH
242 struct { /* needed for BNO, CNT, INO */
243 struct xfs_buf *agbp; /* agf/agi buffer pointer */
2c3234d1 244 struct xfs_defer_ops *dfops; /* deferred updates */
1da177e4
LT
245 xfs_agnumber_t agno; /* ag number */
246 } a;
247 struct { /* needed for BMAP */
248 struct xfs_inode *ip; /* pointer to our inode */
2c3234d1 249 struct xfs_defer_ops *dfops; /* deferred updates */
1da177e4
LT
250 xfs_fsblock_t firstblock; /* 1st blk allocated */
251 int allocated; /* count of alloced */
252 short forksize; /* fork's inode space */
253 char whichfork; /* data or attr fork */
254 char flags; /* flags */
255#define XFS_BTCUR_BPRV_WASDEL 1 /* was delayed */
256 } b;
1da177e4
LT
257 } bc_private; /* per-btree type data */
258} xfs_btree_cur_t;
259
8186e517 260/* cursor flags */
e99ab90d 261#define XFS_BTREE_LONG_PTRS (1<<0) /* pointers are 64bits long */
8186e517 262#define XFS_BTREE_ROOT_IN_INODE (1<<1) /* root may be variable size */
278d0ca1 263#define XFS_BTREE_LASTREC_UPDATE (1<<2) /* track last rec externally */
ee1a47ab 264#define XFS_BTREE_CRC_BLOCKS (1<<3) /* uses extended btree blocks */
2c813ad6 265#define XFS_BTREE_OVERLAPPING (1<<4) /* overlapping intervals */
8186e517
CH
266
267
1da177e4
LT
268#define XFS_BTREE_NOERROR 0
269#define XFS_BTREE_ERROR 1
270
271/*
272 * Convert from buffer to btree block header.
273 */
62926044 274#define XFS_BUF_TO_BLOCK(bp) ((struct xfs_btree_block *)((bp)->b_addr))
1da177e4 275
1da177e4 276
1da177e4 277/*
a23f6ef8 278 * Check that block header is ok.
1da177e4 279 */
a23f6ef8
CH
280int
281xfs_btree_check_block(
282 struct xfs_btree_cur *cur, /* btree cursor */
283 struct xfs_btree_block *block, /* generic btree block pointer */
1da177e4
LT
284 int level, /* level of the btree block */
285 struct xfs_buf *bp); /* buffer containing block, if any */
286
287/*
a23f6ef8 288 * Check that (long) pointer is ok.
1da177e4
LT
289 */
290int /* error (0 or EFSCORRUPTED) */
291xfs_btree_check_lptr(
a23f6ef8 292 struct xfs_btree_cur *cur, /* btree cursor */
d5cf09ba 293 xfs_fsblock_t ptr, /* btree block disk address */
1da177e4
LT
294 int level); /* btree block level */
295
1da177e4
LT
296/*
297 * Delete the btree cursor.
298 */
299void
300xfs_btree_del_cursor(
301 xfs_btree_cur_t *cur, /* btree cursor */
302 int error); /* del because of error */
303
304/*
305 * Duplicate the btree cursor.
306 * Allocate a new one, copy the record, re-get the buffers.
307 */
308int /* error */
309xfs_btree_dup_cursor(
310 xfs_btree_cur_t *cur, /* input cursor */
311 xfs_btree_cur_t **ncur);/* output cursor */
312
1da177e4
LT
313/*
314 * Get a buffer for the block, return it with no data read.
315 * Long-form addressing.
316 */
317struct xfs_buf * /* buffer for fsbno */
318xfs_btree_get_bufl(
319 struct xfs_mount *mp, /* file system mount point */
320 struct xfs_trans *tp, /* transaction pointer */
321 xfs_fsblock_t fsbno, /* file system block number */
322 uint lock); /* lock flags for get_buf */
323
324/*
325 * Get a buffer for the block, return it with no data read.
326 * Short-form addressing.
327 */
328struct xfs_buf * /* buffer for agno/agbno */
329xfs_btree_get_bufs(
330 struct xfs_mount *mp, /* file system mount point */
331 struct xfs_trans *tp, /* transaction pointer */
332 xfs_agnumber_t agno, /* allocation group number */
333 xfs_agblock_t agbno, /* allocation group block number */
334 uint lock); /* lock flags for get_buf */
335
1da177e4
LT
336/*
337 * Check for the cursor referring to the last block at the given level.
338 */
339int /* 1=is last block, 0=not last block */
340xfs_btree_islastblock(
341 xfs_btree_cur_t *cur, /* btree cursor */
342 int level); /* level to check */
343
1da177e4
LT
344/*
345 * Compute first and last byte offsets for the fields given.
346 * Interprets the offsets table, which contains struct field offsets.
347 */
348void
349xfs_btree_offsets(
350 __int64_t fields, /* bitmask of fields */
351 const short *offsets,/* table of field offsets */
352 int nbits, /* number of bits to inspect */
353 int *first, /* output: first byte offset */
354 int *last); /* output: last byte offset */
355
356/*
357 * Get a buffer for the block, return it read in.
358 * Long-form addressing.
359 */
360int /* error */
361xfs_btree_read_bufl(
362 struct xfs_mount *mp, /* file system mount point */
363 struct xfs_trans *tp, /* transaction pointer */
364 xfs_fsblock_t fsbno, /* file system block number */
365 uint lock, /* lock flags for read_buf */
366 struct xfs_buf **bpp, /* buffer for fsbno */
3d3e6f64 367 int refval, /* ref count value for buffer */
1813dd64 368 const struct xfs_buf_ops *ops);
1da177e4 369
1da177e4
LT
370/*
371 * Read-ahead the block, don't wait for it, don't return a buffer.
372 * Long-form addressing.
373 */
374void /* error */
375xfs_btree_reada_bufl(
376 struct xfs_mount *mp, /* file system mount point */
377 xfs_fsblock_t fsbno, /* file system block number */
3d3e6f64 378 xfs_extlen_t count, /* count of filesystem blocks */
1813dd64 379 const struct xfs_buf_ops *ops);
1da177e4
LT
380
381/*
382 * Read-ahead the block, don't wait for it, don't return a buffer.
383 * Short-form addressing.
384 */
385void /* error */
386xfs_btree_reada_bufs(
387 struct xfs_mount *mp, /* file system mount point */
388 xfs_agnumber_t agno, /* allocation group number */
389 xfs_agblock_t agbno, /* allocation group block number */
3d3e6f64 390 xfs_extlen_t count, /* count of filesystem blocks */
1813dd64 391 const struct xfs_buf_ops *ops);
1da177e4 392
b64f3a39
DC
393/*
394 * Initialise a new btree block header
395 */
396void
397xfs_btree_init_block(
398 struct xfs_mount *mp,
399 struct xfs_buf *bp,
400 __u32 magic,
401 __u16 level,
402 __u16 numrecs,
ee1a47ab 403 __u64 owner,
b64f3a39 404 unsigned int flags);
65f1eaea 405
ee1a47ab
CH
406void
407xfs_btree_init_block_int(
408 struct xfs_mount *mp,
409 struct xfs_btree_block *buf,
410 xfs_daddr_t blkno,
411 __u32 magic,
412 __u16 level,
413 __u16 numrecs,
414 __u64 owner,
415 unsigned int flags);
416
637aa50f
CH
417/*
418 * Common btree core entry points.
419 */
420int xfs_btree_increment(struct xfs_btree_cur *, int, int *);
8df4da4a 421int xfs_btree_decrement(struct xfs_btree_cur *, int, int *);
fe033cc8 422int xfs_btree_lookup(struct xfs_btree_cur *, xfs_lookup_t, int *);
278d0ca1 423int xfs_btree_update(struct xfs_btree_cur *, union xfs_btree_rec *);
ea77b0a6 424int xfs_btree_new_iroot(struct xfs_btree_cur *, int *, int *);
4b22a571 425int xfs_btree_insert(struct xfs_btree_cur *, int *);
91cca5df 426int xfs_btree_delete(struct xfs_btree_cur *, int *);
8cc938fe 427int xfs_btree_get_rec(struct xfs_btree_cur *, union xfs_btree_rec **, int *);
638f4416
DC
428int xfs_btree_change_owner(struct xfs_btree_cur *cur, __uint64_t new_owner,
429 struct list_head *buffer_list);
637aa50f 430
ee1a47ab
CH
431/*
432 * btree block CRC helpers
433 */
434void xfs_btree_lblock_calc_crc(struct xfs_buf *);
435bool xfs_btree_lblock_verify_crc(struct xfs_buf *);
436void xfs_btree_sblock_calc_crc(struct xfs_buf *);
437bool xfs_btree_sblock_verify_crc(struct xfs_buf *);
438
fd6bcc5b
CH
439/*
440 * Internal btree helpers also used by xfs_bmap.c.
441 */
442void xfs_btree_log_block(struct xfs_btree_cur *, struct xfs_buf *, int);
443void xfs_btree_log_recs(struct xfs_btree_cur *, struct xfs_buf *, int, int);
444
65f1eaea
CH
445/*
446 * Helpers.
447 */
637aa50f
CH
448static inline int xfs_btree_get_numrecs(struct xfs_btree_block *block)
449{
450 return be16_to_cpu(block->bb_numrecs);
451}
452
9eaead51
CH
453static inline void xfs_btree_set_numrecs(struct xfs_btree_block *block,
454 __uint16_t numrecs)
455{
456 block->bb_numrecs = cpu_to_be16(numrecs);
457}
458
65f1eaea
CH
459static inline int xfs_btree_get_level(struct xfs_btree_block *block)
460{
461 return be16_to_cpu(block->bb_level);
462}
463
1da177e4
LT
464
465/*
466 * Min and max functions for extlen, agblock, fileoff, and filblks types.
467 */
54aa8e26
DC
468#define XFS_EXTLEN_MIN(a,b) min_t(xfs_extlen_t, (a), (b))
469#define XFS_EXTLEN_MAX(a,b) max_t(xfs_extlen_t, (a), (b))
470#define XFS_AGBLOCK_MIN(a,b) min_t(xfs_agblock_t, (a), (b))
471#define XFS_AGBLOCK_MAX(a,b) max_t(xfs_agblock_t, (a), (b))
472#define XFS_FILEOFF_MIN(a,b) min_t(xfs_fileoff_t, (a), (b))
473#define XFS_FILEOFF_MAX(a,b) max_t(xfs_fileoff_t, (a), (b))
474#define XFS_FILBLKS_MIN(a,b) min_t(xfs_filblks_t, (a), (b))
475#define XFS_FILBLKS_MAX(a,b) max_t(xfs_filblks_t, (a), (b))
a844f451 476
1da177e4
LT
477#define XFS_FSB_SANITY_CHECK(mp,fsb) \
478 (XFS_FSB_TO_AGNO(mp, fsb) < mp->m_sb.sb_agcount && \
a844f451 479 XFS_FSB_TO_AGBNO(mp, fsb) < mp->m_sb.sb_agblocks)
1da177e4 480
c84470dd
CH
481/*
482 * Trace hooks. Currently not implemented as they need to be ported
483 * over to the generic tracing functionality, which is some effort.
484 *
485 * i,j = integer (32 bit)
486 * b = btree block buffer (xfs_buf_t)
487 * p = btree ptr
488 * r = btree record
489 * k = btree key
490 */
491#define XFS_BTREE_TRACE_ARGBI(c, b, i)
492#define XFS_BTREE_TRACE_ARGBII(c, b, i, j)
493#define XFS_BTREE_TRACE_ARGI(c, i)
494#define XFS_BTREE_TRACE_ARGIPK(c, i, p, s)
495#define XFS_BTREE_TRACE_ARGIPR(c, i, p, r)
496#define XFS_BTREE_TRACE_ARGIK(c, i, k)
497#define XFS_BTREE_TRACE_ARGR(c, r)
498#define XFS_BTREE_TRACE_CURSOR(c, t)
499
c5ab131b
DW
500bool xfs_btree_sblock_v5hdr_verify(struct xfs_buf *bp);
501bool xfs_btree_sblock_verify(struct xfs_buf *bp, unsigned int max_recs);
19b54ee6
DW
502uint xfs_btree_compute_maxlevels(struct xfs_mount *mp, uint *limits,
503 unsigned long len);
4ed3f687
DW
504xfs_extlen_t xfs_btree_calc_size(struct xfs_mount *mp, uint *limits,
505 unsigned long long len);
c5ab131b 506
105f7d83
DW
507/* return codes */
508#define XFS_BTREE_QUERY_RANGE_CONTINUE 0 /* keep iterating */
509#define XFS_BTREE_QUERY_RANGE_ABORT 1 /* stop iterating */
510typedef int (*xfs_btree_query_range_fn)(struct xfs_btree_cur *cur,
511 union xfs_btree_rec *rec, void *priv);
512
513int xfs_btree_query_range(struct xfs_btree_cur *cur,
514 union xfs_btree_irec *low_rec, union xfs_btree_irec *high_rec,
515 xfs_btree_query_range_fn fn, void *priv);
516
28a89567
DW
517typedef int (*xfs_btree_visit_blocks_fn)(struct xfs_btree_cur *cur, int level,
518 void *data);
519int xfs_btree_visit_blocks(struct xfs_btree_cur *cur,
520 xfs_btree_visit_blocks_fn fn, void *data);
521
1da177e4 522#endif /* __XFS_BTREE_H__ */