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"
28 #include "xfs_mount.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_dinode.h"
31 #include "xfs_inode.h"
32 #include "xfs_alloc.h"
34 #include "xfs_rtalloc.h"
35 #include "xfs_fsops.h"
36 #include "xfs_error.h"
38 #include "xfs_inode_item.h"
39 #include "xfs_trans_space.h"
40 #include "xfs_utils.h"
41 #include "xfs_trace.h"
45 * Prototypes for internal functions.
49 STATIC
int xfs_rtallocate_range(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
50 xfs_extlen_t
, xfs_buf_t
**, xfs_fsblock_t
*);
51 STATIC
int xfs_rtany_summary(xfs_mount_t
*, xfs_trans_t
*, int, int,
52 xfs_rtblock_t
, xfs_buf_t
**, xfs_fsblock_t
*, int *);
53 STATIC
int xfs_rtcheck_range(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
54 xfs_extlen_t
, int, xfs_rtblock_t
*, int *);
55 STATIC
int xfs_rtfind_back(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
56 xfs_rtblock_t
, xfs_rtblock_t
*);
57 STATIC
int xfs_rtfind_forw(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
58 xfs_rtblock_t
, xfs_rtblock_t
*);
59 STATIC
int xfs_rtget_summary( xfs_mount_t
*, xfs_trans_t
*, int,
60 xfs_rtblock_t
, xfs_buf_t
**, xfs_fsblock_t
*, xfs_suminfo_t
*);
61 STATIC
int xfs_rtmodify_range(xfs_mount_t
*, xfs_trans_t
*, xfs_rtblock_t
,
63 STATIC
int xfs_rtmodify_summary(xfs_mount_t
*, xfs_trans_t
*, int,
64 xfs_rtblock_t
, int, xfs_buf_t
**, xfs_fsblock_t
*);
71 * Allocate space to the bitmap or summary file, and zero it, for growfs.
73 STATIC
int /* error */
75 xfs_mount_t
*mp
, /* file system mount point */
76 xfs_extlen_t oblocks
, /* old count of blocks */
77 xfs_extlen_t nblocks
, /* new count of blocks */
78 xfs_ino_t ino
) /* inode number (bitmap/summary) */
80 xfs_fileoff_t bno
; /* block number in file */
81 xfs_buf_t
*bp
; /* temporary buffer for zeroing */
82 int committed
; /* transaction committed flag */
83 xfs_daddr_t d
; /* disk block address */
84 int error
; /* error return value */
85 xfs_fsblock_t firstblock
; /* first block allocated in xaction */
86 xfs_bmap_free_t flist
; /* list of freed blocks */
87 xfs_fsblock_t fsbno
; /* filesystem block for bno */
88 xfs_inode_t
*ip
; /* pointer to incore inode */
89 xfs_bmbt_irec_t map
; /* block map output */
90 int nmap
; /* number of block maps */
91 int resblks
; /* space reservation */
94 * Allocate space to the file, as necessary.
96 while (oblocks
< nblocks
) {
100 tp
= xfs_trans_alloc(mp
, XFS_TRANS_GROWFSRT_ALLOC
);
101 resblks
= XFS_GROWFSRT_SPACE_RES(mp
, nblocks
- oblocks
);
103 * Reserve space & log for one extent added to the file.
105 if ((error
= xfs_trans_reserve(tp
, resblks
,
106 XFS_GROWRTALLOC_LOG_RES(mp
), 0,
107 XFS_TRANS_PERM_LOG_RES
,
108 XFS_DEFAULT_PERM_LOG_COUNT
)))
110 cancelflags
= XFS_TRANS_RELEASE_LOG_RES
;
114 if ((error
= xfs_trans_iget(mp
, tp
, ino
, 0,
115 XFS_ILOCK_EXCL
, &ip
)))
117 xfs_bmap_init(&flist
, &firstblock
);
119 * Allocate blocks to the bitmap file.
122 cancelflags
|= XFS_TRANS_ABORT
;
123 error
= xfs_bmapi(tp
, ip
, oblocks
, nblocks
- oblocks
,
124 XFS_BMAPI_WRITE
| XFS_BMAPI_METADATA
, &firstblock
,
125 resblks
, &map
, &nmap
, &flist
);
126 if (!error
&& nmap
< 1)
127 error
= XFS_ERROR(ENOSPC
);
131 * Free any blocks freed up in the transaction, then commit.
133 error
= xfs_bmap_finish(&tp
, &flist
, &committed
);
136 error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
);
140 * Now we need to clear the allocated blocks.
141 * Do this one block per transaction, to keep it simple.
144 for (bno
= map
.br_startoff
, fsbno
= map
.br_startblock
;
145 bno
< map
.br_startoff
+ map
.br_blockcount
;
147 tp
= xfs_trans_alloc(mp
, XFS_TRANS_GROWFSRT_ZERO
);
149 * Reserve log for one block zeroing.
151 if ((error
= xfs_trans_reserve(tp
, 0,
152 XFS_GROWRTZERO_LOG_RES(mp
), 0, 0, 0)))
155 * Lock the bitmap inode.
157 if ((error
= xfs_trans_iget(mp
, tp
, ino
, 0,
158 XFS_ILOCK_EXCL
, &ip
)))
161 * Get a buffer for the block.
163 d
= XFS_FSB_TO_DADDR(mp
, fsbno
);
164 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
, d
,
167 error
= XFS_ERROR(EIO
);
169 xfs_trans_cancel(tp
, cancelflags
);
172 memset(XFS_BUF_PTR(bp
), 0, mp
->m_sb
.sb_blocksize
);
173 xfs_trans_log_buf(tp
, bp
, 0, mp
->m_sb
.sb_blocksize
- 1);
175 * Commit the transaction.
177 error
= xfs_trans_commit(tp
, 0);
182 * Go on to the next extent, if any.
184 oblocks
= map
.br_startoff
+ map
.br_blockcount
;
192 * Attempt to allocate an extent minlen<=len<=maxlen starting from
193 * bitmap block bbno. If we don't get maxlen then use prod to trim
194 * the length, if given. Returns error; returns starting block in *rtblock.
195 * The lengths are all in rtextents.
197 STATIC
int /* error */
198 xfs_rtallocate_extent_block(
199 xfs_mount_t
*mp
, /* file system mount point */
200 xfs_trans_t
*tp
, /* transaction pointer */
201 xfs_rtblock_t bbno
, /* bitmap block number */
202 xfs_extlen_t minlen
, /* minimum length to allocate */
203 xfs_extlen_t maxlen
, /* maximum length to allocate */
204 xfs_extlen_t
*len
, /* out: actual length allocated */
205 xfs_rtblock_t
*nextp
, /* out: next block to try */
206 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
207 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
208 xfs_extlen_t prod
, /* extent product factor */
209 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
211 xfs_rtblock_t besti
; /* best rtblock found so far */
212 xfs_rtblock_t bestlen
; /* best length found so far */
213 xfs_rtblock_t end
; /* last rtblock in chunk */
214 int error
; /* error value */
215 xfs_rtblock_t i
; /* current rtblock trying */
216 xfs_rtblock_t next
; /* next rtblock to try */
217 int stat
; /* status from internal calls */
220 * Loop over all the extents starting in this bitmap block,
221 * looking for one that's long enough.
223 for (i
= XFS_BLOCKTOBIT(mp
, bbno
), besti
= -1, bestlen
= 0,
224 end
= XFS_BLOCKTOBIT(mp
, bbno
+ 1) - 1;
228 * See if there's a free extent of maxlen starting at i.
229 * If it's not so then next will contain the first non-free.
231 error
= xfs_rtcheck_range(mp
, tp
, i
, maxlen
, 1, &next
, &stat
);
237 * i for maxlen is all free, allocate and return that.
239 error
= xfs_rtallocate_range(mp
, tp
, i
, maxlen
, rbpp
,
249 * In the case where we have a variable-sized allocation
250 * request, figure out how big this free piece is,
251 * and if it's big enough for the minimum, and the best
252 * so far, remember it.
254 if (minlen
< maxlen
) {
255 xfs_rtblock_t thislen
; /* this extent size */
258 if (thislen
>= minlen
&& thislen
> bestlen
) {
264 * If not done yet, find the start of the next free space.
267 error
= xfs_rtfind_forw(mp
, tp
, next
, end
, &i
);
275 * Searched the whole thing & didn't find a maxlen free extent.
277 if (minlen
< maxlen
&& besti
!= -1) {
278 xfs_extlen_t p
; /* amount to trim length by */
281 * If size should be a multiple of prod, make that so.
283 if (prod
> 1 && (p
= do_mod(bestlen
, prod
)))
286 * Allocate besti for bestlen & return that.
288 error
= xfs_rtallocate_range(mp
, tp
, besti
, bestlen
, rbpp
, rsb
);
297 * Allocation failed. Set *nextp to the next block to try.
300 *rtblock
= NULLRTBLOCK
;
305 * Allocate an extent of length minlen<=len<=maxlen, starting at block
306 * bno. If we don't get maxlen then use prod to trim the length, if given.
307 * Returns error; returns starting block in *rtblock.
308 * The lengths are all in rtextents.
310 STATIC
int /* error */
311 xfs_rtallocate_extent_exact(
312 xfs_mount_t
*mp
, /* file system mount point */
313 xfs_trans_t
*tp
, /* transaction pointer */
314 xfs_rtblock_t bno
, /* starting block number to allocate */
315 xfs_extlen_t minlen
, /* minimum length to allocate */
316 xfs_extlen_t maxlen
, /* maximum length to allocate */
317 xfs_extlen_t
*len
, /* out: actual length allocated */
318 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
319 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
320 xfs_extlen_t prod
, /* extent product factor */
321 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
323 int error
; /* error value */
324 xfs_extlen_t i
; /* extent length trimmed due to prod */
325 int isfree
; /* extent is free */
326 xfs_rtblock_t next
; /* next block to try (dummy) */
328 ASSERT(minlen
% prod
== 0 && maxlen
% prod
== 0);
330 * Check if the range in question (for maxlen) is free.
332 error
= xfs_rtcheck_range(mp
, tp
, bno
, maxlen
, 1, &next
, &isfree
);
338 * If it is, allocate it and return success.
340 error
= xfs_rtallocate_range(mp
, tp
, bno
, maxlen
, rbpp
, rsb
);
349 * If not, allocate what there is, if it's at least minlen.
352 if (maxlen
< minlen
) {
354 * Failed, return failure status.
356 *rtblock
= NULLRTBLOCK
;
360 * Trim off tail of extent, if prod is specified.
362 if (prod
> 1 && (i
= maxlen
% prod
)) {
364 if (maxlen
< minlen
) {
366 * Now we can't do it, return failure status.
368 *rtblock
= NULLRTBLOCK
;
373 * Allocate what we can and return it.
375 error
= xfs_rtallocate_range(mp
, tp
, bno
, maxlen
, rbpp
, rsb
);
385 * Allocate an extent of length minlen<=len<=maxlen, starting as near
386 * to bno as possible. If we don't get maxlen then use prod to trim
387 * the length, if given. The lengths are all in rtextents.
389 STATIC
int /* error */
390 xfs_rtallocate_extent_near(
391 xfs_mount_t
*mp
, /* file system mount point */
392 xfs_trans_t
*tp
, /* transaction pointer */
393 xfs_rtblock_t bno
, /* starting block number to allocate */
394 xfs_extlen_t minlen
, /* minimum length to allocate */
395 xfs_extlen_t maxlen
, /* maximum length to allocate */
396 xfs_extlen_t
*len
, /* out: actual length allocated */
397 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
398 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
399 xfs_extlen_t prod
, /* extent product factor */
400 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
402 int any
; /* any useful extents from summary */
403 xfs_rtblock_t bbno
; /* bitmap block number */
404 int error
; /* error value */
405 int i
; /* bitmap block offset (loop control) */
406 int j
; /* secondary loop control */
407 int log2len
; /* log2 of minlen */
408 xfs_rtblock_t n
; /* next block to try */
409 xfs_rtblock_t r
; /* result block */
411 ASSERT(minlen
% prod
== 0 && maxlen
% prod
== 0);
413 * If the block number given is off the end, silently set it to
416 if (bno
>= mp
->m_sb
.sb_rextents
)
417 bno
= mp
->m_sb
.sb_rextents
- 1;
419 * Try the exact allocation first.
421 error
= xfs_rtallocate_extent_exact(mp
, tp
, bno
, minlen
, maxlen
, len
,
422 rbpp
, rsb
, prod
, &r
);
427 * If the exact allocation worked, return that.
429 if (r
!= NULLRTBLOCK
) {
433 bbno
= XFS_BITTOBLOCK(mp
, bno
);
436 log2len
= xfs_highbit32(minlen
);
438 * Loop over all bitmap blocks (bbno + i is current block).
442 * Get summary information of extents of all useful levels
443 * starting in this bitmap block.
445 error
= xfs_rtany_summary(mp
, tp
, log2len
, mp
->m_rsumlevels
- 1,
446 bbno
+ i
, rbpp
, rsb
, &any
);
451 * If there are any useful extents starting here, try
456 * On the positive side of the starting location.
460 * Try to allocate an extent starting in
463 error
= xfs_rtallocate_extent_block(mp
, tp
,
464 bbno
+ i
, minlen
, maxlen
, len
, &n
, rbpp
,
470 * If it worked, return it.
472 if (r
!= NULLRTBLOCK
) {
478 * On the negative side of the starting location.
482 * Loop backwards through the bitmap blocks from
483 * the starting point-1 up to where we are now.
484 * There should be an extent which ends in this
485 * bitmap block and is long enough.
487 for (j
= -1; j
> i
; j
--) {
489 * Grab the summary information for
492 error
= xfs_rtany_summary(mp
, tp
,
493 log2len
, mp
->m_rsumlevels
- 1,
494 bbno
+ j
, rbpp
, rsb
, &any
);
499 * If there's no extent given in the
500 * summary that means the extent we
501 * found must carry over from an
502 * earlier block. If there is an
503 * extent given, we've already tried
504 * that allocation, don't do it again.
508 error
= xfs_rtallocate_extent_block(mp
,
509 tp
, bbno
+ j
, minlen
, maxlen
,
510 len
, &n
, rbpp
, rsb
, prod
, &r
);
515 * If it works, return the extent.
517 if (r
!= NULLRTBLOCK
) {
523 * There weren't intervening bitmap blocks
524 * with a long enough extent, or the
525 * allocation didn't work for some reason
526 * (i.e. it's a little * too short).
527 * Try to allocate from the summary block
530 error
= xfs_rtallocate_extent_block(mp
, tp
,
531 bbno
+ i
, minlen
, maxlen
, len
, &n
, rbpp
,
537 * If it works, return the extent.
539 if (r
!= NULLRTBLOCK
) {
546 * Loop control. If we were on the positive side, and there's
547 * still more blocks on the negative side, go there.
549 if (i
> 0 && (int)bbno
- i
>= 0)
552 * If positive, and no more negative, but there are more
553 * positive, go there.
555 else if (i
> 0 && (int)bbno
+ i
< mp
->m_sb
.sb_rbmblocks
- 1)
558 * If negative or 0 (just started), and there are positive
559 * blocks to go, go there. The 0 case moves to block 1.
561 else if (i
<= 0 && (int)bbno
- i
< mp
->m_sb
.sb_rbmblocks
- 1)
564 * If negative or 0 and there are more negative blocks,
567 else if (i
<= 0 && (int)bbno
+ i
> 0)
570 * Must be done. Return failure.
575 *rtblock
= NULLRTBLOCK
;
580 * Allocate an extent of length minlen<=len<=maxlen, with no position
581 * specified. If we don't get maxlen then use prod to trim
582 * the length, if given. The lengths are all in rtextents.
584 STATIC
int /* error */
585 xfs_rtallocate_extent_size(
586 xfs_mount_t
*mp
, /* file system mount point */
587 xfs_trans_t
*tp
, /* transaction pointer */
588 xfs_extlen_t minlen
, /* minimum length to allocate */
589 xfs_extlen_t maxlen
, /* maximum length to allocate */
590 xfs_extlen_t
*len
, /* out: actual length allocated */
591 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
592 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
593 xfs_extlen_t prod
, /* extent product factor */
594 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
596 int error
; /* error value */
597 int i
; /* bitmap block number */
598 int l
; /* level number (loop control) */
599 xfs_rtblock_t n
; /* next block to be tried */
600 xfs_rtblock_t r
; /* result block number */
601 xfs_suminfo_t sum
; /* summary information for extents */
603 ASSERT(minlen
% prod
== 0 && maxlen
% prod
== 0);
607 * Loop over all the levels starting with maxlen.
608 * At each level, look at all the bitmap blocks, to see if there
609 * are extents starting there that are long enough (>= maxlen).
610 * Note, only on the initial level can the allocation fail if
611 * the summary says there's an extent.
613 for (l
= xfs_highbit32(maxlen
); l
< mp
->m_rsumlevels
; l
++) {
615 * Loop over all the bitmap blocks.
617 for (i
= 0; i
< mp
->m_sb
.sb_rbmblocks
; i
++) {
619 * Get the summary for this level/block.
621 error
= xfs_rtget_summary(mp
, tp
, l
, i
, rbpp
, rsb
,
627 * Nothing there, on to the next block.
632 * Try allocating the extent.
634 error
= xfs_rtallocate_extent_block(mp
, tp
, i
, maxlen
,
635 maxlen
, len
, &n
, rbpp
, rsb
, prod
, &r
);
640 * If it worked, return that.
642 if (r
!= NULLRTBLOCK
) {
647 * If the "next block to try" returned from the
648 * allocator is beyond the next bitmap block,
649 * skip to that bitmap block.
651 if (XFS_BITTOBLOCK(mp
, n
) > i
+ 1)
652 i
= XFS_BITTOBLOCK(mp
, n
) - 1;
656 * Didn't find any maxlen blocks. Try smaller ones, unless
657 * we're asking for a fixed size extent.
659 if (minlen
> --maxlen
) {
660 *rtblock
= NULLRTBLOCK
;
667 * Loop over sizes, from maxlen down to minlen.
668 * This time, when we do the allocations, allow smaller ones
671 for (l
= xfs_highbit32(maxlen
); l
>= xfs_highbit32(minlen
); l
--) {
673 * Loop over all the bitmap blocks, try an allocation
674 * starting in that block.
676 for (i
= 0; i
< mp
->m_sb
.sb_rbmblocks
; i
++) {
678 * Get the summary information for this level/block.
680 error
= xfs_rtget_summary(mp
, tp
, l
, i
, rbpp
, rsb
,
686 * If nothing there, go on to next.
691 * Try the allocation. Make sure the specified
692 * minlen/maxlen are in the possible range for
693 * this summary level.
695 error
= xfs_rtallocate_extent_block(mp
, tp
, i
,
696 XFS_RTMAX(minlen
, 1 << l
),
697 XFS_RTMIN(maxlen
, (1 << (l
+ 1)) - 1),
698 len
, &n
, rbpp
, rsb
, prod
, &r
);
703 * If it worked, return that extent.
705 if (r
!= NULLRTBLOCK
) {
710 * If the "next block to try" returned from the
711 * allocator is beyond the next bitmap block,
712 * skip to that bitmap block.
714 if (XFS_BITTOBLOCK(mp
, n
) > i
+ 1)
715 i
= XFS_BITTOBLOCK(mp
, n
) - 1;
719 * Got nothing, return failure.
721 *rtblock
= NULLRTBLOCK
;
726 * Mark an extent specified by start and len allocated.
727 * Updates all the summary information as well as the bitmap.
729 STATIC
int /* error */
730 xfs_rtallocate_range(
731 xfs_mount_t
*mp
, /* file system mount point */
732 xfs_trans_t
*tp
, /* transaction pointer */
733 xfs_rtblock_t start
, /* start block to allocate */
734 xfs_extlen_t len
, /* length to allocate */
735 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
736 xfs_fsblock_t
*rsb
) /* in/out: summary block number */
738 xfs_rtblock_t end
; /* end of the allocated extent */
739 int error
; /* error value */
740 xfs_rtblock_t postblock
; /* first block allocated > end */
741 xfs_rtblock_t preblock
; /* first block allocated < start */
743 end
= start
+ len
- 1;
745 * Assume we're allocating out of the middle of a free extent.
746 * We need to find the beginning and end of the extent so we can
747 * properly update the summary.
749 error
= xfs_rtfind_back(mp
, tp
, start
, 0, &preblock
);
754 * Find the next allocated block (end of free extent).
756 error
= xfs_rtfind_forw(mp
, tp
, end
, mp
->m_sb
.sb_rextents
- 1,
762 * Decrement the summary information corresponding to the entire
765 error
= xfs_rtmodify_summary(mp
, tp
,
766 XFS_RTBLOCKLOG(postblock
+ 1 - preblock
),
767 XFS_BITTOBLOCK(mp
, preblock
), -1, rbpp
, rsb
);
772 * If there are blocks not being allocated at the front of the
773 * old extent, add summary data for them to be free.
775 if (preblock
< start
) {
776 error
= xfs_rtmodify_summary(mp
, tp
,
777 XFS_RTBLOCKLOG(start
- preblock
),
778 XFS_BITTOBLOCK(mp
, preblock
), 1, rbpp
, rsb
);
784 * If there are blocks not being allocated at the end of the
785 * old extent, add summary data for them to be free.
787 if (postblock
> end
) {
788 error
= xfs_rtmodify_summary(mp
, tp
,
789 XFS_RTBLOCKLOG(postblock
- end
),
790 XFS_BITTOBLOCK(mp
, end
+ 1), 1, rbpp
, rsb
);
796 * Modify the bitmap to mark this extent allocated.
798 error
= xfs_rtmodify_range(mp
, tp
, start
, len
, 0);
803 * Return whether there are any free extents in the size range given
804 * by low and high, for the bitmap block bbno.
806 STATIC
int /* error */
808 xfs_mount_t
*mp
, /* file system mount structure */
809 xfs_trans_t
*tp
, /* transaction pointer */
810 int low
, /* low log2 extent size */
811 int high
, /* high log2 extent size */
812 xfs_rtblock_t bbno
, /* bitmap block number */
813 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
814 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
815 int *stat
) /* out: any good extents here? */
817 int error
; /* error value */
818 int log
; /* loop counter, log2 of ext. size */
819 xfs_suminfo_t sum
; /* summary data */
822 * Loop over logs of extent sizes. Order is irrelevant.
824 for (log
= low
; log
<= high
; log
++) {
826 * Get one summary datum.
828 error
= xfs_rtget_summary(mp
, tp
, log
, bbno
, rbpp
, rsb
, &sum
);
833 * If there are any, return success.
841 * Found nothing, return failure.
848 * Get a buffer for the bitmap or summary file block specified.
849 * The buffer is returned read and locked.
851 STATIC
int /* error */
853 xfs_mount_t
*mp
, /* file system mount structure */
854 xfs_trans_t
*tp
, /* transaction pointer */
855 xfs_rtblock_t block
, /* block number in bitmap or summary */
856 int issum
, /* is summary not bitmap */
857 xfs_buf_t
**bpp
) /* output: buffer for the block */
859 xfs_buf_t
*bp
; /* block buffer, result */
860 xfs_daddr_t d
; /* disk addr of block */
861 int error
; /* error value */
862 xfs_fsblock_t fsb
; /* fs block number for block */
863 xfs_inode_t
*ip
; /* bitmap or summary inode */
865 ip
= issum
? mp
->m_rsumip
: mp
->m_rbmip
;
867 * Map from the file offset (block) and inode number to the
870 error
= xfs_bmapi_single(tp
, ip
, XFS_DATA_FORK
, &fsb
, block
);
874 ASSERT(fsb
!= NULLFSBLOCK
);
876 * Convert to disk address for buffer cache.
878 d
= XFS_FSB_TO_DADDR(mp
, fsb
);
882 error
= xfs_trans_read_buf(mp
, tp
, mp
->m_ddev_targp
, d
,
883 mp
->m_bsize
, 0, &bp
);
887 ASSERT(bp
&& !XFS_BUF_GETERROR(bp
));
894 * Check that the given extent (block range) is allocated already.
896 STATIC
int /* error */
897 xfs_rtcheck_alloc_range(
898 xfs_mount_t
*mp
, /* file system mount point */
899 xfs_trans_t
*tp
, /* transaction pointer */
900 xfs_rtblock_t bno
, /* starting block number of extent */
901 xfs_extlen_t len
, /* length of extent */
902 int *stat
) /* out: 1 for allocated, 0 for not */
904 xfs_rtblock_t
new; /* dummy for xfs_rtcheck_range */
906 return xfs_rtcheck_range(mp
, tp
, bno
, len
, 0, &new, stat
);
911 * Check that the given range is either all allocated (val = 0) or
912 * all free (val = 1).
914 STATIC
int /* error */
916 xfs_mount_t
*mp
, /* file system mount point */
917 xfs_trans_t
*tp
, /* transaction pointer */
918 xfs_rtblock_t start
, /* starting block number of extent */
919 xfs_extlen_t len
, /* length of extent */
920 int val
, /* 1 for free, 0 for allocated */
921 xfs_rtblock_t
*new, /* out: first block not matching */
922 int *stat
) /* out: 1 for matches, 0 for not */
924 xfs_rtword_t
*b
; /* current word in buffer */
925 int bit
; /* bit number in the word */
926 xfs_rtblock_t block
; /* bitmap block number */
927 xfs_buf_t
*bp
; /* buf for the block */
928 xfs_rtword_t
*bufp
; /* starting word in buffer */
929 int error
; /* error value */
930 xfs_rtblock_t i
; /* current bit number rel. to start */
931 xfs_rtblock_t lastbit
; /* last useful bit in word */
932 xfs_rtword_t mask
; /* mask of relevant bits for value */
933 xfs_rtword_t wdiff
; /* difference from wanted value */
934 int word
; /* word number in the buffer */
937 * Compute starting bitmap block number
939 block
= XFS_BITTOBLOCK(mp
, start
);
941 * Read the bitmap block.
943 error
= xfs_rtbuf_get(mp
, tp
, block
, 0, &bp
);
947 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
949 * Compute the starting word's address, and starting bit.
951 word
= XFS_BITTOWORD(mp
, start
);
953 bit
= (int)(start
& (XFS_NBWORD
- 1));
955 * 0 (allocated) => all zero's; 1 (free) => all one's.
959 * If not starting on a word boundary, deal with the first
964 * Compute first bit not examined.
966 lastbit
= XFS_RTMIN(bit
+ len
, XFS_NBWORD
);
968 * Mask of relevant bits.
970 mask
= (((xfs_rtword_t
)1 << (lastbit
- bit
)) - 1) << bit
;
972 * Compute difference between actual and desired value.
974 if ((wdiff
= (*b
^ val
) & mask
)) {
976 * Different, compute first wrong bit and return.
978 xfs_trans_brelse(tp
, bp
);
979 i
= XFS_RTLOBIT(wdiff
) - bit
;
986 * Go on to next block if that's where the next word is
987 * and we need the next word.
989 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
991 * If done with this block, get the next one.
993 xfs_trans_brelse(tp
, bp
);
994 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
998 b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1002 * Go on to the next word in the buffer.
1008 * Starting on a word boundary, no partial word.
1013 * Loop over whole words in buffers. When we use up one buffer
1014 * we move on to the next one.
1016 while (len
- i
>= XFS_NBWORD
) {
1018 * Compute difference between actual and desired value.
1020 if ((wdiff
= *b
^ val
)) {
1022 * Different, compute first wrong bit and return.
1024 xfs_trans_brelse(tp
, bp
);
1025 i
+= XFS_RTLOBIT(wdiff
);
1032 * Go on to next block if that's where the next word is
1033 * and we need the next word.
1035 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1037 * If done with this block, get the next one.
1039 xfs_trans_brelse(tp
, bp
);
1040 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1044 b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1048 * Go on to the next word in the buffer.
1054 * If not ending on a word boundary, deal with the last
1057 if ((lastbit
= len
- i
)) {
1059 * Mask of relevant bits.
1061 mask
= ((xfs_rtword_t
)1 << lastbit
) - 1;
1063 * Compute difference between actual and desired value.
1065 if ((wdiff
= (*b
^ val
) & mask
)) {
1067 * Different, compute first wrong bit and return.
1069 xfs_trans_brelse(tp
, bp
);
1070 i
+= XFS_RTLOBIT(wdiff
);
1078 * Successful, return.
1080 xfs_trans_brelse(tp
, bp
);
1087 * Copy and transform the summary file, given the old and new
1088 * parameters in the mount structures.
1090 STATIC
int /* error */
1092 xfs_mount_t
*omp
, /* old file system mount point */
1093 xfs_mount_t
*nmp
, /* new file system mount point */
1094 xfs_trans_t
*tp
) /* transaction pointer */
1096 xfs_rtblock_t bbno
; /* bitmap block number */
1097 xfs_buf_t
*bp
; /* summary buffer */
1098 int error
; /* error return value */
1099 int log
; /* summary level number (log length) */
1100 xfs_suminfo_t sum
; /* summary data */
1101 xfs_fsblock_t sumbno
; /* summary block number */
1104 for (log
= omp
->m_rsumlevels
- 1; log
>= 0; log
--) {
1105 for (bbno
= omp
->m_sb
.sb_rbmblocks
- 1;
1106 (xfs_srtblock_t
)bbno
>= 0;
1108 error
= xfs_rtget_summary(omp
, tp
, log
, bbno
, &bp
,
1114 error
= xfs_rtmodify_summary(omp
, tp
, log
, bbno
, -sum
,
1118 error
= xfs_rtmodify_summary(nmp
, tp
, log
, bbno
, sum
,
1129 * Searching backward from start to limit, find the first block whose
1130 * allocated/free state is different from start's.
1132 STATIC
int /* error */
1134 xfs_mount_t
*mp
, /* file system mount point */
1135 xfs_trans_t
*tp
, /* transaction pointer */
1136 xfs_rtblock_t start
, /* starting block to look at */
1137 xfs_rtblock_t limit
, /* last block to look at */
1138 xfs_rtblock_t
*rtblock
) /* out: start block found */
1140 xfs_rtword_t
*b
; /* current word in buffer */
1141 int bit
; /* bit number in the word */
1142 xfs_rtblock_t block
; /* bitmap block number */
1143 xfs_buf_t
*bp
; /* buf for the block */
1144 xfs_rtword_t
*bufp
; /* starting word in buffer */
1145 int error
; /* error value */
1146 xfs_rtblock_t firstbit
; /* first useful bit in the word */
1147 xfs_rtblock_t i
; /* current bit number rel. to start */
1148 xfs_rtblock_t len
; /* length of inspected area */
1149 xfs_rtword_t mask
; /* mask of relevant bits for value */
1150 xfs_rtword_t want
; /* mask for "good" values */
1151 xfs_rtword_t wdiff
; /* difference from wanted value */
1152 int word
; /* word number in the buffer */
1155 * Compute and read in starting bitmap block for starting block.
1157 block
= XFS_BITTOBLOCK(mp
, start
);
1158 error
= xfs_rtbuf_get(mp
, tp
, block
, 0, &bp
);
1162 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1164 * Get the first word's index & point to it.
1166 word
= XFS_BITTOWORD(mp
, start
);
1168 bit
= (int)(start
& (XFS_NBWORD
- 1));
1169 len
= start
- limit
+ 1;
1171 * Compute match value, based on the bit at start: if 1 (free)
1172 * then all-ones, else all-zeroes.
1174 want
= (*b
& ((xfs_rtword_t
)1 << bit
)) ? -1 : 0;
1176 * If the starting position is not word-aligned, deal with the
1179 if (bit
< XFS_NBWORD
- 1) {
1181 * Calculate first (leftmost) bit number to look at,
1182 * and mask for all the relevant bits in this word.
1184 firstbit
= XFS_RTMAX((xfs_srtblock_t
)(bit
- len
+ 1), 0);
1185 mask
= (((xfs_rtword_t
)1 << (bit
- firstbit
+ 1)) - 1) <<
1188 * Calculate the difference between the value there
1189 * and what we're looking for.
1191 if ((wdiff
= (*b
^ want
) & mask
)) {
1193 * Different. Mark where we are and return.
1195 xfs_trans_brelse(tp
, bp
);
1196 i
= bit
- XFS_RTHIBIT(wdiff
);
1197 *rtblock
= start
- i
+ 1;
1200 i
= bit
- firstbit
+ 1;
1202 * Go on to previous block if that's where the previous word is
1203 * and we need the previous word.
1205 if (--word
== -1 && i
< len
) {
1207 * If done with this block, get the previous one.
1209 xfs_trans_brelse(tp
, bp
);
1210 error
= xfs_rtbuf_get(mp
, tp
, --block
, 0, &bp
);
1214 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1215 word
= XFS_BLOCKWMASK(mp
);
1219 * Go on to the previous word in the buffer.
1225 * Starting on a word boundary, no partial word.
1230 * Loop over whole words in buffers. When we use up one buffer
1231 * we move on to the previous one.
1233 while (len
- i
>= XFS_NBWORD
) {
1235 * Compute difference between actual and desired value.
1237 if ((wdiff
= *b
^ want
)) {
1239 * Different, mark where we are and return.
1241 xfs_trans_brelse(tp
, bp
);
1242 i
+= XFS_NBWORD
- 1 - XFS_RTHIBIT(wdiff
);
1243 *rtblock
= start
- i
+ 1;
1248 * Go on to previous block if that's where the previous word is
1249 * and we need the previous word.
1251 if (--word
== -1 && i
< len
) {
1253 * If done with this block, get the previous one.
1255 xfs_trans_brelse(tp
, bp
);
1256 error
= xfs_rtbuf_get(mp
, tp
, --block
, 0, &bp
);
1260 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1261 word
= XFS_BLOCKWMASK(mp
);
1265 * Go on to the previous word in the buffer.
1271 * If not ending on a word boundary, deal with the last
1276 * Calculate first (leftmost) bit number to look at,
1277 * and mask for all the relevant bits in this word.
1279 firstbit
= XFS_NBWORD
- (len
- i
);
1280 mask
= (((xfs_rtword_t
)1 << (len
- i
)) - 1) << firstbit
;
1282 * Compute difference between actual and desired value.
1284 if ((wdiff
= (*b
^ want
) & mask
)) {
1286 * Different, mark where we are and return.
1288 xfs_trans_brelse(tp
, bp
);
1289 i
+= XFS_NBWORD
- 1 - XFS_RTHIBIT(wdiff
);
1290 *rtblock
= start
- i
+ 1;
1296 * No match, return that we scanned the whole area.
1298 xfs_trans_brelse(tp
, bp
);
1299 *rtblock
= start
- i
+ 1;
1304 * Searching forward from start to limit, find the first block whose
1305 * allocated/free state is different from start's.
1307 STATIC
int /* error */
1309 xfs_mount_t
*mp
, /* file system mount point */
1310 xfs_trans_t
*tp
, /* transaction pointer */
1311 xfs_rtblock_t start
, /* starting block to look at */
1312 xfs_rtblock_t limit
, /* last block to look at */
1313 xfs_rtblock_t
*rtblock
) /* out: start block found */
1315 xfs_rtword_t
*b
; /* current word in buffer */
1316 int bit
; /* bit number in the word */
1317 xfs_rtblock_t block
; /* bitmap block number */
1318 xfs_buf_t
*bp
; /* buf for the block */
1319 xfs_rtword_t
*bufp
; /* starting word in buffer */
1320 int error
; /* error value */
1321 xfs_rtblock_t i
; /* current bit number rel. to start */
1322 xfs_rtblock_t lastbit
; /* last useful bit in the word */
1323 xfs_rtblock_t len
; /* length of inspected area */
1324 xfs_rtword_t mask
; /* mask of relevant bits for value */
1325 xfs_rtword_t want
; /* mask for "good" values */
1326 xfs_rtword_t wdiff
; /* difference from wanted value */
1327 int word
; /* word number in the buffer */
1330 * Compute and read in starting bitmap block for starting block.
1332 block
= XFS_BITTOBLOCK(mp
, start
);
1333 error
= xfs_rtbuf_get(mp
, tp
, block
, 0, &bp
);
1337 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1339 * Get the first word's index & point to it.
1341 word
= XFS_BITTOWORD(mp
, start
);
1343 bit
= (int)(start
& (XFS_NBWORD
- 1));
1344 len
= limit
- start
+ 1;
1346 * Compute match value, based on the bit at start: if 1 (free)
1347 * then all-ones, else all-zeroes.
1349 want
= (*b
& ((xfs_rtword_t
)1 << bit
)) ? -1 : 0;
1351 * If the starting position is not word-aligned, deal with the
1356 * Calculate last (rightmost) bit number to look at,
1357 * and mask for all the relevant bits in this word.
1359 lastbit
= XFS_RTMIN(bit
+ len
, XFS_NBWORD
);
1360 mask
= (((xfs_rtword_t
)1 << (lastbit
- bit
)) - 1) << bit
;
1362 * Calculate the difference between the value there
1363 * and what we're looking for.
1365 if ((wdiff
= (*b
^ want
) & mask
)) {
1367 * Different. Mark where we are and return.
1369 xfs_trans_brelse(tp
, bp
);
1370 i
= XFS_RTLOBIT(wdiff
) - bit
;
1371 *rtblock
= start
+ i
- 1;
1376 * Go on to next block if that's where the next word is
1377 * and we need the next word.
1379 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1381 * If done with this block, get the previous one.
1383 xfs_trans_brelse(tp
, bp
);
1384 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1388 b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1392 * Go on to the previous word in the buffer.
1398 * Starting on a word boundary, no partial word.
1403 * Loop over whole words in buffers. When we use up one buffer
1404 * we move on to the next one.
1406 while (len
- i
>= XFS_NBWORD
) {
1408 * Compute difference between actual and desired value.
1410 if ((wdiff
= *b
^ want
)) {
1412 * Different, mark where we are and return.
1414 xfs_trans_brelse(tp
, bp
);
1415 i
+= XFS_RTLOBIT(wdiff
);
1416 *rtblock
= start
+ i
- 1;
1421 * Go on to next block if that's where the next word is
1422 * and we need the next word.
1424 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1426 * If done with this block, get the next one.
1428 xfs_trans_brelse(tp
, bp
);
1429 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1433 b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1437 * Go on to the next word in the buffer.
1443 * If not ending on a word boundary, deal with the last
1446 if ((lastbit
= len
- i
)) {
1448 * Calculate mask for all the relevant bits in this word.
1450 mask
= ((xfs_rtword_t
)1 << lastbit
) - 1;
1452 * Compute difference between actual and desired value.
1454 if ((wdiff
= (*b
^ want
) & mask
)) {
1456 * Different, mark where we are and return.
1458 xfs_trans_brelse(tp
, bp
);
1459 i
+= XFS_RTLOBIT(wdiff
);
1460 *rtblock
= start
+ i
- 1;
1466 * No match, return that we scanned the whole area.
1468 xfs_trans_brelse(tp
, bp
);
1469 *rtblock
= start
+ i
- 1;
1474 * Mark an extent specified by start and len freed.
1475 * Updates all the summary information as well as the bitmap.
1477 STATIC
int /* error */
1479 xfs_mount_t
*mp
, /* file system mount point */
1480 xfs_trans_t
*tp
, /* transaction pointer */
1481 xfs_rtblock_t start
, /* starting block to free */
1482 xfs_extlen_t len
, /* length to free */
1483 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
1484 xfs_fsblock_t
*rsb
) /* in/out: summary block number */
1486 xfs_rtblock_t end
; /* end of the freed extent */
1487 int error
; /* error value */
1488 xfs_rtblock_t postblock
; /* first block freed > end */
1489 xfs_rtblock_t preblock
; /* first block freed < start */
1491 end
= start
+ len
- 1;
1493 * Modify the bitmap to mark this extent freed.
1495 error
= xfs_rtmodify_range(mp
, tp
, start
, len
, 1);
1500 * Assume we're freeing out of the middle of an allocated extent.
1501 * We need to find the beginning and end of the extent so we can
1502 * properly update the summary.
1504 error
= xfs_rtfind_back(mp
, tp
, start
, 0, &preblock
);
1509 * Find the next allocated block (end of allocated extent).
1511 error
= xfs_rtfind_forw(mp
, tp
, end
, mp
->m_sb
.sb_rextents
- 1,
1516 * If there are blocks not being freed at the front of the
1517 * old extent, add summary data for them to be allocated.
1519 if (preblock
< start
) {
1520 error
= xfs_rtmodify_summary(mp
, tp
,
1521 XFS_RTBLOCKLOG(start
- preblock
),
1522 XFS_BITTOBLOCK(mp
, preblock
), -1, rbpp
, rsb
);
1528 * If there are blocks not being freed at the end of the
1529 * old extent, add summary data for them to be allocated.
1531 if (postblock
> end
) {
1532 error
= xfs_rtmodify_summary(mp
, tp
,
1533 XFS_RTBLOCKLOG(postblock
- end
),
1534 XFS_BITTOBLOCK(mp
, end
+ 1), -1, rbpp
, rsb
);
1540 * Increment the summary information corresponding to the entire
1541 * (new) free extent.
1543 error
= xfs_rtmodify_summary(mp
, tp
,
1544 XFS_RTBLOCKLOG(postblock
+ 1 - preblock
),
1545 XFS_BITTOBLOCK(mp
, preblock
), 1, rbpp
, rsb
);
1550 * Read and return the summary information for a given extent size,
1551 * bitmap block combination.
1552 * Keeps track of a current summary block, so we don't keep reading
1553 * it from the buffer cache.
1555 STATIC
int /* error */
1557 xfs_mount_t
*mp
, /* file system mount structure */
1558 xfs_trans_t
*tp
, /* transaction pointer */
1559 int log
, /* log2 of extent size */
1560 xfs_rtblock_t bbno
, /* bitmap block number */
1561 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
1562 xfs_fsblock_t
*rsb
, /* in/out: summary block number */
1563 xfs_suminfo_t
*sum
) /* out: summary info for this block */
1565 xfs_buf_t
*bp
; /* buffer for summary block */
1566 int error
; /* error value */
1567 xfs_fsblock_t sb
; /* summary fsblock */
1568 int so
; /* index into the summary file */
1569 xfs_suminfo_t
*sp
; /* pointer to returned data */
1572 * Compute entry number in the summary file.
1574 so
= XFS_SUMOFFS(mp
, log
, bbno
);
1576 * Compute the block number in the summary file.
1578 sb
= XFS_SUMOFFSTOBLOCK(mp
, so
);
1580 * If we have an old buffer, and the block number matches, use that.
1582 if (rbpp
&& *rbpp
&& *rsb
== sb
)
1585 * Otherwise we have to get the buffer.
1589 * If there was an old one, get rid of it first.
1592 xfs_trans_brelse(tp
, *rbpp
);
1593 error
= xfs_rtbuf_get(mp
, tp
, sb
, 1, &bp
);
1598 * Remember this buffer and block for the next call.
1606 * Point to the summary information & copy it out.
1608 sp
= XFS_SUMPTR(mp
, bp
, so
);
1611 * Drop the buffer if we're not asked to remember it.
1614 xfs_trans_brelse(tp
, bp
);
1619 * Set the given range of bitmap bits to the given value.
1620 * Do whatever I/O and logging is required.
1622 STATIC
int /* error */
1624 xfs_mount_t
*mp
, /* file system mount point */
1625 xfs_trans_t
*tp
, /* transaction pointer */
1626 xfs_rtblock_t start
, /* starting block to modify */
1627 xfs_extlen_t len
, /* length of extent to modify */
1628 int val
) /* 1 for free, 0 for allocated */
1630 xfs_rtword_t
*b
; /* current word in buffer */
1631 int bit
; /* bit number in the word */
1632 xfs_rtblock_t block
; /* bitmap block number */
1633 xfs_buf_t
*bp
; /* buf for the block */
1634 xfs_rtword_t
*bufp
; /* starting word in buffer */
1635 int error
; /* error value */
1636 xfs_rtword_t
*first
; /* first used word in the buffer */
1637 int i
; /* current bit number rel. to start */
1638 int lastbit
; /* last useful bit in word */
1639 xfs_rtword_t mask
; /* mask o frelevant bits for value */
1640 int word
; /* word number in the buffer */
1643 * Compute starting bitmap block number.
1645 block
= XFS_BITTOBLOCK(mp
, start
);
1647 * Read the bitmap block, and point to its data.
1649 error
= xfs_rtbuf_get(mp
, tp
, block
, 0, &bp
);
1653 bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1655 * Compute the starting word's address, and starting bit.
1657 word
= XFS_BITTOWORD(mp
, start
);
1658 first
= b
= &bufp
[word
];
1659 bit
= (int)(start
& (XFS_NBWORD
- 1));
1661 * 0 (allocated) => all zeroes; 1 (free) => all ones.
1665 * If not starting on a word boundary, deal with the first
1670 * Compute first bit not changed and mask of relevant bits.
1672 lastbit
= XFS_RTMIN(bit
+ len
, XFS_NBWORD
);
1673 mask
= (((xfs_rtword_t
)1 << (lastbit
- bit
)) - 1) << bit
;
1675 * Set/clear the active bits.
1683 * Go on to the next block if that's where the next word is
1684 * and we need the next word.
1686 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1688 * Log the changed part of this block.
1691 xfs_trans_log_buf(tp
, bp
,
1692 (uint
)((char *)first
- (char *)bufp
),
1693 (uint
)((char *)b
- (char *)bufp
));
1694 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1698 first
= b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1702 * Go on to the next word in the buffer
1708 * Starting on a word boundary, no partial word.
1713 * Loop over whole words in buffers. When we use up one buffer
1714 * we move on to the next one.
1716 while (len
- i
>= XFS_NBWORD
) {
1718 * Set the word value correctly.
1723 * Go on to the next block if that's where the next word is
1724 * and we need the next word.
1726 if (++word
== XFS_BLOCKWSIZE(mp
) && i
< len
) {
1728 * Log the changed part of this block.
1731 xfs_trans_log_buf(tp
, bp
,
1732 (uint
)((char *)first
- (char *)bufp
),
1733 (uint
)((char *)b
- (char *)bufp
));
1734 error
= xfs_rtbuf_get(mp
, tp
, ++block
, 0, &bp
);
1738 first
= b
= bufp
= (xfs_rtword_t
*)XFS_BUF_PTR(bp
);
1742 * Go on to the next word in the buffer
1748 * If not ending on a word boundary, deal with the last
1751 if ((lastbit
= len
- i
)) {
1753 * Compute a mask of relevant bits.
1756 mask
= ((xfs_rtword_t
)1 << lastbit
) - 1;
1758 * Set/clear the active bits.
1767 * Log any remaining changed bytes.
1770 xfs_trans_log_buf(tp
, bp
, (uint
)((char *)first
- (char *)bufp
),
1771 (uint
)((char *)b
- (char *)bufp
- 1));
1776 * Read and modify the summary information for a given extent size,
1777 * bitmap block combination.
1778 * Keeps track of a current summary block, so we don't keep reading
1779 * it from the buffer cache.
1781 STATIC
int /* error */
1782 xfs_rtmodify_summary(
1783 xfs_mount_t
*mp
, /* file system mount point */
1784 xfs_trans_t
*tp
, /* transaction pointer */
1785 int log
, /* log2 of extent size */
1786 xfs_rtblock_t bbno
, /* bitmap block number */
1787 int delta
, /* change to make to summary info */
1788 xfs_buf_t
**rbpp
, /* in/out: summary block buffer */
1789 xfs_fsblock_t
*rsb
) /* in/out: summary block number */
1791 xfs_buf_t
*bp
; /* buffer for the summary block */
1792 int error
; /* error value */
1793 xfs_fsblock_t sb
; /* summary fsblock */
1794 int so
; /* index into the summary file */
1795 xfs_suminfo_t
*sp
; /* pointer to returned data */
1798 * Compute entry number in the summary file.
1800 so
= XFS_SUMOFFS(mp
, log
, bbno
);
1802 * Compute the block number in the summary file.
1804 sb
= XFS_SUMOFFSTOBLOCK(mp
, so
);
1806 * If we have an old buffer, and the block number matches, use that.
1808 if (rbpp
&& *rbpp
&& *rsb
== sb
)
1811 * Otherwise we have to get the buffer.
1815 * If there was an old one, get rid of it first.
1818 xfs_trans_brelse(tp
, *rbpp
);
1819 error
= xfs_rtbuf_get(mp
, tp
, sb
, 1, &bp
);
1824 * Remember this buffer and block for the next call.
1832 * Point to the summary information, modify and log it.
1834 sp
= XFS_SUMPTR(mp
, bp
, so
);
1836 xfs_trans_log_buf(tp
, bp
, (uint
)((char *)sp
- (char *)XFS_BUF_PTR(bp
)),
1837 (uint
)((char *)sp
- (char *)XFS_BUF_PTR(bp
) + sizeof(*sp
) - 1));
1842 * Visible (exported) functions.
1846 * Grow the realtime area of the filesystem.
1850 xfs_mount_t
*mp
, /* mount point for filesystem */
1851 xfs_growfs_rt_t
*in
) /* growfs rt input struct */
1853 xfs_rtblock_t bmbno
; /* bitmap block number */
1854 xfs_buf_t
*bp
; /* temporary buffer */
1855 int error
; /* error return value */
1856 xfs_inode_t
*ip
; /* bitmap inode, used as lock */
1857 xfs_mount_t
*nmp
; /* new (fake) mount structure */
1858 xfs_drfsbno_t nrblocks
; /* new number of realtime blocks */
1859 xfs_extlen_t nrbmblocks
; /* new number of rt bitmap blocks */
1860 xfs_drtbno_t nrextents
; /* new number of realtime extents */
1861 uint8_t nrextslog
; /* new log2 of sb_rextents */
1862 xfs_extlen_t nrsumblocks
; /* new number of summary blocks */
1863 uint nrsumlevels
; /* new rt summary levels */
1864 uint nrsumsize
; /* new size of rt summary, bytes */
1865 xfs_sb_t
*nsbp
; /* new superblock */
1866 xfs_extlen_t rbmblocks
; /* current number of rt bitmap blocks */
1867 xfs_extlen_t rsumblocks
; /* current number of rt summary blks */
1868 xfs_sb_t
*sbp
; /* old superblock */
1869 xfs_fsblock_t sumbno
; /* summary block number */
1873 * Initial error checking.
1875 if (!capable(CAP_SYS_ADMIN
))
1876 return XFS_ERROR(EPERM
);
1877 if (mp
->m_rtdev_targp
== NULL
|| mp
->m_rbmip
== NULL
||
1878 (nrblocks
= in
->newblocks
) <= sbp
->sb_rblocks
||
1879 (sbp
->sb_rblocks
&& (in
->extsize
!= sbp
->sb_rextsize
)))
1880 return XFS_ERROR(EINVAL
);
1881 if ((error
= xfs_sb_validate_fsb_count(sbp
, nrblocks
)))
1884 * Read in the last block of the device, make sure it exists.
1886 error
= xfs_read_buf(mp
, mp
->m_rtdev_targp
,
1887 XFS_FSB_TO_BB(mp
, nrblocks
- 1),
1888 XFS_FSB_TO_BB(mp
, 1), 0, &bp
);
1894 * Calculate new parameters. These are the final values to be reached.
1896 nrextents
= nrblocks
;
1897 do_div(nrextents
, in
->extsize
);
1898 nrbmblocks
= howmany_64(nrextents
, NBBY
* sbp
->sb_blocksize
);
1899 nrextslog
= xfs_highbit32(nrextents
);
1900 nrsumlevels
= nrextslog
+ 1;
1901 nrsumsize
= (uint
)sizeof(xfs_suminfo_t
) * nrsumlevels
* nrbmblocks
;
1902 nrsumblocks
= XFS_B_TO_FSB(mp
, nrsumsize
);
1903 nrsumsize
= XFS_FSB_TO_B(mp
, nrsumblocks
);
1905 * New summary size can't be more than half the size of
1906 * the log. This prevents us from getting a log overflow,
1907 * since we'll log basically the whole summary file at once.
1909 if (nrsumblocks
> (mp
->m_sb
.sb_logblocks
>> 1))
1910 return XFS_ERROR(EINVAL
);
1912 * Get the old block counts for bitmap and summary inodes.
1913 * These can't change since other growfs callers are locked out.
1915 rbmblocks
= XFS_B_TO_FSB(mp
, mp
->m_rbmip
->i_d
.di_size
);
1916 rsumblocks
= XFS_B_TO_FSB(mp
, mp
->m_rsumip
->i_d
.di_size
);
1918 * Allocate space to the bitmap and summary files, as necessary.
1920 if ((error
= xfs_growfs_rt_alloc(mp
, rbmblocks
, nrbmblocks
,
1921 mp
->m_sb
.sb_rbmino
)))
1923 if ((error
= xfs_growfs_rt_alloc(mp
, rsumblocks
, nrsumblocks
,
1924 mp
->m_sb
.sb_rsumino
)))
1927 * Allocate a new (fake) mount/sb.
1929 nmp
= kmem_alloc(sizeof(*nmp
), KM_SLEEP
);
1931 * Loop over the bitmap blocks.
1932 * We will do everything one bitmap block at a time.
1933 * Skip the current block if it is exactly full.
1934 * This also deals with the case where there were no rtextents before.
1936 for (bmbno
= sbp
->sb_rbmblocks
-
1937 ((sbp
->sb_rextents
& ((1 << mp
->m_blkbit_log
) - 1)) != 0);
1941 int cancelflags
= 0;
1946 * Calculate new sb and mount fields for this round.
1948 nsbp
->sb_rextsize
= in
->extsize
;
1949 nsbp
->sb_rbmblocks
= bmbno
+ 1;
1952 nsbp
->sb_rbmblocks
* NBBY
*
1953 nsbp
->sb_blocksize
* nsbp
->sb_rextsize
);
1954 nsbp
->sb_rextents
= nsbp
->sb_rblocks
;
1955 do_div(nsbp
->sb_rextents
, nsbp
->sb_rextsize
);
1956 ASSERT(nsbp
->sb_rextents
!= 0);
1957 nsbp
->sb_rextslog
= xfs_highbit32(nsbp
->sb_rextents
);
1958 nrsumlevels
= nmp
->m_rsumlevels
= nsbp
->sb_rextslog
+ 1;
1960 (uint
)sizeof(xfs_suminfo_t
) * nrsumlevels
*
1962 nrsumblocks
= XFS_B_TO_FSB(mp
, nrsumsize
);
1963 nmp
->m_rsumsize
= nrsumsize
= XFS_FSB_TO_B(mp
, nrsumblocks
);
1965 * Start a transaction, get the log reservation.
1967 tp
= xfs_trans_alloc(mp
, XFS_TRANS_GROWFSRT_FREE
);
1968 if ((error
= xfs_trans_reserve(tp
, 0,
1969 XFS_GROWRTFREE_LOG_RES(nmp
), 0, 0, 0)))
1972 * Lock out other callers by grabbing the bitmap inode lock.
1974 if ((error
= xfs_trans_iget(mp
, tp
, mp
->m_sb
.sb_rbmino
, 0,
1975 XFS_ILOCK_EXCL
, &ip
)))
1977 ASSERT(ip
== mp
->m_rbmip
);
1979 * Update the bitmap inode's size.
1981 mp
->m_rbmip
->i_d
.di_size
=
1982 nsbp
->sb_rbmblocks
* nsbp
->sb_blocksize
;
1983 xfs_trans_log_inode(tp
, mp
->m_rbmip
, XFS_ILOG_CORE
);
1984 cancelflags
|= XFS_TRANS_ABORT
;
1986 * Get the summary inode into the transaction.
1988 if ((error
= xfs_trans_iget(mp
, tp
, mp
->m_sb
.sb_rsumino
, 0,
1989 XFS_ILOCK_EXCL
, &ip
)))
1991 ASSERT(ip
== mp
->m_rsumip
);
1993 * Update the summary inode's size.
1995 mp
->m_rsumip
->i_d
.di_size
= nmp
->m_rsumsize
;
1996 xfs_trans_log_inode(tp
, mp
->m_rsumip
, XFS_ILOG_CORE
);
1998 * Copy summary data from old to new sizes.
1999 * Do this when the real size (not block-aligned) changes.
2001 if (sbp
->sb_rbmblocks
!= nsbp
->sb_rbmblocks
||
2002 mp
->m_rsumlevels
!= nmp
->m_rsumlevels
) {
2003 error
= xfs_rtcopy_summary(mp
, nmp
, tp
);
2008 * Update superblock fields.
2010 if (nsbp
->sb_rextsize
!= sbp
->sb_rextsize
)
2011 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_REXTSIZE
,
2012 nsbp
->sb_rextsize
- sbp
->sb_rextsize
);
2013 if (nsbp
->sb_rbmblocks
!= sbp
->sb_rbmblocks
)
2014 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_RBMBLOCKS
,
2015 nsbp
->sb_rbmblocks
- sbp
->sb_rbmblocks
);
2016 if (nsbp
->sb_rblocks
!= sbp
->sb_rblocks
)
2017 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_RBLOCKS
,
2018 nsbp
->sb_rblocks
- sbp
->sb_rblocks
);
2019 if (nsbp
->sb_rextents
!= sbp
->sb_rextents
)
2020 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_REXTENTS
,
2021 nsbp
->sb_rextents
- sbp
->sb_rextents
);
2022 if (nsbp
->sb_rextslog
!= sbp
->sb_rextslog
)
2023 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_REXTSLOG
,
2024 nsbp
->sb_rextslog
- sbp
->sb_rextslog
);
2029 error
= xfs_rtfree_range(nmp
, tp
, sbp
->sb_rextents
,
2030 nsbp
->sb_rextents
- sbp
->sb_rextents
, &bp
, &sumbno
);
2033 xfs_trans_cancel(tp
, cancelflags
);
2037 * Mark more blocks free in the superblock.
2039 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_FREXTENTS
,
2040 nsbp
->sb_rextents
- sbp
->sb_rextents
);
2042 * Update mp values into the real mp structure.
2044 mp
->m_rsumlevels
= nrsumlevels
;
2045 mp
->m_rsumsize
= nrsumsize
;
2047 error
= xfs_trans_commit(tp
, 0);
2053 * Free the fake mp structure.
2061 * Allocate an extent in the realtime subvolume, with the usual allocation
2062 * parameters. The length units are all in realtime extents, as is the
2063 * result block number.
2066 xfs_rtallocate_extent(
2067 xfs_trans_t
*tp
, /* transaction pointer */
2068 xfs_rtblock_t bno
, /* starting block number to allocate */
2069 xfs_extlen_t minlen
, /* minimum length to allocate */
2070 xfs_extlen_t maxlen
, /* maximum length to allocate */
2071 xfs_extlen_t
*len
, /* out: actual length allocated */
2072 xfs_alloctype_t type
, /* allocation type XFS_ALLOCTYPE... */
2073 int wasdel
, /* was a delayed allocation extent */
2074 xfs_extlen_t prod
, /* extent product factor */
2075 xfs_rtblock_t
*rtblock
) /* out: start block allocated */
2077 int error
; /* error value */
2078 xfs_inode_t
*ip
; /* inode for bitmap file */
2079 xfs_mount_t
*mp
; /* file system mount structure */
2080 xfs_rtblock_t r
; /* result allocated block */
2081 xfs_fsblock_t sb
; /* summary file block number */
2082 xfs_buf_t
*sumbp
; /* summary file block buffer */
2084 ASSERT(minlen
> 0 && minlen
<= maxlen
);
2087 * If prod is set then figure out what to do to minlen and maxlen.
2092 if ((i
= maxlen
% prod
))
2094 if ((i
= minlen
% prod
))
2096 if (maxlen
< minlen
) {
2097 *rtblock
= NULLRTBLOCK
;
2102 * Lock out other callers by grabbing the bitmap inode lock.
2104 if ((error
= xfs_trans_iget(mp
, tp
, mp
->m_sb
.sb_rbmino
, 0,
2105 XFS_ILOCK_EXCL
, &ip
)))
2109 * Allocate by size, or near another block, or exactly at some block.
2112 case XFS_ALLOCTYPE_ANY_AG
:
2113 error
= xfs_rtallocate_extent_size(mp
, tp
, minlen
, maxlen
, len
,
2114 &sumbp
, &sb
, prod
, &r
);
2116 case XFS_ALLOCTYPE_NEAR_BNO
:
2117 error
= xfs_rtallocate_extent_near(mp
, tp
, bno
, minlen
, maxlen
,
2118 len
, &sumbp
, &sb
, prod
, &r
);
2120 case XFS_ALLOCTYPE_THIS_BNO
:
2121 error
= xfs_rtallocate_extent_exact(mp
, tp
, bno
, minlen
, maxlen
,
2122 len
, &sumbp
, &sb
, prod
, &r
);
2131 * If it worked, update the superblock.
2133 if (r
!= NULLRTBLOCK
) {
2134 long slen
= (long)*len
;
2136 ASSERT(*len
>= minlen
&& *len
<= maxlen
);
2138 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_RES_FREXTENTS
, -slen
);
2140 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_FREXTENTS
, -slen
);
2147 * Free an extent in the realtime subvolume. Length is expressed in
2148 * realtime extents, as is the block number.
2152 xfs_trans_t
*tp
, /* transaction pointer */
2153 xfs_rtblock_t bno
, /* starting block number to free */
2154 xfs_extlen_t len
) /* length of extent freed */
2156 int error
; /* error value */
2157 xfs_inode_t
*ip
; /* bitmap file inode */
2158 xfs_mount_t
*mp
; /* file system mount structure */
2159 xfs_fsblock_t sb
; /* summary file block number */
2160 xfs_buf_t
*sumbp
; /* summary file block buffer */
2164 * Synchronize by locking the bitmap inode.
2166 if ((error
= xfs_trans_iget(mp
, tp
, mp
->m_sb
.sb_rbmino
, 0,
2167 XFS_ILOCK_EXCL
, &ip
)))
2169 #if defined(__KERNEL__) && defined(DEBUG)
2171 * Check to see that this whole range is currently allocated.
2174 int stat
; /* result from checking range */
2176 error
= xfs_rtcheck_alloc_range(mp
, tp
, bno
, len
, &stat
);
2185 * Free the range of realtime blocks.
2187 error
= xfs_rtfree_range(mp
, tp
, bno
, len
, &sumbp
, &sb
);
2192 * Mark more blocks free in the superblock.
2194 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_FREXTENTS
, (long)len
);
2196 * If we've now freed all the blocks, reset the file sequence
2199 if (tp
->t_frextents_delta
+ mp
->m_sb
.sb_frextents
==
2200 mp
->m_sb
.sb_rextents
) {
2201 if (!(ip
->i_d
.di_flags
& XFS_DIFLAG_NEWRTBM
))
2202 ip
->i_d
.di_flags
|= XFS_DIFLAG_NEWRTBM
;
2203 *(__uint64_t
*)&ip
->i_d
.di_atime
= 0;
2204 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
2210 * Initialize realtime fields in the mount structure.
2214 xfs_mount_t
*mp
) /* file system mount structure */
2216 xfs_buf_t
*bp
; /* buffer for last block of subvolume */
2217 xfs_daddr_t d
; /* address of last block of subvolume */
2218 int error
; /* error return value */
2219 xfs_sb_t
*sbp
; /* filesystem superblock copy in mount */
2222 if (sbp
->sb_rblocks
== 0)
2224 if (mp
->m_rtdev_targp
== NULL
) {
2226 "XFS: This filesystem has a realtime volume, use rtdev=device option");
2227 return XFS_ERROR(ENODEV
);
2229 mp
->m_rsumlevels
= sbp
->sb_rextslog
+ 1;
2231 (uint
)sizeof(xfs_suminfo_t
) * mp
->m_rsumlevels
*
2233 mp
->m_rsumsize
= roundup(mp
->m_rsumsize
, sbp
->sb_blocksize
);
2234 mp
->m_rbmip
= mp
->m_rsumip
= NULL
;
2236 * Check that the realtime section is an ok size.
2238 d
= (xfs_daddr_t
)XFS_FSB_TO_BB(mp
, mp
->m_sb
.sb_rblocks
);
2239 if (XFS_BB_TO_FSB(mp
, d
) != mp
->m_sb
.sb_rblocks
) {
2240 cmn_err(CE_WARN
, "XFS: realtime mount -- %llu != %llu",
2241 (unsigned long long) XFS_BB_TO_FSB(mp
, d
),
2242 (unsigned long long) mp
->m_sb
.sb_rblocks
);
2243 return XFS_ERROR(EFBIG
);
2245 error
= xfs_read_buf(mp
, mp
->m_rtdev_targp
,
2246 d
- XFS_FSB_TO_BB(mp
, 1),
2247 XFS_FSB_TO_BB(mp
, 1), 0, &bp
);
2250 "XFS: realtime mount -- xfs_read_buf failed, returned %d", error
);
2251 if (error
== ENOSPC
)
2252 return XFS_ERROR(EFBIG
);
2260 * Get the bitmap and summary inodes into the mount structure
2265 xfs_mount_t
*mp
) /* file system mount structure */
2267 int error
; /* error return value */
2271 if (sbp
->sb_rbmino
== NULLFSINO
)
2273 error
= xfs_iget(mp
, NULL
, sbp
->sb_rbmino
, 0, 0, &mp
->m_rbmip
);
2276 ASSERT(mp
->m_rbmip
!= NULL
);
2277 ASSERT(sbp
->sb_rsumino
!= NULLFSINO
);
2278 error
= xfs_iget(mp
, NULL
, sbp
->sb_rsumino
, 0, 0, &mp
->m_rsumip
);
2283 ASSERT(mp
->m_rsumip
!= NULL
);
2288 xfs_rtunmount_inodes(
2289 struct xfs_mount
*mp
)
2294 IRELE(mp
->m_rsumip
);
2298 * Pick an extent for allocation at the start of a new realtime file.
2299 * Use the sequence number stored in the atime field of the bitmap inode.
2300 * Translate this to a fraction of the rtextents, and return the product
2301 * of rtextents and the fraction.
2302 * The fraction sequence is 0, 1/2, 1/4, 3/4, 1/8, ..., 7/8, 1/16, ...
2306 xfs_mount_t
*mp
, /* file system mount point */
2307 xfs_trans_t
*tp
, /* transaction pointer */
2308 xfs_extlen_t len
, /* allocation length (rtextents) */
2309 xfs_rtblock_t
*pick
) /* result rt extent */
2311 xfs_rtblock_t b
; /* result block */
2312 int error
; /* error return value */
2313 xfs_inode_t
*ip
; /* bitmap incore inode */
2314 int log2
; /* log of sequence number */
2315 __uint64_t resid
; /* residual after log removed */
2316 __uint64_t seq
; /* sequence number of file creation */
2317 __uint64_t
*seqp
; /* pointer to seqno in inode */
2319 if ((error
= xfs_trans_iget(mp
, tp
, mp
->m_sb
.sb_rbmino
, 0,
2320 XFS_ILOCK_EXCL
, &ip
)))
2322 ASSERT(ip
== mp
->m_rbmip
);
2323 seqp
= (__uint64_t
*)&ip
->i_d
.di_atime
;
2324 if (!(ip
->i_d
.di_flags
& XFS_DIFLAG_NEWRTBM
)) {
2325 ip
->i_d
.di_flags
|= XFS_DIFLAG_NEWRTBM
;
2329 if ((log2
= xfs_highbit64(seq
)) == -1)
2332 resid
= seq
- (1ULL << log2
);
2333 b
= (mp
->m_sb
.sb_rextents
* ((resid
<< 1) + 1ULL)) >>
2335 if (b
>= mp
->m_sb
.sb_rextents
)
2336 b
= do_mod(b
, mp
->m_sb
.sb_rextents
);
2337 if (b
+ len
> mp
->m_sb
.sb_rextents
)
2338 b
= mp
->m_sb
.sb_rextents
- len
;
2341 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);