blob: 55e3c7cc3c3d3f22178fb1feb8aab44679821172 [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/*
Christoph Hellwig7cc95a82008-10-30 17:14:34 +110042 * Generic btree header.
43 *
Malcolm Parsons9da096f2009-03-29 09:55:42 +020044 * This is a combination of the actual format used on disk for short and long
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050045 * format btrees. The first three fields are shared by both format, but the
46 * pointers are different and should be used with care.
Christoph Hellwig7cc95a82008-10-30 17:14:34 +110047 *
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050048 * To get the size of the actual short or long form headers please use the size
49 * macros below. Never use sizeof(xfs_btree_block).
50 *
51 * The blkno, crc, lsn, owner and uuid fields are only available in filesystems
52 * with the crc feature bit, and all accesses to them must be conditional on
53 * that flag.
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 */
Christoph Hellwig7cc95a82008-10-30 17:14:34 +110055struct xfs_btree_block {
Christoph Hellwig16259e72005-11-02 15:11:25 +110056 __be32 bb_magic; /* magic number for block type */
57 __be16 bb_level; /* 0 is a leaf */
58 __be16 bb_numrecs; /* current # of data records */
Christoph Hellwig16259e72005-11-02 15:11:25 +110059 union {
60 struct {
61 __be32 bb_leftsib;
62 __be32 bb_rightsib;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050063
64 __be64 bb_blkno;
65 __be64 bb_lsn;
66 uuid_t bb_uuid;
67 __be32 bb_owner;
68 __le32 bb_crc;
Christoph Hellwig16259e72005-11-02 15:11:25 +110069 } s; /* short form pointers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct {
Christoph Hellwig16259e72005-11-02 15:11:25 +110071 __be64 bb_leftsib;
72 __be64 bb_rightsib;
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050073
74 __be64 bb_blkno;
75 __be64 bb_lsn;
76 uuid_t bb_uuid;
77 __be64 bb_owner;
78 __le32 bb_crc;
79 __be32 bb_pad; /* padding for alignment */
Christoph Hellwig16259e72005-11-02 15:11:25 +110080 } l; /* long form pointers */
81 } bb_u; /* rest */
Christoph Hellwig7cc95a82008-10-30 17:14:34 +110082};
83
84#define XFS_BTREE_SBLOCK_LEN 16 /* size of a short form block */
85#define XFS_BTREE_LBLOCK_LEN 24 /* size of a long form block */
86
Christoph Hellwigee1a47a2013-04-21 14:53:46 -050087/* sizes of CRC enabled btree blocks */
88#define XFS_BTREE_SBLOCK_CRC_LEN (XFS_BTREE_SBLOCK_LEN + 40)
89#define XFS_BTREE_LBLOCK_CRC_LEN (XFS_BTREE_LBLOCK_LEN + 48)
90
91
92#define XFS_BTREE_SBLOCK_CRC_OFF \
93 offsetof(struct xfs_btree_block, bb_u.s.bb_crc)
94#define XFS_BTREE_LBLOCK_CRC_OFF \
95 offsetof(struct xfs_btree_block, bb_u.l.bb_crc)
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
Christoph Hellwigde227dd2008-10-30 16:54:12 +110099 * Generic key, ptr and record wrapper structures.
100 *
101 * These are disk format structures, and are converted where necessary
102 * by the btree specific code that needs to interpret them.
103 */
104union xfs_btree_ptr {
105 __be32 s; /* short form ptr */
106 __be64 l; /* long form ptr */
107};
108
109union xfs_btree_key {
110 xfs_bmbt_key_t bmbt;
111 xfs_bmdr_key_t bmbr; /* bmbt root block */
112 xfs_alloc_key_t alloc;
113 xfs_inobt_key_t inobt;
114};
115
116union xfs_btree_rec {
117 xfs_bmbt_rec_t bmbt;
118 xfs_bmdr_rec_t bmbr; /* bmbt root block */
119 xfs_alloc_rec_t alloc;
120 xfs_inobt_rec_t inobt;
121};
122
123/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * For logging record fields.
125 */
126#define XFS_BB_MAGIC 0x01
127#define XFS_BB_LEVEL 0x02
128#define XFS_BB_NUMRECS 0x04
129#define XFS_BB_LEFTSIB 0x08
130#define XFS_BB_RIGHTSIB 0x10
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500131#define XFS_BB_BLKNO 0x20
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define XFS_BB_NUM_BITS 5
133#define XFS_BB_ALL_BITS ((1 << XFS_BB_NUM_BITS) - 1)
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500134#define XFS_BB_NUM_BITS_CRC 8
135#define XFS_BB_ALL_BITS_CRC ((1 << XFS_BB_NUM_BITS_CRC) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/*
David Chinner854929f2008-10-30 16:55:03 +1100138 * Generic stats interface
139 */
140#define __XFS_BTREE_STATS_INC(type, stat) \
141 XFS_STATS_INC(xs_ ## type ## _2_ ## stat)
142#define XFS_BTREE_STATS_INC(cur, stat) \
143do { \
144 switch (cur->bc_btnum) { \
145 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_INC(abtb, stat); break; \
146 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_INC(abtc, stat); break; \
147 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_INC(bmbt, stat); break; \
148 case XFS_BTNUM_INO: __XFS_BTREE_STATS_INC(ibt, stat); break; \
149 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
150 } \
151} while (0)
152
153#define __XFS_BTREE_STATS_ADD(type, stat, val) \
154 XFS_STATS_ADD(xs_ ## type ## _2_ ## stat, val)
155#define XFS_BTREE_STATS_ADD(cur, stat, val) \
156do { \
157 switch (cur->bc_btnum) { \
158 case XFS_BTNUM_BNO: __XFS_BTREE_STATS_ADD(abtb, stat, val); break; \
159 case XFS_BTNUM_CNT: __XFS_BTREE_STATS_ADD(abtc, stat, val); break; \
160 case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_ADD(bmbt, stat, val); break; \
161 case XFS_BTNUM_INO: __XFS_BTREE_STATS_ADD(ibt, stat, val); break; \
162 case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \
163 } \
164} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#define XFS_BTREE_MAXLEVELS 8 /* max of all btrees */
167
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100168struct xfs_btree_ops {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100169 /* size of the key and record structures */
170 size_t key_len;
171 size_t rec_len;
172
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100173 /* cursor operations */
174 struct xfs_btree_cur *(*dup_cursor)(struct xfs_btree_cur *);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100175 void (*update_cursor)(struct xfs_btree_cur *src,
176 struct xfs_btree_cur *dst);
Christoph Hellwig8c4ed632008-10-30 16:55:13 +1100177
Christoph Hellwig344207c2008-10-30 16:57:16 +1100178 /* update btree root pointer */
179 void (*set_root)(struct xfs_btree_cur *cur,
Christoph Hellwigc0e59e12010-09-07 23:34:07 +0000180 union xfs_btree_ptr *nptr, int level_change);
Christoph Hellwig344207c2008-10-30 16:57:16 +1100181
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100182 /* block allocation / freeing */
183 int (*alloc_block)(struct xfs_btree_cur *cur,
184 union xfs_btree_ptr *start_bno,
185 union xfs_btree_ptr *new_bno,
186 int length, int *stat);
Christoph Hellwigd4b3a4b2008-10-30 16:57:51 +1100187 int (*free_block)(struct xfs_btree_cur *cur, struct xfs_buf *bp);
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100188
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100189 /* update last record information */
190 void (*update_lastrec)(struct xfs_btree_cur *cur,
191 struct xfs_btree_block *block,
192 union xfs_btree_rec *rec,
193 int ptr, int reason);
194
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100195 /* records in block/level */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100196 int (*get_minrecs)(struct xfs_btree_cur *cur, int level);
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100197 int (*get_maxrecs)(struct xfs_btree_cur *cur, int level);
198
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100199 /* records on disk. Matter for the root in inode case. */
200 int (*get_dmaxrecs)(struct xfs_btree_cur *cur, int level);
201
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100202 /* init values of btree structures */
203 void (*init_key_from_rec)(union xfs_btree_key *key,
204 union xfs_btree_rec *rec);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100205 void (*init_rec_from_key)(union xfs_btree_key *key,
206 union xfs_btree_rec *rec);
207 void (*init_rec_from_cur)(struct xfs_btree_cur *cur,
208 union xfs_btree_rec *rec);
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100209 void (*init_ptr_from_cur)(struct xfs_btree_cur *cur,
210 union xfs_btree_ptr *ptr);
211
212 /* difference between key value and cursor value */
213 __int64_t (*key_diff)(struct xfs_btree_cur *cur,
214 union xfs_btree_key *key);
215
Dave Chinner1813dd62012-11-14 17:54:40 +1100216 const struct xfs_buf_ops *buf_ops;
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100217
Dave Chinner742ae1e2013-04-30 21:39:34 +1000218#if defined(DEBUG) || defined(XFS_WARN)
Christoph Hellwig4a26e662008-10-30 16:58:32 +1100219 /* check that k1 is lower than k2 */
220 int (*keys_inorder)(struct xfs_btree_cur *cur,
221 union xfs_btree_key *k1,
222 union xfs_btree_key *k2);
223
224 /* check that r1 is lower than r2 */
225 int (*recs_inorder)(struct xfs_btree_cur *cur,
226 union xfs_btree_rec *r1,
227 union xfs_btree_rec *r2);
228#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100229};
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100232 * Reasons for the update_lastrec method to be called.
233 */
234#define LASTREC_UPDATE 0
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100235#define LASTREC_INSREC 1
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100236#define LASTREC_DELREC 2
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100237
238
239/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 * Btree cursor structure.
241 * This collects all information needed by the btree code in one place.
242 */
243typedef struct xfs_btree_cur
244{
245 struct xfs_trans *bc_tp; /* transaction we're in, if any */
246 struct xfs_mount *bc_mp; /* file system mount struct */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100247 const struct xfs_btree_ops *bc_ops;
Christoph Hellwig8186e512008-10-30 16:54:22 +1100248 uint bc_flags; /* btree features - below */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 union {
Christoph Hellwig16259e72005-11-02 15:11:25 +1100250 xfs_alloc_rec_incore_t a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 xfs_bmbt_irec_t b;
Christoph Hellwig61a25842006-09-28 10:57:04 +1000252 xfs_inobt_rec_incore_t i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 } bc_rec; /* current insert/search record value */
254 struct xfs_buf *bc_bufs[XFS_BTREE_MAXLEVELS]; /* buf ptr per level */
255 int bc_ptrs[XFS_BTREE_MAXLEVELS]; /* key/record # */
256 __uint8_t bc_ra[XFS_BTREE_MAXLEVELS]; /* readahead bits */
257#define XFS_BTCUR_LEFTRA 1 /* left sibling has been read-ahead */
258#define XFS_BTCUR_RIGHTRA 2 /* right sibling has been read-ahead */
259 __uint8_t bc_nlevels; /* number of levels in the tree */
260 __uint8_t bc_blocklog; /* log2(blocksize) of btree blocks */
261 xfs_btnum_t bc_btnum; /* identifies which btree type */
262 union {
Christoph Hellwig169d6222008-08-13 16:25:27 +1000263 struct { /* needed for BNO, CNT, INO */
264 struct xfs_buf *agbp; /* agf/agi buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 xfs_agnumber_t agno; /* ag number */
266 } a;
267 struct { /* needed for BMAP */
268 struct xfs_inode *ip; /* pointer to our inode */
269 struct xfs_bmap_free *flist; /* list to free after */
270 xfs_fsblock_t firstblock; /* 1st blk allocated */
271 int allocated; /* count of alloced */
272 short forksize; /* fork's inode space */
273 char whichfork; /* data or attr fork */
274 char flags; /* flags */
275#define XFS_BTCUR_BPRV_WASDEL 1 /* was delayed */
276 } b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 } bc_private; /* per-btree type data */
278} xfs_btree_cur_t;
279
Christoph Hellwig8186e512008-10-30 16:54:22 +1100280/* cursor flags */
Christoph Hellwige99ab902008-10-30 16:54:33 +1100281#define XFS_BTREE_LONG_PTRS (1<<0) /* pointers are 64bits long */
Christoph Hellwig8186e512008-10-30 16:54:22 +1100282#define XFS_BTREE_ROOT_IN_INODE (1<<1) /* root may be variable size */
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100283#define XFS_BTREE_LASTREC_UPDATE (1<<2) /* track last rec externally */
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500284#define XFS_BTREE_CRC_BLOCKS (1<<3) /* uses extended btree blocks */
Christoph Hellwig8186e512008-10-30 16:54:22 +1100285
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287#define XFS_BTREE_NOERROR 0
288#define XFS_BTREE_ERROR 1
289
290/*
291 * Convert from buffer to btree block header.
292 */
Chandra Seetharaman62926042011-07-22 23:40:15 +0000293#define XFS_BUF_TO_BLOCK(bp) ((struct xfs_btree_block *)((bp)->b_addr))
Nathan Scotta844f452005-11-02 14:38:42 +1100294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296/*
Christoph Hellwiga23f6ef2008-10-30 16:54:53 +1100297 * Check that block header is ok.
298 */
299int
300xfs_btree_check_block(
301 struct xfs_btree_cur *cur, /* btree cursor */
302 struct xfs_btree_block *block, /* generic btree block pointer */
303 int level, /* level of the btree block */
304 struct xfs_buf *bp); /* buffer containing block, if any */
305
306/*
307 * Check that (long) pointer is ok.
308 */
309int /* error (0 or EFSCORRUPTED) */
310xfs_btree_check_lptr(
311 struct xfs_btree_cur *cur, /* btree cursor */
312 xfs_dfsbno_t ptr, /* btree block disk address */
313 int level); /* btree block level */
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * Delete the btree cursor.
317 */
318void
319xfs_btree_del_cursor(
320 xfs_btree_cur_t *cur, /* btree cursor */
321 int error); /* del because of error */
322
323/*
324 * Duplicate the btree cursor.
325 * Allocate a new one, copy the record, re-get the buffers.
326 */
327int /* error */
328xfs_btree_dup_cursor(
329 xfs_btree_cur_t *cur, /* input cursor */
330 xfs_btree_cur_t **ncur);/* output cursor */
331
332/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 * Get a buffer for the block, return it with no data read.
334 * Long-form addressing.
335 */
336struct xfs_buf * /* buffer for fsbno */
337xfs_btree_get_bufl(
338 struct xfs_mount *mp, /* file system mount point */
339 struct xfs_trans *tp, /* transaction pointer */
340 xfs_fsblock_t fsbno, /* file system block number */
341 uint lock); /* lock flags for get_buf */
342
343/*
344 * Get a buffer for the block, return it with no data read.
345 * Short-form addressing.
346 */
347struct xfs_buf * /* buffer for agno/agbno */
348xfs_btree_get_bufs(
349 struct xfs_mount *mp, /* file system mount point */
350 struct xfs_trans *tp, /* transaction pointer */
351 xfs_agnumber_t agno, /* allocation group number */
352 xfs_agblock_t agbno, /* allocation group block number */
353 uint lock); /* lock flags for get_buf */
354
355/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 * Check for the cursor referring to the last block at the given level.
357 */
358int /* 1=is last block, 0=not last block */
359xfs_btree_islastblock(
360 xfs_btree_cur_t *cur, /* btree cursor */
361 int level); /* level to check */
362
363/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * Compute first and last byte offsets for the fields given.
365 * Interprets the offsets table, which contains struct field offsets.
366 */
367void
368xfs_btree_offsets(
369 __int64_t fields, /* bitmask of fields */
370 const short *offsets,/* table of field offsets */
371 int nbits, /* number of bits to inspect */
372 int *first, /* output: first byte offset */
373 int *last); /* output: last byte offset */
374
375/*
376 * Get a buffer for the block, return it read in.
377 * Long-form addressing.
378 */
379int /* error */
380xfs_btree_read_bufl(
381 struct xfs_mount *mp, /* file system mount point */
382 struct xfs_trans *tp, /* transaction pointer */
383 xfs_fsblock_t fsbno, /* file system block number */
384 uint lock, /* lock flags for read_buf */
385 struct xfs_buf **bpp, /* buffer for fsbno */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100386 int refval, /* ref count value for buffer */
Dave Chinner1813dd62012-11-14 17:54:40 +1100387 const struct xfs_buf_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * Read-ahead the block, don't wait for it, don't return a buffer.
391 * Long-form addressing.
392 */
393void /* error */
394xfs_btree_reada_bufl(
395 struct xfs_mount *mp, /* file system mount point */
396 xfs_fsblock_t fsbno, /* file system block number */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100397 xfs_extlen_t count, /* count of filesystem blocks */
Dave Chinner1813dd62012-11-14 17:54:40 +1100398 const struct xfs_buf_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400/*
401 * Read-ahead the block, don't wait for it, don't return a buffer.
402 * Short-form addressing.
403 */
404void /* error */
405xfs_btree_reada_bufs(
406 struct xfs_mount *mp, /* file system mount point */
407 xfs_agnumber_t agno, /* allocation group number */
408 xfs_agblock_t agbno, /* allocation group block number */
Dave Chinner3d3e6f62012-11-12 22:54:08 +1100409 xfs_extlen_t count, /* count of filesystem blocks */
Dave Chinner1813dd62012-11-14 17:54:40 +1100410 const struct xfs_buf_ops *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600412/*
413 * Initialise a new btree block header
414 */
415void
416xfs_btree_init_block(
417 struct xfs_mount *mp,
418 struct xfs_buf *bp,
419 __u32 magic,
420 __u16 level,
421 __u16 numrecs,
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500422 __u64 owner,
Dave Chinnerb64f3a32012-11-13 16:40:27 -0600423 unsigned int flags);
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100424
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500425void
426xfs_btree_init_block_int(
427 struct xfs_mount *mp,
428 struct xfs_btree_block *buf,
429 xfs_daddr_t blkno,
430 __u32 magic,
431 __u16 level,
432 __u16 numrecs,
433 __u64 owner,
434 unsigned int flags);
435
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100436/*
Christoph Hellwig637aa502008-10-30 16:55:45 +1100437 * Common btree core entry points.
438 */
439int xfs_btree_increment(struct xfs_btree_cur *, int, int *);
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100440int xfs_btree_decrement(struct xfs_btree_cur *, int, int *);
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100441int xfs_btree_lookup(struct xfs_btree_cur *, xfs_lookup_t, int *);
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100442int xfs_btree_update(struct xfs_btree_cur *, union xfs_btree_rec *);
Christoph Hellwigea77b0a2008-10-30 16:57:28 +1100443int xfs_btree_new_iroot(struct xfs_btree_cur *, int *, int *);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100444int xfs_btree_insert(struct xfs_btree_cur *, int *);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100445int xfs_btree_delete(struct xfs_btree_cur *, int *);
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100446int xfs_btree_get_rec(struct xfs_btree_cur *, union xfs_btree_rec **, int *);
Christoph Hellwig637aa502008-10-30 16:55:45 +1100447
448/*
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500449 * btree block CRC helpers
450 */
451void xfs_btree_lblock_calc_crc(struct xfs_buf *);
452bool xfs_btree_lblock_verify_crc(struct xfs_buf *);
453void xfs_btree_sblock_calc_crc(struct xfs_buf *);
454bool xfs_btree_sblock_verify_crc(struct xfs_buf *);
455
456/*
Christoph Hellwigfd6bcc5b2008-10-30 16:58:21 +1100457 * Internal btree helpers also used by xfs_bmap.c.
458 */
459void xfs_btree_log_block(struct xfs_btree_cur *, struct xfs_buf *, int);
460void xfs_btree_log_recs(struct xfs_btree_cur *, struct xfs_buf *, int, int);
461
462/*
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100463 * Helpers.
464 */
Christoph Hellwig637aa502008-10-30 16:55:45 +1100465static inline int xfs_btree_get_numrecs(struct xfs_btree_block *block)
466{
467 return be16_to_cpu(block->bb_numrecs);
468}
469
Christoph Hellwig9eaead52008-10-30 16:56:43 +1100470static inline void xfs_btree_set_numrecs(struct xfs_btree_block *block,
471 __uint16_t numrecs)
472{
473 block->bb_numrecs = cpu_to_be16(numrecs);
474}
475
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100476static inline int xfs_btree_get_level(struct xfs_btree_block *block)
477{
478 return be16_to_cpu(block->bb_level);
479}
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482/*
483 * Min and max functions for extlen, agblock, fileoff, and filblks types.
484 */
David Chinner54aa8e22007-06-28 16:43:39 +1000485#define XFS_EXTLEN_MIN(a,b) min_t(xfs_extlen_t, (a), (b))
486#define XFS_EXTLEN_MAX(a,b) max_t(xfs_extlen_t, (a), (b))
487#define XFS_AGBLOCK_MIN(a,b) min_t(xfs_agblock_t, (a), (b))
488#define XFS_AGBLOCK_MAX(a,b) max_t(xfs_agblock_t, (a), (b))
489#define XFS_FILEOFF_MIN(a,b) min_t(xfs_fileoff_t, (a), (b))
490#define XFS_FILEOFF_MAX(a,b) max_t(xfs_fileoff_t, (a), (b))
491#define XFS_FILBLKS_MIN(a,b) min_t(xfs_filblks_t, (a), (b))
492#define XFS_FILBLKS_MAX(a,b) max_t(xfs_filblks_t, (a), (b))
Nathan Scotta844f452005-11-02 14:38:42 +1100493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494#define XFS_FSB_SANITY_CHECK(mp,fsb) \
495 (XFS_FSB_TO_AGNO(mp, fsb) < mp->m_sb.sb_agcount && \
Nathan Scotta844f452005-11-02 14:38:42 +1100496 XFS_FSB_TO_AGBNO(mp, fsb) < mp->m_sb.sb_agblocks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Christoph Hellwigc84470d2011-07-13 13:43:50 +0200498/*
499 * Trace hooks. Currently not implemented as they need to be ported
500 * over to the generic tracing functionality, which is some effort.
501 *
502 * i,j = integer (32 bit)
503 * b = btree block buffer (xfs_buf_t)
504 * p = btree ptr
505 * r = btree record
506 * k = btree key
507 */
508#define XFS_BTREE_TRACE_ARGBI(c, b, i)
509#define XFS_BTREE_TRACE_ARGBII(c, b, i, j)
510#define XFS_BTREE_TRACE_ARGI(c, i)
511#define XFS_BTREE_TRACE_ARGIPK(c, i, p, s)
512#define XFS_BTREE_TRACE_ARGIPR(c, i, p, r)
513#define XFS_BTREE_TRACE_ARGIK(c, i, k)
514#define XFS_BTREE_TRACE_ARGR(c, r)
515#define XFS_BTREE_TRACE_CURSOR(c, t)
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517#endif /* __XFS_BTREE_H__ */