blob: 7cde287b5c9c009205f6ce4178675c3e801b361a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18#ifndef __XFS_BTREE_H__
19#define __XFS_BTREE_H__
20
21struct xfs_buf;
22struct xfs_bmap_free;
23struct xfs_inode;
24struct xfs_mount;
25struct xfs_trans;
26
David Chinnera8272ce2007-11-23 16:28:09 +110027extern kmem_zone_t *xfs_btree_cur_zone;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
30 * This nonsense is to make -wlint happy.
31 */
32#define XFS_LOOKUP_EQ ((xfs_lookup_t)XFS_LOOKUP_EQi)
33#define XFS_LOOKUP_LE ((xfs_lookup_t)XFS_LOOKUP_LEi)
34#define XFS_LOOKUP_GE ((xfs_lookup_t)XFS_LOOKUP_GEi)
35
36#define XFS_BTNUM_BNO ((xfs_btnum_t)XFS_BTNUM_BNOi)
37#define XFS_BTNUM_CNT ((xfs_btnum_t)XFS_BTNUM_CNTi)
38#define XFS_BTNUM_BMAP ((xfs_btnum_t)XFS_BTNUM_BMAPi)
39#define XFS_BTNUM_INO ((xfs_btnum_t)XFS_BTNUM_INOi)
40
41/*
42 * Short form header: space allocation btrees.
43 */
Christoph Hellwig16259e72005-11-02 15:11:25 +110044typedef struct xfs_btree_sblock {
45 __be32 bb_magic; /* magic number for block type */
46 __be16 bb_level; /* 0 is a leaf */
47 __be16 bb_numrecs; /* current # of data records */
48 __be32 bb_leftsib; /* left sibling block or NULLAGBLOCK */
49 __be32 bb_rightsib; /* right sibling block or NULLAGBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050} xfs_btree_sblock_t;
51
52/*
53 * Long form header: bmap btrees.
54 */
Christoph Hellwig16259e72005-11-02 15:11:25 +110055typedef struct xfs_btree_lblock {
56 __be32 bb_magic; /* magic number for block type */
57 __be16 bb_level; /* 0 is a leaf */
58 __be16 bb_numrecs; /* current # of data records */
59 __be64 bb_leftsib; /* left sibling block or NULLDFSBNO */
60 __be64 bb_rightsib; /* right sibling block or NULLDFSBNO */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061} xfs_btree_lblock_t;
62
63/*
64 * Combined header and structure, used by common code.
65 */
Christoph Hellwigf2277f02008-10-30 16:53:47 +110066typedef struct xfs_btree_block {
Christoph Hellwig16259e72005-11-02 15:11:25 +110067 __be32 bb_magic; /* magic number for block type */
68 __be16 bb_level; /* 0 is a leaf */
69 __be16 bb_numrecs; /* current # of data records */
Christoph Hellwig16259e72005-11-02 15:11:25 +110070 union {
71 struct {
72 __be32 bb_leftsib;
73 __be32 bb_rightsib;
74 } s; /* short form pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 struct {
Christoph Hellwig16259e72005-11-02 15:11:25 +110076 __be64 bb_leftsib;
77 __be64 bb_rightsib;
78 } l; /* long form pointers */
79 } bb_u; /* rest */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080} xfs_btree_block_t;
81
82/*
Christoph Hellwigde227dd2008-10-30 16:54:12 +110083 * Generic key, ptr and record wrapper structures.
84 *
85 * These are disk format structures, and are converted where necessary
86 * by the btree specific code that needs to interpret them.
87 */
88union xfs_btree_ptr {
89 __be32 s; /* short form ptr */
90 __be64 l; /* long form ptr */
91};
92
93union xfs_btree_key {
94 xfs_bmbt_key_t bmbt;
95 xfs_bmdr_key_t bmbr; /* bmbt root block */
96 xfs_alloc_key_t alloc;
97 xfs_inobt_key_t inobt;
98};
99
100union xfs_btree_rec {
101 xfs_bmbt_rec_t bmbt;
102 xfs_bmdr_rec_t bmbr; /* bmbt root block */
103 xfs_alloc_rec_t alloc;
104 xfs_inobt_rec_t inobt;
105};
106
107/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * For logging record fields.
109 */
110#define XFS_BB_MAGIC 0x01
111#define XFS_BB_LEVEL 0x02
112#define XFS_BB_NUMRECS 0x04
113#define XFS_BB_LEFTSIB 0x08
114#define XFS_BB_RIGHTSIB 0x10
115#define XFS_BB_NUM_BITS 5
116#define XFS_BB_ALL_BITS ((1 << XFS_BB_NUM_BITS) - 1)
117
118/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * Magic numbers for btree blocks.
120 */
121extern const __uint32_t xfs_magics[];
122
123/*
David Chinner854929f2008-10-30 16:55:03 +1100124 * Generic stats interface
125 */
126#define __XFS_BTREE_STATS_INC(type, stat) \
127 XFS_STATS_INC(xs_ ## type ## _2_ ## stat)
128#define XFS_BTREE_STATS_INC(cur, stat) \
129do { \
130 switch (cur->bc_btnum) { \
131 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_INC(abtb, stat); break; \
132 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_INC(abtc, stat); break; \
133 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_INC(bmbt, stat); break; \
134 case XFS_BTNUM_INO: __XFS_BTREE_STATS_INC(ibt, stat); break; \
135 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
136 } \
137} while (0)
138
139#define __XFS_BTREE_STATS_ADD(type, stat, val) \
140 XFS_STATS_ADD(xs_ ## type ## _2_ ## stat, val)
141#define XFS_BTREE_STATS_ADD(cur, stat, val) \
142do { \
143 switch (cur->bc_btnum) { \
144 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_ADD(abtb, stat, val); break; \
145 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_ADD(abtc, stat, val); break; \
146 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_ADD(bmbt, stat, val); break; \
147 case XFS_BTNUM_INO: __XFS_BTREE_STATS_ADD(ibt, stat, val); break; \
148 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
149 } \
150} while (0)
151/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * Maximum and minimum records in a btree block.
153 * Given block size, type prefix, and leaf flag (0 or 1).
154 * The divisor below is equivalent to lf ? (e1) : (e2) but that produces
155 * compiler warnings.
156 */
157#define XFS_BTREE_BLOCK_MAXRECS(bsz,t,lf) \
158 ((int)(((bsz) - (uint)sizeof(t ## _block_t)) / \
159 (((lf) * (uint)sizeof(t ## _rec_t)) + \
160 ((1 - (lf)) * \
161 ((uint)sizeof(t ## _key_t) + (uint)sizeof(t ## _ptr_t))))))
162#define XFS_BTREE_BLOCK_MINRECS(bsz,t,lf) \
163 (XFS_BTREE_BLOCK_MAXRECS(bsz,t,lf) / 2)
164
165/*
166 * Record, key, and pointer address calculation macros.
167 * Given block size, type prefix, block pointer, and index of requested entry
168 * (first entry numbered 1).
169 */
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100170#define XFS_BTREE_REC_ADDR(t,bb,i) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 ((t ## _rec_t *)((char *)(bb) + sizeof(t ## _block_t) + \
172 ((i) - 1) * sizeof(t ## _rec_t)))
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100173#define XFS_BTREE_KEY_ADDR(t,bb,i) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 ((t ## _key_t *)((char *)(bb) + sizeof(t ## _block_t) + \
175 ((i) - 1) * sizeof(t ## _key_t)))
Eric Sandeen2c36dde2007-02-10 18:37:33 +1100176#define XFS_BTREE_PTR_ADDR(t,bb,i,mxr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 ((t ## _ptr_t *)((char *)(bb) + sizeof(t ## _block_t) + \
178 (mxr) * sizeof(t ## _key_t) + ((i) - 1) * sizeof(t ## _ptr_t)))
179
180#define XFS_BTREE_MAXLEVELS 8 /* max of all btrees */
181
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100182struct xfs_btree_ops {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100183 /* size of the key and record structures */
184 size_t key_len;
185 size_t rec_len;
186
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100187 /* cursor operations */
188 struct xfs_btree_cur *(*dup_cursor)(struct xfs_btree_cur *);
Christoph Hellwig8c4ed632008-10-30 16:55:13 +1100189
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100190 /* update last record information */
191 void (*update_lastrec)(struct xfs_btree_cur *cur,
192 struct xfs_btree_block *block,
193 union xfs_btree_rec *rec,
194 int ptr, int reason);
195
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100196 /* records in block/level */
197 int (*get_maxrecs)(struct xfs_btree_cur *cur, int level);
198
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100199 /* init values of btree structures */
200 void (*init_key_from_rec)(union xfs_btree_key *key,
201 union xfs_btree_rec *rec);
202 void (*init_ptr_from_cur)(struct xfs_btree_cur *cur,
203 union xfs_btree_ptr *ptr);
204
205 /* difference between key value and cursor value */
206 __int64_t (*key_diff)(struct xfs_btree_cur *cur,
207 union xfs_btree_key *key);
208
Christoph Hellwig8c4ed632008-10-30 16:55:13 +1100209 /* btree tracing */
210#ifdef XFS_BTREE_TRACE
211 void (*trace_enter)(struct xfs_btree_cur *, const char *,
212 char *, int, int, __psunsigned_t,
213 __psunsigned_t, __psunsigned_t,
214 __psunsigned_t, __psunsigned_t,
215 __psunsigned_t, __psunsigned_t,
216 __psunsigned_t, __psunsigned_t,
217 __psunsigned_t, __psunsigned_t);
218 void (*trace_cursor)(struct xfs_btree_cur *, __uint32_t *,
219 __uint64_t *, __uint64_t *);
220 void (*trace_key)(struct xfs_btree_cur *,
221 union xfs_btree_key *, __uint64_t *,
222 __uint64_t *);
223 void (*trace_record)(struct xfs_btree_cur *,
224 union xfs_btree_rec *, __uint64_t *,
225 __uint64_t *, __uint64_t *);
226#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100227};
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100230 * Reasons for the update_lastrec method to be called.
231 */
232#define LASTREC_UPDATE 0
233
234
235/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 * Btree cursor structure.
237 * This collects all information needed by the btree code in one place.
238 */
239typedef struct xfs_btree_cur
240{
241 struct xfs_trans *bc_tp; /* transaction we're in, if any */
242 struct xfs_mount *bc_mp; /* file system mount struct */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100243 const struct xfs_btree_ops *bc_ops;
Christoph Hellwig8186e512008-10-30 16:54:22 +1100244 uint bc_flags; /* btree features - below */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 union {
Christoph Hellwig16259e72005-11-02 15:11:25 +1100246 xfs_alloc_rec_incore_t a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 xfs_bmbt_irec_t b;
Christoph Hellwig61a25842006-09-28 10:57:04 +1000248 xfs_inobt_rec_incore_t i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 } bc_rec; /* current insert/search record value */
250 struct xfs_buf *bc_bufs[XFS_BTREE_MAXLEVELS]; /* buf ptr per level */
251 int bc_ptrs[XFS_BTREE_MAXLEVELS]; /* key/record # */
252 __uint8_t bc_ra[XFS_BTREE_MAXLEVELS]; /* readahead bits */
253#define XFS_BTCUR_LEFTRA 1 /* left sibling has been read-ahead */
254#define XFS_BTCUR_RIGHTRA 2 /* right sibling has been read-ahead */
255 __uint8_t bc_nlevels; /* number of levels in the tree */
256 __uint8_t bc_blocklog; /* log2(blocksize) of btree blocks */
257 xfs_btnum_t bc_btnum; /* identifies which btree type */
258 union {
Christoph Hellwig169d6222008-08-13 16:25:27 +1000259 struct { /* needed for BNO, CNT, INO */
260 struct xfs_buf *agbp; /* agf/agi buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 xfs_agnumber_t agno; /* ag number */
262 } a;
263 struct { /* needed for BMAP */
264 struct xfs_inode *ip; /* pointer to our inode */
265 struct xfs_bmap_free *flist; /* list to free after */
266 xfs_fsblock_t firstblock; /* 1st blk allocated */
267 int allocated; /* count of alloced */
268 short forksize; /* fork's inode space */
269 char whichfork; /* data or attr fork */
270 char flags; /* flags */
271#define XFS_BTCUR_BPRV_WASDEL 1 /* was delayed */
272 } b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 } bc_private; /* per-btree type data */
274} xfs_btree_cur_t;
275
Christoph Hellwig8186e512008-10-30 16:54:22 +1100276/* cursor flags */
Christoph Hellwige99ab902008-10-30 16:54:33 +1100277#define XFS_BTREE_LONG_PTRS (1<<0) /* pointers are 64bits long */
Christoph Hellwig8186e512008-10-30 16:54:22 +1100278#define XFS_BTREE_ROOT_IN_INODE (1<<1) /* root may be variable size */
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100279#define XFS_BTREE_LASTREC_UPDATE (1<<2) /* track last rec externally */
Christoph Hellwig8186e512008-10-30 16:54:22 +1100280
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define XFS_BTREE_NOERROR 0
283#define XFS_BTREE_ERROR 1
284
285/*
286 * Convert from buffer to btree block header.
287 */
Nathan Scotta844f452005-11-02 14:38:42 +1100288#define XFS_BUF_TO_BLOCK(bp) ((xfs_btree_block_t *)XFS_BUF_PTR(bp))
289#define XFS_BUF_TO_LBLOCK(bp) ((xfs_btree_lblock_t *)XFS_BUF_PTR(bp))
290#define XFS_BUF_TO_SBLOCK(bp) ((xfs_btree_sblock_t *)XFS_BUF_PTR(bp))
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293#ifdef __KERNEL__
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295/*
Christoph Hellwiga23f6ef2008-10-30 16:54:53 +1100296 * Check that long form block header is ok.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 */
Christoph Hellwiga23f6ef2008-10-30 16:54:53 +1100298int /* error (0 or EFSCORRUPTED) */
299xfs_btree_check_lblock(
300 struct xfs_btree_cur *cur, /* btree cursor */
301 struct xfs_btree_lblock *block, /* btree long form block pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 int level, /* level of the btree block */
303 struct xfs_buf *bp); /* buffer containing block, if any */
304
305/*
Christoph Hellwiga23f6ef2008-10-30 16:54:53 +1100306 * Check that short form block header is ok.
307 */
308int /* error (0 or EFSCORRUPTED) */
309xfs_btree_check_sblock(
310 struct xfs_btree_cur *cur, /* btree cursor */
311 struct xfs_btree_sblock *block, /* btree short form block pointer */
312 int level, /* level of the btree block */
313 struct xfs_buf *bp); /* buffer containing block */
314
315/*
316 * Check that block header is ok.
317 */
318int
319xfs_btree_check_block(
320 struct xfs_btree_cur *cur, /* btree cursor */
321 struct xfs_btree_block *block, /* generic btree block pointer */
322 int level, /* level of the btree block */
323 struct xfs_buf *bp); /* buffer containing block, if any */
324
325/*
326 * Check that (long) pointer is ok.
327 */
328int /* error (0 or EFSCORRUPTED) */
329xfs_btree_check_lptr(
330 struct xfs_btree_cur *cur, /* btree cursor */
331 xfs_dfsbno_t ptr, /* btree block disk address */
332 int level); /* btree block level */
333
334#define xfs_btree_check_lptr_disk(cur, ptr, level) \
335 xfs_btree_check_lptr(cur, be64_to_cpu(ptr), level)
336
337
338/*
339 * Check that (short) pointer is ok.
340 */
341int /* error (0 or EFSCORRUPTED) */
342xfs_btree_check_sptr(
343 struct xfs_btree_cur *cur, /* btree cursor */
344 xfs_agblock_t ptr, /* btree block disk address */
345 int level); /* btree block level */
346
347/*
348 * Check that (short) pointer is ok.
349 */
350int /* error (0 or EFSCORRUPTED) */
351xfs_btree_check_ptr(
352 struct xfs_btree_cur *cur, /* btree cursor */
353 union xfs_btree_ptr *ptr, /* btree block disk address */
354 int index, /* offset from ptr to check */
355 int level); /* btree block level */
356
357#ifdef DEBUG
358
359/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 * Debug routine: check that keys are in the right order.
361 */
362void
363xfs_btree_check_key(
364 xfs_btnum_t btnum, /* btree identifier */
365 void *ak1, /* pointer to left (lower) key */
366 void *ak2); /* pointer to right (higher) key */
367
368/*
369 * Debug routine: check that records are in the right order.
370 */
371void
372xfs_btree_check_rec(
373 xfs_btnum_t btnum, /* btree identifier */
374 void *ar1, /* pointer to left (lower) record */
375 void *ar2); /* pointer to right (higher) record */
376#else
Christoph Hellwiga23f6ef2008-10-30 16:54:53 +1100377#define xfs_btree_check_key(a, b, c)
378#define xfs_btree_check_rec(a, b, c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#endif /* DEBUG */
380
381/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 * Delete the btree cursor.
383 */
384void
385xfs_btree_del_cursor(
386 xfs_btree_cur_t *cur, /* btree cursor */
387 int error); /* del because of error */
388
389/*
390 * Duplicate the btree cursor.
391 * Allocate a new one, copy the record, re-get the buffers.
392 */
393int /* error */
394xfs_btree_dup_cursor(
395 xfs_btree_cur_t *cur, /* input cursor */
396 xfs_btree_cur_t **ncur);/* output cursor */
397
398/*
399 * Change the cursor to point to the first record in the current block
400 * at the given level. Other levels are unaffected.
401 */
402int /* success=1, failure=0 */
403xfs_btree_firstrec(
404 xfs_btree_cur_t *cur, /* btree cursor */
405 int level); /* level to change */
406
407/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * Get a buffer for the block, return it with no data read.
409 * Long-form addressing.
410 */
411struct xfs_buf * /* buffer for fsbno */
412xfs_btree_get_bufl(
413 struct xfs_mount *mp, /* file system mount point */
414 struct xfs_trans *tp, /* transaction pointer */
415 xfs_fsblock_t fsbno, /* file system block number */
416 uint lock); /* lock flags for get_buf */
417
418/*
419 * Get a buffer for the block, return it with no data read.
420 * Short-form addressing.
421 */
422struct xfs_buf * /* buffer for agno/agbno */
423xfs_btree_get_bufs(
424 struct xfs_mount *mp, /* file system mount point */
425 struct xfs_trans *tp, /* transaction pointer */
426 xfs_agnumber_t agno, /* allocation group number */
427 xfs_agblock_t agbno, /* allocation group block number */
428 uint lock); /* lock flags for get_buf */
429
430/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * Check for the cursor referring to the last block at the given level.
432 */
433int /* 1=is last block, 0=not last block */
434xfs_btree_islastblock(
435 xfs_btree_cur_t *cur, /* btree cursor */
436 int level); /* level to check */
437
438/*
439 * Change the cursor to point to the last record in the current block
440 * at the given level. Other levels are unaffected.
441 */
442int /* success=1, failure=0 */
443xfs_btree_lastrec(
444 xfs_btree_cur_t *cur, /* btree cursor */
445 int level); /* level to change */
446
447/*
448 * Compute first and last byte offsets for the fields given.
449 * Interprets the offsets table, which contains struct field offsets.
450 */
451void
452xfs_btree_offsets(
453 __int64_t fields, /* bitmask of fields */
454 const short *offsets,/* table of field offsets */
455 int nbits, /* number of bits to inspect */
456 int *first, /* output: first byte offset */
457 int *last); /* output: last byte offset */
458
459/*
460 * Get a buffer for the block, return it read in.
461 * Long-form addressing.
462 */
463int /* error */
464xfs_btree_read_bufl(
465 struct xfs_mount *mp, /* file system mount point */
466 struct xfs_trans *tp, /* transaction pointer */
467 xfs_fsblock_t fsbno, /* file system block number */
468 uint lock, /* lock flags for read_buf */
469 struct xfs_buf **bpp, /* buffer for fsbno */
470 int refval);/* ref count value for buffer */
471
472/*
473 * Get a buffer for the block, return it read in.
474 * Short-form addressing.
475 */
476int /* error */
477xfs_btree_read_bufs(
478 struct xfs_mount *mp, /* file system mount point */
479 struct xfs_trans *tp, /* transaction pointer */
480 xfs_agnumber_t agno, /* allocation group number */
481 xfs_agblock_t agbno, /* allocation group block number */
482 uint lock, /* lock flags for read_buf */
483 struct xfs_buf **bpp, /* buffer for agno/agbno */
484 int refval);/* ref count value for buffer */
485
486/*
487 * Read-ahead the block, don't wait for it, don't return a buffer.
488 * Long-form addressing.
489 */
490void /* error */
491xfs_btree_reada_bufl(
492 struct xfs_mount *mp, /* file system mount point */
493 xfs_fsblock_t fsbno, /* file system block number */
494 xfs_extlen_t count); /* count of filesystem blocks */
495
496/*
497 * Read-ahead the block, don't wait for it, don't return a buffer.
498 * Short-form addressing.
499 */
500void /* error */
501xfs_btree_reada_bufs(
502 struct xfs_mount *mp, /* file system mount point */
503 xfs_agnumber_t agno, /* allocation group number */
504 xfs_agblock_t agbno, /* allocation group block number */
505 xfs_extlen_t count); /* count of filesystem blocks */
506
507/*
508 * Read-ahead btree blocks, at the given level.
509 * Bits in lr are set from XFS_BTCUR_{LEFT,RIGHT}RA.
510 */
511int /* readahead block count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512xfs_btree_readahead(
513 xfs_btree_cur_t *cur, /* btree cursor */
514 int lev, /* level in btree */
Christoph Hellwigb524bfe2008-10-30 16:54:43 +1100515 int lr); /* left/right bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517/*
518 * Set the buffer for level "lev" in the cursor to bp, releasing
519 * any previous buffer.
520 */
521void
522xfs_btree_setbuf(
523 xfs_btree_cur_t *cur, /* btree cursor */
524 int lev, /* level in btree */
525 struct xfs_buf *bp); /* new buffer to set */
526
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100527
528/*
Christoph Hellwig637aa502008-10-30 16:55:45 +1100529 * Common btree core entry points.
530 */
531int xfs_btree_increment(struct xfs_btree_cur *, int, int *);
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100532int xfs_btree_decrement(struct xfs_btree_cur *, int, int *);
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100533int xfs_btree_lookup(struct xfs_btree_cur *, xfs_lookup_t, int *);
Christoph Hellwig38bb7422008-10-30 16:56:22 +1100534int xfs_btree_updkey(struct xfs_btree_cur *, union xfs_btree_key *, int);
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100535int xfs_btree_update(struct xfs_btree_cur *, union xfs_btree_rec *);
Christoph Hellwig687b8902008-10-30 16:56:53 +1100536int xfs_btree_lshift(struct xfs_btree_cur *, int, int *);
Christoph Hellwig9eaead52008-10-30 16:56:43 +1100537int xfs_btree_rshift(struct xfs_btree_cur *, int, int *);
Christoph Hellwig637aa502008-10-30 16:55:45 +1100538
539/*
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100540 * Helpers.
541 */
Christoph Hellwig637aa502008-10-30 16:55:45 +1100542static inline int xfs_btree_get_numrecs(struct xfs_btree_block *block)
543{
544 return be16_to_cpu(block->bb_numrecs);
545}
546
Christoph Hellwig9eaead52008-10-30 16:56:43 +1100547static inline void xfs_btree_set_numrecs(struct xfs_btree_block *block,
548 __uint16_t numrecs)
549{
550 block->bb_numrecs = cpu_to_be16(numrecs);
551}
552
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100553static inline int xfs_btree_get_level(struct xfs_btree_block *block)
554{
555 return be16_to_cpu(block->bb_level);
556}
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#endif /* __KERNEL__ */
559
560
561/*
562 * Min and max functions for extlen, agblock, fileoff, and filblks types.
563 */
David Chinner54aa8e22007-06-28 16:43:39 +1000564#define XFS_EXTLEN_MIN(a,b) min_t(xfs_extlen_t, (a), (b))
565#define XFS_EXTLEN_MAX(a,b) max_t(xfs_extlen_t, (a), (b))
566#define XFS_AGBLOCK_MIN(a,b) min_t(xfs_agblock_t, (a), (b))
567#define XFS_AGBLOCK_MAX(a,b) max_t(xfs_agblock_t, (a), (b))
568#define XFS_FILEOFF_MIN(a,b) min_t(xfs_fileoff_t, (a), (b))
569#define XFS_FILEOFF_MAX(a,b) max_t(xfs_fileoff_t, (a), (b))
570#define XFS_FILBLKS_MIN(a,b) min_t(xfs_filblks_t, (a), (b))
571#define XFS_FILBLKS_MAX(a,b) max_t(xfs_filblks_t, (a), (b))
Nathan Scotta844f452005-11-02 14:38:42 +1100572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573#define XFS_FSB_SANITY_CHECK(mp,fsb) \
574 (XFS_FSB_TO_AGNO(mp, fsb) < mp->m_sb.sb_agcount && \
Nathan Scotta844f452005-11-02 14:38:42 +1100575 XFS_FSB_TO_AGBNO(mp, fsb) < mp->m_sb.sb_agblocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577#endif /* __XFS_BTREE_H__ */