2 * Copyright (c) 2000-2002,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_format.h"
21 #include "xfs_log_format.h"
22 #include "xfs_shared.h"
23 #include "xfs_trans_resv.h"
27 #include "xfs_mount.h"
28 #include "xfs_inode.h"
29 #include "xfs_btree.h"
30 #include "xfs_alloc_btree.h"
31 #include "xfs_alloc.h"
32 #include "xfs_extent_busy.h"
33 #include "xfs_error.h"
34 #include "xfs_cksum.h"
35 #include "xfs_trace.h"
36 #include "xfs_trans.h"
37 #include "xfs_buf_item.h"
40 struct workqueue_struct
*xfs_alloc_wq
;
42 #define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
44 #define XFSA_FIXUP_BNO_OK 1
45 #define XFSA_FIXUP_CNT_OK 2
47 STATIC
int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t
*);
48 STATIC
int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t
*);
49 STATIC
int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t
*);
50 STATIC
int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t
*,
51 xfs_btree_cur_t
*, xfs_agblock_t
*, xfs_extlen_t
*, int *);
54 * Lookup the record equal to [bno, len] in the btree given by cur.
56 STATIC
int /* error */
58 struct xfs_btree_cur
*cur
, /* btree cursor */
59 xfs_agblock_t bno
, /* starting block of extent */
60 xfs_extlen_t len
, /* length of extent */
61 int *stat
) /* success/failure */
63 cur
->bc_rec
.a
.ar_startblock
= bno
;
64 cur
->bc_rec
.a
.ar_blockcount
= len
;
65 return xfs_btree_lookup(cur
, XFS_LOOKUP_EQ
, stat
);
69 * Lookup the first record greater than or equal to [bno, len]
70 * in the btree given by cur.
74 struct xfs_btree_cur
*cur
, /* btree cursor */
75 xfs_agblock_t bno
, /* starting block of extent */
76 xfs_extlen_t len
, /* length of extent */
77 int *stat
) /* success/failure */
79 cur
->bc_rec
.a
.ar_startblock
= bno
;
80 cur
->bc_rec
.a
.ar_blockcount
= len
;
81 return xfs_btree_lookup(cur
, XFS_LOOKUP_GE
, stat
);
85 * Lookup the first record less than or equal to [bno, len]
86 * in the btree given by cur.
90 struct xfs_btree_cur
*cur
, /* btree cursor */
91 xfs_agblock_t bno
, /* starting block of extent */
92 xfs_extlen_t len
, /* length of extent */
93 int *stat
) /* success/failure */
95 cur
->bc_rec
.a
.ar_startblock
= bno
;
96 cur
->bc_rec
.a
.ar_blockcount
= len
;
97 return xfs_btree_lookup(cur
, XFS_LOOKUP_LE
, stat
);
101 * Update the record referred to by cur to the value given
103 * This either works (return 0) or gets an EFSCORRUPTED error.
105 STATIC
int /* error */
107 struct xfs_btree_cur
*cur
, /* btree cursor */
108 xfs_agblock_t bno
, /* starting block of extent */
109 xfs_extlen_t len
) /* length of extent */
111 union xfs_btree_rec rec
;
113 rec
.alloc
.ar_startblock
= cpu_to_be32(bno
);
114 rec
.alloc
.ar_blockcount
= cpu_to_be32(len
);
115 return xfs_btree_update(cur
, &rec
);
119 * Get the data from the pointed-to record.
123 struct xfs_btree_cur
*cur
, /* btree cursor */
124 xfs_agblock_t
*bno
, /* output: starting block of extent */
125 xfs_extlen_t
*len
, /* output: length of extent */
126 int *stat
) /* output: success/failure */
128 union xfs_btree_rec
*rec
;
131 error
= xfs_btree_get_rec(cur
, &rec
, stat
);
132 if (!error
&& *stat
== 1) {
133 *bno
= be32_to_cpu(rec
->alloc
.ar_startblock
);
134 *len
= be32_to_cpu(rec
->alloc
.ar_blockcount
);
140 * Compute aligned version of the found extent.
141 * Takes alignment and min length into account.
144 xfs_alloc_compute_aligned(
145 xfs_alloc_arg_t
*args
, /* allocation argument structure */
146 xfs_agblock_t foundbno
, /* starting block in found extent */
147 xfs_extlen_t foundlen
, /* length in found extent */
148 xfs_agblock_t
*resbno
, /* result block number */
149 xfs_extlen_t
*reslen
) /* result length */
154 /* Trim busy sections out of found extent */
155 xfs_extent_busy_trim(args
, foundbno
, foundlen
, &bno
, &len
);
157 if (args
->alignment
> 1 && len
>= args
->minlen
) {
158 xfs_agblock_t aligned_bno
= roundup(bno
, args
->alignment
);
159 xfs_extlen_t diff
= aligned_bno
- bno
;
161 *resbno
= aligned_bno
;
162 *reslen
= diff
>= len
? 0 : len
- diff
;
170 * Compute best start block and diff for "near" allocations.
171 * freelen >= wantlen already checked by caller.
173 STATIC xfs_extlen_t
/* difference value (absolute) */
174 xfs_alloc_compute_diff(
175 xfs_agblock_t wantbno
, /* target starting block */
176 xfs_extlen_t wantlen
, /* target length */
177 xfs_extlen_t alignment
, /* target alignment */
178 char userdata
, /* are we allocating data? */
179 xfs_agblock_t freebno
, /* freespace's starting block */
180 xfs_extlen_t freelen
, /* freespace's length */
181 xfs_agblock_t
*newbnop
) /* result: best start block from free */
183 xfs_agblock_t freeend
; /* end of freespace extent */
184 xfs_agblock_t newbno1
; /* return block number */
185 xfs_agblock_t newbno2
; /* other new block number */
186 xfs_extlen_t newlen1
=0; /* length with newbno1 */
187 xfs_extlen_t newlen2
=0; /* length with newbno2 */
188 xfs_agblock_t wantend
; /* end of target extent */
190 ASSERT(freelen
>= wantlen
);
191 freeend
= freebno
+ freelen
;
192 wantend
= wantbno
+ wantlen
;
194 * We want to allocate from the start of a free extent if it is past
195 * the desired block or if we are allocating user data and the free
196 * extent is before desired block. The second case is there to allow
197 * for contiguous allocation from the remaining free space if the file
198 * grows in the short term.
200 if (freebno
>= wantbno
|| (userdata
&& freeend
< wantend
)) {
201 if ((newbno1
= roundup(freebno
, alignment
)) >= freeend
)
202 newbno1
= NULLAGBLOCK
;
203 } else if (freeend
>= wantend
&& alignment
> 1) {
204 newbno1
= roundup(wantbno
, alignment
);
205 newbno2
= newbno1
- alignment
;
206 if (newbno1
>= freeend
)
207 newbno1
= NULLAGBLOCK
;
209 newlen1
= XFS_EXTLEN_MIN(wantlen
, freeend
- newbno1
);
210 if (newbno2
< freebno
)
211 newbno2
= NULLAGBLOCK
;
213 newlen2
= XFS_EXTLEN_MIN(wantlen
, freeend
- newbno2
);
214 if (newbno1
!= NULLAGBLOCK
&& newbno2
!= NULLAGBLOCK
) {
215 if (newlen1
< newlen2
||
216 (newlen1
== newlen2
&&
217 XFS_ABSDIFF(newbno1
, wantbno
) >
218 XFS_ABSDIFF(newbno2
, wantbno
)))
220 } else if (newbno2
!= NULLAGBLOCK
)
222 } else if (freeend
>= wantend
) {
224 } else if (alignment
> 1) {
225 newbno1
= roundup(freeend
- wantlen
, alignment
);
226 if (newbno1
> freeend
- wantlen
&&
227 newbno1
- alignment
>= freebno
)
228 newbno1
-= alignment
;
229 else if (newbno1
>= freeend
)
230 newbno1
= NULLAGBLOCK
;
232 newbno1
= freeend
- wantlen
;
234 return newbno1
== NULLAGBLOCK
? 0 : XFS_ABSDIFF(newbno1
, wantbno
);
238 * Fix up the length, based on mod and prod.
239 * len should be k * prod + mod for some k.
240 * If len is too small it is returned unchanged.
241 * If len hits maxlen it is left alone.
245 xfs_alloc_arg_t
*args
) /* allocation argument structure */
250 ASSERT(args
->mod
< args
->prod
);
252 ASSERT(rlen
>= args
->minlen
);
253 ASSERT(rlen
<= args
->maxlen
);
254 if (args
->prod
<= 1 || rlen
< args
->mod
|| rlen
== args
->maxlen
||
255 (args
->mod
== 0 && rlen
< args
->prod
))
257 k
= rlen
% args
->prod
;
261 if ((int)(rlen
= rlen
- k
- args
->mod
) < (int)args
->minlen
)
264 if ((int)(rlen
= rlen
- args
->prod
- (args
->mod
- k
)) <
268 ASSERT(rlen
>= args
->minlen
);
269 ASSERT(rlen
<= args
->maxlen
);
274 * Fix up length if there is too little space left in the a.g.
275 * Return 1 if ok, 0 if too little, should give up.
278 xfs_alloc_fix_minleft(
279 xfs_alloc_arg_t
*args
) /* allocation argument structure */
281 xfs_agf_t
*agf
; /* a.g. freelist header */
282 int diff
; /* free space difference */
284 if (args
->minleft
== 0)
286 agf
= XFS_BUF_TO_AGF(args
->agbp
);
287 diff
= be32_to_cpu(agf
->agf_freeblks
)
288 - args
->len
- args
->minleft
;
291 args
->len
+= diff
; /* shrink the allocated space */
292 if (args
->len
>= args
->minlen
)
294 args
->agbno
= NULLAGBLOCK
;
299 * Update the two btrees, logically removing from freespace the extent
300 * starting at rbno, rlen blocks. The extent is contained within the
301 * actual (current) free extent fbno for flen blocks.
302 * Flags are passed in indicating whether the cursors are set to the
305 STATIC
int /* error code */
306 xfs_alloc_fixup_trees(
307 xfs_btree_cur_t
*cnt_cur
, /* cursor for by-size btree */
308 xfs_btree_cur_t
*bno_cur
, /* cursor for by-block btree */
309 xfs_agblock_t fbno
, /* starting block of free extent */
310 xfs_extlen_t flen
, /* length of free extent */
311 xfs_agblock_t rbno
, /* starting block of returned extent */
312 xfs_extlen_t rlen
, /* length of returned extent */
313 int flags
) /* flags, XFSA_FIXUP_... */
315 int error
; /* error code */
316 int i
; /* operation results */
317 xfs_agblock_t nfbno1
; /* first new free startblock */
318 xfs_agblock_t nfbno2
; /* second new free startblock */
319 xfs_extlen_t nflen1
=0; /* first new free length */
320 xfs_extlen_t nflen2
=0; /* second new free length */
323 * Look up the record in the by-size tree if necessary.
325 if (flags
& XFSA_FIXUP_CNT_OK
) {
327 if ((error
= xfs_alloc_get_rec(cnt_cur
, &nfbno1
, &nflen1
, &i
)))
329 XFS_WANT_CORRUPTED_RETURN(
330 i
== 1 && nfbno1
== fbno
&& nflen1
== flen
);
333 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, fbno
, flen
, &i
)))
335 XFS_WANT_CORRUPTED_RETURN(i
== 1);
338 * Look up the record in the by-block tree if necessary.
340 if (flags
& XFSA_FIXUP_BNO_OK
) {
342 if ((error
= xfs_alloc_get_rec(bno_cur
, &nfbno1
, &nflen1
, &i
)))
344 XFS_WANT_CORRUPTED_RETURN(
345 i
== 1 && nfbno1
== fbno
&& nflen1
== flen
);
348 if ((error
= xfs_alloc_lookup_eq(bno_cur
, fbno
, flen
, &i
)))
350 XFS_WANT_CORRUPTED_RETURN(i
== 1);
354 if (bno_cur
->bc_nlevels
== 1 && cnt_cur
->bc_nlevels
== 1) {
355 struct xfs_btree_block
*bnoblock
;
356 struct xfs_btree_block
*cntblock
;
358 bnoblock
= XFS_BUF_TO_BLOCK(bno_cur
->bc_bufs
[0]);
359 cntblock
= XFS_BUF_TO_BLOCK(cnt_cur
->bc_bufs
[0]);
361 XFS_WANT_CORRUPTED_RETURN(
362 bnoblock
->bb_numrecs
== cntblock
->bb_numrecs
);
367 * Deal with all four cases: the allocated record is contained
368 * within the freespace record, so we can have new freespace
369 * at either (or both) end, or no freespace remaining.
371 if (rbno
== fbno
&& rlen
== flen
)
372 nfbno1
= nfbno2
= NULLAGBLOCK
;
373 else if (rbno
== fbno
) {
374 nfbno1
= rbno
+ rlen
;
375 nflen1
= flen
- rlen
;
376 nfbno2
= NULLAGBLOCK
;
377 } else if (rbno
+ rlen
== fbno
+ flen
) {
379 nflen1
= flen
- rlen
;
380 nfbno2
= NULLAGBLOCK
;
383 nflen1
= rbno
- fbno
;
384 nfbno2
= rbno
+ rlen
;
385 nflen2
= (fbno
+ flen
) - nfbno2
;
388 * Delete the entry from the by-size btree.
390 if ((error
= xfs_btree_delete(cnt_cur
, &i
)))
392 XFS_WANT_CORRUPTED_RETURN(i
== 1);
394 * Add new by-size btree entry(s).
396 if (nfbno1
!= NULLAGBLOCK
) {
397 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, nfbno1
, nflen1
, &i
)))
399 XFS_WANT_CORRUPTED_RETURN(i
== 0);
400 if ((error
= xfs_btree_insert(cnt_cur
, &i
)))
402 XFS_WANT_CORRUPTED_RETURN(i
== 1);
404 if (nfbno2
!= NULLAGBLOCK
) {
405 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, nfbno2
, nflen2
, &i
)))
407 XFS_WANT_CORRUPTED_RETURN(i
== 0);
408 if ((error
= xfs_btree_insert(cnt_cur
, &i
)))
410 XFS_WANT_CORRUPTED_RETURN(i
== 1);
413 * Fix up the by-block btree entry(s).
415 if (nfbno1
== NULLAGBLOCK
) {
417 * No remaining freespace, just delete the by-block tree entry.
419 if ((error
= xfs_btree_delete(bno_cur
, &i
)))
421 XFS_WANT_CORRUPTED_RETURN(i
== 1);
424 * Update the by-block entry to start later|be shorter.
426 if ((error
= xfs_alloc_update(bno_cur
, nfbno1
, nflen1
)))
429 if (nfbno2
!= NULLAGBLOCK
) {
431 * 2 resulting free entries, need to add one.
433 if ((error
= xfs_alloc_lookup_eq(bno_cur
, nfbno2
, nflen2
, &i
)))
435 XFS_WANT_CORRUPTED_RETURN(i
== 0);
436 if ((error
= xfs_btree_insert(bno_cur
, &i
)))
438 XFS_WANT_CORRUPTED_RETURN(i
== 1);
447 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
448 struct xfs_agfl
*agfl
= XFS_BUF_TO_AGFL(bp
);
451 if (!uuid_equal(&agfl
->agfl_uuid
, &mp
->m_sb
.sb_uuid
))
453 if (be32_to_cpu(agfl
->agfl_magicnum
) != XFS_AGFL_MAGIC
)
456 * during growfs operations, the perag is not fully initialised,
457 * so we can't use it for any useful checking. growfs ensures we can't
458 * use it by using uncached buffers that don't have the perag attached
459 * so we can detect and avoid this problem.
461 if (bp
->b_pag
&& be32_to_cpu(agfl
->agfl_seqno
) != bp
->b_pag
->pag_agno
)
464 for (i
= 0; i
< XFS_AGFL_SIZE(mp
); i
++) {
465 if (be32_to_cpu(agfl
->agfl_bno
[i
]) != NULLAGBLOCK
&&
466 be32_to_cpu(agfl
->agfl_bno
[i
]) >= mp
->m_sb
.sb_agblocks
)
473 xfs_agfl_read_verify(
476 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
480 * There is no verification of non-crc AGFLs because mkfs does not
481 * initialise the AGFL to zero or NULL. Hence the only valid part of the
482 * AGFL is what the AGF says is active. We can't get to the AGF, so we
483 * can't verify just those entries are valid.
485 if (!xfs_sb_version_hascrc(&mp
->m_sb
))
488 agfl_ok
= xfs_verify_cksum(bp
->b_addr
, BBTOB(bp
->b_length
),
489 offsetof(struct xfs_agfl
, agfl_crc
));
491 agfl_ok
= agfl_ok
&& xfs_agfl_verify(bp
);
494 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
, mp
, bp
->b_addr
);
495 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
500 xfs_agfl_write_verify(
503 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
504 struct xfs_buf_log_item
*bip
= bp
->b_fspriv
;
506 /* no verification of non-crc AGFLs */
507 if (!xfs_sb_version_hascrc(&mp
->m_sb
))
510 if (!xfs_agfl_verify(bp
)) {
511 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
, mp
, bp
->b_addr
);
512 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
517 XFS_BUF_TO_AGFL(bp
)->agfl_lsn
= cpu_to_be64(bip
->bli_item
.li_lsn
);
519 xfs_update_cksum(bp
->b_addr
, BBTOB(bp
->b_length
),
520 offsetof(struct xfs_agfl
, agfl_crc
));
523 const struct xfs_buf_ops xfs_agfl_buf_ops
= {
524 .verify_read
= xfs_agfl_read_verify
,
525 .verify_write
= xfs_agfl_write_verify
,
529 * Read in the allocation group free block array.
531 STATIC
int /* error */
533 xfs_mount_t
*mp
, /* mount point structure */
534 xfs_trans_t
*tp
, /* transaction pointer */
535 xfs_agnumber_t agno
, /* allocation group number */
536 xfs_buf_t
**bpp
) /* buffer for the ag free block array */
538 xfs_buf_t
*bp
; /* return value */
541 ASSERT(agno
!= NULLAGNUMBER
);
542 error
= xfs_trans_read_buf(
543 mp
, tp
, mp
->m_ddev_targp
,
544 XFS_AG_DADDR(mp
, agno
, XFS_AGFL_DADDR(mp
)),
545 XFS_FSS_TO_BB(mp
, 1), 0, &bp
, &xfs_agfl_buf_ops
);
548 ASSERT(!xfs_buf_geterror(bp
));
549 xfs_buf_set_ref(bp
, XFS_AGFL_REF
);
555 xfs_alloc_update_counters(
556 struct xfs_trans
*tp
,
557 struct xfs_perag
*pag
,
558 struct xfs_buf
*agbp
,
561 struct xfs_agf
*agf
= XFS_BUF_TO_AGF(agbp
);
563 pag
->pagf_freeblks
+= len
;
564 be32_add_cpu(&agf
->agf_freeblks
, len
);
566 xfs_trans_agblocks_delta(tp
, len
);
567 if (unlikely(be32_to_cpu(agf
->agf_freeblks
) >
568 be32_to_cpu(agf
->agf_length
)))
571 xfs_alloc_log_agf(tp
, agbp
, XFS_AGF_FREEBLKS
);
576 * Allocation group level functions.
580 * Allocate a variable extent in the allocation group agno.
581 * Type and bno are used to determine where in the allocation group the
583 * Extent's length (returned in *len) will be between minlen and maxlen,
584 * and of the form k * prod + mod unless there's nothing that large.
585 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
587 STATIC
int /* error */
588 xfs_alloc_ag_vextent(
589 xfs_alloc_arg_t
*args
) /* argument structure for allocation */
593 ASSERT(args
->minlen
> 0);
594 ASSERT(args
->maxlen
> 0);
595 ASSERT(args
->minlen
<= args
->maxlen
);
596 ASSERT(args
->mod
< args
->prod
);
597 ASSERT(args
->alignment
> 0);
599 * Branch to correct routine based on the type.
602 switch (args
->type
) {
603 case XFS_ALLOCTYPE_THIS_AG
:
604 error
= xfs_alloc_ag_vextent_size(args
);
606 case XFS_ALLOCTYPE_NEAR_BNO
:
607 error
= xfs_alloc_ag_vextent_near(args
);
609 case XFS_ALLOCTYPE_THIS_BNO
:
610 error
= xfs_alloc_ag_vextent_exact(args
);
617 if (error
|| args
->agbno
== NULLAGBLOCK
)
620 ASSERT(args
->len
>= args
->minlen
);
621 ASSERT(args
->len
<= args
->maxlen
);
622 ASSERT(!args
->wasfromfl
|| !args
->isfl
);
623 ASSERT(args
->agbno
% args
->alignment
== 0);
625 if (!args
->wasfromfl
) {
626 error
= xfs_alloc_update_counters(args
->tp
, args
->pag
,
628 -((long)(args
->len
)));
632 ASSERT(!xfs_extent_busy_search(args
->mp
, args
->agno
,
633 args
->agbno
, args
->len
));
637 xfs_trans_mod_sb(args
->tp
, args
->wasdel
?
638 XFS_TRANS_SB_RES_FDBLOCKS
:
639 XFS_TRANS_SB_FDBLOCKS
,
640 -((long)(args
->len
)));
643 XFS_STATS_INC(xs_allocx
);
644 XFS_STATS_ADD(xs_allocb
, args
->len
);
649 * Allocate a variable extent at exactly agno/bno.
650 * Extent's length (returned in *len) will be between minlen and maxlen,
651 * and of the form k * prod + mod unless there's nothing that large.
652 * Return the starting a.g. block (bno), or NULLAGBLOCK if we can't do it.
654 STATIC
int /* error */
655 xfs_alloc_ag_vextent_exact(
656 xfs_alloc_arg_t
*args
) /* allocation argument structure */
658 xfs_btree_cur_t
*bno_cur
;/* by block-number btree cursor */
659 xfs_btree_cur_t
*cnt_cur
;/* by count btree cursor */
661 xfs_agblock_t fbno
; /* start block of found extent */
662 xfs_extlen_t flen
; /* length of found extent */
663 xfs_agblock_t tbno
; /* start block of trimmed extent */
664 xfs_extlen_t tlen
; /* length of trimmed extent */
665 xfs_agblock_t tend
; /* end block of trimmed extent */
666 int i
; /* success/failure of operation */
668 ASSERT(args
->alignment
== 1);
671 * Allocate/initialize a cursor for the by-number freespace btree.
673 bno_cur
= xfs_allocbt_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
674 args
->agno
, XFS_BTNUM_BNO
);
677 * Lookup bno and minlen in the btree (minlen is irrelevant, really).
678 * Look for the closest free block <= bno, it must contain bno
679 * if any free block does.
681 error
= xfs_alloc_lookup_le(bno_cur
, args
->agbno
, args
->minlen
, &i
);
688 * Grab the freespace record.
690 error
= xfs_alloc_get_rec(bno_cur
, &fbno
, &flen
, &i
);
693 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
694 ASSERT(fbno
<= args
->agbno
);
697 * Check for overlapping busy extents.
699 xfs_extent_busy_trim(args
, fbno
, flen
, &tbno
, &tlen
);
702 * Give up if the start of the extent is busy, or the freespace isn't
703 * long enough for the minimum request.
705 if (tbno
> args
->agbno
)
707 if (tlen
< args
->minlen
)
710 if (tend
< args
->agbno
+ args
->minlen
)
714 * End of extent will be smaller of the freespace end and the
715 * maximal requested end.
717 * Fix the length according to mod and prod if given.
719 args
->len
= XFS_AGBLOCK_MIN(tend
, args
->agbno
+ args
->maxlen
)
721 xfs_alloc_fix_len(args
);
722 if (!xfs_alloc_fix_minleft(args
))
725 ASSERT(args
->agbno
+ args
->len
<= tend
);
728 * We are allocating agbno for args->len
729 * Allocate/initialize a cursor for the by-size btree.
731 cnt_cur
= xfs_allocbt_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
732 args
->agno
, XFS_BTNUM_CNT
);
733 ASSERT(args
->agbno
+ args
->len
<=
734 be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
));
735 error
= xfs_alloc_fixup_trees(cnt_cur
, bno_cur
, fbno
, flen
, args
->agbno
,
736 args
->len
, XFSA_FIXUP_BNO_OK
);
738 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_ERROR
);
742 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
743 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
746 trace_xfs_alloc_exact_done(args
);
750 /* Didn't find it, return null. */
751 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
752 args
->agbno
= NULLAGBLOCK
;
753 trace_xfs_alloc_exact_notfound(args
);
757 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_ERROR
);
758 trace_xfs_alloc_exact_error(args
);
763 * Search the btree in a given direction via the search cursor and compare
764 * the records found against the good extent we've already found.
767 xfs_alloc_find_best_extent(
768 struct xfs_alloc_arg
*args
, /* allocation argument structure */
769 struct xfs_btree_cur
**gcur
, /* good cursor */
770 struct xfs_btree_cur
**scur
, /* searching cursor */
771 xfs_agblock_t gdiff
, /* difference for search comparison */
772 xfs_agblock_t
*sbno
, /* extent found by search */
773 xfs_extlen_t
*slen
, /* extent length */
774 xfs_agblock_t
*sbnoa
, /* aligned extent found by search */
775 xfs_extlen_t
*slena
, /* aligned extent length */
776 int dir
) /* 0 = search right, 1 = search left */
783 /* The good extent is perfect, no need to search. */
788 * Look until we find a better one, run out of space or run off the end.
791 error
= xfs_alloc_get_rec(*scur
, sbno
, slen
, &i
);
794 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
795 xfs_alloc_compute_aligned(args
, *sbno
, *slen
, sbnoa
, slena
);
798 * The good extent is closer than this one.
801 if (*sbnoa
>= args
->agbno
+ gdiff
)
804 if (*sbnoa
<= args
->agbno
- gdiff
)
809 * Same distance, compare length and pick the best.
811 if (*slena
>= args
->minlen
) {
812 args
->len
= XFS_EXTLEN_MIN(*slena
, args
->maxlen
);
813 xfs_alloc_fix_len(args
);
815 sdiff
= xfs_alloc_compute_diff(args
->agbno
, args
->len
,
817 args
->userdata
, *sbnoa
,
821 * Choose closer size and invalidate other cursor.
829 error
= xfs_btree_increment(*scur
, 0, &i
);
831 error
= xfs_btree_decrement(*scur
, 0, &i
);
837 xfs_btree_del_cursor(*scur
, XFS_BTREE_NOERROR
);
842 xfs_btree_del_cursor(*gcur
, XFS_BTREE_NOERROR
);
847 /* caller invalidates cursors */
852 * Allocate a variable extent near bno in the allocation group agno.
853 * Extent's length (returned in len) will be between minlen and maxlen,
854 * and of the form k * prod + mod unless there's nothing that large.
855 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
857 STATIC
int /* error */
858 xfs_alloc_ag_vextent_near(
859 xfs_alloc_arg_t
*args
) /* allocation argument structure */
861 xfs_btree_cur_t
*bno_cur_gt
; /* cursor for bno btree, right side */
862 xfs_btree_cur_t
*bno_cur_lt
; /* cursor for bno btree, left side */
863 xfs_btree_cur_t
*cnt_cur
; /* cursor for count btree */
864 xfs_agblock_t gtbno
; /* start bno of right side entry */
865 xfs_agblock_t gtbnoa
; /* aligned ... */
866 xfs_extlen_t gtdiff
; /* difference to right side entry */
867 xfs_extlen_t gtlen
; /* length of right side entry */
868 xfs_extlen_t gtlena
; /* aligned ... */
869 xfs_agblock_t gtnew
; /* useful start bno of right side */
870 int error
; /* error code */
871 int i
; /* result code, temporary */
872 int j
; /* result code, temporary */
873 xfs_agblock_t ltbno
; /* start bno of left side entry */
874 xfs_agblock_t ltbnoa
; /* aligned ... */
875 xfs_extlen_t ltdiff
; /* difference to left side entry */
876 xfs_extlen_t ltlen
; /* length of left side entry */
877 xfs_extlen_t ltlena
; /* aligned ... */
878 xfs_agblock_t ltnew
; /* useful start bno of left side */
879 xfs_extlen_t rlen
; /* length of returned extent */
883 * Randomly don't execute the first algorithm.
885 int dofirst
; /* set to do first algorithm */
887 dofirst
= prandom_u32() & 1;
898 * Get a cursor for the by-size btree.
900 cnt_cur
= xfs_allocbt_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
901 args
->agno
, XFS_BTNUM_CNT
);
904 * See if there are any free extents as big as maxlen.
906 if ((error
= xfs_alloc_lookup_ge(cnt_cur
, 0, args
->maxlen
, &i
)))
909 * If none, then pick up the last entry in the tree unless the
913 if ((error
= xfs_alloc_ag_vextent_small(args
, cnt_cur
, <bno
,
916 if (i
== 0 || ltlen
== 0) {
917 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
918 trace_xfs_alloc_near_noentry(args
);
927 * If the requested extent is large wrt the freespaces available
928 * in this a.g., then the cursor will be pointing to a btree entry
929 * near the right edge of the tree. If it's in the last btree leaf
930 * block, then we just examine all the entries in that block
931 * that are big enough, and pick the best one.
932 * This is written as a while loop so we can break out of it,
933 * but we never loop back to the top.
935 while (xfs_btree_islastblock(cnt_cur
, 0)) {
939 xfs_agblock_t bnew
=0;
946 * Start from the entry that lookup found, sequence through
947 * all larger free blocks. If we're actually pointing at a
948 * record smaller than maxlen, go to the start of this block,
949 * and skip all those smaller than minlen.
951 if (ltlen
|| args
->alignment
> 1) {
952 cnt_cur
->bc_ptrs
[0] = 1;
954 if ((error
= xfs_alloc_get_rec(cnt_cur
, <bno
,
957 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
958 if (ltlen
>= args
->minlen
)
960 if ((error
= xfs_btree_increment(cnt_cur
, 0, &i
)))
963 ASSERT(ltlen
>= args
->minlen
);
967 i
= cnt_cur
->bc_ptrs
[0];
968 for (j
= 1, blen
= 0, bdiff
= 0;
969 !error
&& j
&& (blen
< args
->maxlen
|| bdiff
> 0);
970 error
= xfs_btree_increment(cnt_cur
, 0, &j
)) {
972 * For each entry, decide if it's better than
973 * the previous best entry.
975 if ((error
= xfs_alloc_get_rec(cnt_cur
, <bno
, <len
, &i
)))
977 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
978 xfs_alloc_compute_aligned(args
, ltbno
, ltlen
,
980 if (ltlena
< args
->minlen
)
982 args
->len
= XFS_EXTLEN_MIN(ltlena
, args
->maxlen
);
983 xfs_alloc_fix_len(args
);
984 ASSERT(args
->len
>= args
->minlen
);
985 if (args
->len
< blen
)
987 ltdiff
= xfs_alloc_compute_diff(args
->agbno
, args
->len
,
988 args
->alignment
, args
->userdata
, ltbnoa
,
990 if (ltnew
!= NULLAGBLOCK
&&
991 (args
->len
> blen
|| ltdiff
< bdiff
)) {
995 besti
= cnt_cur
->bc_ptrs
[0];
999 * It didn't work. We COULD be in a case where
1000 * there's a good record somewhere, so try again.
1005 * Point at the best entry, and retrieve it again.
1007 cnt_cur
->bc_ptrs
[0] = besti
;
1008 if ((error
= xfs_alloc_get_rec(cnt_cur
, <bno
, <len
, &i
)))
1010 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1011 ASSERT(ltbno
+ ltlen
<= be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
));
1013 if (!xfs_alloc_fix_minleft(args
)) {
1014 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1015 trace_xfs_alloc_near_nominleft(args
);
1020 * We are allocating starting at bnew for blen blocks.
1023 ASSERT(bnew
>= ltbno
);
1024 ASSERT(bnew
+ blen
<= ltbno
+ ltlen
);
1026 * Set up a cursor for the by-bno tree.
1028 bno_cur_lt
= xfs_allocbt_init_cursor(args
->mp
, args
->tp
,
1029 args
->agbp
, args
->agno
, XFS_BTNUM_BNO
);
1031 * Fix up the btree entries.
1033 if ((error
= xfs_alloc_fixup_trees(cnt_cur
, bno_cur_lt
, ltbno
,
1034 ltlen
, bnew
, blen
, XFSA_FIXUP_CNT_OK
)))
1036 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1037 xfs_btree_del_cursor(bno_cur_lt
, XFS_BTREE_NOERROR
);
1039 trace_xfs_alloc_near_first(args
);
1044 * Search in the by-bno tree to the left and to the right
1045 * simultaneously, until in each case we find a space big enough,
1046 * or run into the edge of the tree. When we run into the edge,
1047 * we deallocate that cursor.
1048 * If both searches succeed, we compare the two spaces and pick
1050 * With alignment, it's possible for both to fail; the upper
1051 * level algorithm that picks allocation groups for allocations
1052 * is not supposed to do this.
1055 * Allocate and initialize the cursor for the leftward search.
1057 bno_cur_lt
= xfs_allocbt_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
1058 args
->agno
, XFS_BTNUM_BNO
);
1060 * Lookup <= bno to find the leftward search's starting point.
1062 if ((error
= xfs_alloc_lookup_le(bno_cur_lt
, args
->agbno
, args
->maxlen
, &i
)))
1066 * Didn't find anything; use this cursor for the rightward
1069 bno_cur_gt
= bno_cur_lt
;
1073 * Found something. Duplicate the cursor for the rightward search.
1075 else if ((error
= xfs_btree_dup_cursor(bno_cur_lt
, &bno_cur_gt
)))
1078 * Increment the cursor, so we will point at the entry just right
1079 * of the leftward entry if any, or to the leftmost entry.
1081 if ((error
= xfs_btree_increment(bno_cur_gt
, 0, &i
)))
1085 * It failed, there are no rightward entries.
1087 xfs_btree_del_cursor(bno_cur_gt
, XFS_BTREE_NOERROR
);
1091 * Loop going left with the leftward cursor, right with the
1092 * rightward cursor, until either both directions give up or
1093 * we find an entry at least as big as minlen.
1097 if ((error
= xfs_alloc_get_rec(bno_cur_lt
, <bno
, <len
, &i
)))
1099 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1100 xfs_alloc_compute_aligned(args
, ltbno
, ltlen
,
1102 if (ltlena
>= args
->minlen
)
1104 if ((error
= xfs_btree_decrement(bno_cur_lt
, 0, &i
)))
1107 xfs_btree_del_cursor(bno_cur_lt
,
1113 if ((error
= xfs_alloc_get_rec(bno_cur_gt
, >bno
, >len
, &i
)))
1115 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1116 xfs_alloc_compute_aligned(args
, gtbno
, gtlen
,
1118 if (gtlena
>= args
->minlen
)
1120 if ((error
= xfs_btree_increment(bno_cur_gt
, 0, &i
)))
1123 xfs_btree_del_cursor(bno_cur_gt
,
1128 } while (bno_cur_lt
|| bno_cur_gt
);
1131 * Got both cursors still active, need to find better entry.
1133 if (bno_cur_lt
&& bno_cur_gt
) {
1134 if (ltlena
>= args
->minlen
) {
1136 * Left side is good, look for a right side entry.
1138 args
->len
= XFS_EXTLEN_MIN(ltlena
, args
->maxlen
);
1139 xfs_alloc_fix_len(args
);
1140 ltdiff
= xfs_alloc_compute_diff(args
->agbno
, args
->len
,
1141 args
->alignment
, args
->userdata
, ltbnoa
,
1144 error
= xfs_alloc_find_best_extent(args
,
1145 &bno_cur_lt
, &bno_cur_gt
,
1146 ltdiff
, >bno
, >len
,
1148 0 /* search right */);
1150 ASSERT(gtlena
>= args
->minlen
);
1153 * Right side is good, look for a left side entry.
1155 args
->len
= XFS_EXTLEN_MIN(gtlena
, args
->maxlen
);
1156 xfs_alloc_fix_len(args
);
1157 gtdiff
= xfs_alloc_compute_diff(args
->agbno
, args
->len
,
1158 args
->alignment
, args
->userdata
, gtbnoa
,
1161 error
= xfs_alloc_find_best_extent(args
,
1162 &bno_cur_gt
, &bno_cur_lt
,
1163 gtdiff
, <bno
, <len
,
1165 1 /* search left */);
1173 * If we couldn't get anything, give up.
1175 if (bno_cur_lt
== NULL
&& bno_cur_gt
== NULL
) {
1176 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1179 trace_xfs_alloc_near_busy(args
);
1180 xfs_log_force(args
->mp
, XFS_LOG_SYNC
);
1183 trace_xfs_alloc_size_neither(args
);
1184 args
->agbno
= NULLAGBLOCK
;
1189 * At this point we have selected a freespace entry, either to the
1190 * left or to the right. If it's on the right, copy all the
1191 * useful variables to the "left" set so we only have one
1192 * copy of this code.
1195 bno_cur_lt
= bno_cur_gt
;
1206 * Fix up the length and compute the useful address.
1208 args
->len
= XFS_EXTLEN_MIN(ltlena
, args
->maxlen
);
1209 xfs_alloc_fix_len(args
);
1210 if (!xfs_alloc_fix_minleft(args
)) {
1211 trace_xfs_alloc_near_nominleft(args
);
1212 xfs_btree_del_cursor(bno_cur_lt
, XFS_BTREE_NOERROR
);
1213 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1217 (void)xfs_alloc_compute_diff(args
->agbno
, rlen
, args
->alignment
,
1218 args
->userdata
, ltbnoa
, ltlena
, <new
);
1219 ASSERT(ltnew
>= ltbno
);
1220 ASSERT(ltnew
+ rlen
<= ltbnoa
+ ltlena
);
1221 ASSERT(ltnew
+ rlen
<= be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
));
1222 args
->agbno
= ltnew
;
1224 if ((error
= xfs_alloc_fixup_trees(cnt_cur
, bno_cur_lt
, ltbno
, ltlen
,
1225 ltnew
, rlen
, XFSA_FIXUP_BNO_OK
)))
1229 trace_xfs_alloc_near_greater(args
);
1231 trace_xfs_alloc_near_lesser(args
);
1233 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1234 xfs_btree_del_cursor(bno_cur_lt
, XFS_BTREE_NOERROR
);
1238 trace_xfs_alloc_near_error(args
);
1239 if (cnt_cur
!= NULL
)
1240 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_ERROR
);
1241 if (bno_cur_lt
!= NULL
)
1242 xfs_btree_del_cursor(bno_cur_lt
, XFS_BTREE_ERROR
);
1243 if (bno_cur_gt
!= NULL
)
1244 xfs_btree_del_cursor(bno_cur_gt
, XFS_BTREE_ERROR
);
1249 * Allocate a variable extent anywhere in the allocation group agno.
1250 * Extent's length (returned in len) will be between minlen and maxlen,
1251 * and of the form k * prod + mod unless there's nothing that large.
1252 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
1254 STATIC
int /* error */
1255 xfs_alloc_ag_vextent_size(
1256 xfs_alloc_arg_t
*args
) /* allocation argument structure */
1258 xfs_btree_cur_t
*bno_cur
; /* cursor for bno btree */
1259 xfs_btree_cur_t
*cnt_cur
; /* cursor for cnt btree */
1260 int error
; /* error result */
1261 xfs_agblock_t fbno
; /* start of found freespace */
1262 xfs_extlen_t flen
; /* length of found freespace */
1263 int i
; /* temp status variable */
1264 xfs_agblock_t rbno
; /* returned block number */
1265 xfs_extlen_t rlen
; /* length of returned extent */
1270 * Allocate and initialize a cursor for the by-size btree.
1272 cnt_cur
= xfs_allocbt_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
1273 args
->agno
, XFS_BTNUM_CNT
);
1277 * Look for an entry >= maxlen+alignment-1 blocks.
1279 if ((error
= xfs_alloc_lookup_ge(cnt_cur
, 0,
1280 args
->maxlen
+ args
->alignment
- 1, &i
)))
1284 * If none or we have busy extents that we cannot allocate from, then
1285 * we have to settle for a smaller extent. In the case that there are
1286 * no large extents, this will return the last entry in the tree unless
1287 * the tree is empty. In the case that there are only busy large
1288 * extents, this will return the largest small extent unless there
1289 * are no smaller extents available.
1291 if (!i
|| forced
> 1) {
1292 error
= xfs_alloc_ag_vextent_small(args
, cnt_cur
,
1296 if (i
== 0 || flen
== 0) {
1297 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1298 trace_xfs_alloc_size_noentry(args
);
1302 xfs_alloc_compute_aligned(args
, fbno
, flen
, &rbno
, &rlen
);
1305 * Search for a non-busy extent that is large enough.
1306 * If we are at low space, don't check, or if we fall of
1307 * the end of the btree, turn off the busy check and
1311 error
= xfs_alloc_get_rec(cnt_cur
, &fbno
, &flen
, &i
);
1314 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1316 xfs_alloc_compute_aligned(args
, fbno
, flen
,
1319 if (rlen
>= args
->maxlen
)
1322 error
= xfs_btree_increment(cnt_cur
, 0, &i
);
1327 * Our only valid extents must have been busy.
1328 * Make it unbusy by forcing the log out and
1329 * retrying. If we've been here before, forcing
1330 * the log isn't making the extents available,
1331 * which means they have probably been freed in
1332 * this transaction. In that case, we have to
1333 * give up on them and we'll attempt a minlen
1334 * allocation the next time around.
1336 xfs_btree_del_cursor(cnt_cur
,
1338 trace_xfs_alloc_size_busy(args
);
1340 xfs_log_force(args
->mp
, XFS_LOG_SYNC
);
1347 * In the first case above, we got the last entry in the
1348 * by-size btree. Now we check to see if the space hits maxlen
1349 * once aligned; if not, we search left for something better.
1350 * This can't happen in the second case above.
1352 rlen
= XFS_EXTLEN_MIN(args
->maxlen
, rlen
);
1353 XFS_WANT_CORRUPTED_GOTO(rlen
== 0 ||
1354 (rlen
<= flen
&& rbno
+ rlen
<= fbno
+ flen
), error0
);
1355 if (rlen
< args
->maxlen
) {
1356 xfs_agblock_t bestfbno
;
1357 xfs_extlen_t bestflen
;
1358 xfs_agblock_t bestrbno
;
1359 xfs_extlen_t bestrlen
;
1366 if ((error
= xfs_btree_decrement(cnt_cur
, 0, &i
)))
1370 if ((error
= xfs_alloc_get_rec(cnt_cur
, &fbno
, &flen
,
1373 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1374 if (flen
< bestrlen
)
1376 xfs_alloc_compute_aligned(args
, fbno
, flen
,
1378 rlen
= XFS_EXTLEN_MIN(args
->maxlen
, rlen
);
1379 XFS_WANT_CORRUPTED_GOTO(rlen
== 0 ||
1380 (rlen
<= flen
&& rbno
+ rlen
<= fbno
+ flen
),
1382 if (rlen
> bestrlen
) {
1387 if (rlen
== args
->maxlen
)
1391 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, bestfbno
, bestflen
,
1394 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1400 args
->wasfromfl
= 0;
1402 * Fix up the length.
1405 if (rlen
< args
->minlen
) {
1407 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1408 trace_xfs_alloc_size_busy(args
);
1409 xfs_log_force(args
->mp
, XFS_LOG_SYNC
);
1414 xfs_alloc_fix_len(args
);
1416 if (!xfs_alloc_fix_minleft(args
))
1419 XFS_WANT_CORRUPTED_GOTO(rlen
<= flen
, error0
);
1421 * Allocate and initialize a cursor for the by-block tree.
1423 bno_cur
= xfs_allocbt_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
1424 args
->agno
, XFS_BTNUM_BNO
);
1425 if ((error
= xfs_alloc_fixup_trees(cnt_cur
, bno_cur
, fbno
, flen
,
1426 rbno
, rlen
, XFSA_FIXUP_CNT_OK
)))
1428 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1429 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
1430 cnt_cur
= bno_cur
= NULL
;
1433 XFS_WANT_CORRUPTED_GOTO(
1434 args
->agbno
+ args
->len
<=
1435 be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
),
1437 trace_xfs_alloc_size_done(args
);
1441 trace_xfs_alloc_size_error(args
);
1443 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_ERROR
);
1445 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_ERROR
);
1449 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1450 trace_xfs_alloc_size_nominleft(args
);
1451 args
->agbno
= NULLAGBLOCK
;
1456 * Deal with the case where only small freespaces remain.
1457 * Either return the contents of the last freespace record,
1458 * or allocate space from the freelist if there is nothing in the tree.
1460 STATIC
int /* error */
1461 xfs_alloc_ag_vextent_small(
1462 xfs_alloc_arg_t
*args
, /* allocation argument structure */
1463 xfs_btree_cur_t
*ccur
, /* by-size cursor */
1464 xfs_agblock_t
*fbnop
, /* result block number */
1465 xfs_extlen_t
*flenp
, /* result length */
1466 int *stat
) /* status: 0-freelist, 1-normal/none */
1473 if ((error
= xfs_btree_decrement(ccur
, 0, &i
)))
1476 if ((error
= xfs_alloc_get_rec(ccur
, &fbno
, &flen
, &i
)))
1478 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1481 * Nothing in the btree, try the freelist. Make sure
1482 * to respect minleft even when pulling from the
1485 else if (args
->minlen
== 1 && args
->alignment
== 1 && !args
->isfl
&&
1486 (be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_flcount
)
1488 error
= xfs_alloc_get_freelist(args
->tp
, args
->agbp
, &fbno
, 0);
1491 if (fbno
!= NULLAGBLOCK
) {
1492 xfs_extent_busy_reuse(args
->mp
, args
->agno
, fbno
, 1,
1495 if (args
->userdata
) {
1498 bp
= xfs_btree_get_bufs(args
->mp
, args
->tp
,
1499 args
->agno
, fbno
, 0);
1500 xfs_trans_binval(args
->tp
, bp
);
1504 XFS_WANT_CORRUPTED_GOTO(
1505 args
->agbno
+ args
->len
<=
1506 be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
),
1508 args
->wasfromfl
= 1;
1509 trace_xfs_alloc_small_freelist(args
);
1514 * Nothing in the freelist.
1520 * Can't allocate from the freelist for some reason.
1527 * Can't do the allocation, give up.
1529 if (flen
< args
->minlen
) {
1530 args
->agbno
= NULLAGBLOCK
;
1531 trace_xfs_alloc_small_notenough(args
);
1537 trace_xfs_alloc_small_done(args
);
1541 trace_xfs_alloc_small_error(args
);
1546 * Free the extent starting at agno/bno for length.
1548 STATIC
int /* error */
1550 xfs_trans_t
*tp
, /* transaction pointer */
1551 xfs_buf_t
*agbp
, /* buffer for a.g. freelist header */
1552 xfs_agnumber_t agno
, /* allocation group number */
1553 xfs_agblock_t bno
, /* starting block number */
1554 xfs_extlen_t len
, /* length of extent */
1555 int isfl
) /* set if is freelist blocks - no sb acctg */
1557 xfs_btree_cur_t
*bno_cur
; /* cursor for by-block btree */
1558 xfs_btree_cur_t
*cnt_cur
; /* cursor for by-size btree */
1559 int error
; /* error return value */
1560 xfs_agblock_t gtbno
; /* start of right neighbor block */
1561 xfs_extlen_t gtlen
; /* length of right neighbor block */
1562 int haveleft
; /* have a left neighbor block */
1563 int haveright
; /* have a right neighbor block */
1564 int i
; /* temp, result code */
1565 xfs_agblock_t ltbno
; /* start of left neighbor block */
1566 xfs_extlen_t ltlen
; /* length of left neighbor block */
1567 xfs_mount_t
*mp
; /* mount point struct for filesystem */
1568 xfs_agblock_t nbno
; /* new starting block of freespace */
1569 xfs_extlen_t nlen
; /* new length of freespace */
1570 xfs_perag_t
*pag
; /* per allocation group data */
1574 * Allocate and initialize a cursor for the by-block btree.
1576 bno_cur
= xfs_allocbt_init_cursor(mp
, tp
, agbp
, agno
, XFS_BTNUM_BNO
);
1579 * Look for a neighboring block on the left (lower block numbers)
1580 * that is contiguous with this space.
1582 if ((error
= xfs_alloc_lookup_le(bno_cur
, bno
, len
, &haveleft
)))
1586 * There is a block to our left.
1588 if ((error
= xfs_alloc_get_rec(bno_cur
, <bno
, <len
, &i
)))
1590 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1592 * It's not contiguous, though.
1594 if (ltbno
+ ltlen
< bno
)
1598 * If this failure happens the request to free this
1599 * space was invalid, it's (partly) already free.
1602 XFS_WANT_CORRUPTED_GOTO(ltbno
+ ltlen
<= bno
, error0
);
1606 * Look for a neighboring block on the right (higher block numbers)
1607 * that is contiguous with this space.
1609 if ((error
= xfs_btree_increment(bno_cur
, 0, &haveright
)))
1613 * There is a block to our right.
1615 if ((error
= xfs_alloc_get_rec(bno_cur
, >bno
, >len
, &i
)))
1617 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1619 * It's not contiguous, though.
1621 if (bno
+ len
< gtbno
)
1625 * If this failure happens the request to free this
1626 * space was invalid, it's (partly) already free.
1629 XFS_WANT_CORRUPTED_GOTO(gtbno
>= bno
+ len
, error0
);
1633 * Now allocate and initialize a cursor for the by-size tree.
1635 cnt_cur
= xfs_allocbt_init_cursor(mp
, tp
, agbp
, agno
, XFS_BTNUM_CNT
);
1637 * Have both left and right contiguous neighbors.
1638 * Merge all three into a single free block.
1640 if (haveleft
&& haveright
) {
1642 * Delete the old by-size entry on the left.
1644 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, ltbno
, ltlen
, &i
)))
1646 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1647 if ((error
= xfs_btree_delete(cnt_cur
, &i
)))
1649 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1651 * Delete the old by-size entry on the right.
1653 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, gtbno
, gtlen
, &i
)))
1655 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1656 if ((error
= xfs_btree_delete(cnt_cur
, &i
)))
1658 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1660 * Delete the old by-block entry for the right block.
1662 if ((error
= xfs_btree_delete(bno_cur
, &i
)))
1664 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1666 * Move the by-block cursor back to the left neighbor.
1668 if ((error
= xfs_btree_decrement(bno_cur
, 0, &i
)))
1670 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1673 * Check that this is the right record: delete didn't
1674 * mangle the cursor.
1677 xfs_agblock_t xxbno
;
1680 if ((error
= xfs_alloc_get_rec(bno_cur
, &xxbno
, &xxlen
,
1683 XFS_WANT_CORRUPTED_GOTO(
1684 i
== 1 && xxbno
== ltbno
&& xxlen
== ltlen
,
1689 * Update remaining by-block entry to the new, joined block.
1692 nlen
= len
+ ltlen
+ gtlen
;
1693 if ((error
= xfs_alloc_update(bno_cur
, nbno
, nlen
)))
1697 * Have only a left contiguous neighbor.
1698 * Merge it together with the new freespace.
1700 else if (haveleft
) {
1702 * Delete the old by-size entry on the left.
1704 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, ltbno
, ltlen
, &i
)))
1706 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1707 if ((error
= xfs_btree_delete(cnt_cur
, &i
)))
1709 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1711 * Back up the by-block cursor to the left neighbor, and
1712 * update its length.
1714 if ((error
= xfs_btree_decrement(bno_cur
, 0, &i
)))
1716 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1719 if ((error
= xfs_alloc_update(bno_cur
, nbno
, nlen
)))
1723 * Have only a right contiguous neighbor.
1724 * Merge it together with the new freespace.
1726 else if (haveright
) {
1728 * Delete the old by-size entry on the right.
1730 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, gtbno
, gtlen
, &i
)))
1732 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1733 if ((error
= xfs_btree_delete(cnt_cur
, &i
)))
1735 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1737 * Update the starting block and length of the right
1738 * neighbor in the by-block tree.
1742 if ((error
= xfs_alloc_update(bno_cur
, nbno
, nlen
)))
1746 * No contiguous neighbors.
1747 * Insert the new freespace into the by-block tree.
1752 if ((error
= xfs_btree_insert(bno_cur
, &i
)))
1754 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1756 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
1759 * In all cases we need to insert the new freespace in the by-size tree.
1761 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, nbno
, nlen
, &i
)))
1763 XFS_WANT_CORRUPTED_GOTO(i
== 0, error0
);
1764 if ((error
= xfs_btree_insert(cnt_cur
, &i
)))
1766 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1767 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1771 * Update the freespace totals in the ag and superblock.
1773 pag
= xfs_perag_get(mp
, agno
);
1774 error
= xfs_alloc_update_counters(tp
, pag
, agbp
, len
);
1780 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_FDBLOCKS
, (long)len
);
1781 XFS_STATS_INC(xs_freex
);
1782 XFS_STATS_ADD(xs_freeb
, len
);
1784 trace_xfs_free_extent(mp
, agno
, bno
, len
, isfl
, haveleft
, haveright
);
1789 trace_xfs_free_extent(mp
, agno
, bno
, len
, isfl
, -1, -1);
1791 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_ERROR
);
1793 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_ERROR
);
1798 * Visible (exported) allocation/free functions.
1799 * Some of these are used just by xfs_alloc_btree.c and this file.
1803 * Compute and fill in value of m_ag_maxlevels.
1806 xfs_alloc_compute_maxlevels(
1807 xfs_mount_t
*mp
) /* file system mount structure */
1815 maxleafents
= (mp
->m_sb
.sb_agblocks
+ 1) / 2;
1816 minleafrecs
= mp
->m_alloc_mnr
[0];
1817 minnoderecs
= mp
->m_alloc_mnr
[1];
1818 maxblocks
= (maxleafents
+ minleafrecs
- 1) / minleafrecs
;
1819 for (level
= 1; maxblocks
> 1; level
++)
1820 maxblocks
= (maxblocks
+ minnoderecs
- 1) / minnoderecs
;
1821 mp
->m_ag_maxlevels
= level
;
1825 * Find the length of the longest extent in an AG.
1828 xfs_alloc_longest_free_extent(
1829 struct xfs_mount
*mp
,
1830 struct xfs_perag
*pag
)
1832 xfs_extlen_t need
, delta
= 0;
1834 need
= XFS_MIN_FREELIST_PAG(pag
, mp
);
1835 if (need
> pag
->pagf_flcount
)
1836 delta
= need
- pag
->pagf_flcount
;
1838 if (pag
->pagf_longest
> delta
)
1839 return pag
->pagf_longest
- delta
;
1840 return pag
->pagf_flcount
> 0 || pag
->pagf_longest
> 0;
1844 * Decide whether to use this allocation group for this allocation.
1845 * If so, fix up the btree freelist's size.
1847 STATIC
int /* error */
1848 xfs_alloc_fix_freelist(
1849 xfs_alloc_arg_t
*args
, /* allocation argument structure */
1850 int flags
) /* XFS_ALLOC_FLAG_... */
1852 xfs_buf_t
*agbp
; /* agf buffer pointer */
1853 xfs_agf_t
*agf
; /* a.g. freespace structure pointer */
1854 xfs_buf_t
*agflbp
;/* agfl buffer pointer */
1855 xfs_agblock_t bno
; /* freelist block */
1856 xfs_extlen_t delta
; /* new blocks needed in freelist */
1857 int error
; /* error result code */
1858 xfs_extlen_t longest
;/* longest extent in allocation group */
1859 xfs_mount_t
*mp
; /* file system mount point structure */
1860 xfs_extlen_t need
; /* total blocks needed in freelist */
1861 xfs_perag_t
*pag
; /* per-ag information structure */
1862 xfs_alloc_arg_t targs
; /* local allocation arguments */
1863 xfs_trans_t
*tp
; /* transaction pointer */
1869 if (!pag
->pagf_init
) {
1870 if ((error
= xfs_alloc_read_agf(mp
, tp
, args
->agno
, flags
,
1873 if (!pag
->pagf_init
) {
1874 ASSERT(flags
& XFS_ALLOC_FLAG_TRYLOCK
);
1875 ASSERT(!(flags
& XFS_ALLOC_FLAG_FREEING
));
1883 * If this is a metadata preferred pag and we are user data
1884 * then try somewhere else if we are not being asked to
1885 * try harder at this point
1887 if (pag
->pagf_metadata
&& args
->userdata
&&
1888 (flags
& XFS_ALLOC_FLAG_TRYLOCK
)) {
1889 ASSERT(!(flags
& XFS_ALLOC_FLAG_FREEING
));
1894 if (!(flags
& XFS_ALLOC_FLAG_FREEING
)) {
1896 * If it looks like there isn't a long enough extent, or enough
1897 * total blocks, reject it.
1899 need
= XFS_MIN_FREELIST_PAG(pag
, mp
);
1900 longest
= xfs_alloc_longest_free_extent(mp
, pag
);
1901 if ((args
->minlen
+ args
->alignment
+ args
->minalignslop
- 1) >
1903 ((int)(pag
->pagf_freeblks
+ pag
->pagf_flcount
-
1904 need
- args
->total
) < (int)args
->minleft
)) {
1906 xfs_trans_brelse(tp
, agbp
);
1913 * Get the a.g. freespace buffer.
1914 * Can fail if we're not blocking on locks, and it's held.
1917 if ((error
= xfs_alloc_read_agf(mp
, tp
, args
->agno
, flags
,
1921 ASSERT(flags
& XFS_ALLOC_FLAG_TRYLOCK
);
1922 ASSERT(!(flags
& XFS_ALLOC_FLAG_FREEING
));
1928 * Figure out how many blocks we should have in the freelist.
1930 agf
= XFS_BUF_TO_AGF(agbp
);
1931 need
= XFS_MIN_FREELIST(agf
, mp
);
1933 * If there isn't enough total or single-extent, reject it.
1935 if (!(flags
& XFS_ALLOC_FLAG_FREEING
)) {
1936 delta
= need
> be32_to_cpu(agf
->agf_flcount
) ?
1937 (need
- be32_to_cpu(agf
->agf_flcount
)) : 0;
1938 longest
= be32_to_cpu(agf
->agf_longest
);
1939 longest
= (longest
> delta
) ? (longest
- delta
) :
1940 (be32_to_cpu(agf
->agf_flcount
) > 0 || longest
> 0);
1941 if ((args
->minlen
+ args
->alignment
+ args
->minalignslop
- 1) >
1943 ((int)(be32_to_cpu(agf
->agf_freeblks
) +
1944 be32_to_cpu(agf
->agf_flcount
) - need
- args
->total
) <
1945 (int)args
->minleft
)) {
1946 xfs_trans_brelse(tp
, agbp
);
1952 * Make the freelist shorter if it's too long.
1954 while (be32_to_cpu(agf
->agf_flcount
) > need
) {
1957 error
= xfs_alloc_get_freelist(tp
, agbp
, &bno
, 0);
1960 if ((error
= xfs_free_ag_extent(tp
, agbp
, args
->agno
, bno
, 1, 1)))
1962 bp
= xfs_btree_get_bufs(mp
, tp
, args
->agno
, bno
, 0);
1963 xfs_trans_binval(tp
, bp
);
1966 * Initialize the args structure.
1968 memset(&targs
, 0, sizeof(targs
));
1972 targs
.agno
= args
->agno
;
1973 targs
.alignment
= targs
.minlen
= targs
.prod
= targs
.isfl
= 1;
1974 targs
.type
= XFS_ALLOCTYPE_THIS_AG
;
1976 if ((error
= xfs_alloc_read_agfl(mp
, tp
, targs
.agno
, &agflbp
)))
1979 * Make the freelist longer if it's too short.
1981 while (be32_to_cpu(agf
->agf_flcount
) < need
) {
1983 targs
.maxlen
= need
- be32_to_cpu(agf
->agf_flcount
);
1985 * Allocate as many blocks as possible at once.
1987 if ((error
= xfs_alloc_ag_vextent(&targs
))) {
1988 xfs_trans_brelse(tp
, agflbp
);
1992 * Stop if we run out. Won't happen if callers are obeying
1993 * the restrictions correctly. Can happen for free calls
1994 * on a completely full ag.
1996 if (targs
.agbno
== NULLAGBLOCK
) {
1997 if (flags
& XFS_ALLOC_FLAG_FREEING
)
1999 xfs_trans_brelse(tp
, agflbp
);
2004 * Put each allocated block on the list.
2006 for (bno
= targs
.agbno
; bno
< targs
.agbno
+ targs
.len
; bno
++) {
2007 error
= xfs_alloc_put_freelist(tp
, agbp
,
2013 xfs_trans_brelse(tp
, agflbp
);
2019 * Get a block from the freelist.
2020 * Returns with the buffer for the block gotten.
2023 xfs_alloc_get_freelist(
2024 xfs_trans_t
*tp
, /* transaction pointer */
2025 xfs_buf_t
*agbp
, /* buffer containing the agf structure */
2026 xfs_agblock_t
*bnop
, /* block address retrieved from freelist */
2027 int btreeblk
) /* destination is a AGF btree */
2029 xfs_agf_t
*agf
; /* a.g. freespace structure */
2030 xfs_buf_t
*agflbp
;/* buffer for a.g. freelist structure */
2031 xfs_agblock_t bno
; /* block number returned */
2035 xfs_mount_t
*mp
= tp
->t_mountp
;
2036 xfs_perag_t
*pag
; /* per allocation group data */
2039 * Freelist is empty, give up.
2041 agf
= XFS_BUF_TO_AGF(agbp
);
2042 if (!agf
->agf_flcount
) {
2043 *bnop
= NULLAGBLOCK
;
2047 * Read the array of free blocks.
2049 error
= xfs_alloc_read_agfl(mp
, tp
, be32_to_cpu(agf
->agf_seqno
),
2056 * Get the block number and update the data structures.
2058 agfl_bno
= XFS_BUF_TO_AGFL_BNO(mp
, agflbp
);
2059 bno
= be32_to_cpu(agfl_bno
[be32_to_cpu(agf
->agf_flfirst
)]);
2060 be32_add_cpu(&agf
->agf_flfirst
, 1);
2061 xfs_trans_brelse(tp
, agflbp
);
2062 if (be32_to_cpu(agf
->agf_flfirst
) == XFS_AGFL_SIZE(mp
))
2063 agf
->agf_flfirst
= 0;
2065 pag
= xfs_perag_get(mp
, be32_to_cpu(agf
->agf_seqno
));
2066 be32_add_cpu(&agf
->agf_flcount
, -1);
2067 xfs_trans_agflist_delta(tp
, -1);
2068 pag
->pagf_flcount
--;
2071 logflags
= XFS_AGF_FLFIRST
| XFS_AGF_FLCOUNT
;
2073 be32_add_cpu(&agf
->agf_btreeblks
, 1);
2074 pag
->pagf_btreeblks
++;
2075 logflags
|= XFS_AGF_BTREEBLKS
;
2078 xfs_alloc_log_agf(tp
, agbp
, logflags
);
2085 * Log the given fields from the agf structure.
2089 xfs_trans_t
*tp
, /* transaction pointer */
2090 xfs_buf_t
*bp
, /* buffer for a.g. freelist header */
2091 int fields
) /* mask of fields to be logged (XFS_AGF_...) */
2093 int first
; /* first byte offset */
2094 int last
; /* last byte offset */
2095 static const short offsets
[] = {
2096 offsetof(xfs_agf_t
, agf_magicnum
),
2097 offsetof(xfs_agf_t
, agf_versionnum
),
2098 offsetof(xfs_agf_t
, agf_seqno
),
2099 offsetof(xfs_agf_t
, agf_length
),
2100 offsetof(xfs_agf_t
, agf_roots
[0]),
2101 offsetof(xfs_agf_t
, agf_levels
[0]),
2102 offsetof(xfs_agf_t
, agf_flfirst
),
2103 offsetof(xfs_agf_t
, agf_fllast
),
2104 offsetof(xfs_agf_t
, agf_flcount
),
2105 offsetof(xfs_agf_t
, agf_freeblks
),
2106 offsetof(xfs_agf_t
, agf_longest
),
2107 offsetof(xfs_agf_t
, agf_btreeblks
),
2108 offsetof(xfs_agf_t
, agf_uuid
),
2112 trace_xfs_agf(tp
->t_mountp
, XFS_BUF_TO_AGF(bp
), fields
, _RET_IP_
);
2114 xfs_trans_buf_set_type(tp
, bp
, XFS_BLFT_AGF_BUF
);
2116 xfs_btree_offsets(fields
, offsets
, XFS_AGF_NUM_BITS
, &first
, &last
);
2117 xfs_trans_log_buf(tp
, bp
, (uint
)first
, (uint
)last
);
2121 * Interface for inode allocation to force the pag data to be initialized.
2124 xfs_alloc_pagf_init(
2125 xfs_mount_t
*mp
, /* file system mount structure */
2126 xfs_trans_t
*tp
, /* transaction pointer */
2127 xfs_agnumber_t agno
, /* allocation group number */
2128 int flags
) /* XFS_ALLOC_FLAGS_... */
2133 if ((error
= xfs_alloc_read_agf(mp
, tp
, agno
, flags
, &bp
)))
2136 xfs_trans_brelse(tp
, bp
);
2141 * Put the block on the freelist for the allocation group.
2144 xfs_alloc_put_freelist(
2145 xfs_trans_t
*tp
, /* transaction pointer */
2146 xfs_buf_t
*agbp
, /* buffer for a.g. freelist header */
2147 xfs_buf_t
*agflbp
,/* buffer for a.g. free block array */
2148 xfs_agblock_t bno
, /* block being freed */
2149 int btreeblk
) /* block came from a AGF btree */
2151 xfs_agf_t
*agf
; /* a.g. freespace structure */
2152 __be32
*blockp
;/* pointer to array entry */
2155 xfs_mount_t
*mp
; /* mount structure */
2156 xfs_perag_t
*pag
; /* per allocation group data */
2160 agf
= XFS_BUF_TO_AGF(agbp
);
2163 if (!agflbp
&& (error
= xfs_alloc_read_agfl(mp
, tp
,
2164 be32_to_cpu(agf
->agf_seqno
), &agflbp
)))
2166 be32_add_cpu(&agf
->agf_fllast
, 1);
2167 if (be32_to_cpu(agf
->agf_fllast
) == XFS_AGFL_SIZE(mp
))
2168 agf
->agf_fllast
= 0;
2170 pag
= xfs_perag_get(mp
, be32_to_cpu(agf
->agf_seqno
));
2171 be32_add_cpu(&agf
->agf_flcount
, 1);
2172 xfs_trans_agflist_delta(tp
, 1);
2173 pag
->pagf_flcount
++;
2175 logflags
= XFS_AGF_FLLAST
| XFS_AGF_FLCOUNT
;
2177 be32_add_cpu(&agf
->agf_btreeblks
, -1);
2178 pag
->pagf_btreeblks
--;
2179 logflags
|= XFS_AGF_BTREEBLKS
;
2183 xfs_alloc_log_agf(tp
, agbp
, logflags
);
2185 ASSERT(be32_to_cpu(agf
->agf_flcount
) <= XFS_AGFL_SIZE(mp
));
2187 agfl_bno
= XFS_BUF_TO_AGFL_BNO(mp
, agflbp
);
2188 blockp
= &agfl_bno
[be32_to_cpu(agf
->agf_fllast
)];
2189 *blockp
= cpu_to_be32(bno
);
2190 startoff
= (char *)blockp
- (char *)agflbp
->b_addr
;
2192 xfs_alloc_log_agf(tp
, agbp
, logflags
);
2194 xfs_trans_buf_set_type(tp
, agflbp
, XFS_BLFT_AGFL_BUF
);
2195 xfs_trans_log_buf(tp
, agflbp
, startoff
,
2196 startoff
+ sizeof(xfs_agblock_t
) - 1);
2202 struct xfs_mount
*mp
,
2205 struct xfs_agf
*agf
= XFS_BUF_TO_AGF(bp
);
2207 if (xfs_sb_version_hascrc(&mp
->m_sb
) &&
2208 !uuid_equal(&agf
->agf_uuid
, &mp
->m_sb
.sb_uuid
))
2211 if (!(agf
->agf_magicnum
== cpu_to_be32(XFS_AGF_MAGIC
) &&
2212 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf
->agf_versionnum
)) &&
2213 be32_to_cpu(agf
->agf_freeblks
) <= be32_to_cpu(agf
->agf_length
) &&
2214 be32_to_cpu(agf
->agf_flfirst
) < XFS_AGFL_SIZE(mp
) &&
2215 be32_to_cpu(agf
->agf_fllast
) < XFS_AGFL_SIZE(mp
) &&
2216 be32_to_cpu(agf
->agf_flcount
) <= XFS_AGFL_SIZE(mp
)))
2220 * during growfs operations, the perag is not fully initialised,
2221 * so we can't use it for any useful checking. growfs ensures we can't
2222 * use it by using uncached buffers that don't have the perag attached
2223 * so we can detect and avoid this problem.
2225 if (bp
->b_pag
&& be32_to_cpu(agf
->agf_seqno
) != bp
->b_pag
->pag_agno
)
2228 if (xfs_sb_version_haslazysbcount(&mp
->m_sb
) &&
2229 be32_to_cpu(agf
->agf_btreeblks
) > be32_to_cpu(agf
->agf_length
))
2237 xfs_agf_read_verify(
2240 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
2243 if (xfs_sb_version_hascrc(&mp
->m_sb
))
2244 agf_ok
= xfs_verify_cksum(bp
->b_addr
, BBTOB(bp
->b_length
),
2245 offsetof(struct xfs_agf
, agf_crc
));
2247 agf_ok
= agf_ok
&& xfs_agf_verify(mp
, bp
);
2249 if (unlikely(XFS_TEST_ERROR(!agf_ok
, mp
, XFS_ERRTAG_ALLOC_READ_AGF
,
2250 XFS_RANDOM_ALLOC_READ_AGF
))) {
2251 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
, mp
, bp
->b_addr
);
2252 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
2257 xfs_agf_write_verify(
2260 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
2261 struct xfs_buf_log_item
*bip
= bp
->b_fspriv
;
2263 if (!xfs_agf_verify(mp
, bp
)) {
2264 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
, mp
, bp
->b_addr
);
2265 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
2269 if (!xfs_sb_version_hascrc(&mp
->m_sb
))
2273 XFS_BUF_TO_AGF(bp
)->agf_lsn
= cpu_to_be64(bip
->bli_item
.li_lsn
);
2275 xfs_update_cksum(bp
->b_addr
, BBTOB(bp
->b_length
),
2276 offsetof(struct xfs_agf
, agf_crc
));
2279 const struct xfs_buf_ops xfs_agf_buf_ops
= {
2280 .verify_read
= xfs_agf_read_verify
,
2281 .verify_write
= xfs_agf_write_verify
,
2285 * Read in the allocation group header (free/alloc section).
2289 struct xfs_mount
*mp
, /* mount point structure */
2290 struct xfs_trans
*tp
, /* transaction pointer */
2291 xfs_agnumber_t agno
, /* allocation group number */
2292 int flags
, /* XFS_BUF_ */
2293 struct xfs_buf
**bpp
) /* buffer for the ag freelist header */
2297 trace_xfs_read_agf(mp
, agno
);
2299 ASSERT(agno
!= NULLAGNUMBER
);
2300 error
= xfs_trans_read_buf(
2301 mp
, tp
, mp
->m_ddev_targp
,
2302 XFS_AG_DADDR(mp
, agno
, XFS_AGF_DADDR(mp
)),
2303 XFS_FSS_TO_BB(mp
, 1), flags
, bpp
, &xfs_agf_buf_ops
);
2309 ASSERT(!(*bpp
)->b_error
);
2310 xfs_buf_set_ref(*bpp
, XFS_AGF_REF
);
2315 * Read in the allocation group header (free/alloc section).
2319 struct xfs_mount
*mp
, /* mount point structure */
2320 struct xfs_trans
*tp
, /* transaction pointer */
2321 xfs_agnumber_t agno
, /* allocation group number */
2322 int flags
, /* XFS_ALLOC_FLAG_... */
2323 struct xfs_buf
**bpp
) /* buffer for the ag freelist header */
2325 struct xfs_agf
*agf
; /* ag freelist header */
2326 struct xfs_perag
*pag
; /* per allocation group data */
2329 trace_xfs_alloc_read_agf(mp
, agno
);
2331 ASSERT(agno
!= NULLAGNUMBER
);
2332 error
= xfs_read_agf(mp
, tp
, agno
,
2333 (flags
& XFS_ALLOC_FLAG_TRYLOCK
) ? XBF_TRYLOCK
: 0,
2339 ASSERT(!(*bpp
)->b_error
);
2341 agf
= XFS_BUF_TO_AGF(*bpp
);
2342 pag
= xfs_perag_get(mp
, agno
);
2343 if (!pag
->pagf_init
) {
2344 pag
->pagf_freeblks
= be32_to_cpu(agf
->agf_freeblks
);
2345 pag
->pagf_btreeblks
= be32_to_cpu(agf
->agf_btreeblks
);
2346 pag
->pagf_flcount
= be32_to_cpu(agf
->agf_flcount
);
2347 pag
->pagf_longest
= be32_to_cpu(agf
->agf_longest
);
2348 pag
->pagf_levels
[XFS_BTNUM_BNOi
] =
2349 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_BNOi
]);
2350 pag
->pagf_levels
[XFS_BTNUM_CNTi
] =
2351 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_CNTi
]);
2352 spin_lock_init(&pag
->pagb_lock
);
2353 pag
->pagb_count
= 0;
2354 pag
->pagb_tree
= RB_ROOT
;
2358 else if (!XFS_FORCED_SHUTDOWN(mp
)) {
2359 ASSERT(pag
->pagf_freeblks
== be32_to_cpu(agf
->agf_freeblks
));
2360 ASSERT(pag
->pagf_btreeblks
== be32_to_cpu(agf
->agf_btreeblks
));
2361 ASSERT(pag
->pagf_flcount
== be32_to_cpu(agf
->agf_flcount
));
2362 ASSERT(pag
->pagf_longest
== be32_to_cpu(agf
->agf_longest
));
2363 ASSERT(pag
->pagf_levels
[XFS_BTNUM_BNOi
] ==
2364 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_BNOi
]));
2365 ASSERT(pag
->pagf_levels
[XFS_BTNUM_CNTi
] ==
2366 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_CNTi
]));
2374 * Allocate an extent (variable-size).
2375 * Depending on the allocation type, we either look in a single allocation
2376 * group or loop over the allocation groups to find the result.
2380 xfs_alloc_arg_t
*args
) /* allocation argument structure */
2382 xfs_agblock_t agsize
; /* allocation group size */
2384 int flags
; /* XFS_ALLOC_FLAG_... locking flags */
2385 xfs_extlen_t minleft
;/* minimum left value, temp copy */
2386 xfs_mount_t
*mp
; /* mount structure pointer */
2387 xfs_agnumber_t sagno
; /* starting allocation group number */
2388 xfs_alloctype_t type
; /* input allocation type */
2391 xfs_agnumber_t rotorstep
= xfs_rotorstep
; /* inode32 agf stepper */
2394 type
= args
->otype
= args
->type
;
2395 args
->agbno
= NULLAGBLOCK
;
2397 * Just fix this up, for the case where the last a.g. is shorter
2398 * (or there's only one a.g.) and the caller couldn't easily figure
2399 * that out (xfs_bmap_alloc).
2401 agsize
= mp
->m_sb
.sb_agblocks
;
2402 if (args
->maxlen
> agsize
)
2403 args
->maxlen
= agsize
;
2404 if (args
->alignment
== 0)
2405 args
->alignment
= 1;
2406 ASSERT(XFS_FSB_TO_AGNO(mp
, args
->fsbno
) < mp
->m_sb
.sb_agcount
);
2407 ASSERT(XFS_FSB_TO_AGBNO(mp
, args
->fsbno
) < agsize
);
2408 ASSERT(args
->minlen
<= args
->maxlen
);
2409 ASSERT(args
->minlen
<= agsize
);
2410 ASSERT(args
->mod
< args
->prod
);
2411 if (XFS_FSB_TO_AGNO(mp
, args
->fsbno
) >= mp
->m_sb
.sb_agcount
||
2412 XFS_FSB_TO_AGBNO(mp
, args
->fsbno
) >= agsize
||
2413 args
->minlen
> args
->maxlen
|| args
->minlen
> agsize
||
2414 args
->mod
>= args
->prod
) {
2415 args
->fsbno
= NULLFSBLOCK
;
2416 trace_xfs_alloc_vextent_badargs(args
);
2419 minleft
= args
->minleft
;
2422 case XFS_ALLOCTYPE_THIS_AG
:
2423 case XFS_ALLOCTYPE_NEAR_BNO
:
2424 case XFS_ALLOCTYPE_THIS_BNO
:
2426 * These three force us into a single a.g.
2428 args
->agno
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
2429 args
->pag
= xfs_perag_get(mp
, args
->agno
);
2431 error
= xfs_alloc_fix_freelist(args
, 0);
2432 args
->minleft
= minleft
;
2434 trace_xfs_alloc_vextent_nofix(args
);
2438 trace_xfs_alloc_vextent_noagbp(args
);
2441 args
->agbno
= XFS_FSB_TO_AGBNO(mp
, args
->fsbno
);
2442 if ((error
= xfs_alloc_ag_vextent(args
)))
2445 case XFS_ALLOCTYPE_START_BNO
:
2447 * Try near allocation first, then anywhere-in-ag after
2448 * the first a.g. fails.
2450 if ((args
->userdata
== XFS_ALLOC_INITIAL_USER_DATA
) &&
2451 (mp
->m_flags
& XFS_MOUNT_32BITINODES
)) {
2452 args
->fsbno
= XFS_AGB_TO_FSB(mp
,
2453 ((mp
->m_agfrotor
/ rotorstep
) %
2454 mp
->m_sb
.sb_agcount
), 0);
2457 args
->agbno
= XFS_FSB_TO_AGBNO(mp
, args
->fsbno
);
2458 args
->type
= XFS_ALLOCTYPE_NEAR_BNO
;
2460 case XFS_ALLOCTYPE_ANY_AG
:
2461 case XFS_ALLOCTYPE_START_AG
:
2462 case XFS_ALLOCTYPE_FIRST_AG
:
2464 * Rotate through the allocation groups looking for a winner.
2466 if (type
== XFS_ALLOCTYPE_ANY_AG
) {
2468 * Start with the last place we left off.
2470 args
->agno
= sagno
= (mp
->m_agfrotor
/ rotorstep
) %
2471 mp
->m_sb
.sb_agcount
;
2472 args
->type
= XFS_ALLOCTYPE_THIS_AG
;
2473 flags
= XFS_ALLOC_FLAG_TRYLOCK
;
2474 } else if (type
== XFS_ALLOCTYPE_FIRST_AG
) {
2476 * Start with allocation group given by bno.
2478 args
->agno
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
2479 args
->type
= XFS_ALLOCTYPE_THIS_AG
;
2483 if (type
== XFS_ALLOCTYPE_START_AG
)
2484 args
->type
= XFS_ALLOCTYPE_THIS_AG
;
2486 * Start with the given allocation group.
2488 args
->agno
= sagno
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
2489 flags
= XFS_ALLOC_FLAG_TRYLOCK
;
2492 * Loop over allocation groups twice; first time with
2493 * trylock set, second time without.
2496 args
->pag
= xfs_perag_get(mp
, args
->agno
);
2497 if (no_min
) args
->minleft
= 0;
2498 error
= xfs_alloc_fix_freelist(args
, flags
);
2499 args
->minleft
= minleft
;
2501 trace_xfs_alloc_vextent_nofix(args
);
2505 * If we get a buffer back then the allocation will fly.
2508 if ((error
= xfs_alloc_ag_vextent(args
)))
2513 trace_xfs_alloc_vextent_loopfailed(args
);
2516 * Didn't work, figure out the next iteration.
2518 if (args
->agno
== sagno
&&
2519 type
== XFS_ALLOCTYPE_START_BNO
)
2520 args
->type
= XFS_ALLOCTYPE_THIS_AG
;
2522 * For the first allocation, we can try any AG to get
2523 * space. However, if we already have allocated a
2524 * block, we don't want to try AGs whose number is below
2525 * sagno. Otherwise, we may end up with out-of-order
2526 * locking of AGF, which might cause deadlock.
2528 if (++(args
->agno
) == mp
->m_sb
.sb_agcount
) {
2529 if (args
->firstblock
!= NULLFSBLOCK
)
2535 * Reached the starting a.g., must either be done
2536 * or switch to non-trylock mode.
2538 if (args
->agno
== sagno
) {
2540 args
->agbno
= NULLAGBLOCK
;
2541 trace_xfs_alloc_vextent_allfailed(args
);
2548 if (type
== XFS_ALLOCTYPE_START_BNO
) {
2549 args
->agbno
= XFS_FSB_TO_AGBNO(mp
,
2551 args
->type
= XFS_ALLOCTYPE_NEAR_BNO
;
2555 xfs_perag_put(args
->pag
);
2557 if (bump_rotor
|| (type
== XFS_ALLOCTYPE_ANY_AG
)) {
2558 if (args
->agno
== sagno
)
2559 mp
->m_agfrotor
= (mp
->m_agfrotor
+ 1) %
2560 (mp
->m_sb
.sb_agcount
* rotorstep
);
2562 mp
->m_agfrotor
= (args
->agno
* rotorstep
+ 1) %
2563 (mp
->m_sb
.sb_agcount
* rotorstep
);
2570 if (args
->agbno
== NULLAGBLOCK
)
2571 args
->fsbno
= NULLFSBLOCK
;
2573 args
->fsbno
= XFS_AGB_TO_FSB(mp
, args
->agno
, args
->agbno
);
2575 ASSERT(args
->len
>= args
->minlen
);
2576 ASSERT(args
->len
<= args
->maxlen
);
2577 ASSERT(args
->agbno
% args
->alignment
== 0);
2578 XFS_AG_CHECK_DADDR(mp
, XFS_FSB_TO_DADDR(mp
, args
->fsbno
),
2582 xfs_perag_put(args
->pag
);
2585 xfs_perag_put(args
->pag
);
2591 * Just break up the extent address and hand off to xfs_free_ag_extent
2592 * after fixing up the freelist.
2596 xfs_trans_t
*tp
, /* transaction pointer */
2597 xfs_fsblock_t bno
, /* starting block number of extent */
2598 xfs_extlen_t len
) /* length of extent */
2600 xfs_alloc_arg_t args
;
2604 memset(&args
, 0, sizeof(xfs_alloc_arg_t
));
2606 args
.mp
= tp
->t_mountp
;
2609 * validate that the block number is legal - the enables us to detect
2610 * and handle a silent filesystem corruption rather than crashing.
2612 args
.agno
= XFS_FSB_TO_AGNO(args
.mp
, bno
);
2613 if (args
.agno
>= args
.mp
->m_sb
.sb_agcount
)
2614 return EFSCORRUPTED
;
2616 args
.agbno
= XFS_FSB_TO_AGBNO(args
.mp
, bno
);
2617 if (args
.agbno
>= args
.mp
->m_sb
.sb_agblocks
)
2618 return EFSCORRUPTED
;
2620 args
.pag
= xfs_perag_get(args
.mp
, args
.agno
);
2623 error
= xfs_alloc_fix_freelist(&args
, XFS_ALLOC_FLAG_FREEING
);
2627 /* validate the extent size is legal now we have the agf locked */
2628 if (args
.agbno
+ len
>
2629 be32_to_cpu(XFS_BUF_TO_AGF(args
.agbp
)->agf_length
)) {
2630 error
= EFSCORRUPTED
;
2634 error
= xfs_free_ag_extent(tp
, args
.agbp
, args
.agno
, args
.agbno
, len
, 0);
2636 xfs_extent_busy_insert(tp
, args
.agno
, args
.agbno
, len
, 0);
2638 xfs_perag_put(args
.pag
);