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_shared.h"
21 #include "xfs_format.h"
22 #include "xfs_log_format.h"
23 #include "xfs_trans_resv.h"
25 #include "xfs_mount.h"
26 #include "xfs_inode.h"
28 #include "xfs_bmap_util.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_alloc.h"
31 #include "xfs_error.h"
32 #include "xfs_trans.h"
33 #include "xfs_trans_space.h"
34 #include "xfs_trace.h"
36 #include "xfs_icache.h"
37 #include "xfs_rtalloc.h"
41 * Realtime allocator bitmap functions shared with userspace.
45 * Real time buffers need verifiers to avoid runtime warnings during IO.
46 * We don't have anything to verify, however, so these are just dummy
50 xfs_rtbuf_verify_read(
57 xfs_rtbuf_verify_write(
63 const struct xfs_buf_ops xfs_rtbuf_ops = {
65 .verify_read = xfs_rtbuf_verify_read,
66 .verify_write = xfs_rtbuf_verify_write,
70 * Get a buffer for the bitmap or summary file block specified.
71 * The buffer is returned read and locked.
75 xfs_mount_t *mp, /* file system mount structure */
76 xfs_trans_t *tp, /* transaction pointer */
77 xfs_rtblock_t block, /* block number in bitmap or summary */
78 int issum, /* is summary not bitmap */
79 xfs_buf_t **bpp) /* output: buffer for the block */
81 xfs_buf_t *bp; /* block buffer, result */
82 xfs_inode_t *ip; /* bitmap or summary inode */
85 int error; /* error value */
87 ip = issum ? mp->m_rsumip : mp->m_rbmip;
89 error = xfs_bmapi_read(ip, block, 1, &map, &nmap, XFS_DATA_FORK);
93 ASSERT(map.br_startblock != NULLFSBLOCK);
94 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp,
95 XFS_FSB_TO_DADDR(mp, map.br_startblock),
96 mp->m_bsize, 0, &bp, &xfs_rtbuf_ops);
100 xfs_trans_buf_set_type(tp, bp, issum ? XFS_BLFT_RTSUMMARY_BUF
101 : XFS_BLFT_RTBITMAP_BUF);
107 * Searching backward from start to limit, find the first block whose
108 * allocated/free state is different from start's.
112 xfs_mount_t *mp, /* file system mount point */
113 xfs_trans_t *tp, /* transaction pointer */
114 xfs_rtblock_t start, /* starting block to look at */
115 xfs_rtblock_t limit, /* last block to look at */
116 xfs_rtblock_t *rtblock) /* out: start block found */
118 xfs_rtword_t *b; /* current word in buffer */
119 int bit; /* bit number in the word */
120 xfs_rtblock_t block; /* bitmap block number */
121 xfs_buf_t *bp; /* buf for the block */
122 xfs_rtword_t *bufp; /* starting word in buffer */
123 int error; /* error value */
124 xfs_rtblock_t firstbit; /* first useful bit in the word */
125 xfs_rtblock_t i; /* current bit number rel. to start */
126 xfs_rtblock_t len; /* length of inspected area */
127 xfs_rtword_t mask; /* mask of relevant bits for value */
128 xfs_rtword_t want; /* mask for "good" values */
129 xfs_rtword_t wdiff; /* difference from wanted value */
130 int word; /* word number in the buffer */
133 * Compute and read in starting bitmap block for starting block.
135 block = XFS_BITTOBLOCK(mp, start);
136 error = xfs_rtbuf_get(mp, tp, block, 0, &bp);
142 * Get the first word's index & point to it.
144 word = XFS_BITTOWORD(mp, start);
146 bit = (int)(start & (XFS_NBWORD - 1));
147 len = start - limit + 1;
149 * Compute match value, based on the bit at start: if 1 (free)
150 * then all-ones, else all-zeroes.
152 want = (*b & ((xfs_rtword_t)1 << bit)) ? -1 : 0;
154 * If the starting position is not word-aligned, deal with the
157 if (bit < XFS_NBWORD - 1) {
159 * Calculate first (leftmost) bit number to look at,
160 * and mask for all the relevant bits in this word.
162 firstbit = XFS_RTMAX((xfs_srtblock_t)(bit - len + 1), 0);
163 mask = (((xfs_rtword_t)1 << (bit - firstbit + 1)) - 1) <<
166 * Calculate the difference between the value there
167 * and what we're looking for.
169 if ((wdiff = (*b ^ want) & mask)) {
171 * Different. Mark where we are and return.
173 xfs_trans_brelse(tp, bp);
174 i = bit - XFS_RTHIBIT(wdiff);
175 *rtblock = start - i + 1;
178 i = bit - firstbit + 1;
180 * Go on to previous block if that's where the previous word is
181 * and we need the previous word.
183 if (--word == -1 && i < len) {
185 * If done with this block, get the previous one.
187 xfs_trans_brelse(tp, bp);
188 error = xfs_rtbuf_get(mp, tp, --block, 0, &bp);
193 word = XFS_BLOCKWMASK(mp);
197 * Go on to the previous word in the buffer.
203 * Starting on a word boundary, no partial word.
208 * Loop over whole words in buffers. When we use up one buffer
209 * we move on to the previous one.
211 while (len - i >= XFS_NBWORD) {
213 * Compute difference between actual and desired value.
215 if ((wdiff = *b ^ want)) {
217 * Different, mark where we are and return.
219 xfs_trans_brelse(tp, bp);
220 i += XFS_NBWORD - 1 - XFS_RTHIBIT(wdiff);
221 *rtblock = start - i + 1;
226 * Go on to previous block if that's where the previous word is
227 * and we need the previous word.
229 if (--word == -1 && i < len) {
231 * If done with this block, get the previous one.
233 xfs_trans_brelse(tp, bp);
234 error = xfs_rtbuf_get(mp, tp, --block, 0, &bp);
239 word = XFS_BLOCKWMASK(mp);
243 * Go on to the previous word in the buffer.
249 * If not ending on a word boundary, deal with the last
254 * Calculate first (leftmost) bit number to look at,
255 * and mask for all the relevant bits in this word.
257 firstbit = XFS_NBWORD - (len - i);
258 mask = (((xfs_rtword_t)1 << (len - i)) - 1) << firstbit;
260 * Compute difference between actual and desired value.
262 if ((wdiff = (*b ^ want) & mask)) {
264 * Different, mark where we are and return.
266 xfs_trans_brelse(tp, bp);
267 i += XFS_NBWORD - 1 - XFS_RTHIBIT(wdiff);
268 *rtblock = start - i + 1;
274 * No match, return that we scanned the whole area.
276 xfs_trans_brelse(tp, bp);
277 *rtblock = start - i + 1;
282 * Searching forward from start to limit, find the first block whose
283 * allocated/free state is different from start's.
287 xfs_mount_t *mp, /* file system mount point */
288 xfs_trans_t *tp, /* transaction pointer */
289 xfs_rtblock_t start, /* starting block to look at */
290 xfs_rtblock_t limit, /* last block to look at */
291 xfs_rtblock_t *rtblock) /* out: start block found */
293 xfs_rtword_t *b; /* current word in buffer */
294 int bit; /* bit number in the word */
295 xfs_rtblock_t block; /* bitmap block number */
296 xfs_buf_t *bp; /* buf for the block */
297 xfs_rtword_t *bufp; /* starting word in buffer */
298 int error; /* error value */
299 xfs_rtblock_t i; /* current bit number rel. to start */
300 xfs_rtblock_t lastbit; /* last useful bit in the word */
301 xfs_rtblock_t len; /* length of inspected area */
302 xfs_rtword_t mask; /* mask of relevant bits for value */
303 xfs_rtword_t want; /* mask for "good" values */
304 xfs_rtword_t wdiff; /* difference from wanted value */
305 int word; /* word number in the buffer */
308 * Compute and read in starting bitmap block for starting block.
310 block = XFS_BITTOBLOCK(mp, start);
311 error = xfs_rtbuf_get(mp, tp, block, 0, &bp);
317 * Get the first word's index & point to it.
319 word = XFS_BITTOWORD(mp, start);
321 bit = (int)(start & (XFS_NBWORD - 1));
322 len = limit - start + 1;
324 * Compute match value, based on the bit at start: if 1 (free)
325 * then all-ones, else all-zeroes.
327 want = (*b & ((xfs_rtword_t)1 << bit)) ? -1 : 0;
329 * If the starting position is not word-aligned, deal with the
334 * Calculate last (rightmost) bit number to look at,
335 * and mask for all the relevant bits in this word.
337 lastbit = XFS_RTMIN(bit + len, XFS_NBWORD);
338 mask = (((xfs_rtword_t)1 << (lastbit - bit)) - 1) << bit;
340 * Calculate the difference between the value there
341 * and what we're looking for.
343 if ((wdiff = (*b ^ want) & mask)) {
345 * Different. Mark where we are and return.
347 xfs_trans_brelse(tp, bp);
348 i = XFS_RTLOBIT(wdiff) - bit;
349 *rtblock = start + i - 1;
354 * Go on to next block if that's where the next word is
355 * and we need the next word.
357 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
359 * If done with this block, get the previous one.
361 xfs_trans_brelse(tp, bp);
362 error = xfs_rtbuf_get(mp, tp, ++block, 0, &bp);
366 b = bufp = bp->b_addr;
370 * Go on to the previous word in the buffer.
376 * Starting on a word boundary, no partial word.
381 * Loop over whole words in buffers. When we use up one buffer
382 * we move on to the next one.
384 while (len - i >= XFS_NBWORD) {
386 * Compute difference between actual and desired value.
388 if ((wdiff = *b ^ want)) {
390 * Different, mark where we are and return.
392 xfs_trans_brelse(tp, bp);
393 i += XFS_RTLOBIT(wdiff);
394 *rtblock = start + i - 1;
399 * Go on to next block if that's where the next word is
400 * and we need the next word.
402 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
404 * If done with this block, get the next one.
406 xfs_trans_brelse(tp, bp);
407 error = xfs_rtbuf_get(mp, tp, ++block, 0, &bp);
411 b = bufp = bp->b_addr;
415 * Go on to the next word in the buffer.
421 * If not ending on a word boundary, deal with the last
424 if ((lastbit = len - i)) {
426 * Calculate mask for all the relevant bits in this word.
428 mask = ((xfs_rtword_t)1 << lastbit) - 1;
430 * Compute difference between actual and desired value.
432 if ((wdiff = (*b ^ want) & mask)) {
434 * Different, mark where we are and return.
436 xfs_trans_brelse(tp, bp);
437 i += XFS_RTLOBIT(wdiff);
438 *rtblock = start + i - 1;
444 * No match, return that we scanned the whole area.
446 xfs_trans_brelse(tp, bp);
447 *rtblock = start + i - 1;
452 * Read and/or modify the summary information for a given extent size,
453 * bitmap block combination.
454 * Keeps track of a current summary block, so we don't keep reading
455 * it from the buffer cache.
457 * Summary information is returned in *sum if specified.
458 * If no delta is specified, returns summary only.
461 xfs_rtmodify_summary_int(
462 xfs_mount_t *mp, /* file system mount structure */
463 xfs_trans_t *tp, /* transaction pointer */
464 int log, /* log2 of extent size */
465 xfs_rtblock_t bbno, /* bitmap block number */
466 int delta, /* change to make to summary info */
467 xfs_buf_t **rbpp, /* in/out: summary block buffer */
468 xfs_fsblock_t *rsb, /* in/out: summary block number */
469 xfs_suminfo_t *sum) /* out: summary info for this block */
471 xfs_buf_t *bp; /* buffer for the summary block */
472 int error; /* error value */
473 xfs_fsblock_t sb; /* summary fsblock */
474 int so; /* index into the summary file */
475 xfs_suminfo_t *sp; /* pointer to returned data */
478 * Compute entry number in the summary file.
480 so = XFS_SUMOFFS(mp, log, bbno);
482 * Compute the block number in the summary file.
484 sb = XFS_SUMOFFSTOBLOCK(mp, so);
486 * If we have an old buffer, and the block number matches, use that.
488 if (*rbpp && *rsb == sb)
491 * Otherwise we have to get the buffer.
495 * If there was an old one, get rid of it first.
498 xfs_trans_brelse(tp, *rbpp);
499 error = xfs_rtbuf_get(mp, tp, sb, 1, &bp);
504 * Remember this buffer and block for the next call.
510 * Point to the summary information, modify/log it, and/or copy it out.
512 sp = XFS_SUMPTR(mp, bp, so);
514 uint first = (uint)((char *)sp - (char *)bp->b_addr);
517 xfs_trans_log_buf(tp, bp, first, first + sizeof(*sp) - 1);
525 xfs_rtmodify_summary(
526 xfs_mount_t *mp, /* file system mount structure */
527 xfs_trans_t *tp, /* transaction pointer */
528 int log, /* log2 of extent size */
529 xfs_rtblock_t bbno, /* bitmap block number */
530 int delta, /* change to make to summary info */
531 xfs_buf_t **rbpp, /* in/out: summary block buffer */
532 xfs_fsblock_t *rsb) /* in/out: summary block number */
534 return xfs_rtmodify_summary_int(mp, tp, log, bbno,
535 delta, rbpp, rsb, NULL);
539 * Set the given range of bitmap bits to the given value.
540 * Do whatever I/O and logging is required.
544 xfs_mount_t *mp, /* file system mount point */
545 xfs_trans_t *tp, /* transaction pointer */
546 xfs_rtblock_t start, /* starting block to modify */
547 xfs_extlen_t len, /* length of extent to modify */
548 int val) /* 1 for free, 0 for allocated */
550 xfs_rtword_t *b; /* current word in buffer */
551 int bit; /* bit number in the word */
552 xfs_rtblock_t block; /* bitmap block number */
553 xfs_buf_t *bp; /* buf for the block */
554 xfs_rtword_t *bufp; /* starting word in buffer */
555 int error; /* error value */
556 xfs_rtword_t *first; /* first used word in the buffer */
557 int i; /* current bit number rel. to start */
558 int lastbit; /* last useful bit in word */
559 xfs_rtword_t mask; /* mask o frelevant bits for value */
560 int word; /* word number in the buffer */
563 * Compute starting bitmap block number.
565 block = XFS_BITTOBLOCK(mp, start);
567 * Read the bitmap block, and point to its data.
569 error = xfs_rtbuf_get(mp, tp, block, 0, &bp);
575 * Compute the starting word's address, and starting bit.
577 word = XFS_BITTOWORD(mp, start);
578 first = b = &bufp[word];
579 bit = (int)(start & (XFS_NBWORD - 1));
581 * 0 (allocated) => all zeroes; 1 (free) => all ones.
585 * If not starting on a word boundary, deal with the first
590 * Compute first bit not changed and mask of relevant bits.
592 lastbit = XFS_RTMIN(bit + len, XFS_NBWORD);
593 mask = (((xfs_rtword_t)1 << (lastbit - bit)) - 1) << bit;
595 * Set/clear the active bits.
603 * Go on to the next block if that's where the next word is
604 * and we need the next word.
606 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
608 * Log the changed part of this block.
611 xfs_trans_log_buf(tp, bp,
612 (uint)((char *)first - (char *)bufp),
613 (uint)((char *)b - (char *)bufp));
614 error = xfs_rtbuf_get(mp, tp, ++block, 0, &bp);
618 first = b = bufp = bp->b_addr;
622 * Go on to the next word in the buffer
628 * Starting on a word boundary, no partial word.
633 * Loop over whole words in buffers. When we use up one buffer
634 * we move on to the next one.
636 while (len - i >= XFS_NBWORD) {
638 * Set the word value correctly.
643 * Go on to the next block if that's where the next word is
644 * and we need the next word.
646 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
648 * Log the changed part of this block.
651 xfs_trans_log_buf(tp, bp,
652 (uint)((char *)first - (char *)bufp),
653 (uint)((char *)b - (char *)bufp));
654 error = xfs_rtbuf_get(mp, tp, ++block, 0, &bp);
658 first = b = bufp = bp->b_addr;
662 * Go on to the next word in the buffer
668 * If not ending on a word boundary, deal with the last
671 if ((lastbit = len - i)) {
673 * Compute a mask of relevant bits.
676 mask = ((xfs_rtword_t)1 << lastbit) - 1;
678 * Set/clear the active bits.
687 * Log any remaining changed bytes.
690 xfs_trans_log_buf(tp, bp, (uint)((char *)first - (char *)bufp),
691 (uint)((char *)b - (char *)bufp - 1));
696 * Mark an extent specified by start and len freed.
697 * Updates all the summary information as well as the bitmap.
701 xfs_mount_t *mp, /* file system mount point */
702 xfs_trans_t *tp, /* transaction pointer */
703 xfs_rtblock_t start, /* starting block to free */
704 xfs_extlen_t len, /* length to free */
705 xfs_buf_t **rbpp, /* in/out: summary block buffer */
706 xfs_fsblock_t *rsb) /* in/out: summary block number */
708 xfs_rtblock_t end; /* end of the freed extent */
709 int error; /* error value */
710 xfs_rtblock_t postblock; /* first block freed > end */
711 xfs_rtblock_t preblock; /* first block freed < start */
713 end = start + len - 1;
715 * Modify the bitmap to mark this extent freed.
717 error = xfs_rtmodify_range(mp, tp, start, len, 1);
722 * Assume we're freeing out of the middle of an allocated extent.
723 * We need to find the beginning and end of the extent so we can
724 * properly update the summary.
726 error = xfs_rtfind_back(mp, tp, start, 0, &preblock);
731 * Find the next allocated block (end of allocated extent).
733 error = xfs_rtfind_forw(mp, tp, end, mp->m_sb.sb_rextents - 1,
738 * If there are blocks not being freed at the front of the
739 * old extent, add summary data for them to be allocated.
741 if (preblock < start) {
742 error = xfs_rtmodify_summary(mp, tp,
743 XFS_RTBLOCKLOG(start - preblock),
744 XFS_BITTOBLOCK(mp, preblock), -1, rbpp, rsb);
750 * If there are blocks not being freed at the end of the
751 * old extent, add summary data for them to be allocated.
753 if (postblock > end) {
754 error = xfs_rtmodify_summary(mp, tp,
755 XFS_RTBLOCKLOG(postblock - end),
756 XFS_BITTOBLOCK(mp, end + 1), -1, rbpp, rsb);
762 * Increment 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 * Check that the given range is either all allocated (val = 0) or
773 * all free (val = 1).
777 xfs_mount_t *mp, /* file system mount point */
778 xfs_trans_t *tp, /* transaction pointer */
779 xfs_rtblock_t start, /* starting block number of extent */
780 xfs_extlen_t len, /* length of extent */
781 int val, /* 1 for free, 0 for allocated */
782 xfs_rtblock_t *new, /* out: first block not matching */
783 int *stat) /* out: 1 for matches, 0 for not */
785 xfs_rtword_t *b; /* current word in buffer */
786 int bit; /* bit number in the word */
787 xfs_rtblock_t block; /* bitmap block number */
788 xfs_buf_t *bp; /* buf for the block */
789 xfs_rtword_t *bufp; /* starting word in buffer */
790 int error; /* error value */
791 xfs_rtblock_t i; /* current bit number rel. to start */
792 xfs_rtblock_t lastbit; /* last useful bit in word */
793 xfs_rtword_t mask; /* mask of relevant bits for value */
794 xfs_rtword_t wdiff; /* difference from wanted value */
795 int word; /* word number in the buffer */
798 * Compute starting bitmap block number
800 block = XFS_BITTOBLOCK(mp, start);
802 * Read the bitmap block.
804 error = xfs_rtbuf_get(mp, tp, block, 0, &bp);
810 * Compute the starting word's address, and starting bit.
812 word = XFS_BITTOWORD(mp, start);
814 bit = (int)(start & (XFS_NBWORD - 1));
816 * 0 (allocated) => all zero's; 1 (free) => all one's.
820 * If not starting on a word boundary, deal with the first
825 * Compute first bit not examined.
827 lastbit = XFS_RTMIN(bit + len, XFS_NBWORD);
829 * Mask of relevant bits.
831 mask = (((xfs_rtword_t)1 << (lastbit - bit)) - 1) << bit;
833 * Compute difference between actual and desired value.
835 if ((wdiff = (*b ^ val) & mask)) {
837 * Different, compute first wrong bit and return.
839 xfs_trans_brelse(tp, bp);
840 i = XFS_RTLOBIT(wdiff) - bit;
847 * Go on to next block if that's where the next word is
848 * and we need the next word.
850 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
852 * If done with this block, get the next one.
854 xfs_trans_brelse(tp, bp);
855 error = xfs_rtbuf_get(mp, tp, ++block, 0, &bp);
859 b = bufp = bp->b_addr;
863 * Go on to the next word in the buffer.
869 * Starting on a word boundary, no partial word.
874 * Loop over whole words in buffers. When we use up one buffer
875 * we move on to the next one.
877 while (len - i >= XFS_NBWORD) {
879 * Compute difference between actual and desired value.
881 if ((wdiff = *b ^ val)) {
883 * Different, compute first wrong bit and return.
885 xfs_trans_brelse(tp, bp);
886 i += XFS_RTLOBIT(wdiff);
893 * Go on to next block if that's where the next word is
894 * and we need the next word.
896 if (++word == XFS_BLOCKWSIZE(mp) && i < len) {
898 * If done with this block, get the next one.
900 xfs_trans_brelse(tp, bp);
901 error = xfs_rtbuf_get(mp, tp, ++block, 0, &bp);
905 b = bufp = bp->b_addr;
909 * Go on to the next word in the buffer.
915 * If not ending on a word boundary, deal with the last
918 if ((lastbit = len - i)) {
920 * Mask of relevant bits.
922 mask = ((xfs_rtword_t)1 << lastbit) - 1;
924 * Compute difference between actual and desired value.
926 if ((wdiff = (*b ^ val) & mask)) {
928 * Different, compute first wrong bit and return.
930 xfs_trans_brelse(tp, bp);
931 i += XFS_RTLOBIT(wdiff);
939 * Successful, return.
941 xfs_trans_brelse(tp, bp);
949 * Check that the given extent (block range) is allocated already.
951 STATIC int /* error */
952 xfs_rtcheck_alloc_range(
953 xfs_mount_t *mp, /* file system mount point */
954 xfs_trans_t *tp, /* transaction pointer */
955 xfs_rtblock_t bno, /* starting block number of extent */
956 xfs_extlen_t len) /* length of extent */
958 xfs_rtblock_t new; /* dummy for xfs_rtcheck_range */
962 error = xfs_rtcheck_range(mp, tp, bno, len, 0, &new, &stat);
969 #define xfs_rtcheck_alloc_range(m,t,b,l) (0)
972 * Free an extent in the realtime subvolume. Length is expressed in
973 * realtime extents, as is the block number.
977 xfs_trans_t *tp, /* transaction pointer */
978 xfs_rtblock_t bno, /* starting block number to free */
979 xfs_extlen_t len) /* length of extent freed */
981 int error; /* error value */
982 xfs_mount_t *mp; /* file system mount structure */
983 xfs_fsblock_t sb; /* summary file block number */
984 xfs_buf_t *sumbp = NULL; /* summary file block buffer */
988 ASSERT(mp->m_rbmip->i_itemp != NULL);
989 ASSERT(xfs_isilocked(mp->m_rbmip, XFS_ILOCK_EXCL));
991 error = xfs_rtcheck_alloc_range(mp, tp, bno, len);
996 * Free the range of realtime blocks.
998 error = xfs_rtfree_range(mp, tp, bno, len, &sumbp, &sb);
1003 * Mark more blocks free in the superblock.
1005 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FREXTENTS, (long)len);
1007 * If we've now freed all the blocks, reset the file sequence
1010 if (tp->t_frextents_delta + mp->m_sb.sb_frextents ==
1011 mp->m_sb.sb_rextents) {
1012 if (!(mp->m_rbmip->i_d.di_flags & XFS_DIFLAG_NEWRTBM))
1013 mp->m_rbmip->i_d.di_flags |= XFS_DIFLAG_NEWRTBM;
1014 *(uint64_t *)&VFS_I(mp->m_rbmip)->i_atime = 0;
1015 xfs_trans_log_inode(tp, mp->m_rbmip, XFS_ILOG_CORE);
1020 /* Find all the free records within a given range. */
1022 xfs_rtalloc_query_range(
1023 struct xfs_trans *tp,
1024 struct xfs_rtalloc_rec *low_rec,
1025 struct xfs_rtalloc_rec *high_rec,
1026 xfs_rtalloc_query_range_fn fn,
1029 struct xfs_rtalloc_rec rec;
1030 struct xfs_mount *mp = tp->t_mountp;
1031 xfs_rtblock_t rtstart;
1032 xfs_rtblock_t rtend;
1037 if (low_rec->ar_startblock > high_rec->ar_startblock)
1039 else if (low_rec->ar_startblock == high_rec->ar_startblock)
1042 /* Iterate the bitmap, looking for discrepancies. */
1043 rtstart = low_rec->ar_startblock;
1044 rem = high_rec->ar_startblock - rtstart;
1046 /* Is the first block free? */
1047 error = xfs_rtcheck_range(mp, tp, rtstart, 1, 1, &rtend,
1052 /* How long does the extent go for? */
1053 error = xfs_rtfind_forw(mp, tp, rtstart,
1054 high_rec->ar_startblock - 1, &rtend);
1059 rec.ar_startblock = rtstart;
1060 rec.ar_blockcount = rtend - rtstart + 1;
1062 error = fn(tp, &rec, priv);
1067 rem -= rtend - rtstart + 1;
1068 rtstart = rtend + 1;
1074 /* Find all the free records. */
1076 xfs_rtalloc_query_all(
1077 struct xfs_trans *tp,
1078 xfs_rtalloc_query_range_fn fn,
1081 struct xfs_rtalloc_rec keys[2];
1083 keys[0].ar_startblock = 0;
1084 keys[1].ar_startblock = tp->t_mountp->m_sb.sb_rblocks;
1085 keys[0].ar_blockcount = keys[1].ar_blockcount = 0;
1087 return xfs_rtalloc_query_range(tp, &keys[0], &keys[1], fn, priv);