[XFS] implement generic xfs_btree_get_rec
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / xfs / xfs_alloc_btree.c
blob4d44f03858b05c36548099d6a307d3cf6140d425
1 /*
2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
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
7 * published by the Free Software Foundation.
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.
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
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_types.h"
21 #include "xfs_bit.h"
22 #include "xfs_log.h"
23 #include "xfs_inum.h"
24 #include "xfs_trans.h"
25 #include "xfs_sb.h"
26 #include "xfs_ag.h"
27 #include "xfs_dir2.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_alloc_btree.h"
32 #include "xfs_ialloc_btree.h"
33 #include "xfs_dir2_sf.h"
34 #include "xfs_attr_sf.h"
35 #include "xfs_dinode.h"
36 #include "xfs_inode.h"
37 #include "xfs_btree.h"
38 #include "xfs_btree_trace.h"
39 #include "xfs_ialloc.h"
40 #include "xfs_alloc.h"
41 #include "xfs_error.h"
44 STATIC struct xfs_btree_cur *
45 xfs_allocbt_dup_cursor(
46 struct xfs_btree_cur *cur)
48 return xfs_allocbt_init_cursor(cur->bc_mp, cur->bc_tp,
49 cur->bc_private.a.agbp, cur->bc_private.a.agno,
50 cur->bc_btnum);
53 STATIC void
54 xfs_allocbt_set_root(
55 struct xfs_btree_cur *cur,
56 union xfs_btree_ptr *ptr,
57 int inc)
59 struct xfs_buf *agbp = cur->bc_private.a.agbp;
60 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
61 xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno);
62 int btnum = cur->bc_btnum;
64 ASSERT(ptr->s != 0);
66 agf->agf_roots[btnum] = ptr->s;
67 be32_add_cpu(&agf->agf_levels[btnum], inc);
68 cur->bc_mp->m_perag[seqno].pagf_levels[btnum] += inc;
70 xfs_alloc_log_agf(cur->bc_tp, agbp, XFS_AGF_ROOTS | XFS_AGF_LEVELS);
73 STATIC int
74 xfs_allocbt_alloc_block(
75 struct xfs_btree_cur *cur,
76 union xfs_btree_ptr *start,
77 union xfs_btree_ptr *new,
78 int length,
79 int *stat)
81 int error;
82 xfs_agblock_t bno;
84 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
86 /* Allocate the new block from the freelist. If we can't, give up. */
87 error = xfs_alloc_get_freelist(cur->bc_tp, cur->bc_private.a.agbp,
88 &bno, 1);
89 if (error) {
90 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
91 return error;
94 if (bno == NULLAGBLOCK) {
95 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
96 *stat = 0;
97 return 0;
100 xfs_trans_agbtree_delta(cur->bc_tp, 1);
101 new->s = cpu_to_be32(bno);
103 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
104 *stat = 1;
105 return 0;
108 STATIC int
109 xfs_allocbt_free_block(
110 struct xfs_btree_cur *cur,
111 struct xfs_buf *bp)
113 struct xfs_buf *agbp = cur->bc_private.a.agbp;
114 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
115 xfs_agblock_t bno;
116 int error;
118 bno = XFS_DADDR_TO_AGBNO(cur->bc_mp, XFS_BUF_ADDR(bp));
119 error = xfs_alloc_put_freelist(cur->bc_tp, agbp, NULL, bno, 1);
120 if (error)
121 return error;
124 * Since blocks move to the free list without the coordination used in
125 * xfs_bmap_finish, we can't allow block to be available for
126 * reallocation and non-transaction writing (user data) until we know
127 * that the transaction that moved it to the free list is permanently
128 * on disk. We track the blocks by declaring these blocks as "busy";
129 * the busy list is maintained on a per-ag basis and each transaction
130 * records which entries should be removed when the iclog commits to
131 * disk. If a busy block is allocated, the iclog is pushed up to the
132 * LSN that freed the block.
134 xfs_alloc_mark_busy(cur->bc_tp, be32_to_cpu(agf->agf_seqno), bno, 1);
135 xfs_trans_agbtree_delta(cur->bc_tp, -1);
136 return 0;
140 * Update the longest extent in the AGF
142 STATIC void
143 xfs_allocbt_update_lastrec(
144 struct xfs_btree_cur *cur,
145 struct xfs_btree_block *block,
146 union xfs_btree_rec *rec,
147 int ptr,
148 int reason)
150 struct xfs_agf *agf = XFS_BUF_TO_AGF(cur->bc_private.a.agbp);
151 xfs_agnumber_t seqno = be32_to_cpu(agf->agf_seqno);
152 __be32 len;
153 int numrecs;
155 ASSERT(cur->bc_btnum == XFS_BTNUM_CNT);
157 switch (reason) {
158 case LASTREC_UPDATE:
160 * If this is the last leaf block and it's the last record,
161 * then update the size of the longest extent in the AG.
163 if (ptr != xfs_btree_get_numrecs(block))
164 return;
165 len = rec->alloc.ar_blockcount;
166 break;
167 case LASTREC_INSREC:
168 if (be32_to_cpu(rec->alloc.ar_blockcount) <=
169 be32_to_cpu(agf->agf_longest))
170 return;
171 len = rec->alloc.ar_blockcount;
172 break;
173 case LASTREC_DELREC:
174 numrecs = xfs_btree_get_numrecs(block);
175 if (ptr <= numrecs)
176 return;
177 ASSERT(ptr == numrecs + 1);
179 if (numrecs) {
180 xfs_alloc_rec_t *rrp;
182 rrp = XFS_ALLOC_REC_ADDR(block, numrecs, cur);
183 len = rrp->ar_blockcount;
184 } else {
185 len = 0;
188 break;
189 default:
190 ASSERT(0);
191 return;
194 agf->agf_longest = len;
195 cur->bc_mp->m_perag[seqno].pagf_longest = be32_to_cpu(len);
196 xfs_alloc_log_agf(cur->bc_tp, cur->bc_private.a.agbp, XFS_AGF_LONGEST);
199 STATIC int
200 xfs_allocbt_get_minrecs(
201 struct xfs_btree_cur *cur,
202 int level)
204 return cur->bc_mp->m_alloc_mnr[level != 0];
207 STATIC int
208 xfs_allocbt_get_maxrecs(
209 struct xfs_btree_cur *cur,
210 int level)
212 return cur->bc_mp->m_alloc_mxr[level != 0];
215 STATIC void
216 xfs_allocbt_init_key_from_rec(
217 union xfs_btree_key *key,
218 union xfs_btree_rec *rec)
220 ASSERT(rec->alloc.ar_startblock != 0);
222 key->alloc.ar_startblock = rec->alloc.ar_startblock;
223 key->alloc.ar_blockcount = rec->alloc.ar_blockcount;
226 STATIC void
227 xfs_allocbt_init_rec_from_key(
228 union xfs_btree_key *key,
229 union xfs_btree_rec *rec)
231 ASSERT(key->alloc.ar_startblock != 0);
233 rec->alloc.ar_startblock = key->alloc.ar_startblock;
234 rec->alloc.ar_blockcount = key->alloc.ar_blockcount;
237 STATIC void
238 xfs_allocbt_init_rec_from_cur(
239 struct xfs_btree_cur *cur,
240 union xfs_btree_rec *rec)
242 ASSERT(cur->bc_rec.a.ar_startblock != 0);
244 rec->alloc.ar_startblock = cpu_to_be32(cur->bc_rec.a.ar_startblock);
245 rec->alloc.ar_blockcount = cpu_to_be32(cur->bc_rec.a.ar_blockcount);
248 STATIC void
249 xfs_allocbt_init_ptr_from_cur(
250 struct xfs_btree_cur *cur,
251 union xfs_btree_ptr *ptr)
253 struct xfs_agf *agf = XFS_BUF_TO_AGF(cur->bc_private.a.agbp);
255 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agf->agf_seqno));
256 ASSERT(agf->agf_roots[cur->bc_btnum] != 0);
258 ptr->s = agf->agf_roots[cur->bc_btnum];
261 STATIC __int64_t
262 xfs_allocbt_key_diff(
263 struct xfs_btree_cur *cur,
264 union xfs_btree_key *key)
266 xfs_alloc_rec_incore_t *rec = &cur->bc_rec.a;
267 xfs_alloc_key_t *kp = &key->alloc;
268 __int64_t diff;
270 if (cur->bc_btnum == XFS_BTNUM_BNO) {
271 return (__int64_t)be32_to_cpu(kp->ar_startblock) -
272 rec->ar_startblock;
275 diff = (__int64_t)be32_to_cpu(kp->ar_blockcount) - rec->ar_blockcount;
276 if (diff)
277 return diff;
279 return (__int64_t)be32_to_cpu(kp->ar_startblock) - rec->ar_startblock;
282 STATIC int
283 xfs_allocbt_kill_root(
284 struct xfs_btree_cur *cur,
285 struct xfs_buf *bp,
286 int level,
287 union xfs_btree_ptr *newroot)
289 int error;
291 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
292 XFS_BTREE_STATS_INC(cur, killroot);
295 * Update the root pointer, decreasing the level by 1 and then
296 * free the old root.
298 xfs_allocbt_set_root(cur, newroot, -1);
299 error = xfs_allocbt_free_block(cur, bp);
300 if (error) {
301 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
302 return error;
305 XFS_BTREE_STATS_INC(cur, free);
307 xfs_btree_setbuf(cur, level, NULL);
308 cur->bc_nlevels--;
310 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
311 return 0;
314 #ifdef XFS_BTREE_TRACE
315 ktrace_t *xfs_allocbt_trace_buf;
317 STATIC void
318 xfs_allocbt_trace_enter(
319 struct xfs_btree_cur *cur,
320 const char *func,
321 char *s,
322 int type,
323 int line,
324 __psunsigned_t a0,
325 __psunsigned_t a1,
326 __psunsigned_t a2,
327 __psunsigned_t a3,
328 __psunsigned_t a4,
329 __psunsigned_t a5,
330 __psunsigned_t a6,
331 __psunsigned_t a7,
332 __psunsigned_t a8,
333 __psunsigned_t a9,
334 __psunsigned_t a10)
336 ktrace_enter(xfs_allocbt_trace_buf, (void *)(__psint_t)type,
337 (void *)func, (void *)s, NULL, (void *)cur,
338 (void *)a0, (void *)a1, (void *)a2, (void *)a3,
339 (void *)a4, (void *)a5, (void *)a6, (void *)a7,
340 (void *)a8, (void *)a9, (void *)a10);
343 STATIC void
344 xfs_allocbt_trace_cursor(
345 struct xfs_btree_cur *cur,
346 __uint32_t *s0,
347 __uint64_t *l0,
348 __uint64_t *l1)
350 *s0 = cur->bc_private.a.agno;
351 *l0 = cur->bc_rec.a.ar_startblock;
352 *l1 = cur->bc_rec.a.ar_blockcount;
355 STATIC void
356 xfs_allocbt_trace_key(
357 struct xfs_btree_cur *cur,
358 union xfs_btree_key *key,
359 __uint64_t *l0,
360 __uint64_t *l1)
362 *l0 = be32_to_cpu(key->alloc.ar_startblock);
363 *l1 = be32_to_cpu(key->alloc.ar_blockcount);
366 STATIC void
367 xfs_allocbt_trace_record(
368 struct xfs_btree_cur *cur,
369 union xfs_btree_rec *rec,
370 __uint64_t *l0,
371 __uint64_t *l1,
372 __uint64_t *l2)
374 *l0 = be32_to_cpu(rec->alloc.ar_startblock);
375 *l1 = be32_to_cpu(rec->alloc.ar_blockcount);
376 *l2 = 0;
378 #endif /* XFS_BTREE_TRACE */
380 static const struct xfs_btree_ops xfs_allocbt_ops = {
381 .rec_len = sizeof(xfs_alloc_rec_t),
382 .key_len = sizeof(xfs_alloc_key_t),
384 .dup_cursor = xfs_allocbt_dup_cursor,
385 .set_root = xfs_allocbt_set_root,
386 .kill_root = xfs_allocbt_kill_root,
387 .alloc_block = xfs_allocbt_alloc_block,
388 .free_block = xfs_allocbt_free_block,
389 .update_lastrec = xfs_allocbt_update_lastrec,
390 .get_minrecs = xfs_allocbt_get_minrecs,
391 .get_maxrecs = xfs_allocbt_get_maxrecs,
392 .init_key_from_rec = xfs_allocbt_init_key_from_rec,
393 .init_rec_from_key = xfs_allocbt_init_rec_from_key,
394 .init_rec_from_cur = xfs_allocbt_init_rec_from_cur,
395 .init_ptr_from_cur = xfs_allocbt_init_ptr_from_cur,
396 .key_diff = xfs_allocbt_key_diff,
398 #ifdef XFS_BTREE_TRACE
399 .trace_enter = xfs_allocbt_trace_enter,
400 .trace_cursor = xfs_allocbt_trace_cursor,
401 .trace_key = xfs_allocbt_trace_key,
402 .trace_record = xfs_allocbt_trace_record,
403 #endif
407 * Allocate a new allocation btree cursor.
409 struct xfs_btree_cur * /* new alloc btree cursor */
410 xfs_allocbt_init_cursor(
411 struct xfs_mount *mp, /* file system mount point */
412 struct xfs_trans *tp, /* transaction pointer */
413 struct xfs_buf *agbp, /* buffer for agf structure */
414 xfs_agnumber_t agno, /* allocation group number */
415 xfs_btnum_t btnum) /* btree identifier */
417 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
418 struct xfs_btree_cur *cur;
420 ASSERT(btnum == XFS_BTNUM_BNO || btnum == XFS_BTNUM_CNT);
422 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
424 cur->bc_tp = tp;
425 cur->bc_mp = mp;
426 cur->bc_nlevels = be32_to_cpu(agf->agf_levels[btnum]);
427 cur->bc_btnum = btnum;
428 cur->bc_blocklog = mp->m_sb.sb_blocklog;
430 cur->bc_ops = &xfs_allocbt_ops;
431 if (btnum == XFS_BTNUM_CNT)
432 cur->bc_flags = XFS_BTREE_LASTREC_UPDATE;
434 cur->bc_private.a.agbp = agbp;
435 cur->bc_private.a.agno = agno;
437 return cur;