2 * Copyright (c) 2000-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"
29 #include "xfs_dmapi.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir_sf.h"
35 #include "xfs_dir2_sf.h"
36 #include "xfs_attr_sf.h"
37 #include "xfs_dinode.h"
38 #include "xfs_inode.h"
39 #include "xfs_btree.h"
40 #include "xfs_ialloc.h"
41 #include "xfs_alloc.h"
43 #include "xfs_rtalloc.h"
44 #include "xfs_fsops.h"
45 #include "xfs_error.h"
47 #include "xfs_inode_item.h"
48 #include "xfs_trans_space.h"
52 * Prototypes for internal functions.
56 STATIC
int xfs_rtallocate_range(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
57 xfs_extlen_t
, xfs_buf_t
**, xfs_fsblock_t
*);
58 STATIC
int xfs_rtany_summary(xfs_mount_t
*, xfs_trans_t
*, int, int,
59 xfs_rtblock_t
, xfs_buf_t
**, xfs_fsblock_t
*, int *);
60 STATIC
int xfs_rtcheck_range(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
61 xfs_extlen_t
, int, xfs_rtblock_t
*, int *);
62 STATIC
int xfs_rtfind_back(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
63 xfs_rtblock_t
, xfs_rtblock_t
*);
64 STATIC
int xfs_rtfind_forw(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
65 xfs_rtblock_t
, xfs_rtblock_t
*);
66 STATIC
int xfs_rtget_summary( xfs_mount_t
*, xfs_trans_t
*, int,
67 xfs_rtblock_t
, xfs_buf_t
**, xfs_fsblock_t
*, xfs_suminfo_t
*);
68 STATIC
int xfs_rtmodify_range(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
70 STATIC
int xfs_rtmodify_summary(xfs_mount_t
*, xfs_trans_t
*, int,
71 xfs_rtblock_t
, int, xfs_buf_t
**, xfs_fsblock_t
*);
78 * xfs_lowbit32: get low bit set out of 32-bit argument, -1 if none set.
90 * Allocate space to the bitmap or summary file, and zero it, for growfs.
92 STATIC
int /* error */
94 xfs_mount_t
*mp
, /* file system mount point */
95 xfs_extlen_t oblocks
, /* old count of blocks */
96 xfs_extlen_t nblocks
, /* new count of blocks */
97 xfs_ino_t ino
) /* inode number (bitmap/summary) */
99 xfs_fileoff_t bno
; /* block number in file */
100 xfs_buf_t
*bp
; /* temporary buffer for zeroing */
101 int cancelflags
; /* flags for xfs_trans_cancel */
102 int committed
; /* transaction committed flag */
103 xfs_daddr_t d
; /* disk block address */
104 int error
; /* error return value */
105 xfs_fsblock_t firstblock
; /* first block allocated in xaction */
106 xfs_bmap_free_t flist
; /* list of freed blocks */
107 xfs_fsblock_t fsbno
; /* filesystem block for bno */
108 xfs_inode_t
*ip
; /* pointer to incore inode */
109 xfs_bmbt_irec_t map
; /* block map output */
110 int nmap
; /* number of block maps */
111 int resblks
; /* space reservation */
112 xfs_trans_t
*tp
; /* transaction pointer */
115 * Allocate space to the file, as necessary.
117 while (oblocks
< nblocks
) {
118 tp
= xfs_trans_alloc(mp
, XFS_TRANS_GROWFSRT_ALLOC
);
119 resblks
= XFS_GROWFSRT_SPACE_RES(mp
, nblocks
- oblocks
);
122 * Reserve space & log for one extent added to the file.
124 if ((error
= xfs_trans_reserve(tp
, resblks
,
125 XFS_GROWRTALLOC_LOG_RES(mp
), 0,
126 XFS_TRANS_PERM_LOG_RES
,
127 XFS_DEFAULT_PERM_LOG_COUNT
)))
129 cancelflags
= XFS_TRANS_RELEASE_LOG_RES
;
133 if ((error
= xfs_trans_iget(mp
, tp
, ino
, 0, XFS_ILOCK_EXCL
, &ip
)))
135 XFS_BMAP_INIT(&flist
, &firstblock
);
137 * Allocate blocks to the bitmap file.
140 cancelflags
|= XFS_TRANS_ABORT
;
141 error
= xfs_bmapi(tp
, ip
, oblocks
, nblocks
- oblocks
,
142 XFS_BMAPI_WRITE
| XFS_BMAPI_METADATA
, &firstblock
,
143 resblks
, &map
, &nmap
, &flist
);
144 if (!error
&& nmap
< 1)
145 error
= XFS_ERROR(ENOSPC
);
149 * Free any blocks freed up in the transaction, then commit.
151 error
= xfs_bmap_finish(&tp
, &flist
, firstblock
, &committed
);
154 xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
, NULL
);
156 * Now we need to clear the allocated blocks.
157 * Do this one block per transaction, to keep it simple.
160 for (bno
= map
.br_startoff
, fsbno
= map
.br_startblock
;
161 bno
< map
.br_startoff
+ map
.br_blockcount
;
163 tp
= xfs_trans_alloc(mp
, XFS_TRANS_GROWFSRT_ZERO
);
165 * Reserve log for one block zeroing.
167 if ((error
= xfs_trans_reserve(tp
, 0,
168 XFS_GROWRTZERO_LOG_RES(mp
), 0, 0, 0)))
171 * Lock the bitmap inode.
173 if ((error
= xfs_trans_iget(mp
, tp
, ino
, 0, XFS_ILOCK_EXCL
,
177 * Get a buffer for the block.
179 d
= XFS_FSB_TO_DADDR(mp
, fsbno
);
180 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
, d
,
183 error
= XFS_ERROR(EIO
);
186 memset(XFS_BUF_PTR(bp
), 0, mp
->m_sb
.sb_blocksize
);
187 xfs_trans_log_buf(tp
, bp
, 0, mp
->m_sb
.sb_blocksize
- 1);
189 * Commit the transaction.
191 xfs_trans_commit(tp
, 0, NULL
);
194 * Go on to the next extent, if any.
196 oblocks
= map
.br_startoff
+ map
.br_blockcount
;
200 xfs_trans_cancel(tp
, cancelflags
);
205 * Attempt to allocate an extent minlen<=len<=maxlen starting from
206 * bitmap block bbno. If we don't get maxlen then use prod to trim
207 * the length, if given. Returns error; returns starting block in *rtblock.
208 * The lengths are all in rtextents.
210 STATIC
int /* error */
211 xfs_rtallocate_extent_block(
212 xfs_mount_t
*mp
, /* file system mount point */
213 xfs_trans_t
*tp
, /* transaction pointer */
214 xfs_rtblock_t bbno
, /* bitmap block number */
215 xfs_extlen_t minlen
, /* minimum length to allocate */
216 xfs_extlen_t maxlen
, /* maximum length to allocate */
217 xfs_extlen_t
*len
, /* out: actual length allocated */
218 xfs_rtblock_t
*nextp
, /* out: next block to try */
219 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
220 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
221 xfs_extlen_t prod
, /* extent product factor */
222 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
224 xfs_rtblock_t besti
; /* best rtblock found so far */
225 xfs_rtblock_t bestlen
; /* best length found so far */
226 xfs_rtblock_t end
; /* last rtblock in chunk */
227 int error
; /* error value */
228 xfs_rtblock_t i
; /* current rtblock trying */
229 xfs_rtblock_t next
; /* next rtblock to try */
230 int stat
; /* status from internal calls */
233 * Loop over all the extents starting in this bitmap block,
234 * looking for one that's long enough.
236 for (i
= XFS_BLOCKTOBIT(mp
, bbno
), besti
= -1, bestlen
= 0,
237 end
= XFS_BLOCKTOBIT(mp
, bbno
+ 1) - 1;
241 * See if there's a free extent of maxlen starting at i.
242 * If it's not so then next will contain the first non-free.
244 error
= xfs_rtcheck_range(mp
, tp
, i
, maxlen
, 1, &next
, &stat
);
250 * i for maxlen is all free, allocate and return that.
252 error
= xfs_rtallocate_range(mp
, tp
, i
, maxlen
, rbpp
,
262 * In the case where we have a variable-sized allocation
263 * request, figure out how big this free piece is,
264 * and if it's big enough for the minimum, and the best
265 * so far, remember it.
267 if (minlen
< maxlen
) {
268 xfs_rtblock_t thislen
; /* this extent size */
271 if (thislen
>= minlen
&& thislen
> bestlen
) {
277 * If not done yet, find the start of the next free space.
280 error
= xfs_rtfind_forw(mp
, tp
, next
, end
, &i
);
288 * Searched the whole thing & didn't find a maxlen free extent.
290 if (minlen
< maxlen
&& besti
!= -1) {
291 xfs_extlen_t p
; /* amount to trim length by */
294 * If size should be a multiple of prod, make that so.
296 if (prod
> 1 && (p
= do_mod(bestlen
, prod
)))
299 * Allocate besti for bestlen & return that.
301 error
= xfs_rtallocate_range(mp
, tp
, besti
, bestlen
, rbpp
, rsb
);
310 * Allocation failed. Set *nextp to the next block to try.
313 *rtblock
= NULLRTBLOCK
;
318 * Allocate an extent of length minlen<=len<=maxlen, starting at block
319 * bno. If we don't get maxlen then use prod to trim the length, if given.
320 * Returns error; returns starting block in *rtblock.
321 * The lengths are all in rtextents.
323 STATIC
int /* error */
324 xfs_rtallocate_extent_exact(
325 xfs_mount_t
*mp
, /* file system mount point */
326 xfs_trans_t
*tp
, /* transaction pointer */
327 xfs_rtblock_t bno
, /* starting block number to allocate */
328 xfs_extlen_t minlen
, /* minimum length to allocate */
329 xfs_extlen_t maxlen
, /* maximum length to allocate */
330 xfs_extlen_t
*len
, /* out: actual length allocated */
331 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
332 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
333 xfs_extlen_t prod
, /* extent product factor */
334 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
336 int error
; /* error value */
337 xfs_extlen_t i
; /* extent length trimmed due to prod */
338 int isfree
; /* extent is free */
339 xfs_rtblock_t next
; /* next block to try (dummy) */
341 ASSERT(minlen
% prod
== 0 && maxlen
% prod
== 0);
343 * Check if the range in question (for maxlen) is free.
345 error
= xfs_rtcheck_range(mp
, tp
, bno
, maxlen
, 1, &next
, &isfree
);
351 * If it is, allocate it and return success.
353 error
= xfs_rtallocate_range(mp
, tp
, bno
, maxlen
, rbpp
, rsb
);
362 * If not, allocate what there is, if it's at least minlen.
365 if (maxlen
< minlen
) {
367 * Failed, return failure status.
369 *rtblock
= NULLRTBLOCK
;
373 * Trim off tail of extent, if prod is specified.
375 if (prod
> 1 && (i
= maxlen
% prod
)) {
377 if (maxlen
< minlen
) {
379 * Now we can't do it, return failure status.
381 *rtblock
= NULLRTBLOCK
;
386 * Allocate what we can and return it.
388 error
= xfs_rtallocate_range(mp
, tp
, bno
, maxlen
, rbpp
, rsb
);
398 * Allocate an extent of length minlen<=len<=maxlen, starting as near
399 * to bno as possible. If we don't get maxlen then use prod to trim
400 * the length, if given. The lengths are all in rtextents.
402 STATIC
int /* error */
403 xfs_rtallocate_extent_near(
404 xfs_mount_t
*mp
, /* file system mount point */
405 xfs_trans_t
*tp
, /* transaction pointer */
406 xfs_rtblock_t bno
, /* starting block number to allocate */
407 xfs_extlen_t minlen
, /* minimum length to allocate */
408 xfs_extlen_t maxlen
, /* maximum length to allocate */
409 xfs_extlen_t
*len
, /* out: actual length allocated */
410 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
411 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
412 xfs_extlen_t prod
, /* extent product factor */
413 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
415 int any
; /* any useful extents from summary */
416 xfs_rtblock_t bbno
; /* bitmap block number */
417 int error
; /* error value */
418 int i
; /* bitmap block offset (loop control) */
419 int j
; /* secondary loop control */
420 int log2len
; /* log2 of minlen */
421 xfs_rtblock_t n
; /* next block to try */
422 xfs_rtblock_t r
; /* result block */
424 ASSERT(minlen
% prod
== 0 && maxlen
% prod
== 0);
426 * If the block number given is off the end, silently set it to
429 if (bno
>= mp
->m_sb
.sb_rextents
)
430 bno
= mp
->m_sb
.sb_rextents
- 1;
432 * Try the exact allocation first.
434 error
= xfs_rtallocate_extent_exact(mp
, tp
, bno
, minlen
, maxlen
, len
,
435 rbpp
, rsb
, prod
, &r
);
440 * If the exact allocation worked, return that.
442 if (r
!= NULLRTBLOCK
) {
446 bbno
= XFS_BITTOBLOCK(mp
, bno
);
448 log2len
= xfs_highbit32(minlen
);
450 * Loop over all bitmap blocks (bbno + i is current block).
454 * Get summary information of extents of all useful levels
455 * starting in this bitmap block.
457 error
= xfs_rtany_summary(mp
, tp
, log2len
, mp
->m_rsumlevels
- 1,
458 bbno
+ i
, rbpp
, rsb
, &any
);
463 * If there are any useful extents starting here, try
468 * On the positive side of the starting location.
472 * Try to allocate an extent starting in
475 error
= xfs_rtallocate_extent_block(mp
, tp
,
476 bbno
+ i
, minlen
, maxlen
, len
, &n
, rbpp
,
482 * If it worked, return it.
484 if (r
!= NULLRTBLOCK
) {
490 * On the negative side of the starting location.
494 * Loop backwards through the bitmap blocks from
495 * the starting point-1 up to where we are now.
496 * There should be an extent which ends in this
497 * bitmap block and is long enough.
499 for (j
= -1; j
> i
; j
--) {
501 * Grab the summary information for
504 error
= xfs_rtany_summary(mp
, tp
,
505 log2len
, mp
->m_rsumlevels
- 1,
506 bbno
+ j
, rbpp
, rsb
, &any
);
511 * If there's no extent given in the
512 * summary that means the extent we
513 * found must carry over from an
514 * earlier block. If there is an
515 * extent given, we've already tried
516 * that allocation, don't do it again.
520 error
= xfs_rtallocate_extent_block(mp
,
521 tp
, bbno
+ j
, minlen
, maxlen
,
522 len
, &n
, rbpp
, rsb
, prod
, &r
);
527 * If it works, return the extent.
529 if (r
!= NULLRTBLOCK
) {
535 * There weren't intervening bitmap blocks
536 * with a long enough extent, or the
537 * allocation didn't work for some reason
538 * (i.e. it's a little * too short).
539 * Try to allocate from the summary block
542 error
= xfs_rtallocate_extent_block(mp
, tp
,
543 bbno
+ i
, minlen
, maxlen
, len
, &n
, rbpp
,
549 * If it works, return the extent.
551 if (r
!= NULLRTBLOCK
) {
558 * Loop control. If we were on the positive side, and there's
559 * still more blocks on the negative side, go there.
561 if (i
> 0 && (int)bbno
- i
>= 0)
564 * If positive, and no more negative, but there are more
565 * positive, go there.
567 else if (i
> 0 && (int)bbno
+ i
< mp
->m_sb
.sb_rbmblocks
- 1)
570 * If negative or 0 (just started), and there are positive
571 * blocks to go, go there. The 0 case moves to block 1.
573 else if (i
<= 0 && (int)bbno
- i
< mp
->m_sb
.sb_rbmblocks
- 1)
576 * If negative or 0 and there are more negative blocks,
579 else if (i
<= 0 && (int)bbno
+ i
> 0)
582 * Must be done. Return failure.
587 *rtblock
= NULLRTBLOCK
;
592 * Allocate an extent of length minlen<=len<=maxlen, with no position
593 * specified. If we don't get maxlen then use prod to trim
594 * the length, if given. The lengths are all in rtextents.
596 STATIC
int /* error */
597 xfs_rtallocate_extent_size(
598 xfs_mount_t
*mp
, /* file system mount point */
599 xfs_trans_t
*tp
, /* transaction pointer */
600 xfs_extlen_t minlen
, /* minimum length to allocate */
601 xfs_extlen_t maxlen
, /* maximum length to allocate */
602 xfs_extlen_t
*len
, /* out: actual length allocated */
603 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
604 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
605 xfs_extlen_t prod
, /* extent product factor */
606 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
608 int error
; /* error value */
609 int i
; /* bitmap block number */
610 int l
; /* level number (loop control) */
611 xfs_rtblock_t n
; /* next block to be tried */
612 xfs_rtblock_t r
; /* result block number */
613 xfs_suminfo_t sum
; /* summary information for extents */
615 ASSERT(minlen
% prod
== 0 && maxlen
% prod
== 0);
617 * Loop over all the levels starting with maxlen.
618 * At each level, look at all the bitmap blocks, to see if there
619 * are extents starting there that are long enough (>= maxlen).
620 * Note, only on the initial level can the allocation fail if
621 * the summary says there's an extent.
623 for (l
= xfs_highbit32(maxlen
); l
< mp
->m_rsumlevels
; l
++) {
625 * Loop over all the bitmap blocks.
627 for (i
= 0; i
< mp
->m_sb
.sb_rbmblocks
; i
++) {
629 * Get the summary for this level/block.
631 error
= xfs_rtget_summary(mp
, tp
, l
, i
, rbpp
, rsb
,
637 * Nothing there, on to the next block.
642 * Try allocating the extent.
644 error
= xfs_rtallocate_extent_block(mp
, tp
, i
, maxlen
,
645 maxlen
, len
, &n
, rbpp
, rsb
, prod
, &r
);
650 * If it worked, return that.
652 if (r
!= NULLRTBLOCK
) {
657 * If the "next block to try" returned from the
658 * allocator is beyond the next bitmap block,
659 * skip to that bitmap block.
661 if (XFS_BITTOBLOCK(mp
, n
) > i
+ 1)
662 i
= XFS_BITTOBLOCK(mp
, n
) - 1;
666 * Didn't find any maxlen blocks. Try smaller ones, unless
667 * we're asking for a fixed size extent.
669 if (minlen
> --maxlen
) {
670 *rtblock
= NULLRTBLOCK
;
674 * Loop over sizes, from maxlen down to minlen.
675 * This time, when we do the allocations, allow smaller ones
678 for (l
= xfs_highbit32(maxlen
); l
>= xfs_highbit32(minlen
); l
--) {
680 * Loop over all the bitmap blocks, try an allocation
681 * starting in that block.
683 for (i
= 0; i
< mp
->m_sb
.sb_rbmblocks
; i
++) {
685 * Get the summary information for this level/block.
687 error
= xfs_rtget_summary(mp
, tp
, l
, i
, rbpp
, rsb
,
693 * If nothing there, go on to next.
698 * Try the allocation. Make sure the specified
699 * minlen/maxlen are in the possible range for
700 * this summary level.
702 error
= xfs_rtallocate_extent_block(mp
, tp
, i
,
703 XFS_RTMAX(minlen
, 1 << l
),
704 XFS_RTMIN(maxlen
, (1 << (l
+ 1)) - 1),
705 len
, &n
, rbpp
, rsb
, prod
, &r
);
710 * If it worked, return that extent.
712 if (r
!= NULLRTBLOCK
) {
717 * If the "next block to try" returned from the
718 * allocator is beyond the next bitmap block,
719 * skip to that bitmap block.
721 if (XFS_BITTOBLOCK(mp
, n
) > i
+ 1)
722 i
= XFS_BITTOBLOCK(mp
, n
) - 1;
726 * Got nothing, return failure.
728 *rtblock
= NULLRTBLOCK
;
733 * Mark an extent specified by start and len allocated.
734 * Updates all the summary information as well as the bitmap.
736 STATIC
int /* error */
737 xfs_rtallocate_range(
738 xfs_mount_t
*mp
, /* file system mount point */
739 xfs_trans_t
*tp
, /* transaction pointer */
740 xfs_rtblock_t start
, /* start block to allocate */
741 xfs_extlen_t len
, /* length to allocate */
742 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
743 xfs_fsblock_t
*rsb
) /* in/out: summary block number */
745 xfs_rtblock_t end
; /* end of the allocated extent */
746 int error
; /* error value */
747 xfs_rtblock_t postblock
; /* first block allocated > end */
748 xfs_rtblock_t preblock
; /* first block allocated < start */
750 end
= start
+ len
- 1;
752 * Assume we're allocating out of the middle of a free extent.
753 * We need to find the beginning and end of the extent so we can
754 * properly update the summary.
756 error
= xfs_rtfind_back(mp
, tp
, start
, 0, &preblock
);
761 * Find the next allocated block (end of free extent).
763 error
= xfs_rtfind_forw(mp
, tp
, end
, mp
->m_sb
.sb_rextents
- 1,
769 * Decrement the summary information corresponding to the entire
772 error
= xfs_rtmodify_summary(mp
, tp
,
773 XFS_RTBLOCKLOG(postblock
+ 1 - preblock
),
774 XFS_BITTOBLOCK(mp
, preblock
), -1, rbpp
, rsb
);
779 * If there are blocks not being allocated at the front of the
780 * old extent, add summary data for them to be free.
782 if (preblock
< start
) {
783 error
= xfs_rtmodify_summary(mp
, tp
,
784 XFS_RTBLOCKLOG(start
- preblock
),
785 XFS_BITTOBLOCK(mp
, preblock
), 1, rbpp
, rsb
);
791 * If there are blocks not being allocated at the end of the
792 * old extent, add summary data for them to be free.
794 if (postblock
> end
) {
795 error
= xfs_rtmodify_summary(mp
, tp
,
796 XFS_RTBLOCKLOG(postblock
- end
),
797 XFS_BITTOBLOCK(mp
, end
+ 1), 1, rbpp
, rsb
);
803 * Modify the bitmap to mark this extent allocated.
805 error
= xfs_rtmodify_range(mp
, tp
, start
, len
, 0);
810 * Return whether there are any free extents in the size range given
811 * by low and high, for the bitmap block bbno.
813 STATIC
int /* error */
815 xfs_mount_t
*mp
, /* file system mount structure */
816 xfs_trans_t
*tp
, /* transaction pointer */
817 int low
, /* low log2 extent size */
818 int high
, /* high log2 extent size */
819 xfs_rtblock_t bbno
, /* bitmap block number */
820 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
821 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
822 int *stat
) /* out: any good extents here? */
824 int error
; /* error value */
825 int log
; /* loop counter, log2 of ext. size */
826 xfs_suminfo_t sum
; /* summary data */
829 * Loop over logs of extent sizes. Order is irrelevant.
831 for (log
= low
; log
<= high
; log
++) {
833 * Get one summary datum.
835 error
= xfs_rtget_summary(mp
, tp
, log
, bbno
, rbpp
, rsb
, &sum
);
840 * If there are any, return success.
848 * Found nothing, return failure.
855 * Get a buffer for the bitmap or summary file block specified.
856 * The buffer is returned read and locked.
858 STATIC
int /* error */
860 xfs_mount_t
*mp
, /* file system mount structure */
861 xfs_trans_t
*tp
, /* transaction pointer */
862 xfs_rtblock_t block
, /* block number in bitmap or summary */
863 int issum
, /* is summary not bitmap */
864 xfs_buf_t
**bpp
) /* output: buffer for the block */
866 xfs_buf_t
*bp
; /* block buffer, result */
867 xfs_daddr_t d
; /* disk addr of block */
868 int error
; /* error value */
869 xfs_fsblock_t fsb
; /* fs block number for block */
870 xfs_inode_t
*ip
; /* bitmap or summary inode */
872 ip
= issum
? mp
->m_rsumip
: mp
->m_rbmip
;
874 * Map from the file offset (block) and inode number to the
877 error
= xfs_bmapi_single(tp
, ip
, XFS_DATA_FORK
, &fsb
, block
);
881 ASSERT(fsb
!= NULLFSBLOCK
);
883 * Convert to disk address for buffer cache.
885 d
= XFS_FSB_TO_DADDR(mp
, fsb
);
889 error
= xfs_trans_read_buf(mp
, tp
, mp
->m_ddev_targp
, d
,
890 mp
->m_bsize
, 0, &bp
);
894 ASSERT(bp
&& !XFS_BUF_GETERROR(bp
));
901 * Check that the given extent (block range) is allocated already.
903 STATIC
int /* error */
904 xfs_rtcheck_alloc_range(
905 xfs_mount_t
*mp
, /* file system mount point */
906 xfs_trans_t
*tp
, /* transaction pointer */
907 xfs_rtblock_t bno
, /* starting block number of extent */
908 xfs_extlen_t len
, /* length of extent */
909 int *stat
) /* out: 1 for allocated, 0 for not */
911 xfs_rtblock_t
new; /* dummy for xfs_rtcheck_range */
913 return xfs_rtcheck_range(mp
, tp
, bno
, len
, 0, &new, stat
);
919 * Check whether the given block in the bitmap has the given value.
921 STATIC
int /* 1 for matches, 0 for not */
923 xfs_mount_t
*mp
, /* file system mount structure */
924 xfs_trans_t
*tp
, /* transaction pointer */
925 xfs_rtblock_t start
, /* bit (block) to check */
926 int val
) /* 1 for free, 0 for allocated */
928 int bit
; /* bit number in the word */
929 xfs_rtblock_t block
; /* bitmap block number */
930 xfs_buf_t
*bp
; /* buf for the block */
931 xfs_rtword_t
*bufp
; /* pointer into the buffer */
933 int error
; /* error value */
934 xfs_rtword_t wdiff
; /* difference between bit & expected */
935 int word
; /* word number in the buffer */
936 xfs_rtword_t wval
; /* word value from buffer */
938 block
= XFS_BITTOBLOCK(mp
, start
);
939 error
= xfs_rtbuf_get(mp
, tp
, block
, 0, &bp
);
940 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
941 word
= XFS_BITTOWORD(mp
, start
);
942 bit
= (int)(start
& (XFS_NBWORD
- 1));
944 xfs_trans_brelse(tp
, bp
);
945 wdiff
= (wval
^ -val
) & ((xfs_rtword_t
)1 << bit
);
952 * Check that the given extent (block range) is free already.
954 STATIC
int /* error */
955 xfs_rtcheck_free_range(
956 xfs_mount_t
*mp
, /* file system mount point */
957 xfs_trans_t
*tp
, /* transaction pointer */
958 xfs_rtblock_t bno
, /* starting block number of extent */
959 xfs_extlen_t len
, /* length of extent */
960 int *stat
) /* out: 1 for free, 0 for not */
962 xfs_rtblock_t
new; /* dummy for xfs_rtcheck_range */
964 return xfs_rtcheck_range(mp
, tp
, bno
, len
, 1, &new, stat
);
969 * Check that the given range is either all allocated (val = 0) or
970 * all free (val = 1).
972 STATIC
int /* error */
974 xfs_mount_t
*mp
, /* file system mount point */
975 xfs_trans_t
*tp
, /* transaction pointer */
976 xfs_rtblock_t start
, /* starting block number of extent */
977 xfs_extlen_t len
, /* length of extent */
978 int val
, /* 1 for free, 0 for allocated */
979 xfs_rtblock_t
*new, /* out: first block not matching */
980 int *stat
) /* out: 1 for matches, 0 for not */
982 xfs_rtword_t
*b
; /* current word in buffer */
983 int bit
; /* bit number in the word */
984 xfs_rtblock_t block
; /* bitmap block number */
985 xfs_buf_t
*bp
; /* buf for the block */
986 xfs_rtword_t
*bufp
; /* starting word in buffer */
987 int error
; /* error value */
988 xfs_rtblock_t i
; /* current bit number rel. to start */
989 xfs_rtblock_t lastbit
; /* last useful bit in word */
990 xfs_rtword_t mask
; /* mask of relevant bits for value */
991 xfs_rtword_t wdiff
; /* difference from wanted value */
992 int word
; /* word number in the buffer */
995 * Compute starting bitmap block number
997 block
= XFS_BITTOBLOCK(mp
, start
);
999 * Read the bitmap block.
1001 error
= xfs_rtbuf_get(mp
, tp
, block
, 0, &bp
);
1005 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1007 * Compute the starting word's address, and starting bit.
1009 word
= XFS_BITTOWORD(mp
, start
);
1011 bit
= (int)(start
& (XFS_NBWORD
- 1));
1013 * 0 (allocated) => all zero's; 1 (free) => all one's.
1017 * If not starting on a word boundary, deal with the first
1022 * Compute first bit not examined.
1024 lastbit
= XFS_RTMIN(bit
+ len
, XFS_NBWORD
);
1026 * Mask of relevant bits.
1028 mask
= (((xfs_rtword_t
)1 << (lastbit
- bit
)) - 1) << bit
;
1030 * Compute difference between actual and desired value.
1032 if ((wdiff
= (*b
^ val
) & mask
)) {
1034 * Different, compute first wrong bit and return.
1036 xfs_trans_brelse(tp
, bp
);
1037 i
= XFS_RTLOBIT(wdiff
) - bit
;
1044 * Go on to next block if that's where the next word is
1045 * and we need the next word.
1047 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1049 * If done with this block, get the next one.
1051 xfs_trans_brelse(tp
, bp
);
1052 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1056 b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1060 * Go on to the next word in the buffer.
1066 * Starting on a word boundary, no partial word.
1071 * Loop over whole words in buffers. When we use up one buffer
1072 * we move on to the next one.
1074 while (len
- i
>= XFS_NBWORD
) {
1076 * Compute difference between actual and desired value.
1078 if ((wdiff
= *b
^ val
)) {
1080 * Different, compute first wrong bit and return.
1082 xfs_trans_brelse(tp
, bp
);
1083 i
+= XFS_RTLOBIT(wdiff
);
1090 * Go on to next block if that's where the next word is
1091 * and we need the next word.
1093 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1095 * If done with this block, get the next one.
1097 xfs_trans_brelse(tp
, bp
);
1098 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1102 b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1106 * Go on to the next word in the buffer.
1112 * If not ending on a word boundary, deal with the last
1115 if ((lastbit
= len
- i
)) {
1117 * Mask of relevant bits.
1119 mask
= ((xfs_rtword_t
)1 << lastbit
) - 1;
1121 * Compute difference between actual and desired value.
1123 if ((wdiff
= (*b
^ val
) & mask
)) {
1125 * Different, compute first wrong bit and return.
1127 xfs_trans_brelse(tp
, bp
);
1128 i
+= XFS_RTLOBIT(wdiff
);
1136 * Successful, return.
1138 xfs_trans_brelse(tp
, bp
);
1145 * Copy and transform the summary file, given the old and new
1146 * parameters in the mount structures.
1148 STATIC
int /* error */
1150 xfs_mount_t
*omp
, /* old file system mount point */
1151 xfs_mount_t
*nmp
, /* new file system mount point */
1152 xfs_trans_t
*tp
) /* transaction pointer */
1154 xfs_rtblock_t bbno
; /* bitmap block number */
1155 xfs_buf_t
*bp
; /* summary buffer */
1156 int error
; /* error return value */
1157 int log
; /* summary level number (log length) */
1158 xfs_suminfo_t sum
; /* summary data */
1159 xfs_fsblock_t sumbno
; /* summary block number */
1162 for (log
= omp
->m_rsumlevels
- 1; log
>= 0; log
--) {
1163 for (bbno
= omp
->m_sb
.sb_rbmblocks
- 1;
1164 (xfs_srtblock_t
)bbno
>= 0;
1166 error
= xfs_rtget_summary(omp
, tp
, log
, bbno
, &bp
,
1172 error
= xfs_rtmodify_summary(omp
, tp
, log
, bbno
, -sum
,
1176 error
= xfs_rtmodify_summary(nmp
, tp
, log
, bbno
, sum
,
1187 * Searching backward from start to limit, find the first block whose
1188 * allocated/free state is different from start's.
1190 STATIC
int /* error */
1192 xfs_mount_t
*mp
, /* file system mount point */
1193 xfs_trans_t
*tp
, /* transaction pointer */
1194 xfs_rtblock_t start
, /* starting block to look at */
1195 xfs_rtblock_t limit
, /* last block to look at */
1196 xfs_rtblock_t
*rtblock
) /* out: start block found */
1198 xfs_rtword_t
*b
; /* current word in buffer */
1199 int bit
; /* bit number in the word */
1200 xfs_rtblock_t block
; /* bitmap block number */
1201 xfs_buf_t
*bp
; /* buf for the block */
1202 xfs_rtword_t
*bufp
; /* starting word in buffer */
1203 int error
; /* error value */
1204 xfs_rtblock_t firstbit
; /* first useful bit in the word */
1205 xfs_rtblock_t i
; /* current bit number rel. to start */
1206 xfs_rtblock_t len
; /* length of inspected area */
1207 xfs_rtword_t mask
; /* mask of relevant bits for value */
1208 xfs_rtword_t want
; /* mask for "good" values */
1209 xfs_rtword_t wdiff
; /* difference from wanted value */
1210 int word
; /* word number in the buffer */
1213 * Compute and read in starting bitmap block for starting block.
1215 block
= XFS_BITTOBLOCK(mp
, start
);
1216 error
= xfs_rtbuf_get(mp
, tp
, block
, 0, &bp
);
1220 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1222 * Get the first word's index & point to it.
1224 word
= XFS_BITTOWORD(mp
, start
);
1226 bit
= (int)(start
& (XFS_NBWORD
- 1));
1227 len
= start
- limit
+ 1;
1229 * Compute match value, based on the bit at start: if 1 (free)
1230 * then all-ones, else all-zeroes.
1232 want
= (*b
& ((xfs_rtword_t
)1 << bit
)) ? -1 : 0;
1234 * If the starting position is not word-aligned, deal with the
1237 if (bit
< XFS_NBWORD
- 1) {
1239 * Calculate first (leftmost) bit number to look at,
1240 * and mask for all the relevant bits in this word.
1242 firstbit
= XFS_RTMAX((xfs_srtblock_t
)(bit
- len
+ 1), 0);
1243 mask
= (((xfs_rtword_t
)1 << (bit
- firstbit
+ 1)) - 1) <<
1246 * Calculate the difference between the value there
1247 * and what we're looking for.
1249 if ((wdiff
= (*b
^ want
) & mask
)) {
1251 * Different. Mark where we are and return.
1253 xfs_trans_brelse(tp
, bp
);
1254 i
= bit
- XFS_RTHIBIT(wdiff
);
1255 *rtblock
= start
- i
+ 1;
1258 i
= bit
- firstbit
+ 1;
1260 * Go on to previous block if that's where the previous word is
1261 * and we need the previous word.
1263 if (--word
== -1 && i
< len
) {
1265 * If done with this block, get the previous one.
1267 xfs_trans_brelse(tp
, bp
);
1268 error
= xfs_rtbuf_get(mp
, tp
, --block
, 0, &bp
);
1272 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1273 word
= XFS_BLOCKWMASK(mp
);
1277 * Go on to the previous word in the buffer.
1283 * Starting on a word boundary, no partial word.
1288 * Loop over whole words in buffers. When we use up one buffer
1289 * we move on to the previous one.
1291 while (len
- i
>= XFS_NBWORD
) {
1293 * Compute difference between actual and desired value.
1295 if ((wdiff
= *b
^ want
)) {
1297 * Different, mark where we are and return.
1299 xfs_trans_brelse(tp
, bp
);
1300 i
+= XFS_NBWORD
- 1 - XFS_RTHIBIT(wdiff
);
1301 *rtblock
= start
- i
+ 1;
1306 * Go on to previous block if that's where the previous word is
1307 * and we need the previous word.
1309 if (--word
== -1 && i
< len
) {
1311 * If done with this block, get the previous one.
1313 xfs_trans_brelse(tp
, bp
);
1314 error
= xfs_rtbuf_get(mp
, tp
, --block
, 0, &bp
);
1318 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1319 word
= XFS_BLOCKWMASK(mp
);
1323 * Go on to the previous word in the buffer.
1329 * If not ending on a word boundary, deal with the last
1334 * Calculate first (leftmost) bit number to look at,
1335 * and mask for all the relevant bits in this word.
1337 firstbit
= XFS_NBWORD
- (len
- i
);
1338 mask
= (((xfs_rtword_t
)1 << (len
- i
)) - 1) << firstbit
;
1340 * Compute difference between actual and desired value.
1342 if ((wdiff
= (*b
^ want
) & mask
)) {
1344 * Different, mark where we are and return.
1346 xfs_trans_brelse(tp
, bp
);
1347 i
+= XFS_NBWORD
- 1 - XFS_RTHIBIT(wdiff
);
1348 *rtblock
= start
- i
+ 1;
1354 * No match, return that we scanned the whole area.
1356 xfs_trans_brelse(tp
, bp
);
1357 *rtblock
= start
- i
+ 1;
1362 * Searching forward from start to limit, find the first block whose
1363 * allocated/free state is different from start's.
1365 STATIC
int /* error */
1367 xfs_mount_t
*mp
, /* file system mount point */
1368 xfs_trans_t
*tp
, /* transaction pointer */
1369 xfs_rtblock_t start
, /* starting block to look at */
1370 xfs_rtblock_t limit
, /* last block to look at */
1371 xfs_rtblock_t
*rtblock
) /* out: start block found */
1373 xfs_rtword_t
*b
; /* current word in buffer */
1374 int bit
; /* bit number in the word */
1375 xfs_rtblock_t block
; /* bitmap block number */
1376 xfs_buf_t
*bp
; /* buf for the block */
1377 xfs_rtword_t
*bufp
; /* starting word in buffer */
1378 int error
; /* error value */
1379 xfs_rtblock_t i
; /* current bit number rel. to start */
1380 xfs_rtblock_t lastbit
; /* last useful bit in the word */
1381 xfs_rtblock_t len
; /* length of inspected area */
1382 xfs_rtword_t mask
; /* mask of relevant bits for value */
1383 xfs_rtword_t want
; /* mask for "good" values */
1384 xfs_rtword_t wdiff
; /* difference from wanted value */
1385 int word
; /* word number in the buffer */
1388 * Compute and read in starting bitmap block for starting block.
1390 block
= XFS_BITTOBLOCK(mp
, start
);
1391 error
= xfs_rtbuf_get(mp
, tp
, block
, 0, &bp
);
1395 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1397 * Get the first word's index & point to it.
1399 word
= XFS_BITTOWORD(mp
, start
);
1401 bit
= (int)(start
& (XFS_NBWORD
- 1));
1402 len
= limit
- start
+ 1;
1404 * Compute match value, based on the bit at start: if 1 (free)
1405 * then all-ones, else all-zeroes.
1407 want
= (*b
& ((xfs_rtword_t
)1 << bit
)) ? -1 : 0;
1409 * If the starting position is not word-aligned, deal with the
1414 * Calculate last (rightmost) bit number to look at,
1415 * and mask for all the relevant bits in this word.
1417 lastbit
= XFS_RTMIN(bit
+ len
, XFS_NBWORD
);
1418 mask
= (((xfs_rtword_t
)1 << (lastbit
- bit
)) - 1) << bit
;
1420 * Calculate the difference between the value there
1421 * and what we're looking for.
1423 if ((wdiff
= (*b
^ want
) & mask
)) {
1425 * Different. Mark where we are and return.
1427 xfs_trans_brelse(tp
, bp
);
1428 i
= XFS_RTLOBIT(wdiff
) - bit
;
1429 *rtblock
= start
+ i
- 1;
1434 * Go on to next block if that's where the next word is
1435 * and we need the next word.
1437 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1439 * If done with this block, get the previous one.
1441 xfs_trans_brelse(tp
, bp
);
1442 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1446 b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1450 * Go on to the previous word in the buffer.
1456 * Starting on a word boundary, no partial word.
1461 * Loop over whole words in buffers. When we use up one buffer
1462 * we move on to the next one.
1464 while (len
- i
>= XFS_NBWORD
) {
1466 * Compute difference between actual and desired value.
1468 if ((wdiff
= *b
^ want
)) {
1470 * Different, mark where we are and return.
1472 xfs_trans_brelse(tp
, bp
);
1473 i
+= XFS_RTLOBIT(wdiff
);
1474 *rtblock
= start
+ i
- 1;
1479 * Go on to next block if that's where the next word is
1480 * and we need the next word.
1482 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1484 * If done with this block, get the next one.
1486 xfs_trans_brelse(tp
, bp
);
1487 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1491 b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1495 * Go on to the next word in the buffer.
1501 * If not ending on a word boundary, deal with the last
1504 if ((lastbit
= len
- i
)) {
1506 * Calculate mask for all the relevant bits in this word.
1508 mask
= ((xfs_rtword_t
)1 << lastbit
) - 1;
1510 * Compute difference between actual and desired value.
1512 if ((wdiff
= (*b
^ want
) & mask
)) {
1514 * Different, mark where we are and return.
1516 xfs_trans_brelse(tp
, bp
);
1517 i
+= XFS_RTLOBIT(wdiff
);
1518 *rtblock
= start
+ i
- 1;
1524 * No match, return that we scanned the whole area.
1526 xfs_trans_brelse(tp
, bp
);
1527 *rtblock
= start
+ i
- 1;
1532 * Mark an extent specified by start and len freed.
1533 * Updates all the summary information as well as the bitmap.
1535 STATIC
int /* error */
1537 xfs_mount_t
*mp
, /* file system mount point */
1538 xfs_trans_t
*tp
, /* transaction pointer */
1539 xfs_rtblock_t start
, /* starting block to free */
1540 xfs_extlen_t len
, /* length to free */
1541 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
1542 xfs_fsblock_t
*rsb
) /* in/out: summary block number */
1544 xfs_rtblock_t end
; /* end of the freed extent */
1545 int error
; /* error value */
1546 xfs_rtblock_t postblock
; /* first block freed > end */
1547 xfs_rtblock_t preblock
; /* first block freed < start */
1549 end
= start
+ len
- 1;
1551 * Modify the bitmap to mark this extent freed.
1553 error
= xfs_rtmodify_range(mp
, tp
, start
, len
, 1);
1558 * Assume we're freeing out of the middle of an allocated extent.
1559 * We need to find the beginning and end of the extent so we can
1560 * properly update the summary.
1562 error
= xfs_rtfind_back(mp
, tp
, start
, 0, &preblock
);
1567 * Find the next allocated block (end of allocated extent).
1569 error
= xfs_rtfind_forw(mp
, tp
, end
, mp
->m_sb
.sb_rextents
- 1,
1572 * If there are blocks not being freed at the front of the
1573 * old extent, add summary data for them to be allocated.
1575 if (preblock
< start
) {
1576 error
= xfs_rtmodify_summary(mp
, tp
,
1577 XFS_RTBLOCKLOG(start
- preblock
),
1578 XFS_BITTOBLOCK(mp
, preblock
), -1, rbpp
, rsb
);
1584 * If there are blocks not being freed at the end of the
1585 * old extent, add summary data for them to be allocated.
1587 if (postblock
> end
) {
1588 error
= xfs_rtmodify_summary(mp
, tp
,
1589 XFS_RTBLOCKLOG(postblock
- end
),
1590 XFS_BITTOBLOCK(mp
, end
+ 1), -1, rbpp
, rsb
);
1596 * Increment the summary information corresponding to the entire
1597 * (new) free extent.
1599 error
= xfs_rtmodify_summary(mp
, tp
,
1600 XFS_RTBLOCKLOG(postblock
+ 1 - preblock
),
1601 XFS_BITTOBLOCK(mp
, preblock
), 1, rbpp
, rsb
);
1606 * Read and return the summary information for a given extent size,
1607 * bitmap block combination.
1608 * Keeps track of a current summary block, so we don't keep reading
1609 * it from the buffer cache.
1611 STATIC
int /* error */
1613 xfs_mount_t
*mp
, /* file system mount structure */
1614 xfs_trans_t
*tp
, /* transaction pointer */
1615 int log
, /* log2 of extent size */
1616 xfs_rtblock_t bbno
, /* bitmap block number */
1617 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
1618 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
1619 xfs_suminfo_t
*sum
) /* out: summary info for this block */
1621 xfs_buf_t
*bp
; /* buffer for summary block */
1622 int error
; /* error value */
1623 xfs_fsblock_t sb
; /* summary fsblock */
1624 int so
; /* index into the summary file */
1625 xfs_suminfo_t
*sp
; /* pointer to returned data */
1628 * Compute entry number in the summary file.
1630 so
= XFS_SUMOFFS(mp
, log
, bbno
);
1632 * Compute the block number in the summary file.
1634 sb
= XFS_SUMOFFSTOBLOCK(mp
, so
);
1636 * If we have an old buffer, and the block number matches, use that.
1638 if (rbpp
&& *rbpp
&& *rsb
== sb
)
1641 * Otherwise we have to get the buffer.
1645 * If there was an old one, get rid of it first.
1648 xfs_trans_brelse(tp
, *rbpp
);
1649 error
= xfs_rtbuf_get(mp
, tp
, sb
, 1, &bp
);
1654 * Remember this buffer and block for the next call.
1662 * Point to the summary information & copy it out.
1664 sp
= XFS_SUMPTR(mp
, bp
, so
);
1667 * Drop the buffer if we're not asked to remember it.
1670 xfs_trans_brelse(tp
, bp
);
1675 * Set the given range of bitmap bits to the given value.
1676 * Do whatever I/O and logging is required.
1678 STATIC
int /* error */
1680 xfs_mount_t
*mp
, /* file system mount point */
1681 xfs_trans_t
*tp
, /* transaction pointer */
1682 xfs_rtblock_t start
, /* starting block to modify */
1683 xfs_extlen_t len
, /* length of extent to modify */
1684 int val
) /* 1 for free, 0 for allocated */
1686 xfs_rtword_t
*b
; /* current word in buffer */
1687 int bit
; /* bit number in the word */
1688 xfs_rtblock_t block
; /* bitmap block number */
1689 xfs_buf_t
*bp
; /* buf for the block */
1690 xfs_rtword_t
*bufp
; /* starting word in buffer */
1691 int error
; /* error value */
1692 xfs_rtword_t
*first
; /* first used word in the buffer */
1693 int i
; /* current bit number rel. to start */
1694 int lastbit
; /* last useful bit in word */
1695 xfs_rtword_t mask
; /* mask o frelevant bits for value */
1696 int word
; /* word number in the buffer */
1699 * Compute starting bitmap block number.
1701 block
= XFS_BITTOBLOCK(mp
, start
);
1703 * Read the bitmap block, and point to its data.
1705 error
= xfs_rtbuf_get(mp
, tp
, block
, 0, &bp
);
1709 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1711 * Compute the starting word's address, and starting bit.
1713 word
= XFS_BITTOWORD(mp
, start
);
1714 first
= b
= &bufp
[word
];
1715 bit
= (int)(start
& (XFS_NBWORD
- 1));
1717 * 0 (allocated) => all zeroes; 1 (free) => all ones.
1721 * If not starting on a word boundary, deal with the first
1726 * Compute first bit not changed and mask of relevant bits.
1728 lastbit
= XFS_RTMIN(bit
+ len
, XFS_NBWORD
);
1729 mask
= (((xfs_rtword_t
)1 << (lastbit
- bit
)) - 1) << bit
;
1731 * Set/clear the active bits.
1739 * Go on to the next block if that's where the next word is
1740 * and we need the next word.
1742 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1744 * Log the changed part of this block.
1747 xfs_trans_log_buf(tp
, bp
,
1748 (uint
)((char *)first
- (char *)bufp
),
1749 (uint
)((char *)b
- (char *)bufp
));
1750 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1754 first
= b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1758 * Go on to the next word in the buffer
1764 * Starting on a word boundary, no partial word.
1769 * Loop over whole words in buffers. When we use up one buffer
1770 * we move on to the next one.
1772 while (len
- i
>= XFS_NBWORD
) {
1774 * Set the word value correctly.
1779 * Go on to the next block if that's where the next word is
1780 * and we need the next word.
1782 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1784 * Log the changed part of this block.
1787 xfs_trans_log_buf(tp
, bp
,
1788 (uint
)((char *)first
- (char *)bufp
),
1789 (uint
)((char *)b
- (char *)bufp
));
1790 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1794 first
= b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1798 * Go on to the next word in the buffer
1804 * If not ending on a word boundary, deal with the last
1807 if ((lastbit
= len
- i
)) {
1809 * Compute a mask of relevant bits.
1812 mask
= ((xfs_rtword_t
)1 << lastbit
) - 1;
1814 * Set/clear the active bits.
1823 * Log any remaining changed bytes.
1826 xfs_trans_log_buf(tp
, bp
, (uint
)((char *)first
- (char *)bufp
),
1827 (uint
)((char *)b
- (char *)bufp
- 1));
1832 * Read and modify the summary information for a given extent size,
1833 * bitmap block combination.
1834 * Keeps track of a current summary block, so we don't keep reading
1835 * it from the buffer cache.
1837 STATIC
int /* error */
1838 xfs_rtmodify_summary(
1839 xfs_mount_t
*mp
, /* file system mount point */
1840 xfs_trans_t
*tp
, /* transaction pointer */
1841 int log
, /* log2 of extent size */
1842 xfs_rtblock_t bbno
, /* bitmap block number */
1843 int delta
, /* change to make to summary info */
1844 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
1845 xfs_fsblock_t
*rsb
) /* in/out: summary block number */
1847 xfs_buf_t
*bp
; /* buffer for the summary block */
1848 int error
; /* error value */
1849 xfs_fsblock_t sb
; /* summary fsblock */
1850 int so
; /* index into the summary file */
1851 xfs_suminfo_t
*sp
; /* pointer to returned data */
1854 * Compute entry number in the summary file.
1856 so
= XFS_SUMOFFS(mp
, log
, bbno
);
1858 * Compute the block number in the summary file.
1860 sb
= XFS_SUMOFFSTOBLOCK(mp
, so
);
1862 * If we have an old buffer, and the block number matches, use that.
1864 if (rbpp
&& *rbpp
&& *rsb
== sb
)
1867 * Otherwise we have to get the buffer.
1871 * If there was an old one, get rid of it first.
1874 xfs_trans_brelse(tp
, *rbpp
);
1875 error
= xfs_rtbuf_get(mp
, tp
, sb
, 1, &bp
);
1880 * Remember this buffer and block for the next call.
1888 * Point to the summary information, modify and log it.
1890 sp
= XFS_SUMPTR(mp
, bp
, so
);
1892 xfs_trans_log_buf(tp
, bp
, (uint
)((char *)sp
- (char *)XFS_BUF_PTR(bp
)),
1893 (uint
)((char *)sp
- (char *)XFS_BUF_PTR(bp
) + sizeof(*sp
) - 1));
1898 * Visible (exported) functions.
1902 * Grow the realtime area of the filesystem.
1906 xfs_mount_t
*mp
, /* mount point for filesystem */
1907 xfs_growfs_rt_t
*in
) /* growfs rt input struct */
1909 xfs_rtblock_t bmbno
; /* bitmap block number */
1910 xfs_buf_t
*bp
; /* temporary buffer */
1911 int cancelflags
; /* flags for xfs_trans_cancel */
1912 int error
; /* error return value */
1913 xfs_inode_t
*ip
; /* bitmap inode, used as lock */
1914 xfs_mount_t
*nmp
; /* new (fake) mount structure */
1915 xfs_drfsbno_t nrblocks
; /* new number of realtime blocks */
1916 xfs_extlen_t nrbmblocks
; /* new number of rt bitmap blocks */
1917 xfs_drtbno_t nrextents
; /* new number of realtime extents */
1918 uint8_t nrextslog
; /* new log2 of sb_rextents */
1919 xfs_extlen_t nrsumblocks
; /* new number of summary blocks */
1920 uint nrsumlevels
; /* new rt summary levels */
1921 uint nrsumsize
; /* new size of rt summary, bytes */
1922 xfs_sb_t
*nsbp
; /* new superblock */
1923 xfs_extlen_t rbmblocks
; /* current number of rt bitmap blocks */
1924 xfs_extlen_t rsumblocks
; /* current number of rt summary blks */
1925 xfs_sb_t
*sbp
; /* old superblock */
1926 xfs_fsblock_t sumbno
; /* summary block number */
1927 xfs_trans_t
*tp
; /* transaction pointer */
1931 * Initial error checking.
1933 if (mp
->m_rtdev_targp
|| mp
->m_rbmip
== NULL
||
1934 (nrblocks
= in
->newblocks
) <= sbp
->sb_rblocks
||
1935 (sbp
->sb_rblocks
&& (in
->extsize
!= sbp
->sb_rextsize
)))
1936 return XFS_ERROR(EINVAL
);
1938 * Read in the last block of the device, make sure it exists.
1940 error
= xfs_read_buf(mp
, mp
->m_rtdev_targp
,
1941 XFS_FSB_TO_BB(mp
, in
->newblocks
- 1),
1942 XFS_FSB_TO_BB(mp
, 1), 0, &bp
);
1948 * Calculate new parameters. These are the final values to be reached.
1950 nrextents
= nrblocks
;
1951 do_div(nrextents
, in
->extsize
);
1952 nrbmblocks
= roundup_64(nrextents
, NBBY
* sbp
->sb_blocksize
);
1953 nrextslog
= xfs_highbit32(nrextents
);
1954 nrsumlevels
= nrextslog
+ 1;
1955 nrsumsize
= (uint
)sizeof(xfs_suminfo_t
) * nrsumlevels
* nrbmblocks
;
1956 nrsumblocks
= XFS_B_TO_FSB(mp
, nrsumsize
);
1957 nrsumsize
= XFS_FSB_TO_B(mp
, nrsumblocks
);
1959 * New summary size can't be more than half the size of
1960 * the log. This prevents us from getting a log overflow,
1961 * since we'll log basically the whole summary file at once.
1963 if (nrsumblocks
> (mp
->m_sb
.sb_logblocks
>> 1))
1964 return XFS_ERROR(EINVAL
);
1966 * Get the old block counts for bitmap and summary inodes.
1967 * These can't change since other growfs callers are locked out.
1969 rbmblocks
= XFS_B_TO_FSB(mp
, mp
->m_rbmip
->i_d
.di_size
);
1970 rsumblocks
= XFS_B_TO_FSB(mp
, mp
->m_rsumip
->i_d
.di_size
);
1972 * Allocate space to the bitmap and summary files, as necessary.
1974 if ((error
= xfs_growfs_rt_alloc(mp
, rbmblocks
, nrbmblocks
,
1975 mp
->m_sb
.sb_rbmino
)))
1977 if ((error
= xfs_growfs_rt_alloc(mp
, rsumblocks
, nrsumblocks
,
1978 mp
->m_sb
.sb_rsumino
)))
1982 * Loop over the bitmap blocks.
1983 * We will do everything one bitmap block at a time.
1984 * Skip the current block if it is exactly full.
1985 * This also deals with the case where there were no rtextents before.
1987 for (bmbno
= sbp
->sb_rbmblocks
-
1988 ((sbp
->sb_rextents
& ((1 << mp
->m_blkbit_log
) - 1)) != 0);
1992 * Allocate a new (fake) mount/sb.
1994 nmp
= kmem_alloc(sizeof(*nmp
), KM_SLEEP
);
1998 * Calculate new sb and mount fields for this round.
2000 nsbp
->sb_rextsize
= in
->extsize
;
2001 nsbp
->sb_rbmblocks
= bmbno
+ 1;
2004 nsbp
->sb_rbmblocks
* NBBY
*
2005 nsbp
->sb_blocksize
* nsbp
->sb_rextsize
);
2006 nsbp
->sb_rextents
= nsbp
->sb_rblocks
;
2007 do_div(nsbp
->sb_rextents
, nsbp
->sb_rextsize
);
2008 nsbp
->sb_rextslog
= xfs_highbit32(nsbp
->sb_rextents
);
2009 nrsumlevels
= nmp
->m_rsumlevels
= nsbp
->sb_rextslog
+ 1;
2011 (uint
)sizeof(xfs_suminfo_t
) * nrsumlevels
*
2013 nrsumblocks
= XFS_B_TO_FSB(mp
, nrsumsize
);
2014 nmp
->m_rsumsize
= nrsumsize
= XFS_FSB_TO_B(mp
, nrsumblocks
);
2016 * Start a transaction, get the log reservation.
2018 tp
= xfs_trans_alloc(mp
, XFS_TRANS_GROWFSRT_FREE
);
2020 if ((error
= xfs_trans_reserve(tp
, 0,
2021 XFS_GROWRTFREE_LOG_RES(nmp
), 0, 0, 0)))
2024 * Lock out other callers by grabbing the bitmap inode lock.
2026 if ((error
= xfs_trans_iget(mp
, tp
, 0, mp
->m_sb
.sb_rbmino
,
2027 XFS_ILOCK_EXCL
, &ip
)))
2029 ASSERT(ip
== mp
->m_rbmip
);
2031 * Update the bitmap inode's size.
2033 mp
->m_rbmip
->i_d
.di_size
=
2034 nsbp
->sb_rbmblocks
* nsbp
->sb_blocksize
;
2035 xfs_trans_log_inode(tp
, mp
->m_rbmip
, XFS_ILOG_CORE
);
2036 cancelflags
|= XFS_TRANS_ABORT
;
2038 * Get the summary inode into the transaction.
2040 if ((error
= xfs_trans_iget(mp
, tp
, mp
->m_sb
.sb_rsumino
,
2041 0, XFS_ILOCK_EXCL
, &ip
)))
2043 ASSERT(ip
== mp
->m_rsumip
);
2045 * Update the summary inode's size.
2047 mp
->m_rsumip
->i_d
.di_size
= nmp
->m_rsumsize
;
2048 xfs_trans_log_inode(tp
, mp
->m_rsumip
, XFS_ILOG_CORE
);
2050 * Copy summary data from old to new sizes.
2051 * Do this when the real size (not block-aligned) changes.
2053 if (sbp
->sb_rbmblocks
!= nsbp
->sb_rbmblocks
||
2054 mp
->m_rsumlevels
!= nmp
->m_rsumlevels
) {
2055 error
= xfs_rtcopy_summary(mp
, nmp
, tp
);
2060 * Update superblock fields.
2062 if (nsbp
->sb_rextsize
!= sbp
->sb_rextsize
)
2063 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_REXTSIZE
,
2064 nsbp
->sb_rextsize
- sbp
->sb_rextsize
);
2065 if (nsbp
->sb_rbmblocks
!= sbp
->sb_rbmblocks
)
2066 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_RBMBLOCKS
,
2067 nsbp
->sb_rbmblocks
- sbp
->sb_rbmblocks
);
2068 if (nsbp
->sb_rblocks
!= sbp
->sb_rblocks
)
2069 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_RBLOCKS
,
2070 nsbp
->sb_rblocks
- sbp
->sb_rblocks
);
2071 if (nsbp
->sb_rextents
!= sbp
->sb_rextents
)
2072 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_REXTENTS
,
2073 nsbp
->sb_rextents
- sbp
->sb_rextents
);
2074 if (nsbp
->sb_rextslog
!= sbp
->sb_rextslog
)
2075 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_REXTSLOG
,
2076 nsbp
->sb_rextslog
- sbp
->sb_rextslog
);
2081 error
= xfs_rtfree_range(nmp
, tp
, sbp
->sb_rextents
,
2082 nsbp
->sb_rextents
- sbp
->sb_rextents
, &bp
, &sumbno
);
2086 * Mark more blocks free in the superblock.
2088 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_FREXTENTS
,
2089 nsbp
->sb_rextents
- sbp
->sb_rextents
);
2091 * Free the fake mp structure.
2093 kmem_free(nmp
, sizeof(*nmp
));
2096 * Update mp values into the real mp structure.
2098 mp
->m_rsumlevels
= nrsumlevels
;
2099 mp
->m_rsumsize
= nrsumsize
;
2101 * Commit the transaction.
2103 xfs_trans_commit(tp
, 0, NULL
);
2108 * Error paths come here.
2112 kmem_free(nmp
, sizeof(*nmp
));
2113 xfs_trans_cancel(tp
, cancelflags
);
2118 * Allocate an extent in the realtime subvolume, with the usual allocation
2119 * parameters. The length units are all in realtime extents, as is the
2120 * result block number.
2123 xfs_rtallocate_extent(
2124 xfs_trans_t
*tp
, /* transaction pointer */
2125 xfs_rtblock_t bno
, /* starting block number to allocate */
2126 xfs_extlen_t minlen
, /* minimum length to allocate */
2127 xfs_extlen_t maxlen
, /* maximum length to allocate */
2128 xfs_extlen_t
*len
, /* out: actual length allocated */
2129 xfs_alloctype_t type
, /* allocation type XFS_ALLOCTYPE... */
2130 int wasdel
, /* was a delayed allocation extent */
2131 xfs_extlen_t prod
, /* extent product factor */
2132 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
2134 int error
; /* error value */
2135 xfs_inode_t
*ip
; /* inode for bitmap file */
2136 xfs_mount_t
*mp
; /* file system mount structure */
2137 xfs_rtblock_t r
; /* result allocated block */
2138 xfs_fsblock_t sb
; /* summary file block number */
2139 xfs_buf_t
*sumbp
; /* summary file block buffer */
2141 ASSERT(minlen
> 0 && minlen
<= maxlen
);
2144 * If prod is set then figure out what to do to minlen and maxlen.
2149 if ((i
= maxlen
% prod
))
2151 if ((i
= minlen
% prod
))
2153 if (maxlen
< minlen
) {
2154 *rtblock
= NULLRTBLOCK
;
2159 * Lock out other callers by grabbing the bitmap inode lock.
2161 error
= xfs_trans_iget(mp
, tp
, mp
->m_sb
.sb_rbmino
, 0, XFS_ILOCK_EXCL
, &ip
);
2167 * Allocate by size, or near another block, or exactly at some block.
2170 case XFS_ALLOCTYPE_ANY_AG
:
2171 error
= xfs_rtallocate_extent_size(mp
, tp
, minlen
, maxlen
, len
,
2172 &sumbp
, &sb
, prod
, &r
);
2174 case XFS_ALLOCTYPE_NEAR_BNO
:
2175 error
= xfs_rtallocate_extent_near(mp
, tp
, bno
, minlen
, maxlen
,
2176 len
, &sumbp
, &sb
, prod
, &r
);
2178 case XFS_ALLOCTYPE_THIS_BNO
:
2179 error
= xfs_rtallocate_extent_exact(mp
, tp
, bno
, minlen
, maxlen
,
2180 len
, &sumbp
, &sb
, prod
, &r
);
2189 * If it worked, update the superblock.
2191 if (r
!= NULLRTBLOCK
) {
2192 long slen
= (long)*len
;
2194 ASSERT(*len
>= minlen
&& *len
<= maxlen
);
2196 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_RES_FREXTENTS
, -slen
);
2198 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_FREXTENTS
, -slen
);
2205 * Free an extent in the realtime subvolume. Length is expressed in
2206 * realtime extents, as is the block number.
2210 xfs_trans_t
*tp
, /* transaction pointer */
2211 xfs_rtblock_t bno
, /* starting block number to free */
2212 xfs_extlen_t len
) /* length of extent freed */
2214 int error
; /* error value */
2215 xfs_inode_t
*ip
; /* bitmap file inode */
2216 xfs_mount_t
*mp
; /* file system mount structure */
2217 xfs_fsblock_t sb
; /* summary file block number */
2218 xfs_buf_t
*sumbp
; /* summary file block buffer */
2222 * Synchronize by locking the bitmap inode.
2224 error
= xfs_trans_iget(mp
, tp
, mp
->m_sb
.sb_rbmino
, 0, XFS_ILOCK_EXCL
, &ip
);
2228 #if defined(__KERNEL__) && defined(DEBUG)
2230 * Check to see that this whole range is currently allocated.
2233 int stat
; /* result from checking range */
2235 error
= xfs_rtcheck_alloc_range(mp
, tp
, bno
, len
, &stat
);
2244 * Free the range of realtime blocks.
2246 error
= xfs_rtfree_range(mp
, tp
, bno
, len
, &sumbp
, &sb
);
2251 * Mark more blocks free in the superblock.
2253 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_FREXTENTS
, (long)len
);
2255 * If we've now freed all the blocks, reset the file sequence
2258 if (tp
->t_frextents_delta
+ mp
->m_sb
.sb_frextents
==
2259 mp
->m_sb
.sb_rextents
) {
2260 if (!(ip
->i_d
.di_flags
& XFS_DIFLAG_NEWRTBM
))
2261 ip
->i_d
.di_flags
|= XFS_DIFLAG_NEWRTBM
;
2262 *(__uint64_t
*)&ip
->i_d
.di_atime
= 0;
2263 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
2269 * Initialize realtime fields in the mount structure.
2273 xfs_mount_t
*mp
) /* file system mount structure */
2275 xfs_buf_t
*bp
; /* buffer for last block of subvolume */
2276 xfs_daddr_t d
; /* address of last block of subvolume */
2277 int error
; /* error return value */
2278 xfs_sb_t
*sbp
; /* filesystem superblock copy in mount */
2281 if (sbp
->sb_rblocks
== 0)
2283 if (mp
->m_rtdev_targp
== NULL
) {
2285 "XFS: This filesystem has a realtime volume, use rtdev=device option");
2286 return XFS_ERROR(ENODEV
);
2288 mp
->m_rsumlevels
= sbp
->sb_rextslog
+ 1;
2290 (uint
)sizeof(xfs_suminfo_t
) * mp
->m_rsumlevels
*
2292 mp
->m_rsumsize
= roundup(mp
->m_rsumsize
, sbp
->sb_blocksize
);
2293 mp
->m_rbmip
= mp
->m_rsumip
= NULL
;
2295 * Check that the realtime section is an ok size.
2297 d
= (xfs_daddr_t
)XFS_FSB_TO_BB(mp
, mp
->m_sb
.sb_rblocks
);
2298 if (XFS_BB_TO_FSB(mp
, d
) != mp
->m_sb
.sb_rblocks
) {
2299 cmn_err(CE_WARN
, "XFS: realtime mount -- %llu != %llu",
2300 (unsigned long long) XFS_BB_TO_FSB(mp
, d
),
2301 (unsigned long long) mp
->m_sb
.sb_rblocks
);
2302 return XFS_ERROR(E2BIG
);
2304 error
= xfs_read_buf(mp
, mp
->m_rtdev_targp
,
2305 d
- XFS_FSB_TO_BB(mp
, 1),
2306 XFS_FSB_TO_BB(mp
, 1), 0, &bp
);
2309 "XFS: realtime mount -- xfs_read_buf failed, returned %d", error
);
2310 if (error
== ENOSPC
)
2311 return XFS_ERROR(E2BIG
);
2319 * Get the bitmap and summary inodes into the mount structure
2324 xfs_mount_t
*mp
) /* file system mount structure */
2326 int error
; /* error return value */
2330 if (sbp
->sb_rbmino
== NULLFSINO
)
2332 error
= xfs_iget(mp
, NULL
, sbp
->sb_rbmino
, 0, 0, &mp
->m_rbmip
, 0);
2335 ASSERT(mp
->m_rbmip
!= NULL
);
2336 ASSERT(sbp
->sb_rsumino
!= NULLFSINO
);
2337 error
= xfs_iget(mp
, NULL
, sbp
->sb_rsumino
, 0, 0, &mp
->m_rsumip
, 0);
2339 VN_RELE(XFS_ITOV(mp
->m_rbmip
));
2342 ASSERT(mp
->m_rsumip
!= NULL
);
2347 * Pick an extent for allocation at the start of a new realtime file.
2348 * Use the sequence number stored in the atime field of the bitmap inode.
2349 * Translate this to a fraction of the rtextents, and return the product
2350 * of rtextents and the fraction.
2351 * The fraction sequence is 0, 1/2, 1/4, 3/4, 1/8, ..., 7/8, 1/16, ...
2355 xfs_mount_t
*mp
, /* file system mount point */
2356 xfs_trans_t
*tp
, /* transaction pointer */
2357 xfs_extlen_t len
, /* allocation length (rtextents) */
2358 xfs_rtblock_t
*pick
) /* result rt extent */
2360 xfs_rtblock_t b
; /* result block */
2361 int error
; /* error return value */
2362 xfs_inode_t
*ip
; /* bitmap incore inode */
2363 int log2
; /* log of sequence number */
2364 __uint64_t resid
; /* residual after log removed */
2365 __uint64_t seq
; /* sequence number of file creation */
2366 __uint64_t
*seqp
; /* pointer to seqno in inode */
2368 error
= xfs_trans_iget(mp
, tp
, mp
->m_sb
.sb_rbmino
, 0, XFS_ILOCK_EXCL
, &ip
);
2371 ASSERT(ip
== mp
->m_rbmip
);
2372 seqp
= (__uint64_t
*)&ip
->i_d
.di_atime
;
2373 if (!(ip
->i_d
.di_flags
& XFS_DIFLAG_NEWRTBM
)) {
2374 ip
->i_d
.di_flags
|= XFS_DIFLAG_NEWRTBM
;
2378 if ((log2
= xfs_highbit64(seq
)) == -1)
2381 resid
= seq
- (1ULL << log2
);
2382 b
= (mp
->m_sb
.sb_rextents
* ((resid
<< 1) + 1ULL)) >>
2384 if (b
>= mp
->m_sb
.sb_rextents
)
2385 b
= do_mod(b
, mp
->m_sb
.sb_rextents
);
2386 if (b
+ len
> mp
->m_sb
.sb_rextents
)
2387 b
= mp
->m_sb
.sb_rextents
- len
;
2390 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
2397 * Debug code: print out the value of a range in the bitmap.
2401 xfs_mount_t
*mp
, /* file system mount structure */
2402 xfs_trans_t
*tp
, /* transaction pointer */
2403 xfs_rtblock_t start
, /* starting block to print */
2404 xfs_extlen_t len
) /* length to print */
2406 xfs_extlen_t i
; /* block number in the extent */
2408 printk("%Ld: ", (long long)start
);
2409 for (i
= 0; i
< len
; i
++)
2410 printk("%d", xfs_rtcheck_bit(mp
, tp
, start
+ i
, 1));
2415 * Debug code: print the summary file.
2418 xfs_rtprint_summary(
2419 xfs_mount_t
*mp
, /* file system mount structure */
2420 xfs_trans_t
*tp
) /* transaction pointer */
2422 xfs_suminfo_t c
; /* summary data */
2423 xfs_rtblock_t i
; /* bitmap block number */
2424 int l
; /* summary information level */
2425 int p
; /* flag for printed anything */
2426 xfs_fsblock_t sb
; /* summary block number */
2427 xfs_buf_t
*sumbp
; /* summary block buffer */
2430 for (l
= 0; l
< mp
->m_rsumlevels
; l
++) {
2431 for (p
= 0, i
= 0; i
< mp
->m_sb
.sb_rbmblocks
; i
++) {
2432 (void)xfs_rtget_summary(mp
, tp
, l
, i
, &sumbp
, &sb
, &c
);
2435 printk("%Ld-%Ld:", 1LL << l
,
2436 XFS_RTMIN((1LL << l
) +
2438 mp
->m_sb
.sb_rextents
));
2441 printk(" %Ld:%d", (long long)i
, c
);
2448 xfs_trans_brelse(tp
, sumbp
);