xfs: add buffer pre-write callback
[deliverable/linux.git] / fs / xfs / xfs_ialloc_btree.c
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 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
a844f451 21#include "xfs_bit.h"
1da177e4
LT
22#include "xfs_log.h"
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
1da177e4 26#include "xfs_mount.h"
1da177e4 27#include "xfs_bmap_btree.h"
a844f451 28#include "xfs_alloc_btree.h"
1da177e4 29#include "xfs_ialloc_btree.h"
a844f451
NS
30#include "xfs_dinode.h"
31#include "xfs_inode.h"
1da177e4
LT
32#include "xfs_btree.h"
33#include "xfs_ialloc.h"
34#include "xfs_alloc.h"
35#include "xfs_error.h"
3d3e6f64 36#include "xfs_trace.h"
1da177e4 37
1da177e4 38
91cca5df
CH
39STATIC int
40xfs_inobt_get_minrecs(
41 struct xfs_btree_cur *cur,
42 int level)
43{
44 return cur->bc_mp->m_inobt_mnr[level != 0];
45}
1da177e4 46
561f7d17
CH
47STATIC struct xfs_btree_cur *
48xfs_inobt_dup_cursor(
49 struct xfs_btree_cur *cur)
50{
51 return xfs_inobt_init_cursor(cur->bc_mp, cur->bc_tp,
52 cur->bc_private.a.agbp, cur->bc_private.a.agno);
53}
54
344207ce
CH
55STATIC void
56xfs_inobt_set_root(
57 struct xfs_btree_cur *cur,
58 union xfs_btree_ptr *nptr,
59 int inc) /* level change */
60{
61 struct xfs_buf *agbp = cur->bc_private.a.agbp;
62 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
63
64 agi->agi_root = nptr->s;
65 be32_add_cpu(&agi->agi_level, inc);
66 xfs_ialloc_log_agi(cur->bc_tp, agbp, XFS_AGI_ROOT | XFS_AGI_LEVEL);
67}
68
f5eb8e7c
CH
69STATIC int
70xfs_inobt_alloc_block(
71 struct xfs_btree_cur *cur,
72 union xfs_btree_ptr *start,
73 union xfs_btree_ptr *new,
74 int length,
75 int *stat)
76{
77 xfs_alloc_arg_t args; /* block allocation args */
78 int error; /* error return value */
79 xfs_agblock_t sbno = be32_to_cpu(start->s);
80
81 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
82
83 memset(&args, 0, sizeof(args));
84 args.tp = cur->bc_tp;
85 args.mp = cur->bc_mp;
86 args.fsbno = XFS_AGB_TO_FSB(args.mp, cur->bc_private.a.agno, sbno);
87 args.minlen = 1;
88 args.maxlen = 1;
89 args.prod = 1;
90 args.type = XFS_ALLOCTYPE_NEAR_BNO;
91
92 error = xfs_alloc_vextent(&args);
93 if (error) {
94 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
95 return error;
96 }
97 if (args.fsbno == NULLFSBLOCK) {
98 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
99 *stat = 0;
100 return 0;
101 }
102 ASSERT(args.len == 1);
103 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
104
105 new->s = cpu_to_be32(XFS_FSB_TO_AGBNO(args.mp, args.fsbno));
106 *stat = 1;
107 return 0;
108}
109
d4b3a4b7
CH
110STATIC int
111xfs_inobt_free_block(
112 struct xfs_btree_cur *cur,
113 struct xfs_buf *bp)
114{
115 xfs_fsblock_t fsbno;
116 int error;
117
118 fsbno = XFS_DADDR_TO_FSB(cur->bc_mp, XFS_BUF_ADDR(bp));
119 error = xfs_free_extent(cur->bc_tp, fsbno, 1);
120 if (error)
121 return error;
122
123 xfs_trans_binval(cur->bc_tp, bp);
124 return error;
125}
f5eb8e7c 126
ce5e42db
CH
127STATIC int
128xfs_inobt_get_maxrecs(
129 struct xfs_btree_cur *cur,
130 int level)
131{
132 return cur->bc_mp->m_inobt_mxr[level != 0];
133}
134
fe033cc8
CH
135STATIC void
136xfs_inobt_init_key_from_rec(
137 union xfs_btree_key *key,
138 union xfs_btree_rec *rec)
139{
140 key->inobt.ir_startino = rec->inobt.ir_startino;
141}
142
4b22a571
CH
143STATIC void
144xfs_inobt_init_rec_from_key(
145 union xfs_btree_key *key,
146 union xfs_btree_rec *rec)
147{
148 rec->inobt.ir_startino = key->inobt.ir_startino;
149}
150
151STATIC void
152xfs_inobt_init_rec_from_cur(
153 struct xfs_btree_cur *cur,
154 union xfs_btree_rec *rec)
155{
156 rec->inobt.ir_startino = cpu_to_be32(cur->bc_rec.i.ir_startino);
157 rec->inobt.ir_freecount = cpu_to_be32(cur->bc_rec.i.ir_freecount);
158 rec->inobt.ir_free = cpu_to_be64(cur->bc_rec.i.ir_free);
159}
160
fe033cc8 161/*
9da096fd 162 * initial value of ptr for lookup
fe033cc8
CH
163 */
164STATIC void
165xfs_inobt_init_ptr_from_cur(
166 struct xfs_btree_cur *cur,
167 union xfs_btree_ptr *ptr)
168{
169 struct xfs_agi *agi = XFS_BUF_TO_AGI(cur->bc_private.a.agbp);
170
171 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno));
172
173 ptr->s = agi->agi_root;
174}
175
176STATIC __int64_t
177xfs_inobt_key_diff(
178 struct xfs_btree_cur *cur,
179 union xfs_btree_key *key)
180{
181 return (__int64_t)be32_to_cpu(key->inobt.ir_startino) -
182 cur->bc_rec.i.ir_startino;
183}
184
3d3e6f64
DC
185void
186xfs_inobt_read_verify(
187 struct xfs_buf *bp)
188{
189 struct xfs_mount *mp = bp->b_target->bt_mount;
190 struct xfs_btree_block *block = XFS_BUF_TO_BLOCK(bp);
191 unsigned int level;
192 int sblock_ok; /* block passes checks */
193
194 /* magic number and level verification */
195 level = be16_to_cpu(block->bb_level);
196 sblock_ok = block->bb_magic == cpu_to_be32(XFS_IBT_MAGIC) &&
197 level < mp->m_in_maxlevels;
198
199 /* numrecs verification */
200 sblock_ok = sblock_ok &&
201 be16_to_cpu(block->bb_numrecs) <= mp->m_inobt_mxr[level != 0];
202
203 /* sibling pointer verification */
204 sblock_ok = sblock_ok &&
205 (block->bb_u.s.bb_leftsib == cpu_to_be32(NULLAGBLOCK) ||
206 be32_to_cpu(block->bb_u.s.bb_leftsib) < mp->m_sb.sb_agblocks) &&
207 block->bb_u.s.bb_leftsib &&
208 (block->bb_u.s.bb_rightsib == cpu_to_be32(NULLAGBLOCK) ||
209 be32_to_cpu(block->bb_u.s.bb_rightsib) < mp->m_sb.sb_agblocks) &&
210 block->bb_u.s.bb_rightsib;
211
212 if (!sblock_ok) {
213 trace_xfs_btree_corrupt(bp, _RET_IP_);
214 XFS_CORRUPTION_ERROR("xfs_inobt_read_verify",
215 XFS_ERRLEVEL_LOW, mp, block);
216 xfs_buf_ioerror(bp, EFSCORRUPTED);
217 }
218
219 bp->b_iodone = NULL;
220 xfs_buf_ioend(bp, 0);
221}
222
4a26e66e
CH
223#ifdef DEBUG
224STATIC int
225xfs_inobt_keys_inorder(
226 struct xfs_btree_cur *cur,
227 union xfs_btree_key *k1,
228 union xfs_btree_key *k2)
229{
230 return be32_to_cpu(k1->inobt.ir_startino) <
231 be32_to_cpu(k2->inobt.ir_startino);
232}
233
234STATIC int
235xfs_inobt_recs_inorder(
236 struct xfs_btree_cur *cur,
237 union xfs_btree_rec *r1,
238 union xfs_btree_rec *r2)
239{
240 return be32_to_cpu(r1->inobt.ir_startino) + XFS_INODES_PER_CHUNK <=
241 be32_to_cpu(r2->inobt.ir_startino);
242}
243#endif /* DEBUG */
244
561f7d17 245static const struct xfs_btree_ops xfs_inobt_ops = {
65f1eaea
CH
246 .rec_len = sizeof(xfs_inobt_rec_t),
247 .key_len = sizeof(xfs_inobt_key_t),
248
561f7d17 249 .dup_cursor = xfs_inobt_dup_cursor,
344207ce 250 .set_root = xfs_inobt_set_root,
f5eb8e7c 251 .alloc_block = xfs_inobt_alloc_block,
d4b3a4b7 252 .free_block = xfs_inobt_free_block,
91cca5df 253 .get_minrecs = xfs_inobt_get_minrecs,
ce5e42db 254 .get_maxrecs = xfs_inobt_get_maxrecs,
fe033cc8 255 .init_key_from_rec = xfs_inobt_init_key_from_rec,
4b22a571
CH
256 .init_rec_from_key = xfs_inobt_init_rec_from_key,
257 .init_rec_from_cur = xfs_inobt_init_rec_from_cur,
fe033cc8
CH
258 .init_ptr_from_cur = xfs_inobt_init_ptr_from_cur,
259 .key_diff = xfs_inobt_key_diff,
3d3e6f64 260 .read_verify = xfs_inobt_read_verify,
4a26e66e
CH
261#ifdef DEBUG
262 .keys_inorder = xfs_inobt_keys_inorder,
263 .recs_inorder = xfs_inobt_recs_inorder,
264#endif
561f7d17
CH
265};
266
267/*
268 * Allocate a new inode btree cursor.
269 */
270struct xfs_btree_cur * /* new inode btree cursor */
271xfs_inobt_init_cursor(
272 struct xfs_mount *mp, /* file system mount point */
273 struct xfs_trans *tp, /* transaction pointer */
274 struct xfs_buf *agbp, /* buffer for agi structure */
275 xfs_agnumber_t agno) /* allocation group number */
276{
277 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
278 struct xfs_btree_cur *cur;
279
280 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
281
282 cur->bc_tp = tp;
283 cur->bc_mp = mp;
284 cur->bc_nlevels = be32_to_cpu(agi->agi_level);
285 cur->bc_btnum = XFS_BTNUM_INO;
286 cur->bc_blocklog = mp->m_sb.sb_blocklog;
287
288 cur->bc_ops = &xfs_inobt_ops;
289
290 cur->bc_private.a.agbp = agbp;
291 cur->bc_private.a.agno = agno;
292
293 return cur;
294}
60197e8d
CH
295
296/*
297 * Calculate number of records in an inobt btree block.
298 */
299int
300xfs_inobt_maxrecs(
301 struct xfs_mount *mp,
302 int blocklen,
303 int leaf)
304{
7cc95a82 305 blocklen -= XFS_INOBT_BLOCK_LEN(mp);
60197e8d
CH
306
307 if (leaf)
308 return blocklen / sizeof(xfs_inobt_rec_t);
309 return blocklen / (sizeof(xfs_inobt_key_t) + sizeof(xfs_inobt_ptr_t));
310}
This page took 0.96976 seconds and 5 git commands to generate.