2 * Copyright (c) 2000 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
32 #ifndef __XFS_IALLOC_BTREE_H__
33 #define __XFS_IALLOC_BTREE_H__
36 * Inode map on-disk structures
41 struct xfs_btree_sblock
;
45 * There is a btree for the inode map per allocation group.
47 #define XFS_IBT_MAGIC 0x49414254 /* 'IABT' */
49 typedef __uint64_t xfs_inofree_t
;
50 #define XFS_INODES_PER_CHUNK (NBBY * sizeof(xfs_inofree_t))
51 #define XFS_INODES_PER_CHUNK_LOG (XFS_NBBYLOG + 3)
52 #define XFS_INOBT_ALL_FREE ((xfs_inofree_t)-1)
54 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_MASKN)
55 xfs_inofree_t
xfs_inobt_maskn(int i
, int n
);
56 #define XFS_INOBT_MASKN(i,n) xfs_inobt_maskn(i,n)
58 #define XFS_INOBT_MASKN(i,n) \
59 ((((n) >= XFS_INODES_PER_CHUNK ? \
60 (xfs_inofree_t)0 : ((xfs_inofree_t)1 << (n))) - 1) << (i))
64 * Data record structure
66 typedef struct xfs_inobt_rec
68 xfs_agino_t ir_startino
; /* starting inode number */
69 __int32_t ir_freecount
; /* count of free inodes (set bits) */
70 xfs_inofree_t ir_free
; /* free inode mask */
76 typedef struct xfs_inobt_key
78 xfs_agino_t ir_startino
; /* starting inode number */
81 typedef xfs_agblock_t xfs_inobt_ptr_t
; /* btree pointer type */
82 /* btree block header type */
83 typedef struct xfs_btree_sblock xfs_inobt_block_t
;
85 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_BUF_TO_INOBT_BLOCK)
86 xfs_inobt_block_t
*xfs_buf_to_inobt_block(struct xfs_buf
*bp
);
87 #define XFS_BUF_TO_INOBT_BLOCK(bp) xfs_buf_to_inobt_block(bp)
89 #define XFS_BUF_TO_INOBT_BLOCK(bp) ((xfs_inobt_block_t *)(XFS_BUF_PTR(bp)))
93 * Bit manipulations for ir_free.
95 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_MASK)
96 xfs_inofree_t
xfs_inobt_mask(int i
);
97 #define XFS_INOBT_MASK(i) xfs_inobt_mask(i)
99 #define XFS_INOBT_MASK(i) ((xfs_inofree_t)1 << (i))
101 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_IS_FREE)
102 int xfs_inobt_is_free(xfs_inobt_rec_t
*rp
, int i
, xfs_arch_t arch
);
103 #define XFS_INOBT_IS_FREE(rp,i,arch) xfs_inobt_is_free(rp,i,arch)
105 #define XFS_INOBT_IS_FREE(rp,i,arch) ((INT_GET((rp)->ir_free, arch) \
106 & XFS_INOBT_MASK(i)) != 0)
108 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_SET_FREE)
109 void xfs_inobt_set_free(xfs_inobt_rec_t
*rp
, int i
, xfs_arch_t arch
);
110 #define XFS_INOBT_SET_FREE(rp,i,arch) xfs_inobt_set_free(rp,i,arch)
112 #define XFS_INOBT_SET_FREE(rp,i,arch) (INT_MOD_EXPR((rp)->ir_free, arch, |= XFS_INOBT_MASK(i)))
114 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_CLR_FREE)
115 void xfs_inobt_clr_free(xfs_inobt_rec_t
*rp
, int i
, xfs_arch_t arch
);
116 #define XFS_INOBT_CLR_FREE(rp,i,arch) xfs_inobt_clr_free(rp,i,arch)
118 #define XFS_INOBT_CLR_FREE(rp,i,arch) (INT_MOD_EXPR((rp)->ir_free, arch, &= ~XFS_INOBT_MASK(i)))
122 * Real block structures have a size equal to the disk block size.
124 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_BLOCK_SIZE)
125 int xfs_inobt_block_size(int lev
, struct xfs_btree_cur
*cur
);
126 #define XFS_INOBT_BLOCK_SIZE(lev,cur) xfs_inobt_block_size(lev,cur)
128 #define XFS_INOBT_BLOCK_SIZE(lev,cur) (1 << (cur)->bc_blocklog)
131 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_BLOCK_MAXRECS)
132 int xfs_inobt_block_maxrecs(int lev
, struct xfs_btree_cur
*cur
);
133 #define XFS_INOBT_BLOCK_MAXRECS(lev,cur) xfs_inobt_block_maxrecs(lev,cur)
135 #define XFS_INOBT_BLOCK_MAXRECS(lev,cur) \
136 ((cur)->bc_mp->m_inobt_mxr[lev != 0])
138 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_BLOCK_MINRECS)
139 int xfs_inobt_block_minrecs(int lev
, struct xfs_btree_cur
*cur
);
140 #define XFS_INOBT_BLOCK_MINRECS(lev,cur) xfs_inobt_block_minrecs(lev,cur)
142 #define XFS_INOBT_BLOCK_MINRECS(lev,cur) \
143 ((cur)->bc_mp->m_inobt_mnr[lev != 0])
146 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_IS_LAST_REC)
147 int xfs_inobt_is_last_rec(struct xfs_btree_cur
*cur
);
148 #define XFS_INOBT_IS_LAST_REC(cur) xfs_inobt_is_last_rec(cur)
150 #define XFS_INOBT_IS_LAST_REC(cur) \
151 ((cur)->bc_ptrs[0] == \
152 INT_GET(XFS_BUF_TO_INOBT_BLOCK((cur)->bc_bufs[0])->bb_numrecs, ARCH_CONVERT))
156 * Maximum number of inode btree levels.
158 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_IN_MAXLEVELS)
159 int xfs_in_maxlevels(struct xfs_mount
*mp
);
160 #define XFS_IN_MAXLEVELS(mp) xfs_in_maxlevels(mp)
162 #define XFS_IN_MAXLEVELS(mp) ((mp)->m_in_maxlevels)
166 * block numbers in the AG.
168 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_IBT_BLOCK)
169 xfs_agblock_t
xfs_ibt_block(struct xfs_mount
*mp
);
170 #define XFS_IBT_BLOCK(mp) xfs_ibt_block(mp)
172 #define XFS_IBT_BLOCK(mp) ((xfs_agblock_t)(XFS_CNT_BLOCK(mp) + 1))
174 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_PREALLOC_BLOCKS)
175 xfs_agblock_t
xfs_prealloc_blocks(struct xfs_mount
*mp
);
176 #define XFS_PREALLOC_BLOCKS(mp) xfs_prealloc_blocks(mp)
178 #define XFS_PREALLOC_BLOCKS(mp) ((xfs_agblock_t)(XFS_IBT_BLOCK(mp) + 1))
182 * Record, key, and pointer address macros for btree blocks.
184 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_REC_ADDR)
186 xfs_inobt_rec_addr(xfs_inobt_block_t
*bb
, int i
, struct xfs_btree_cur
*cur
);
187 #define XFS_INOBT_REC_ADDR(bb,i,cur) xfs_inobt_rec_addr(bb,i,cur)
189 #define XFS_INOBT_REC_ADDR(bb,i,cur) \
190 XFS_BTREE_REC_ADDR(XFS_INOBT_BLOCK_SIZE(0,cur), xfs_inobt, bb, i, \
191 XFS_INOBT_BLOCK_MAXRECS(0, cur))
194 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_KEY_ADDR)
196 xfs_inobt_key_addr(xfs_inobt_block_t
*bb
, int i
, struct xfs_btree_cur
*cur
);
197 #define XFS_INOBT_KEY_ADDR(bb,i,cur) xfs_inobt_key_addr(bb,i,cur)
199 #define XFS_INOBT_KEY_ADDR(bb,i,cur) \
200 XFS_BTREE_KEY_ADDR(XFS_INOBT_BLOCK_SIZE(1,cur), xfs_inobt, bb, i, \
201 XFS_INOBT_BLOCK_MAXRECS(1, cur))
204 #if XFS_WANT_FUNCS || (XFS_WANT_SPACE && XFSSO_XFS_INOBT_PTR_ADDR)
206 xfs_inobt_ptr_addr(xfs_inobt_block_t
*bb
, int i
, struct xfs_btree_cur
*cur
);
207 #define XFS_INOBT_PTR_ADDR(bb,i,cur) xfs_inobt_ptr_addr(bb,i,cur)
209 #define XFS_INOBT_PTR_ADDR(bb,i,cur) \
210 XFS_BTREE_PTR_ADDR(XFS_INOBT_BLOCK_SIZE(1,cur), xfs_inobt, bb, i, \
211 XFS_INOBT_BLOCK_MAXRECS(1, cur))
215 * Prototypes for externally visible routines.
219 * Decrement cursor by one record at the level.
220 * For nonzero levels the leaf-ward information is untouched.
224 struct xfs_btree_cur
*cur
, /* btree cursor */
225 int level
, /* level in btree, 0 is leaf */
226 int *stat
); /* success/failure */
229 * Delete the record pointed to by cur.
230 * The cursor refers to the place where the record was (could be inserted)
231 * when the operation returns.
235 struct xfs_btree_cur
*cur
, /* btree cursor */
236 int *stat
); /* success/failure */
239 * Get the data from the pointed-to record.
243 struct xfs_btree_cur
*cur
, /* btree cursor */
244 xfs_agino_t
*ino
, /* output: starting inode of chunk */
245 __int32_t
*fcnt
, /* output: number of free inodes */
246 xfs_inofree_t
*free
, /* output: free inode mask */
247 int *stat
, /* output: success/failure */
248 xfs_arch_t arch
); /* output: architecture */
251 * Increment cursor by one record at the level.
252 * For nonzero levels the leaf-ward information is untouched.
256 struct xfs_btree_cur
*cur
, /* btree cursor */
257 int level
, /* level in btree, 0 is leaf */
258 int *stat
); /* success/failure */
261 * Insert the current record at the point referenced by cur.
262 * The cursor may be inconsistent on return if splits have been done.
266 struct xfs_btree_cur
*cur
, /* btree cursor */
267 int *stat
); /* success/failure */
270 * Lookup the record equal to ino in the btree given by cur.
274 struct xfs_btree_cur
*cur
, /* btree cursor */
275 xfs_agino_t ino
, /* starting inode of chunk */
276 __int32_t fcnt
, /* free inode count */
277 xfs_inofree_t free
, /* free inode mask */
278 int *stat
); /* success/failure */
281 * Lookup the first record greater than or equal to ino
282 * in the btree given by cur.
286 struct xfs_btree_cur
*cur
, /* btree cursor */
287 xfs_agino_t ino
, /* starting inode of chunk */
288 __int32_t fcnt
, /* free inode count */
289 xfs_inofree_t free
, /* free inode mask */
290 int *stat
); /* success/failure */
293 * Lookup the first record less than or equal to ino
294 * in the btree given by cur.
298 struct xfs_btree_cur
*cur
, /* btree cursor */
299 xfs_agino_t ino
, /* starting inode of chunk */
300 __int32_t fcnt
, /* free inode count */
301 xfs_inofree_t free
, /* free inode mask */
302 int *stat
); /* success/failure */
305 * Update the record referred to by cur, to the value given
306 * by [ino, fcnt, free].
307 * This either works (return 0) or gets an EFSCORRUPTED error.
311 struct xfs_btree_cur
*cur
, /* btree cursor */
312 xfs_agino_t ino
, /* starting inode of chunk */
313 __int32_t fcnt
, /* free inode count */
314 xfs_inofree_t free
); /* free inode mask */
316 #endif /* __XFS_IALLOC_BTREE_H__ */