2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
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
20 #include "xfs_types.h"
24 #include "xfs_trans.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_inode_item.h"
38 #include "xfs_alloc.h"
39 #include "xfs_btree.h"
40 #include "xfs_btree_trace.h"
41 #include "xfs_ialloc.h"
42 #include "xfs_itable.h"
44 #include "xfs_error.h"
45 #include "xfs_quota.h"
48 * Determine the extent state.
57 ASSERT(blks
!= 0); /* saved for DMIG */
58 return XFS_EXT_UNWRITTEN
;
64 * Convert on-disk form of btree root to in-memory form.
69 xfs_bmdr_block_t
*dblock
,
71 struct xfs_btree_block
*rblock
,
80 rblock
->bb_magic
= cpu_to_be32(XFS_BMAP_MAGIC
);
81 rblock
->bb_level
= dblock
->bb_level
;
82 ASSERT(be16_to_cpu(rblock
->bb_level
) > 0);
83 rblock
->bb_numrecs
= dblock
->bb_numrecs
;
84 rblock
->bb_u
.l
.bb_leftsib
= cpu_to_be64(NULLDFSBNO
);
85 rblock
->bb_u
.l
.bb_rightsib
= cpu_to_be64(NULLDFSBNO
);
86 dmxr
= xfs_bmdr_maxrecs(mp
, dblocklen
, 0);
87 fkp
= XFS_BMDR_KEY_ADDR(dblock
, 1);
88 tkp
= XFS_BMBT_KEY_ADDR(mp
, rblock
, 1);
89 fpp
= XFS_BMDR_PTR_ADDR(dblock
, 1, dmxr
);
90 tpp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, rblock
, 1, rblocklen
);
91 dmxr
= be16_to_cpu(dblock
->bb_numrecs
);
92 memcpy(tkp
, fkp
, sizeof(*fkp
) * dmxr
);
93 memcpy(tpp
, fpp
, sizeof(*fpp
) * dmxr
);
97 * Convert a compressed bmap extent record to an uncompressed form.
98 * This code must be in sync with the routines xfs_bmbt_get_startoff,
99 * xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state.
110 ext_flag
= (int)(l0
>> (64 - BMBT_EXNTFLAG_BITLEN
));
111 s
->br_startoff
= ((xfs_fileoff_t
)l0
&
112 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN
)) >> 9;
114 s
->br_startblock
= (((xfs_fsblock_t
)l0
& xfs_mask64lo(9)) << 43) |
115 (((xfs_fsblock_t
)l1
) >> 21);
121 b
= (((xfs_dfsbno_t
)l0
& xfs_mask64lo(9)) << 43) |
122 (((xfs_dfsbno_t
)l1
) >> 21);
123 ASSERT((b
>> 32) == 0 || isnulldstartblock(b
));
124 s
->br_startblock
= (xfs_fsblock_t
)b
;
127 s
->br_startblock
= (xfs_fsblock_t
)(((xfs_dfsbno_t
)l1
) >> 21);
129 #endif /* XFS_BIG_BLKNOS */
130 s
->br_blockcount
= (xfs_filblks_t
)(l1
& xfs_mask64lo(21));
131 /* This is xfs_extent_state() in-line */
133 ASSERT(s
->br_blockcount
!= 0); /* saved for DMIG */
134 st
= XFS_EXT_UNWRITTEN
;
142 xfs_bmbt_rec_host_t
*r
,
145 __xfs_bmbt_get_all(r
->l0
, r
->l1
, s
);
149 * Extract the blockcount field from an in memory bmap extent record.
152 xfs_bmbt_get_blockcount(
153 xfs_bmbt_rec_host_t
*r
)
155 return (xfs_filblks_t
)(r
->l1
& xfs_mask64lo(21));
159 * Extract the startblock field from an in memory bmap extent record.
162 xfs_bmbt_get_startblock(
163 xfs_bmbt_rec_host_t
*r
)
166 return (((xfs_fsblock_t
)r
->l0
& xfs_mask64lo(9)) << 43) |
167 (((xfs_fsblock_t
)r
->l1
) >> 21);
172 b
= (((xfs_dfsbno_t
)r
->l0
& xfs_mask64lo(9)) << 43) |
173 (((xfs_dfsbno_t
)r
->l1
) >> 21);
174 ASSERT((b
>> 32) == 0 || isnulldstartblock(b
));
175 return (xfs_fsblock_t
)b
;
177 return (xfs_fsblock_t
)(((xfs_dfsbno_t
)r
->l1
) >> 21);
179 #endif /* XFS_BIG_BLKNOS */
183 * Extract the startoff field from an in memory bmap extent record.
186 xfs_bmbt_get_startoff(
187 xfs_bmbt_rec_host_t
*r
)
189 return ((xfs_fileoff_t
)r
->l0
&
190 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN
)) >> 9;
195 xfs_bmbt_rec_host_t
*r
)
199 ext_flag
= (int)((r
->l0
) >> (64 - BMBT_EXNTFLAG_BITLEN
));
200 return xfs_extent_state(xfs_bmbt_get_blockcount(r
),
205 * Extract the blockcount field from an on disk bmap extent record.
208 xfs_bmbt_disk_get_blockcount(
211 return (xfs_filblks_t
)(be64_to_cpu(r
->l1
) & xfs_mask64lo(21));
215 * Extract the startoff field from a disk format bmap extent record.
218 xfs_bmbt_disk_get_startoff(
221 return ((xfs_fileoff_t
)be64_to_cpu(r
->l0
) &
222 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN
)) >> 9;
227 * Set all the fields in a bmap extent record from the arguments.
231 xfs_bmbt_rec_host_t
*r
,
232 xfs_fileoff_t startoff
,
233 xfs_fsblock_t startblock
,
234 xfs_filblks_t blockcount
,
237 int extent_flag
= (state
== XFS_EXT_NORM
) ? 0 : 1;
239 ASSERT(state
== XFS_EXT_NORM
|| state
== XFS_EXT_UNWRITTEN
);
240 ASSERT((startoff
& xfs_mask64hi(64-BMBT_STARTOFF_BITLEN
)) == 0);
241 ASSERT((blockcount
& xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN
)) == 0);
244 ASSERT((startblock
& xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN
)) == 0);
246 r
->l0
= ((xfs_bmbt_rec_base_t
)extent_flag
<< 63) |
247 ((xfs_bmbt_rec_base_t
)startoff
<< 9) |
248 ((xfs_bmbt_rec_base_t
)startblock
>> 43);
249 r
->l1
= ((xfs_bmbt_rec_base_t
)startblock
<< 21) |
250 ((xfs_bmbt_rec_base_t
)blockcount
&
251 (xfs_bmbt_rec_base_t
)xfs_mask64lo(21));
252 #else /* !XFS_BIG_BLKNOS */
253 if (isnullstartblock(startblock
)) {
254 r
->l0
= ((xfs_bmbt_rec_base_t
)extent_flag
<< 63) |
255 ((xfs_bmbt_rec_base_t
)startoff
<< 9) |
256 (xfs_bmbt_rec_base_t
)xfs_mask64lo(9);
257 r
->l1
= xfs_mask64hi(11) |
258 ((xfs_bmbt_rec_base_t
)startblock
<< 21) |
259 ((xfs_bmbt_rec_base_t
)blockcount
&
260 (xfs_bmbt_rec_base_t
)xfs_mask64lo(21));
262 r
->l0
= ((xfs_bmbt_rec_base_t
)extent_flag
<< 63) |
263 ((xfs_bmbt_rec_base_t
)startoff
<< 9);
264 r
->l1
= ((xfs_bmbt_rec_base_t
)startblock
<< 21) |
265 ((xfs_bmbt_rec_base_t
)blockcount
&
266 (xfs_bmbt_rec_base_t
)xfs_mask64lo(21));
268 #endif /* XFS_BIG_BLKNOS */
272 * Set all the fields in a bmap extent record from the uncompressed form.
276 xfs_bmbt_rec_host_t
*r
,
279 xfs_bmbt_set_allf(r
, s
->br_startoff
, s
->br_startblock
,
280 s
->br_blockcount
, s
->br_state
);
285 * Set all the fields in a disk format bmap extent record from the arguments.
288 xfs_bmbt_disk_set_allf(
290 xfs_fileoff_t startoff
,
291 xfs_fsblock_t startblock
,
292 xfs_filblks_t blockcount
,
295 int extent_flag
= (state
== XFS_EXT_NORM
) ? 0 : 1;
297 ASSERT(state
== XFS_EXT_NORM
|| state
== XFS_EXT_UNWRITTEN
);
298 ASSERT((startoff
& xfs_mask64hi(64-BMBT_STARTOFF_BITLEN
)) == 0);
299 ASSERT((blockcount
& xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN
)) == 0);
302 ASSERT((startblock
& xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN
)) == 0);
305 ((xfs_bmbt_rec_base_t
)extent_flag
<< 63) |
306 ((xfs_bmbt_rec_base_t
)startoff
<< 9) |
307 ((xfs_bmbt_rec_base_t
)startblock
>> 43));
309 ((xfs_bmbt_rec_base_t
)startblock
<< 21) |
310 ((xfs_bmbt_rec_base_t
)blockcount
&
311 (xfs_bmbt_rec_base_t
)xfs_mask64lo(21)));
312 #else /* !XFS_BIG_BLKNOS */
313 if (isnullstartblock(startblock
)) {
315 ((xfs_bmbt_rec_base_t
)extent_flag
<< 63) |
316 ((xfs_bmbt_rec_base_t
)startoff
<< 9) |
317 (xfs_bmbt_rec_base_t
)xfs_mask64lo(9));
318 r
->l1
= cpu_to_be64(xfs_mask64hi(11) |
319 ((xfs_bmbt_rec_base_t
)startblock
<< 21) |
320 ((xfs_bmbt_rec_base_t
)blockcount
&
321 (xfs_bmbt_rec_base_t
)xfs_mask64lo(21)));
324 ((xfs_bmbt_rec_base_t
)extent_flag
<< 63) |
325 ((xfs_bmbt_rec_base_t
)startoff
<< 9));
327 ((xfs_bmbt_rec_base_t
)startblock
<< 21) |
328 ((xfs_bmbt_rec_base_t
)blockcount
&
329 (xfs_bmbt_rec_base_t
)xfs_mask64lo(21)));
331 #endif /* XFS_BIG_BLKNOS */
335 * Set all the fields in a bmap extent record from the uncompressed form.
338 xfs_bmbt_disk_set_all(
342 xfs_bmbt_disk_set_allf(r
, s
->br_startoff
, s
->br_startblock
,
343 s
->br_blockcount
, s
->br_state
);
347 * Set the blockcount field in a bmap extent record.
350 xfs_bmbt_set_blockcount(
351 xfs_bmbt_rec_host_t
*r
,
354 ASSERT((v
& xfs_mask64hi(43)) == 0);
355 r
->l1
= (r
->l1
& (xfs_bmbt_rec_base_t
)xfs_mask64hi(43)) |
356 (xfs_bmbt_rec_base_t
)(v
& xfs_mask64lo(21));
360 * Set the startblock field in a bmap extent record.
363 xfs_bmbt_set_startblock(
364 xfs_bmbt_rec_host_t
*r
,
368 ASSERT((v
& xfs_mask64hi(12)) == 0);
369 r
->l0
= (r
->l0
& (xfs_bmbt_rec_base_t
)xfs_mask64hi(55)) |
370 (xfs_bmbt_rec_base_t
)(v
>> 43);
371 r
->l1
= (r
->l1
& (xfs_bmbt_rec_base_t
)xfs_mask64lo(21)) |
372 (xfs_bmbt_rec_base_t
)(v
<< 21);
373 #else /* !XFS_BIG_BLKNOS */
374 if (isnullstartblock(v
)) {
375 r
->l0
|= (xfs_bmbt_rec_base_t
)xfs_mask64lo(9);
376 r
->l1
= (xfs_bmbt_rec_base_t
)xfs_mask64hi(11) |
377 ((xfs_bmbt_rec_base_t
)v
<< 21) |
378 (r
->l1
& (xfs_bmbt_rec_base_t
)xfs_mask64lo(21));
380 r
->l0
&= ~(xfs_bmbt_rec_base_t
)xfs_mask64lo(9);
381 r
->l1
= ((xfs_bmbt_rec_base_t
)v
<< 21) |
382 (r
->l1
& (xfs_bmbt_rec_base_t
)xfs_mask64lo(21));
384 #endif /* XFS_BIG_BLKNOS */
388 * Set the startoff field in a bmap extent record.
391 xfs_bmbt_set_startoff(
392 xfs_bmbt_rec_host_t
*r
,
395 ASSERT((v
& xfs_mask64hi(9)) == 0);
396 r
->l0
= (r
->l0
& (xfs_bmbt_rec_base_t
) xfs_mask64hi(1)) |
397 ((xfs_bmbt_rec_base_t
)v
<< 9) |
398 (r
->l0
& (xfs_bmbt_rec_base_t
)xfs_mask64lo(9));
402 * Set the extent state field in a bmap extent record.
406 xfs_bmbt_rec_host_t
*r
,
409 ASSERT(v
== XFS_EXT_NORM
|| v
== XFS_EXT_UNWRITTEN
);
410 if (v
== XFS_EXT_NORM
)
411 r
->l0
&= xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN
);
413 r
->l0
|= xfs_mask64hi(BMBT_EXNTFLAG_BITLEN
);
417 * Convert in-memory form of btree root to on-disk form.
421 struct xfs_mount
*mp
,
422 struct xfs_btree_block
*rblock
,
424 xfs_bmdr_block_t
*dblock
,
433 ASSERT(be32_to_cpu(rblock
->bb_magic
) == XFS_BMAP_MAGIC
);
434 ASSERT(be64_to_cpu(rblock
->bb_u
.l
.bb_leftsib
) == NULLDFSBNO
);
435 ASSERT(be64_to_cpu(rblock
->bb_u
.l
.bb_rightsib
) == NULLDFSBNO
);
436 ASSERT(be16_to_cpu(rblock
->bb_level
) > 0);
437 dblock
->bb_level
= rblock
->bb_level
;
438 dblock
->bb_numrecs
= rblock
->bb_numrecs
;
439 dmxr
= xfs_bmdr_maxrecs(mp
, dblocklen
, 0);
440 fkp
= XFS_BMBT_KEY_ADDR(mp
, rblock
, 1);
441 tkp
= XFS_BMDR_KEY_ADDR(dblock
, 1);
442 fpp
= XFS_BMAP_BROOT_PTR_ADDR(mp
, rblock
, 1, rblocklen
);
443 tpp
= XFS_BMDR_PTR_ADDR(dblock
, 1, dmxr
);
444 dmxr
= be16_to_cpu(dblock
->bb_numrecs
);
445 memcpy(tkp
, fkp
, sizeof(*fkp
) * dmxr
);
446 memcpy(tpp
, fpp
, sizeof(*fpp
) * dmxr
);
450 * Check extent records, which have just been read, for
451 * any bit in the extent flag field. ASSERT on debug
452 * kernels, as this condition should not occur.
453 * Return an error condition (1) if any flags found,
454 * otherwise return 0.
458 xfs_check_nostate_extents(
463 for (; num
> 0; num
--, idx
++) {
464 xfs_bmbt_rec_host_t
*ep
= xfs_iext_get_ext(ifp
, idx
);
466 (64 - BMBT_EXNTFLAG_BITLEN
)) != 0) {
475 STATIC
struct xfs_btree_cur
*
477 struct xfs_btree_cur
*cur
)
479 struct xfs_btree_cur
*new;
481 new = xfs_bmbt_init_cursor(cur
->bc_mp
, cur
->bc_tp
,
482 cur
->bc_private
.b
.ip
, cur
->bc_private
.b
.whichfork
);
485 * Copy the firstblock, flist, and flags values,
486 * since init cursor doesn't get them.
488 new->bc_private
.b
.firstblock
= cur
->bc_private
.b
.firstblock
;
489 new->bc_private
.b
.flist
= cur
->bc_private
.b
.flist
;
490 new->bc_private
.b
.flags
= cur
->bc_private
.b
.flags
;
496 xfs_bmbt_update_cursor(
497 struct xfs_btree_cur
*src
,
498 struct xfs_btree_cur
*dst
)
500 ASSERT((dst
->bc_private
.b
.firstblock
!= NULLFSBLOCK
) ||
501 (dst
->bc_private
.b
.ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
));
502 ASSERT(dst
->bc_private
.b
.flist
== src
->bc_private
.b
.flist
);
504 dst
->bc_private
.b
.allocated
+= src
->bc_private
.b
.allocated
;
505 dst
->bc_private
.b
.firstblock
= src
->bc_private
.b
.firstblock
;
507 src
->bc_private
.b
.allocated
= 0;
511 xfs_bmbt_alloc_block(
512 struct xfs_btree_cur
*cur
,
513 union xfs_btree_ptr
*start
,
514 union xfs_btree_ptr
*new,
518 xfs_alloc_arg_t args
; /* block allocation args */
519 int error
; /* error return value */
521 memset(&args
, 0, sizeof(args
));
522 args
.tp
= cur
->bc_tp
;
523 args
.mp
= cur
->bc_mp
;
524 args
.fsbno
= cur
->bc_private
.b
.firstblock
;
525 args
.firstblock
= args
.fsbno
;
527 if (args
.fsbno
== NULLFSBLOCK
) {
528 args
.fsbno
= be64_to_cpu(start
->l
);
529 args
.type
= XFS_ALLOCTYPE_START_BNO
;
531 * Make sure there is sufficient room left in the AG to
532 * complete a full tree split for an extent insert. If
533 * we are converting the middle part of an extent then
534 * we may need space for two tree splits.
536 * We are relying on the caller to make the correct block
537 * reservation for this operation to succeed. If the
538 * reservation amount is insufficient then we may fail a
539 * block allocation here and corrupt the filesystem.
541 args
.minleft
= xfs_trans_get_block_res(args
.tp
);
542 } else if (cur
->bc_private
.b
.flist
->xbf_low
) {
543 args
.type
= XFS_ALLOCTYPE_START_BNO
;
545 args
.type
= XFS_ALLOCTYPE_NEAR_BNO
;
548 args
.minlen
= args
.maxlen
= args
.prod
= 1;
549 args
.wasdel
= cur
->bc_private
.b
.flags
& XFS_BTCUR_BPRV_WASDEL
;
550 if (!args
.wasdel
&& xfs_trans_get_block_res(args
.tp
) == 0) {
551 error
= XFS_ERROR(ENOSPC
);
554 error
= xfs_alloc_vextent(&args
);
558 if (args
.fsbno
== NULLFSBLOCK
&& args
.minleft
) {
560 * Could not find an AG with enough free space to satisfy
561 * a full btree split. Try again without minleft and if
562 * successful activate the lowspace algorithm.
565 args
.type
= XFS_ALLOCTYPE_FIRST_AG
;
567 error
= xfs_alloc_vextent(&args
);
570 cur
->bc_private
.b
.flist
->xbf_low
= 1;
572 if (args
.fsbno
== NULLFSBLOCK
) {
573 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
577 ASSERT(args
.len
== 1);
578 cur
->bc_private
.b
.firstblock
= args
.fsbno
;
579 cur
->bc_private
.b
.allocated
++;
580 cur
->bc_private
.b
.ip
->i_d
.di_nblocks
++;
581 xfs_trans_log_inode(args
.tp
, cur
->bc_private
.b
.ip
, XFS_ILOG_CORE
);
582 xfs_trans_mod_dquot_byino(args
.tp
, cur
->bc_private
.b
.ip
,
583 XFS_TRANS_DQ_BCOUNT
, 1L);
585 new->l
= cpu_to_be64(args
.fsbno
);
587 XFS_BTREE_TRACE_CURSOR(cur
, XBT_EXIT
);
592 XFS_BTREE_TRACE_CURSOR(cur
, XBT_ERROR
);
598 struct xfs_btree_cur
*cur
,
601 struct xfs_mount
*mp
= cur
->bc_mp
;
602 struct xfs_inode
*ip
= cur
->bc_private
.b
.ip
;
603 struct xfs_trans
*tp
= cur
->bc_tp
;
604 xfs_fsblock_t fsbno
= XFS_DADDR_TO_FSB(mp
, XFS_BUF_ADDR(bp
));
606 xfs_bmap_add_free(fsbno
, 1, cur
->bc_private
.b
.flist
, mp
);
607 ip
->i_d
.di_nblocks
--;
609 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
610 xfs_trans_mod_dquot_byino(tp
, ip
, XFS_TRANS_DQ_BCOUNT
, -1L);
611 xfs_trans_binval(tp
, bp
);
616 xfs_bmbt_get_minrecs(
617 struct xfs_btree_cur
*cur
,
620 if (level
== cur
->bc_nlevels
- 1) {
621 struct xfs_ifork
*ifp
;
623 ifp
= XFS_IFORK_PTR(cur
->bc_private
.b
.ip
,
624 cur
->bc_private
.b
.whichfork
);
626 return xfs_bmbt_maxrecs(cur
->bc_mp
,
627 ifp
->if_broot_bytes
, level
== 0) / 2;
630 return cur
->bc_mp
->m_bmap_dmnr
[level
!= 0];
634 xfs_bmbt_get_maxrecs(
635 struct xfs_btree_cur
*cur
,
638 if (level
== cur
->bc_nlevels
- 1) {
639 struct xfs_ifork
*ifp
;
641 ifp
= XFS_IFORK_PTR(cur
->bc_private
.b
.ip
,
642 cur
->bc_private
.b
.whichfork
);
644 return xfs_bmbt_maxrecs(cur
->bc_mp
,
645 ifp
->if_broot_bytes
, level
== 0);
648 return cur
->bc_mp
->m_bmap_dmxr
[level
!= 0];
653 * Get the maximum records we could store in the on-disk format.
655 * For non-root nodes this is equivalent to xfs_bmbt_get_maxrecs, but
656 * for the root node this checks the available space in the dinode fork
657 * so that we can resize the in-memory buffer to match it. After a
658 * resize to the maximum size this function returns the same value
659 * as xfs_bmbt_get_maxrecs for the root node, too.
662 xfs_bmbt_get_dmaxrecs(
663 struct xfs_btree_cur
*cur
,
666 if (level
!= cur
->bc_nlevels
- 1)
667 return cur
->bc_mp
->m_bmap_dmxr
[level
!= 0];
668 return xfs_bmdr_maxrecs(cur
->bc_mp
, cur
->bc_private
.b
.forksize
,
673 xfs_bmbt_init_key_from_rec(
674 union xfs_btree_key
*key
,
675 union xfs_btree_rec
*rec
)
677 key
->bmbt
.br_startoff
=
678 cpu_to_be64(xfs_bmbt_disk_get_startoff(&rec
->bmbt
));
682 xfs_bmbt_init_rec_from_key(
683 union xfs_btree_key
*key
,
684 union xfs_btree_rec
*rec
)
686 ASSERT(key
->bmbt
.br_startoff
!= 0);
688 xfs_bmbt_disk_set_allf(&rec
->bmbt
, be64_to_cpu(key
->bmbt
.br_startoff
),
693 xfs_bmbt_init_rec_from_cur(
694 struct xfs_btree_cur
*cur
,
695 union xfs_btree_rec
*rec
)
697 xfs_bmbt_disk_set_all(&rec
->bmbt
, &cur
->bc_rec
.b
);
701 xfs_bmbt_init_ptr_from_cur(
702 struct xfs_btree_cur
*cur
,
703 union xfs_btree_ptr
*ptr
)
710 struct xfs_btree_cur
*cur
,
711 union xfs_btree_key
*key
)
713 return (__int64_t
)be64_to_cpu(key
->bmbt
.br_startoff
) -
714 cur
->bc_rec
.b
.br_startoff
;
719 xfs_bmbt_keys_inorder(
720 struct xfs_btree_cur
*cur
,
721 union xfs_btree_key
*k1
,
722 union xfs_btree_key
*k2
)
724 return be64_to_cpu(k1
->bmbt
.br_startoff
) <
725 be64_to_cpu(k2
->bmbt
.br_startoff
);
729 xfs_bmbt_recs_inorder(
730 struct xfs_btree_cur
*cur
,
731 union xfs_btree_rec
*r1
,
732 union xfs_btree_rec
*r2
)
734 return xfs_bmbt_disk_get_startoff(&r1
->bmbt
) +
735 xfs_bmbt_disk_get_blockcount(&r1
->bmbt
) <=
736 xfs_bmbt_disk_get_startoff(&r2
->bmbt
);
740 #ifdef XFS_BTREE_TRACE
741 ktrace_t
*xfs_bmbt_trace_buf
;
744 xfs_bmbt_trace_enter(
745 struct xfs_btree_cur
*cur
,
762 struct xfs_inode
*ip
= cur
->bc_private
.b
.ip
;
763 int whichfork
= cur
->bc_private
.b
.whichfork
;
765 ktrace_enter(xfs_bmbt_trace_buf
,
766 (void *)((__psint_t
)type
| (whichfork
<< 8) | (line
<< 16)),
767 (void *)func
, (void *)s
, (void *)ip
, (void *)cur
,
768 (void *)a0
, (void *)a1
, (void *)a2
, (void *)a3
,
769 (void *)a4
, (void *)a5
, (void *)a6
, (void *)a7
,
770 (void *)a8
, (void *)a9
, (void *)a10
);
774 xfs_bmbt_trace_cursor(
775 struct xfs_btree_cur
*cur
,
780 struct xfs_bmbt_rec_host r
;
782 xfs_bmbt_set_all(&r
, &cur
->bc_rec
.b
);
784 *s0
= (cur
->bc_nlevels
<< 24) |
785 (cur
->bc_private
.b
.flags
<< 16) |
786 cur
->bc_private
.b
.allocated
;
793 struct xfs_btree_cur
*cur
,
794 union xfs_btree_key
*key
,
798 *l0
= be64_to_cpu(key
->bmbt
.br_startoff
);
802 /* Endian flipping versions of the bmbt extraction functions */
804 xfs_bmbt_disk_get_all(
808 __xfs_bmbt_get_all(get_unaligned_be64(&r
->l0
),
809 get_unaligned_be64(&r
->l1
), s
);
813 xfs_bmbt_trace_record(
814 struct xfs_btree_cur
*cur
,
815 union xfs_btree_rec
*rec
,
820 struct xfs_bmbt_irec irec
;
822 xfs_bmbt_disk_get_all(&rec
->bmbt
, &irec
);
823 *l0
= irec
.br_startoff
;
824 *l1
= irec
.br_startblock
;
825 *l2
= irec
.br_blockcount
;
827 #endif /* XFS_BTREE_TRACE */
829 static const struct xfs_btree_ops xfs_bmbt_ops
= {
830 .rec_len
= sizeof(xfs_bmbt_rec_t
),
831 .key_len
= sizeof(xfs_bmbt_key_t
),
833 .dup_cursor
= xfs_bmbt_dup_cursor
,
834 .update_cursor
= xfs_bmbt_update_cursor
,
835 .alloc_block
= xfs_bmbt_alloc_block
,
836 .free_block
= xfs_bmbt_free_block
,
837 .get_maxrecs
= xfs_bmbt_get_maxrecs
,
838 .get_minrecs
= xfs_bmbt_get_minrecs
,
839 .get_dmaxrecs
= xfs_bmbt_get_dmaxrecs
,
840 .init_key_from_rec
= xfs_bmbt_init_key_from_rec
,
841 .init_rec_from_key
= xfs_bmbt_init_rec_from_key
,
842 .init_rec_from_cur
= xfs_bmbt_init_rec_from_cur
,
843 .init_ptr_from_cur
= xfs_bmbt_init_ptr_from_cur
,
844 .key_diff
= xfs_bmbt_key_diff
,
847 .keys_inorder
= xfs_bmbt_keys_inorder
,
848 .recs_inorder
= xfs_bmbt_recs_inorder
,
851 #ifdef XFS_BTREE_TRACE
852 .trace_enter
= xfs_bmbt_trace_enter
,
853 .trace_cursor
= xfs_bmbt_trace_cursor
,
854 .trace_key
= xfs_bmbt_trace_key
,
855 .trace_record
= xfs_bmbt_trace_record
,
860 * Allocate a new bmap btree cursor.
862 struct xfs_btree_cur
* /* new bmap btree cursor */
863 xfs_bmbt_init_cursor(
864 struct xfs_mount
*mp
, /* file system mount point */
865 struct xfs_trans
*tp
, /* transaction pointer */
866 struct xfs_inode
*ip
, /* inode owning the btree */
867 int whichfork
) /* data or attr fork */
869 struct xfs_ifork
*ifp
= XFS_IFORK_PTR(ip
, whichfork
);
870 struct xfs_btree_cur
*cur
;
872 cur
= kmem_zone_zalloc(xfs_btree_cur_zone
, KM_SLEEP
);
876 cur
->bc_nlevels
= be16_to_cpu(ifp
->if_broot
->bb_level
) + 1;
877 cur
->bc_btnum
= XFS_BTNUM_BMAP
;
878 cur
->bc_blocklog
= mp
->m_sb
.sb_blocklog
;
880 cur
->bc_ops
= &xfs_bmbt_ops
;
881 cur
->bc_flags
= XFS_BTREE_LONG_PTRS
| XFS_BTREE_ROOT_IN_INODE
;
883 cur
->bc_private
.b
.forksize
= XFS_IFORK_SIZE(ip
, whichfork
);
884 cur
->bc_private
.b
.ip
= ip
;
885 cur
->bc_private
.b
.firstblock
= NULLFSBLOCK
;
886 cur
->bc_private
.b
.flist
= NULL
;
887 cur
->bc_private
.b
.allocated
= 0;
888 cur
->bc_private
.b
.flags
= 0;
889 cur
->bc_private
.b
.whichfork
= whichfork
;
895 * Calculate number of records in a bmap btree block.
899 struct xfs_mount
*mp
,
903 blocklen
-= XFS_BMBT_BLOCK_LEN(mp
);
906 return blocklen
/ sizeof(xfs_bmbt_rec_t
);
907 return blocklen
/ (sizeof(xfs_bmbt_key_t
) + sizeof(xfs_bmbt_ptr_t
));
911 * Calculate number of records in a bmap btree inode root.
915 struct xfs_mount
*mp
,
919 blocklen
-= sizeof(xfs_bmdr_block_t
);
922 return blocklen
/ sizeof(xfs_bmdr_rec_t
);
923 return blocklen
/ (sizeof(xfs_bmdr_key_t
) + sizeof(xfs_bmdr_ptr_t
));