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_types.h"
24 #include "xfs_trans.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_alloc_btree.h"
32 #include "xfs_ialloc_btree.h"
33 #include "xfs_dir2_sf.h"
34 #include "xfs_attr_sf.h"
35 #include "xfs_dinode.h"
36 #include "xfs_inode.h"
37 #include "xfs_btree.h"
38 #include "xfs_ialloc.h"
39 #include "xfs_alloc.h"
40 #include "xfs_error.h"
43 #define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
45 #define XFSA_FIXUP_BNO_OK 1
46 #define XFSA_FIXUP_CNT_OK 2
49 xfs_alloc_search_busy(xfs_trans_t
*tp
,
54 #if defined(XFS_ALLOC_TRACE)
55 ktrace_t
*xfs_alloc_trace_buf
;
57 #define TRACE_ALLOC(s,a) \
58 xfs_alloc_trace_alloc(__FUNCTION__, s, a, __LINE__)
59 #define TRACE_FREE(s,a,b,x,f) \
60 xfs_alloc_trace_free(__FUNCTION__, s, mp, a, b, x, f, __LINE__)
61 #define TRACE_MODAGF(s,a,f) \
62 xfs_alloc_trace_modagf(__FUNCTION__, s, mp, a, f, __LINE__)
63 #define TRACE_BUSY(__FUNCTION__,s,ag,agb,l,sl,tp) \
64 xfs_alloc_trace_busy(__FUNCTION__, s, mp, ag, agb, l, sl, tp, XFS_ALLOC_KTRACE_BUSY, __LINE__)
65 #define TRACE_UNBUSY(__FUNCTION__,s,ag,sl,tp) \
66 xfs_alloc_trace_busy(__FUNCTION__, s, mp, ag, -1, -1, sl, tp, XFS_ALLOC_KTRACE_UNBUSY, __LINE__)
67 #define TRACE_BUSYSEARCH(__FUNCTION__,s,ag,agb,l,sl,tp) \
68 xfs_alloc_trace_busy(__FUNCTION__, s, mp, ag, agb, l, sl, tp, XFS_ALLOC_KTRACE_BUSYSEARCH, __LINE__)
70 #define TRACE_ALLOC(s,a)
71 #define TRACE_FREE(s,a,b,x,f)
72 #define TRACE_MODAGF(s,a,f)
73 #define TRACE_BUSY(s,a,ag,agb,l,sl,tp)
74 #define TRACE_UNBUSY(fname,s,ag,sl,tp)
75 #define TRACE_BUSYSEARCH(fname,s,ag,agb,l,sl,tp)
76 #endif /* XFS_ALLOC_TRACE */
79 * Prototypes for per-ag allocation routines
82 STATIC
int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t
*);
83 STATIC
int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t
*);
84 STATIC
int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t
*);
85 STATIC
int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t
*,
86 xfs_btree_cur_t
*, xfs_agblock_t
*, xfs_extlen_t
*, int *);
93 * Compute aligned version of the found extent.
94 * Takes alignment and min length into account.
96 STATIC
int /* success (>= minlen) */
97 xfs_alloc_compute_aligned(
98 xfs_agblock_t foundbno
, /* starting block in found extent */
99 xfs_extlen_t foundlen
, /* length in found extent */
100 xfs_extlen_t alignment
, /* alignment for allocation */
101 xfs_extlen_t minlen
, /* minimum length for allocation */
102 xfs_agblock_t
*resbno
, /* result block number */
103 xfs_extlen_t
*reslen
) /* result length */
109 if (alignment
> 1 && foundlen
>= minlen
) {
110 bno
= roundup(foundbno
, alignment
);
111 diff
= bno
- foundbno
;
112 len
= diff
>= foundlen
? 0 : foundlen
- diff
;
119 return len
>= minlen
;
123 * Compute best start block and diff for "near" allocations.
124 * freelen >= wantlen already checked by caller.
126 STATIC xfs_extlen_t
/* difference value (absolute) */
127 xfs_alloc_compute_diff(
128 xfs_agblock_t wantbno
, /* target starting block */
129 xfs_extlen_t wantlen
, /* target length */
130 xfs_extlen_t alignment
, /* target alignment */
131 xfs_agblock_t freebno
, /* freespace's starting block */
132 xfs_extlen_t freelen
, /* freespace's length */
133 xfs_agblock_t
*newbnop
) /* result: best start block from free */
135 xfs_agblock_t freeend
; /* end of freespace extent */
136 xfs_agblock_t newbno1
; /* return block number */
137 xfs_agblock_t newbno2
; /* other new block number */
138 xfs_extlen_t newlen1
=0; /* length with newbno1 */
139 xfs_extlen_t newlen2
=0; /* length with newbno2 */
140 xfs_agblock_t wantend
; /* end of target extent */
142 ASSERT(freelen
>= wantlen
);
143 freeend
= freebno
+ freelen
;
144 wantend
= wantbno
+ wantlen
;
145 if (freebno
>= wantbno
) {
146 if ((newbno1
= roundup(freebno
, alignment
)) >= freeend
)
147 newbno1
= NULLAGBLOCK
;
148 } else if (freeend
>= wantend
&& alignment
> 1) {
149 newbno1
= roundup(wantbno
, alignment
);
150 newbno2
= newbno1
- alignment
;
151 if (newbno1
>= freeend
)
152 newbno1
= NULLAGBLOCK
;
154 newlen1
= XFS_EXTLEN_MIN(wantlen
, freeend
- newbno1
);
155 if (newbno2
< freebno
)
156 newbno2
= NULLAGBLOCK
;
158 newlen2
= XFS_EXTLEN_MIN(wantlen
, freeend
- newbno2
);
159 if (newbno1
!= NULLAGBLOCK
&& newbno2
!= NULLAGBLOCK
) {
160 if (newlen1
< newlen2
||
161 (newlen1
== newlen2
&&
162 XFS_ABSDIFF(newbno1
, wantbno
) >
163 XFS_ABSDIFF(newbno2
, wantbno
)))
165 } else if (newbno2
!= NULLAGBLOCK
)
167 } else if (freeend
>= wantend
) {
169 } else if (alignment
> 1) {
170 newbno1
= roundup(freeend
- wantlen
, alignment
);
171 if (newbno1
> freeend
- wantlen
&&
172 newbno1
- alignment
>= freebno
)
173 newbno1
-= alignment
;
174 else if (newbno1
>= freeend
)
175 newbno1
= NULLAGBLOCK
;
177 newbno1
= freeend
- wantlen
;
179 return newbno1
== NULLAGBLOCK
? 0 : XFS_ABSDIFF(newbno1
, wantbno
);
183 * Fix up the length, based on mod and prod.
184 * len should be k * prod + mod for some k.
185 * If len is too small it is returned unchanged.
186 * If len hits maxlen it is left alone.
190 xfs_alloc_arg_t
*args
) /* allocation argument structure */
195 ASSERT(args
->mod
< args
->prod
);
197 ASSERT(rlen
>= args
->minlen
);
198 ASSERT(rlen
<= args
->maxlen
);
199 if (args
->prod
<= 1 || rlen
< args
->mod
|| rlen
== args
->maxlen
||
200 (args
->mod
== 0 && rlen
< args
->prod
))
202 k
= rlen
% args
->prod
;
206 if ((int)(rlen
= rlen
- k
- args
->mod
) < (int)args
->minlen
)
209 if ((int)(rlen
= rlen
- args
->prod
- (args
->mod
- k
)) <
213 ASSERT(rlen
>= args
->minlen
);
214 ASSERT(rlen
<= args
->maxlen
);
219 * Fix up length if there is too little space left in the a.g.
220 * Return 1 if ok, 0 if too little, should give up.
223 xfs_alloc_fix_minleft(
224 xfs_alloc_arg_t
*args
) /* allocation argument structure */
226 xfs_agf_t
*agf
; /* a.g. freelist header */
227 int diff
; /* free space difference */
229 if (args
->minleft
== 0)
231 agf
= XFS_BUF_TO_AGF(args
->agbp
);
232 diff
= be32_to_cpu(agf
->agf_freeblks
)
233 + be32_to_cpu(agf
->agf_flcount
)
234 - args
->len
- args
->minleft
;
237 args
->len
+= diff
; /* shrink the allocated space */
238 if (args
->len
>= args
->minlen
)
240 args
->agbno
= NULLAGBLOCK
;
245 * Update the two btrees, logically removing from freespace the extent
246 * starting at rbno, rlen blocks. The extent is contained within the
247 * actual (current) free extent fbno for flen blocks.
248 * Flags are passed in indicating whether the cursors are set to the
251 STATIC
int /* error code */
252 xfs_alloc_fixup_trees(
253 xfs_btree_cur_t
*cnt_cur
, /* cursor for by-size btree */
254 xfs_btree_cur_t
*bno_cur
, /* cursor for by-block btree */
255 xfs_agblock_t fbno
, /* starting block of free extent */
256 xfs_extlen_t flen
, /* length of free extent */
257 xfs_agblock_t rbno
, /* starting block of returned extent */
258 xfs_extlen_t rlen
, /* length of returned extent */
259 int flags
) /* flags, XFSA_FIXUP_... */
261 int error
; /* error code */
262 int i
; /* operation results */
263 xfs_agblock_t nfbno1
; /* first new free startblock */
264 xfs_agblock_t nfbno2
; /* second new free startblock */
265 xfs_extlen_t nflen1
=0; /* first new free length */
266 xfs_extlen_t nflen2
=0; /* second new free length */
269 * Look up the record in the by-size tree if necessary.
271 if (flags
& XFSA_FIXUP_CNT_OK
) {
273 if ((error
= xfs_alloc_get_rec(cnt_cur
, &nfbno1
, &nflen1
, &i
)))
275 XFS_WANT_CORRUPTED_RETURN(
276 i
== 1 && nfbno1
== fbno
&& nflen1
== flen
);
279 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, fbno
, flen
, &i
)))
281 XFS_WANT_CORRUPTED_RETURN(i
== 1);
284 * Look up the record in the by-block tree if necessary.
286 if (flags
& XFSA_FIXUP_BNO_OK
) {
288 if ((error
= xfs_alloc_get_rec(bno_cur
, &nfbno1
, &nflen1
, &i
)))
290 XFS_WANT_CORRUPTED_RETURN(
291 i
== 1 && nfbno1
== fbno
&& nflen1
== flen
);
294 if ((error
= xfs_alloc_lookup_eq(bno_cur
, fbno
, flen
, &i
)))
296 XFS_WANT_CORRUPTED_RETURN(i
== 1);
300 xfs_alloc_block_t
*bnoblock
;
301 xfs_alloc_block_t
*cntblock
;
303 if (bno_cur
->bc_nlevels
== 1 &&
304 cnt_cur
->bc_nlevels
== 1) {
305 bnoblock
= XFS_BUF_TO_ALLOC_BLOCK(bno_cur
->bc_bufs
[0]);
306 cntblock
= XFS_BUF_TO_ALLOC_BLOCK(cnt_cur
->bc_bufs
[0]);
307 XFS_WANT_CORRUPTED_RETURN(
308 be16_to_cpu(bnoblock
->bb_numrecs
) ==
309 be16_to_cpu(cntblock
->bb_numrecs
));
314 * Deal with all four cases: the allocated record is contained
315 * within the freespace record, so we can have new freespace
316 * at either (or both) end, or no freespace remaining.
318 if (rbno
== fbno
&& rlen
== flen
)
319 nfbno1
= nfbno2
= NULLAGBLOCK
;
320 else if (rbno
== fbno
) {
321 nfbno1
= rbno
+ rlen
;
322 nflen1
= flen
- rlen
;
323 nfbno2
= NULLAGBLOCK
;
324 } else if (rbno
+ rlen
== fbno
+ flen
) {
326 nflen1
= flen
- rlen
;
327 nfbno2
= NULLAGBLOCK
;
330 nflen1
= rbno
- fbno
;
331 nfbno2
= rbno
+ rlen
;
332 nflen2
= (fbno
+ flen
) - nfbno2
;
335 * Delete the entry from the by-size btree.
337 if ((error
= xfs_alloc_delete(cnt_cur
, &i
)))
339 XFS_WANT_CORRUPTED_RETURN(i
== 1);
341 * Add new by-size btree entry(s).
343 if (nfbno1
!= NULLAGBLOCK
) {
344 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, nfbno1
, nflen1
, &i
)))
346 XFS_WANT_CORRUPTED_RETURN(i
== 0);
347 if ((error
= xfs_alloc_insert(cnt_cur
, &i
)))
349 XFS_WANT_CORRUPTED_RETURN(i
== 1);
351 if (nfbno2
!= NULLAGBLOCK
) {
352 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, nfbno2
, nflen2
, &i
)))
354 XFS_WANT_CORRUPTED_RETURN(i
== 0);
355 if ((error
= xfs_alloc_insert(cnt_cur
, &i
)))
357 XFS_WANT_CORRUPTED_RETURN(i
== 1);
360 * Fix up the by-block btree entry(s).
362 if (nfbno1
== NULLAGBLOCK
) {
364 * No remaining freespace, just delete the by-block tree entry.
366 if ((error
= xfs_alloc_delete(bno_cur
, &i
)))
368 XFS_WANT_CORRUPTED_RETURN(i
== 1);
371 * Update the by-block entry to start later|be shorter.
373 if ((error
= xfs_alloc_update(bno_cur
, nfbno1
, nflen1
)))
376 if (nfbno2
!= NULLAGBLOCK
) {
378 * 2 resulting free entries, need to add one.
380 if ((error
= xfs_alloc_lookup_eq(bno_cur
, nfbno2
, nflen2
, &i
)))
382 XFS_WANT_CORRUPTED_RETURN(i
== 0);
383 if ((error
= xfs_alloc_insert(bno_cur
, &i
)))
385 XFS_WANT_CORRUPTED_RETURN(i
== 1);
391 * Read in the allocation group free block array.
393 STATIC
int /* error */
395 xfs_mount_t
*mp
, /* mount point structure */
396 xfs_trans_t
*tp
, /* transaction pointer */
397 xfs_agnumber_t agno
, /* allocation group number */
398 xfs_buf_t
**bpp
) /* buffer for the ag free block array */
400 xfs_buf_t
*bp
; /* return value */
403 ASSERT(agno
!= NULLAGNUMBER
);
404 error
= xfs_trans_read_buf(
405 mp
, tp
, mp
->m_ddev_targp
,
406 XFS_AG_DADDR(mp
, agno
, XFS_AGFL_DADDR(mp
)),
407 XFS_FSS_TO_BB(mp
, 1), 0, &bp
);
411 ASSERT(!XFS_BUF_GETERROR(bp
));
412 XFS_BUF_SET_VTYPE_REF(bp
, B_FS_AGFL
, XFS_AGFL_REF
);
417 #if defined(XFS_ALLOC_TRACE)
419 * Add an allocation trace entry for an alloc call.
422 xfs_alloc_trace_alloc(
423 const char *name
, /* function tag string */
424 char *str
, /* additional string */
425 xfs_alloc_arg_t
*args
, /* allocation argument structure */
426 int line
) /* source line number */
428 ktrace_enter(xfs_alloc_trace_buf
,
429 (void *)(__psint_t
)(XFS_ALLOC_KTRACE_ALLOC
| (line
<< 16)),
433 (void *)(__psunsigned_t
)args
->agno
,
434 (void *)(__psunsigned_t
)args
->agbno
,
435 (void *)(__psunsigned_t
)args
->minlen
,
436 (void *)(__psunsigned_t
)args
->maxlen
,
437 (void *)(__psunsigned_t
)args
->mod
,
438 (void *)(__psunsigned_t
)args
->prod
,
439 (void *)(__psunsigned_t
)args
->minleft
,
440 (void *)(__psunsigned_t
)args
->total
,
441 (void *)(__psunsigned_t
)args
->alignment
,
442 (void *)(__psunsigned_t
)args
->len
,
443 (void *)((((__psint_t
)args
->type
) << 16) |
444 (__psint_t
)args
->otype
),
445 (void *)(__psint_t
)((args
->wasdel
<< 3) |
446 (args
->wasfromfl
<< 2) |
448 (args
->userdata
<< 0)));
452 * Add an allocation trace entry for a free call.
455 xfs_alloc_trace_free(
456 const char *name
, /* function tag string */
457 char *str
, /* additional string */
458 xfs_mount_t
*mp
, /* file system mount point */
459 xfs_agnumber_t agno
, /* allocation group number */
460 xfs_agblock_t agbno
, /* a.g. relative block number */
461 xfs_extlen_t len
, /* length of extent */
462 int isfl
, /* set if is freelist allocation/free */
463 int line
) /* source line number */
465 ktrace_enter(xfs_alloc_trace_buf
,
466 (void *)(__psint_t
)(XFS_ALLOC_KTRACE_FREE
| (line
<< 16)),
470 (void *)(__psunsigned_t
)agno
,
471 (void *)(__psunsigned_t
)agbno
,
472 (void *)(__psunsigned_t
)len
,
473 (void *)(__psint_t
)isfl
,
474 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
478 * Add an allocation trace entry for modifying an agf.
481 xfs_alloc_trace_modagf(
482 const char *name
, /* function tag string */
483 char *str
, /* additional string */
484 xfs_mount_t
*mp
, /* file system mount point */
485 xfs_agf_t
*agf
, /* new agf value */
486 int flags
, /* logging flags for agf */
487 int line
) /* source line number */
489 ktrace_enter(xfs_alloc_trace_buf
,
490 (void *)(__psint_t
)(XFS_ALLOC_KTRACE_MODAGF
| (line
<< 16)),
494 (void *)(__psint_t
)flags
,
495 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_seqno
),
496 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_length
),
497 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_roots
[XFS_BTNUM_BNO
]),
498 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_roots
[XFS_BTNUM_CNT
]),
499 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_BNO
]),
500 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_CNT
]),
501 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_flfirst
),
502 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_fllast
),
503 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_flcount
),
504 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_freeblks
),
505 (void *)(__psunsigned_t
)be32_to_cpu(agf
->agf_longest
));
509 xfs_alloc_trace_busy(
510 const char *name
, /* function tag string */
511 char *str
, /* additional string */
512 xfs_mount_t
*mp
, /* file system mount point */
513 xfs_agnumber_t agno
, /* allocation group number */
514 xfs_agblock_t agbno
, /* a.g. relative block number */
515 xfs_extlen_t len
, /* length of extent */
516 int slot
, /* perag Busy slot */
518 int trtype
, /* type: add, delete, search */
519 int line
) /* source line number */
521 ktrace_enter(xfs_alloc_trace_buf
,
522 (void *)(__psint_t
)(trtype
| (line
<< 16)),
526 (void *)(__psunsigned_t
)agno
,
527 (void *)(__psunsigned_t
)agbno
,
528 (void *)(__psunsigned_t
)len
,
529 (void *)(__psint_t
)slot
,
531 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
533 #endif /* XFS_ALLOC_TRACE */
536 * Allocation group level functions.
540 * Allocate a variable extent in the allocation group agno.
541 * Type and bno are used to determine where in the allocation group the
543 * Extent's length (returned in *len) will be between minlen and maxlen,
544 * and of the form k * prod + mod unless there's nothing that large.
545 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
547 STATIC
int /* error */
548 xfs_alloc_ag_vextent(
549 xfs_alloc_arg_t
*args
) /* argument structure for allocation */
553 ASSERT(args
->minlen
> 0);
554 ASSERT(args
->maxlen
> 0);
555 ASSERT(args
->minlen
<= args
->maxlen
);
556 ASSERT(args
->mod
< args
->prod
);
557 ASSERT(args
->alignment
> 0);
559 * Branch to correct routine based on the type.
562 switch (args
->type
) {
563 case XFS_ALLOCTYPE_THIS_AG
:
564 error
= xfs_alloc_ag_vextent_size(args
);
566 case XFS_ALLOCTYPE_NEAR_BNO
:
567 error
= xfs_alloc_ag_vextent_near(args
);
569 case XFS_ALLOCTYPE_THIS_BNO
:
570 error
= xfs_alloc_ag_vextent_exact(args
);
579 * If the allocation worked, need to change the agf structure
580 * (and log it), and the superblock.
582 if (args
->agbno
!= NULLAGBLOCK
) {
583 xfs_agf_t
*agf
; /* allocation group freelist header */
584 #ifdef XFS_ALLOC_TRACE
585 xfs_mount_t
*mp
= args
->mp
;
587 long slen
= (long)args
->len
;
589 ASSERT(args
->len
>= args
->minlen
&& args
->len
<= args
->maxlen
);
590 ASSERT(!(args
->wasfromfl
) || !args
->isfl
);
591 ASSERT(args
->agbno
% args
->alignment
== 0);
592 if (!(args
->wasfromfl
)) {
594 agf
= XFS_BUF_TO_AGF(args
->agbp
);
595 be32_add(&agf
->agf_freeblks
, -(args
->len
));
596 xfs_trans_agblocks_delta(args
->tp
,
597 -((long)(args
->len
)));
598 args
->pag
->pagf_freeblks
-= args
->len
;
599 ASSERT(be32_to_cpu(agf
->agf_freeblks
) <=
600 be32_to_cpu(agf
->agf_length
));
601 TRACE_MODAGF(NULL
, agf
, XFS_AGF_FREEBLKS
);
602 xfs_alloc_log_agf(args
->tp
, args
->agbp
,
604 /* search the busylist for these blocks */
605 xfs_alloc_search_busy(args
->tp
, args
->agno
,
606 args
->agbno
, args
->len
);
609 xfs_trans_mod_sb(args
->tp
,
610 args
->wasdel
? XFS_TRANS_SB_RES_FDBLOCKS
:
611 XFS_TRANS_SB_FDBLOCKS
, -slen
);
612 XFS_STATS_INC(xs_allocx
);
613 XFS_STATS_ADD(xs_allocb
, args
->len
);
619 * Allocate a variable extent at exactly agno/bno.
620 * Extent's length (returned in *len) will be between minlen and maxlen,
621 * and of the form k * prod + mod unless there's nothing that large.
622 * Return the starting a.g. block (bno), or NULLAGBLOCK if we can't do it.
624 STATIC
int /* error */
625 xfs_alloc_ag_vextent_exact(
626 xfs_alloc_arg_t
*args
) /* allocation argument structure */
628 xfs_btree_cur_t
*bno_cur
;/* by block-number btree cursor */
629 xfs_btree_cur_t
*cnt_cur
;/* by count btree cursor */
630 xfs_agblock_t end
; /* end of allocated extent */
632 xfs_agblock_t fbno
; /* start block of found extent */
633 xfs_agblock_t fend
; /* end block of found extent */
634 xfs_extlen_t flen
; /* length of found extent */
635 int i
; /* success/failure of operation */
636 xfs_agblock_t maxend
; /* end of maximal extent */
637 xfs_agblock_t minend
; /* end of minimal extent */
638 xfs_extlen_t rlen
; /* length of returned extent */
640 ASSERT(args
->alignment
== 1);
642 * Allocate/initialize a cursor for the by-number freespace btree.
644 bno_cur
= xfs_btree_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
645 args
->agno
, XFS_BTNUM_BNO
, NULL
, 0);
647 * Lookup bno and minlen in the btree (minlen is irrelevant, really).
648 * Look for the closest free block <= bno, it must contain bno
649 * if any free block does.
651 if ((error
= xfs_alloc_lookup_le(bno_cur
, args
->agbno
, args
->minlen
, &i
)))
655 * Didn't find it, return null.
657 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
658 args
->agbno
= NULLAGBLOCK
;
662 * Grab the freespace record.
664 if ((error
= xfs_alloc_get_rec(bno_cur
, &fbno
, &flen
, &i
)))
666 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
667 ASSERT(fbno
<= args
->agbno
);
668 minend
= args
->agbno
+ args
->minlen
;
669 maxend
= args
->agbno
+ args
->maxlen
;
672 * Give up if the freespace isn't long enough for the minimum request.
675 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
676 args
->agbno
= NULLAGBLOCK
;
680 * End of extent will be smaller of the freespace end and the
681 * maximal requested end.
683 end
= XFS_AGBLOCK_MIN(fend
, maxend
);
685 * Fix the length according to mod and prod if given.
687 args
->len
= end
- args
->agbno
;
688 xfs_alloc_fix_len(args
);
689 if (!xfs_alloc_fix_minleft(args
)) {
690 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
694 ASSERT(args
->agbno
+ rlen
<= fend
);
695 end
= args
->agbno
+ rlen
;
697 * We are allocating agbno for rlen [agbno .. end]
698 * Allocate/initialize a cursor for the by-size btree.
700 cnt_cur
= xfs_btree_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
701 args
->agno
, XFS_BTNUM_CNT
, NULL
, 0);
702 ASSERT(args
->agbno
+ args
->len
<=
703 be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
));
704 if ((error
= xfs_alloc_fixup_trees(cnt_cur
, bno_cur
, fbno
, flen
,
705 args
->agbno
, args
->len
, XFSA_FIXUP_BNO_OK
))) {
706 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_ERROR
);
709 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
710 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
711 TRACE_ALLOC("normal", args
);
716 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_ERROR
);
717 TRACE_ALLOC("error", args
);
722 * Allocate a variable extent near bno in the allocation group agno.
723 * Extent's length (returned in len) will be between minlen and maxlen,
724 * and of the form k * prod + mod unless there's nothing that large.
725 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
727 STATIC
int /* error */
728 xfs_alloc_ag_vextent_near(
729 xfs_alloc_arg_t
*args
) /* allocation argument structure */
731 xfs_btree_cur_t
*bno_cur_gt
; /* cursor for bno btree, right side */
732 xfs_btree_cur_t
*bno_cur_lt
; /* cursor for bno btree, left side */
733 xfs_btree_cur_t
*cnt_cur
; /* cursor for count btree */
734 xfs_agblock_t gtbno
; /* start bno of right side entry */
735 xfs_agblock_t gtbnoa
; /* aligned ... */
736 xfs_extlen_t gtdiff
; /* difference to right side entry */
737 xfs_extlen_t gtlen
; /* length of right side entry */
738 xfs_extlen_t gtlena
; /* aligned ... */
739 xfs_agblock_t gtnew
; /* useful start bno of right side */
740 int error
; /* error code */
741 int i
; /* result code, temporary */
742 int j
; /* result code, temporary */
743 xfs_agblock_t ltbno
; /* start bno of left side entry */
744 xfs_agblock_t ltbnoa
; /* aligned ... */
745 xfs_extlen_t ltdiff
; /* difference to left side entry */
747 xfs_agblock_t ltend
; /* end bno of left side entry */
748 xfs_extlen_t ltlen
; /* length of left side entry */
749 xfs_extlen_t ltlena
; /* aligned ... */
750 xfs_agblock_t ltnew
; /* useful start bno of left side */
751 xfs_extlen_t rlen
; /* length of returned extent */
752 #if defined(DEBUG) && defined(__KERNEL__)
754 * Randomly don't execute the first algorithm.
756 int dofirst
; /* set to do first algorithm */
758 dofirst
= random32() & 1;
761 * Get a cursor for the by-size btree.
763 cnt_cur
= xfs_btree_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
764 args
->agno
, XFS_BTNUM_CNT
, NULL
, 0);
766 bno_cur_lt
= bno_cur_gt
= NULL
;
768 * See if there are any free extents as big as maxlen.
770 if ((error
= xfs_alloc_lookup_ge(cnt_cur
, 0, args
->maxlen
, &i
)))
773 * If none, then pick up the last entry in the tree unless the
777 if ((error
= xfs_alloc_ag_vextent_small(args
, cnt_cur
, <bno
,
780 if (i
== 0 || ltlen
== 0) {
781 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
789 * If the requested extent is large wrt the freespaces available
790 * in this a.g., then the cursor will be pointing to a btree entry
791 * near the right edge of the tree. If it's in the last btree leaf
792 * block, then we just examine all the entries in that block
793 * that are big enough, and pick the best one.
794 * This is written as a while loop so we can break out of it,
795 * but we never loop back to the top.
797 while (xfs_btree_islastblock(cnt_cur
, 0)) {
801 xfs_agblock_t bnew
=0;
803 #if defined(DEBUG) && defined(__KERNEL__)
808 * Start from the entry that lookup found, sequence through
809 * all larger free blocks. If we're actually pointing at a
810 * record smaller than maxlen, go to the start of this block,
811 * and skip all those smaller than minlen.
813 if (ltlen
|| args
->alignment
> 1) {
814 cnt_cur
->bc_ptrs
[0] = 1;
816 if ((error
= xfs_alloc_get_rec(cnt_cur
, <bno
,
819 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
820 if (ltlen
>= args
->minlen
)
822 if ((error
= xfs_alloc_increment(cnt_cur
, 0, &i
)))
825 ASSERT(ltlen
>= args
->minlen
);
829 i
= cnt_cur
->bc_ptrs
[0];
830 for (j
= 1, blen
= 0, bdiff
= 0;
831 !error
&& j
&& (blen
< args
->maxlen
|| bdiff
> 0);
832 error
= xfs_alloc_increment(cnt_cur
, 0, &j
)) {
834 * For each entry, decide if it's better than
835 * the previous best entry.
837 if ((error
= xfs_alloc_get_rec(cnt_cur
, <bno
, <len
, &i
)))
839 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
840 if (!xfs_alloc_compute_aligned(ltbno
, ltlen
,
841 args
->alignment
, args
->minlen
,
844 args
->len
= XFS_EXTLEN_MIN(ltlena
, args
->maxlen
);
845 xfs_alloc_fix_len(args
);
846 ASSERT(args
->len
>= args
->minlen
);
847 if (args
->len
< blen
)
849 ltdiff
= xfs_alloc_compute_diff(args
->agbno
, args
->len
,
850 args
->alignment
, ltbno
, ltlen
, <new
);
851 if (ltnew
!= NULLAGBLOCK
&&
852 (args
->len
> blen
|| ltdiff
< bdiff
)) {
856 besti
= cnt_cur
->bc_ptrs
[0];
860 * It didn't work. We COULD be in a case where
861 * there's a good record somewhere, so try again.
866 * Point at the best entry, and retrieve it again.
868 cnt_cur
->bc_ptrs
[0] = besti
;
869 if ((error
= xfs_alloc_get_rec(cnt_cur
, <bno
, <len
, &i
)))
871 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
872 ltend
= ltbno
+ ltlen
;
873 ASSERT(ltend
<= be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
));
875 if (!xfs_alloc_fix_minleft(args
)) {
876 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
877 TRACE_ALLOC("nominleft", args
);
882 * We are allocating starting at bnew for blen blocks.
885 ASSERT(bnew
>= ltbno
);
886 ASSERT(bnew
+ blen
<= ltend
);
888 * Set up a cursor for the by-bno tree.
890 bno_cur_lt
= xfs_btree_init_cursor(args
->mp
, args
->tp
,
891 args
->agbp
, args
->agno
, XFS_BTNUM_BNO
, NULL
, 0);
893 * Fix up the btree entries.
895 if ((error
= xfs_alloc_fixup_trees(cnt_cur
, bno_cur_lt
, ltbno
,
896 ltlen
, bnew
, blen
, XFSA_FIXUP_CNT_OK
)))
898 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
899 xfs_btree_del_cursor(bno_cur_lt
, XFS_BTREE_NOERROR
);
900 TRACE_ALLOC("first", args
);
905 * Search in the by-bno tree to the left and to the right
906 * simultaneously, until in each case we find a space big enough,
907 * or run into the edge of the tree. When we run into the edge,
908 * we deallocate that cursor.
909 * If both searches succeed, we compare the two spaces and pick
911 * With alignment, it's possible for both to fail; the upper
912 * level algorithm that picks allocation groups for allocations
913 * is not supposed to do this.
916 * Allocate and initialize the cursor for the leftward search.
918 bno_cur_lt
= xfs_btree_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
919 args
->agno
, XFS_BTNUM_BNO
, NULL
, 0);
921 * Lookup <= bno to find the leftward search's starting point.
923 if ((error
= xfs_alloc_lookup_le(bno_cur_lt
, args
->agbno
, args
->maxlen
, &i
)))
927 * Didn't find anything; use this cursor for the rightward
930 bno_cur_gt
= bno_cur_lt
;
934 * Found something. Duplicate the cursor for the rightward search.
936 else if ((error
= xfs_btree_dup_cursor(bno_cur_lt
, &bno_cur_gt
)))
939 * Increment the cursor, so we will point at the entry just right
940 * of the leftward entry if any, or to the leftmost entry.
942 if ((error
= xfs_alloc_increment(bno_cur_gt
, 0, &i
)))
946 * It failed, there are no rightward entries.
948 xfs_btree_del_cursor(bno_cur_gt
, XFS_BTREE_NOERROR
);
952 * Loop going left with the leftward cursor, right with the
953 * rightward cursor, until either both directions give up or
954 * we find an entry at least as big as minlen.
958 if ((error
= xfs_alloc_get_rec(bno_cur_lt
, <bno
, <len
, &i
)))
960 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
961 if (xfs_alloc_compute_aligned(ltbno
, ltlen
,
962 args
->alignment
, args
->minlen
,
965 if ((error
= xfs_alloc_decrement(bno_cur_lt
, 0, &i
)))
968 xfs_btree_del_cursor(bno_cur_lt
,
974 if ((error
= xfs_alloc_get_rec(bno_cur_gt
, >bno
, >len
, &i
)))
976 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
977 if (xfs_alloc_compute_aligned(gtbno
, gtlen
,
978 args
->alignment
, args
->minlen
,
981 if ((error
= xfs_alloc_increment(bno_cur_gt
, 0, &i
)))
984 xfs_btree_del_cursor(bno_cur_gt
,
989 } while (bno_cur_lt
|| bno_cur_gt
);
991 * Got both cursors still active, need to find better entry.
993 if (bno_cur_lt
&& bno_cur_gt
) {
995 * Left side is long enough, look for a right side entry.
997 if (ltlena
>= args
->minlen
) {
1001 args
->len
= XFS_EXTLEN_MIN(ltlena
, args
->maxlen
);
1002 xfs_alloc_fix_len(args
);
1004 ltdiff
= xfs_alloc_compute_diff(args
->agbno
, rlen
,
1005 args
->alignment
, ltbno
, ltlen
, <new
);
1011 * Look until we find a better one, run out of
1012 * space, or run off the end.
1014 while (bno_cur_lt
&& bno_cur_gt
) {
1015 if ((error
= xfs_alloc_get_rec(
1019 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1020 xfs_alloc_compute_aligned(gtbno
, gtlen
,
1021 args
->alignment
, args
->minlen
,
1024 * The left one is clearly better.
1026 if (gtbnoa
>= args
->agbno
+ ltdiff
) {
1027 xfs_btree_del_cursor(
1034 * If we reach a big enough entry,
1035 * compare the two and pick the best.
1037 if (gtlena
>= args
->minlen
) {
1039 XFS_EXTLEN_MIN(gtlena
,
1041 xfs_alloc_fix_len(args
);
1043 gtdiff
= xfs_alloc_compute_diff(
1046 gtbno
, gtlen
, >new
);
1048 * Right side is better.
1050 if (gtdiff
< ltdiff
) {
1051 xfs_btree_del_cursor(
1057 * Left side is better.
1060 xfs_btree_del_cursor(
1068 * Fell off the right end.
1070 if ((error
= xfs_alloc_increment(
1071 bno_cur_gt
, 0, &i
)))
1074 xfs_btree_del_cursor(
1083 * The left side is perfect, trash the right side.
1086 xfs_btree_del_cursor(bno_cur_gt
,
1092 * It's the right side that was found first, look left.
1096 * Fix up the length.
1098 args
->len
= XFS_EXTLEN_MIN(gtlena
, args
->maxlen
);
1099 xfs_alloc_fix_len(args
);
1101 gtdiff
= xfs_alloc_compute_diff(args
->agbno
, rlen
,
1102 args
->alignment
, gtbno
, gtlen
, >new
);
1104 * Right side entry isn't perfect.
1108 * Look until we find a better one, run out of
1109 * space, or run off the end.
1111 while (bno_cur_lt
&& bno_cur_gt
) {
1112 if ((error
= xfs_alloc_get_rec(
1116 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1117 xfs_alloc_compute_aligned(ltbno
, ltlen
,
1118 args
->alignment
, args
->minlen
,
1121 * The right one is clearly better.
1123 if (ltbnoa
<= args
->agbno
- gtdiff
) {
1124 xfs_btree_del_cursor(
1131 * If we reach a big enough entry,
1132 * compare the two and pick the best.
1134 if (ltlena
>= args
->minlen
) {
1135 args
->len
= XFS_EXTLEN_MIN(
1136 ltlena
, args
->maxlen
);
1137 xfs_alloc_fix_len(args
);
1139 ltdiff
= xfs_alloc_compute_diff(
1142 ltbno
, ltlen
, <new
);
1144 * Left side is better.
1146 if (ltdiff
< gtdiff
) {
1147 xfs_btree_del_cursor(
1153 * Right side is better.
1156 xfs_btree_del_cursor(
1164 * Fell off the left end.
1166 if ((error
= xfs_alloc_decrement(
1167 bno_cur_lt
, 0, &i
)))
1170 xfs_btree_del_cursor(bno_cur_lt
,
1178 * The right side is perfect, trash the left side.
1181 xfs_btree_del_cursor(bno_cur_lt
,
1188 * If we couldn't get anything, give up.
1190 if (bno_cur_lt
== NULL
&& bno_cur_gt
== NULL
) {
1191 TRACE_ALLOC("neither", args
);
1192 args
->agbno
= NULLAGBLOCK
;
1196 * At this point we have selected a freespace entry, either to the
1197 * left or to the right. If it's on the right, copy all the
1198 * useful variables to the "left" set so we only have one
1199 * copy of this code.
1202 bno_cur_lt
= bno_cur_gt
;
1212 * Fix up the length and compute the useful address.
1214 ltend
= ltbno
+ ltlen
;
1215 args
->len
= XFS_EXTLEN_MIN(ltlena
, args
->maxlen
);
1216 xfs_alloc_fix_len(args
);
1217 if (!xfs_alloc_fix_minleft(args
)) {
1218 TRACE_ALLOC("nominleft", args
);
1219 xfs_btree_del_cursor(bno_cur_lt
, XFS_BTREE_NOERROR
);
1220 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1224 (void)xfs_alloc_compute_diff(args
->agbno
, rlen
, args
->alignment
, ltbno
,
1226 ASSERT(ltnew
>= ltbno
);
1227 ASSERT(ltnew
+ rlen
<= ltend
);
1228 ASSERT(ltnew
+ rlen
<= be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
));
1229 args
->agbno
= ltnew
;
1230 if ((error
= xfs_alloc_fixup_trees(cnt_cur
, bno_cur_lt
, ltbno
, ltlen
,
1231 ltnew
, rlen
, XFSA_FIXUP_BNO_OK
)))
1233 TRACE_ALLOC(j
? "gt" : "lt", args
);
1234 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1235 xfs_btree_del_cursor(bno_cur_lt
, XFS_BTREE_NOERROR
);
1239 TRACE_ALLOC("error", args
);
1240 if (cnt_cur
!= NULL
)
1241 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_ERROR
);
1242 if (bno_cur_lt
!= NULL
)
1243 xfs_btree_del_cursor(bno_cur_lt
, XFS_BTREE_ERROR
);
1244 if (bno_cur_gt
!= NULL
)
1245 xfs_btree_del_cursor(bno_cur_gt
, XFS_BTREE_ERROR
);
1250 * Allocate a variable extent anywhere in the allocation group agno.
1251 * Extent's length (returned in len) will be between minlen and maxlen,
1252 * and of the form k * prod + mod unless there's nothing that large.
1253 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
1255 STATIC
int /* error */
1256 xfs_alloc_ag_vextent_size(
1257 xfs_alloc_arg_t
*args
) /* allocation argument structure */
1259 xfs_btree_cur_t
*bno_cur
; /* cursor for bno btree */
1260 xfs_btree_cur_t
*cnt_cur
; /* cursor for cnt btree */
1261 int error
; /* error result */
1262 xfs_agblock_t fbno
; /* start of found freespace */
1263 xfs_extlen_t flen
; /* length of found freespace */
1264 int i
; /* temp status variable */
1265 xfs_agblock_t rbno
; /* returned block number */
1266 xfs_extlen_t rlen
; /* length of returned extent */
1269 * Allocate and initialize a cursor for the by-size btree.
1271 cnt_cur
= xfs_btree_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
1272 args
->agno
, XFS_BTNUM_CNT
, NULL
, 0);
1275 * Look for an entry >= maxlen+alignment-1 blocks.
1277 if ((error
= xfs_alloc_lookup_ge(cnt_cur
, 0,
1278 args
->maxlen
+ args
->alignment
- 1, &i
)))
1281 * If none, then pick up the last entry in the tree unless the
1285 if ((error
= xfs_alloc_ag_vextent_small(args
, cnt_cur
, &fbno
,
1288 if (i
== 0 || flen
== 0) {
1289 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1290 TRACE_ALLOC("noentry", args
);
1296 * There's a freespace as big as maxlen+alignment-1, get it.
1299 if ((error
= xfs_alloc_get_rec(cnt_cur
, &fbno
, &flen
, &i
)))
1301 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1304 * In the first case above, we got the last entry in the
1305 * by-size btree. Now we check to see if the space hits maxlen
1306 * once aligned; if not, we search left for something better.
1307 * This can't happen in the second case above.
1309 xfs_alloc_compute_aligned(fbno
, flen
, args
->alignment
, args
->minlen
,
1311 rlen
= XFS_EXTLEN_MIN(args
->maxlen
, rlen
);
1312 XFS_WANT_CORRUPTED_GOTO(rlen
== 0 ||
1313 (rlen
<= flen
&& rbno
+ rlen
<= fbno
+ flen
), error0
);
1314 if (rlen
< args
->maxlen
) {
1315 xfs_agblock_t bestfbno
;
1316 xfs_extlen_t bestflen
;
1317 xfs_agblock_t bestrbno
;
1318 xfs_extlen_t bestrlen
;
1325 if ((error
= xfs_alloc_decrement(cnt_cur
, 0, &i
)))
1329 if ((error
= xfs_alloc_get_rec(cnt_cur
, &fbno
, &flen
,
1332 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1333 if (flen
< bestrlen
)
1335 xfs_alloc_compute_aligned(fbno
, flen
, args
->alignment
,
1336 args
->minlen
, &rbno
, &rlen
);
1337 rlen
= XFS_EXTLEN_MIN(args
->maxlen
, rlen
);
1338 XFS_WANT_CORRUPTED_GOTO(rlen
== 0 ||
1339 (rlen
<= flen
&& rbno
+ rlen
<= fbno
+ flen
),
1341 if (rlen
> bestrlen
) {
1346 if (rlen
== args
->maxlen
)
1350 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, bestfbno
, bestflen
,
1353 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1359 args
->wasfromfl
= 0;
1361 * Fix up the length.
1364 xfs_alloc_fix_len(args
);
1365 if (rlen
< args
->minlen
|| !xfs_alloc_fix_minleft(args
)) {
1366 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1367 TRACE_ALLOC("nominleft", args
);
1368 args
->agbno
= NULLAGBLOCK
;
1372 XFS_WANT_CORRUPTED_GOTO(rlen
<= flen
, error0
);
1374 * Allocate and initialize a cursor for the by-block tree.
1376 bno_cur
= xfs_btree_init_cursor(args
->mp
, args
->tp
, args
->agbp
,
1377 args
->agno
, XFS_BTNUM_BNO
, NULL
, 0);
1378 if ((error
= xfs_alloc_fixup_trees(cnt_cur
, bno_cur
, fbno
, flen
,
1379 rbno
, rlen
, XFSA_FIXUP_CNT_OK
)))
1381 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1382 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
1383 cnt_cur
= bno_cur
= NULL
;
1386 XFS_WANT_CORRUPTED_GOTO(
1387 args
->agbno
+ args
->len
<=
1388 be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
),
1390 TRACE_ALLOC("normal", args
);
1394 TRACE_ALLOC("error", args
);
1396 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_ERROR
);
1398 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_ERROR
);
1403 * Deal with the case where only small freespaces remain.
1404 * Either return the contents of the last freespace record,
1405 * or allocate space from the freelist if there is nothing in the tree.
1407 STATIC
int /* error */
1408 xfs_alloc_ag_vextent_small(
1409 xfs_alloc_arg_t
*args
, /* allocation argument structure */
1410 xfs_btree_cur_t
*ccur
, /* by-size cursor */
1411 xfs_agblock_t
*fbnop
, /* result block number */
1412 xfs_extlen_t
*flenp
, /* result length */
1413 int *stat
) /* status: 0-freelist, 1-normal/none */
1420 if ((error
= xfs_alloc_decrement(ccur
, 0, &i
)))
1423 if ((error
= xfs_alloc_get_rec(ccur
, &fbno
, &flen
, &i
)))
1425 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1428 * Nothing in the btree, try the freelist. Make sure
1429 * to respect minleft even when pulling from the
1432 else if (args
->minlen
== 1 && args
->alignment
== 1 && !args
->isfl
&&
1433 (be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_flcount
)
1435 error
= xfs_alloc_get_freelist(args
->tp
, args
->agbp
, &fbno
, 0);
1438 if (fbno
!= NULLAGBLOCK
) {
1439 if (args
->userdata
) {
1442 bp
= xfs_btree_get_bufs(args
->mp
, args
->tp
,
1443 args
->agno
, fbno
, 0);
1444 xfs_trans_binval(args
->tp
, bp
);
1448 XFS_WANT_CORRUPTED_GOTO(
1449 args
->agbno
+ args
->len
<=
1450 be32_to_cpu(XFS_BUF_TO_AGF(args
->agbp
)->agf_length
),
1452 args
->wasfromfl
= 1;
1453 TRACE_ALLOC("freelist", args
);
1458 * Nothing in the freelist.
1464 * Can't allocate from the freelist for some reason.
1471 * Can't do the allocation, give up.
1473 if (flen
< args
->minlen
) {
1474 args
->agbno
= NULLAGBLOCK
;
1475 TRACE_ALLOC("notenough", args
);
1481 TRACE_ALLOC("normal", args
);
1485 TRACE_ALLOC("error", args
);
1490 * Free the extent starting at agno/bno for length.
1492 STATIC
int /* error */
1494 xfs_trans_t
*tp
, /* transaction pointer */
1495 xfs_buf_t
*agbp
, /* buffer for a.g. freelist header */
1496 xfs_agnumber_t agno
, /* allocation group number */
1497 xfs_agblock_t bno
, /* starting block number */
1498 xfs_extlen_t len
, /* length of extent */
1499 int isfl
) /* set if is freelist blocks - no sb acctg */
1501 xfs_btree_cur_t
*bno_cur
; /* cursor for by-block btree */
1502 xfs_btree_cur_t
*cnt_cur
; /* cursor for by-size btree */
1503 int error
; /* error return value */
1504 xfs_agblock_t gtbno
; /* start of right neighbor block */
1505 xfs_extlen_t gtlen
; /* length of right neighbor block */
1506 int haveleft
; /* have a left neighbor block */
1507 int haveright
; /* have a right neighbor block */
1508 int i
; /* temp, result code */
1509 xfs_agblock_t ltbno
; /* start of left neighbor block */
1510 xfs_extlen_t ltlen
; /* length of left neighbor block */
1511 xfs_mount_t
*mp
; /* mount point struct for filesystem */
1512 xfs_agblock_t nbno
; /* new starting block of freespace */
1513 xfs_extlen_t nlen
; /* new length of freespace */
1517 * Allocate and initialize a cursor for the by-block btree.
1519 bno_cur
= xfs_btree_init_cursor(mp
, tp
, agbp
, agno
, XFS_BTNUM_BNO
, NULL
,
1523 * Look for a neighboring block on the left (lower block numbers)
1524 * that is contiguous with this space.
1526 if ((error
= xfs_alloc_lookup_le(bno_cur
, bno
, len
, &haveleft
)))
1530 * There is a block to our left.
1532 if ((error
= xfs_alloc_get_rec(bno_cur
, <bno
, <len
, &i
)))
1534 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1536 * It's not contiguous, though.
1538 if (ltbno
+ ltlen
< bno
)
1542 * If this failure happens the request to free this
1543 * space was invalid, it's (partly) already free.
1546 XFS_WANT_CORRUPTED_GOTO(ltbno
+ ltlen
<= bno
, error0
);
1550 * Look for a neighboring block on the right (higher block numbers)
1551 * that is contiguous with this space.
1553 if ((error
= xfs_alloc_increment(bno_cur
, 0, &haveright
)))
1557 * There is a block to our right.
1559 if ((error
= xfs_alloc_get_rec(bno_cur
, >bno
, >len
, &i
)))
1561 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1563 * It's not contiguous, though.
1565 if (bno
+ len
< gtbno
)
1569 * If this failure happens the request to free this
1570 * space was invalid, it's (partly) already free.
1573 XFS_WANT_CORRUPTED_GOTO(gtbno
>= bno
+ len
, error0
);
1577 * Now allocate and initialize a cursor for the by-size tree.
1579 cnt_cur
= xfs_btree_init_cursor(mp
, tp
, agbp
, agno
, XFS_BTNUM_CNT
, NULL
,
1582 * Have both left and right contiguous neighbors.
1583 * Merge all three into a single free block.
1585 if (haveleft
&& haveright
) {
1587 * Delete the old by-size entry on the left.
1589 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, ltbno
, ltlen
, &i
)))
1591 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1592 if ((error
= xfs_alloc_delete(cnt_cur
, &i
)))
1594 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1596 * Delete the old by-size entry on the right.
1598 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, gtbno
, gtlen
, &i
)))
1600 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1601 if ((error
= xfs_alloc_delete(cnt_cur
, &i
)))
1603 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1605 * Delete the old by-block entry for the right block.
1607 if ((error
= xfs_alloc_delete(bno_cur
, &i
)))
1609 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1611 * Move the by-block cursor back to the left neighbor.
1613 if ((error
= xfs_alloc_decrement(bno_cur
, 0, &i
)))
1615 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1618 * Check that this is the right record: delete didn't
1619 * mangle the cursor.
1622 xfs_agblock_t xxbno
;
1625 if ((error
= xfs_alloc_get_rec(bno_cur
, &xxbno
, &xxlen
,
1628 XFS_WANT_CORRUPTED_GOTO(
1629 i
== 1 && xxbno
== ltbno
&& xxlen
== ltlen
,
1634 * Update remaining by-block entry to the new, joined block.
1637 nlen
= len
+ ltlen
+ gtlen
;
1638 if ((error
= xfs_alloc_update(bno_cur
, nbno
, nlen
)))
1642 * Have only a left contiguous neighbor.
1643 * Merge it together with the new freespace.
1645 else if (haveleft
) {
1647 * Delete the old by-size entry on the left.
1649 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, ltbno
, ltlen
, &i
)))
1651 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1652 if ((error
= xfs_alloc_delete(cnt_cur
, &i
)))
1654 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1656 * Back up the by-block cursor to the left neighbor, and
1657 * update its length.
1659 if ((error
= xfs_alloc_decrement(bno_cur
, 0, &i
)))
1661 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1664 if ((error
= xfs_alloc_update(bno_cur
, nbno
, nlen
)))
1668 * Have only a right contiguous neighbor.
1669 * Merge it together with the new freespace.
1671 else if (haveright
) {
1673 * Delete the old by-size entry on the right.
1675 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, gtbno
, gtlen
, &i
)))
1677 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1678 if ((error
= xfs_alloc_delete(cnt_cur
, &i
)))
1680 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1682 * Update the starting block and length of the right
1683 * neighbor in the by-block tree.
1687 if ((error
= xfs_alloc_update(bno_cur
, nbno
, nlen
)))
1691 * No contiguous neighbors.
1692 * Insert the new freespace into the by-block tree.
1697 if ((error
= xfs_alloc_insert(bno_cur
, &i
)))
1699 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1701 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_NOERROR
);
1704 * In all cases we need to insert the new freespace in the by-size tree.
1706 if ((error
= xfs_alloc_lookup_eq(cnt_cur
, nbno
, nlen
, &i
)))
1708 XFS_WANT_CORRUPTED_GOTO(i
== 0, error0
);
1709 if ((error
= xfs_alloc_insert(cnt_cur
, &i
)))
1711 XFS_WANT_CORRUPTED_GOTO(i
== 1, error0
);
1712 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_NOERROR
);
1715 * Update the freespace totals in the ag and superblock.
1719 xfs_perag_t
*pag
; /* per allocation group data */
1721 agf
= XFS_BUF_TO_AGF(agbp
);
1722 pag
= &mp
->m_perag
[agno
];
1723 be32_add(&agf
->agf_freeblks
, len
);
1724 xfs_trans_agblocks_delta(tp
, len
);
1725 pag
->pagf_freeblks
+= len
;
1726 XFS_WANT_CORRUPTED_GOTO(
1727 be32_to_cpu(agf
->agf_freeblks
) <=
1728 be32_to_cpu(agf
->agf_length
),
1730 TRACE_MODAGF(NULL
, agf
, XFS_AGF_FREEBLKS
);
1731 xfs_alloc_log_agf(tp
, agbp
, XFS_AGF_FREEBLKS
);
1733 xfs_trans_mod_sb(tp
, XFS_TRANS_SB_FDBLOCKS
, (long)len
);
1734 XFS_STATS_INC(xs_freex
);
1735 XFS_STATS_ADD(xs_freeb
, len
);
1737 TRACE_FREE(haveleft
?
1738 (haveright
? "both" : "left") :
1739 (haveright
? "right" : "none"),
1740 agno
, bno
, len
, isfl
);
1743 * Since blocks move to the free list without the coordination
1744 * used in xfs_bmap_finish, we can't allow block to be available
1745 * for reallocation and non-transaction writing (user data)
1746 * until we know that the transaction that moved it to the free
1747 * list is permanently on disk. We track the blocks by declaring
1748 * these blocks as "busy"; the busy list is maintained on a per-ag
1749 * basis and each transaction records which entries should be removed
1750 * when the iclog commits to disk. If a busy block is allocated,
1751 * the iclog is pushed up to the LSN that freed the block.
1753 xfs_alloc_mark_busy(tp
, agno
, bno
, len
);
1757 TRACE_FREE("error", agno
, bno
, len
, isfl
);
1759 xfs_btree_del_cursor(bno_cur
, XFS_BTREE_ERROR
);
1761 xfs_btree_del_cursor(cnt_cur
, XFS_BTREE_ERROR
);
1766 * Visible (exported) allocation/free functions.
1767 * Some of these are used just by xfs_alloc_btree.c and this file.
1771 * Compute and fill in value of m_ag_maxlevels.
1774 xfs_alloc_compute_maxlevels(
1775 xfs_mount_t
*mp
) /* file system mount structure */
1783 maxleafents
= (mp
->m_sb
.sb_agblocks
+ 1) / 2;
1784 minleafrecs
= mp
->m_alloc_mnr
[0];
1785 minnoderecs
= mp
->m_alloc_mnr
[1];
1786 maxblocks
= (maxleafents
+ minleafrecs
- 1) / minleafrecs
;
1787 for (level
= 1; maxblocks
> 1; level
++)
1788 maxblocks
= (maxblocks
+ minnoderecs
- 1) / minnoderecs
;
1789 mp
->m_ag_maxlevels
= level
;
1793 * Decide whether to use this allocation group for this allocation.
1794 * If so, fix up the btree freelist's size.
1796 STATIC
int /* error */
1797 xfs_alloc_fix_freelist(
1798 xfs_alloc_arg_t
*args
, /* allocation argument structure */
1799 int flags
) /* XFS_ALLOC_FLAG_... */
1801 xfs_buf_t
*agbp
; /* agf buffer pointer */
1802 xfs_agf_t
*agf
; /* a.g. freespace structure pointer */
1803 xfs_buf_t
*agflbp
;/* agfl buffer pointer */
1804 xfs_agblock_t bno
; /* freelist block */
1805 xfs_extlen_t delta
; /* new blocks needed in freelist */
1806 int error
; /* error result code */
1807 xfs_extlen_t longest
;/* longest extent in allocation group */
1808 xfs_mount_t
*mp
; /* file system mount point structure */
1809 xfs_extlen_t need
; /* total blocks needed in freelist */
1810 xfs_perag_t
*pag
; /* per-ag information structure */
1811 xfs_alloc_arg_t targs
; /* local allocation arguments */
1812 xfs_trans_t
*tp
; /* transaction pointer */
1818 if (!pag
->pagf_init
) {
1819 if ((error
= xfs_alloc_read_agf(mp
, tp
, args
->agno
, flags
,
1822 if (!pag
->pagf_init
) {
1823 ASSERT(flags
& XFS_ALLOC_FLAG_TRYLOCK
);
1824 ASSERT(!(flags
& XFS_ALLOC_FLAG_FREEING
));
1832 * If this is a metadata preferred pag and we are user data
1833 * then try somewhere else if we are not being asked to
1834 * try harder at this point
1836 if (pag
->pagf_metadata
&& args
->userdata
&&
1837 (flags
& XFS_ALLOC_FLAG_TRYLOCK
)) {
1838 ASSERT(!(flags
& XFS_ALLOC_FLAG_FREEING
));
1843 if (!(flags
& XFS_ALLOC_FLAG_FREEING
)) {
1844 need
= XFS_MIN_FREELIST_PAG(pag
, mp
);
1845 delta
= need
> pag
->pagf_flcount
? need
- pag
->pagf_flcount
: 0;
1847 * If it looks like there isn't a long enough extent, or enough
1848 * total blocks, reject it.
1850 longest
= (pag
->pagf_longest
> delta
) ?
1851 (pag
->pagf_longest
- delta
) :
1852 (pag
->pagf_flcount
> 0 || pag
->pagf_longest
> 0);
1853 if ((args
->minlen
+ args
->alignment
+ args
->minalignslop
- 1) >
1855 ((int)(pag
->pagf_freeblks
+ pag
->pagf_flcount
-
1856 need
- args
->total
) < (int)args
->minleft
)) {
1858 xfs_trans_brelse(tp
, agbp
);
1865 * Get the a.g. freespace buffer.
1866 * Can fail if we're not blocking on locks, and it's held.
1869 if ((error
= xfs_alloc_read_agf(mp
, tp
, args
->agno
, flags
,
1873 ASSERT(flags
& XFS_ALLOC_FLAG_TRYLOCK
);
1874 ASSERT(!(flags
& XFS_ALLOC_FLAG_FREEING
));
1880 * Figure out how many blocks we should have in the freelist.
1882 agf
= XFS_BUF_TO_AGF(agbp
);
1883 need
= XFS_MIN_FREELIST(agf
, mp
);
1885 * If there isn't enough total or single-extent, reject it.
1887 if (!(flags
& XFS_ALLOC_FLAG_FREEING
)) {
1888 delta
= need
> be32_to_cpu(agf
->agf_flcount
) ?
1889 (need
- be32_to_cpu(agf
->agf_flcount
)) : 0;
1890 longest
= be32_to_cpu(agf
->agf_longest
);
1891 longest
= (longest
> delta
) ? (longest
- delta
) :
1892 (be32_to_cpu(agf
->agf_flcount
) > 0 || longest
> 0);
1893 if ((args
->minlen
+ args
->alignment
+ args
->minalignslop
- 1) >
1895 ((int)(be32_to_cpu(agf
->agf_freeblks
) +
1896 be32_to_cpu(agf
->agf_flcount
) - need
- args
->total
) <
1897 (int)args
->minleft
)) {
1898 xfs_trans_brelse(tp
, agbp
);
1904 * Make the freelist shorter if it's too long.
1906 while (be32_to_cpu(agf
->agf_flcount
) > need
) {
1909 error
= xfs_alloc_get_freelist(tp
, agbp
, &bno
, 0);
1912 if ((error
= xfs_free_ag_extent(tp
, agbp
, args
->agno
, bno
, 1, 1)))
1914 bp
= xfs_btree_get_bufs(mp
, tp
, args
->agno
, bno
, 0);
1915 xfs_trans_binval(tp
, bp
);
1918 * Initialize the args structure.
1923 targs
.agno
= args
->agno
;
1924 targs
.mod
= targs
.minleft
= targs
.wasdel
= targs
.userdata
=
1925 targs
.minalignslop
= 0;
1926 targs
.alignment
= targs
.minlen
= targs
.prod
= targs
.isfl
= 1;
1927 targs
.type
= XFS_ALLOCTYPE_THIS_AG
;
1929 if ((error
= xfs_alloc_read_agfl(mp
, tp
, targs
.agno
, &agflbp
)))
1932 * Make the freelist longer if it's too short.
1934 while (be32_to_cpu(agf
->agf_flcount
) < need
) {
1936 targs
.maxlen
= need
- be32_to_cpu(agf
->agf_flcount
);
1938 * Allocate as many blocks as possible at once.
1940 if ((error
= xfs_alloc_ag_vextent(&targs
))) {
1941 xfs_trans_brelse(tp
, agflbp
);
1945 * Stop if we run out. Won't happen if callers are obeying
1946 * the restrictions correctly. Can happen for free calls
1947 * on a completely full ag.
1949 if (targs
.agbno
== NULLAGBLOCK
) {
1950 if (flags
& XFS_ALLOC_FLAG_FREEING
)
1952 xfs_trans_brelse(tp
, agflbp
);
1957 * Put each allocated block on the list.
1959 for (bno
= targs
.agbno
; bno
< targs
.agbno
+ targs
.len
; bno
++) {
1960 error
= xfs_alloc_put_freelist(tp
, agbp
,
1966 xfs_trans_brelse(tp
, agflbp
);
1972 * Get a block from the freelist.
1973 * Returns with the buffer for the block gotten.
1976 xfs_alloc_get_freelist(
1977 xfs_trans_t
*tp
, /* transaction pointer */
1978 xfs_buf_t
*agbp
, /* buffer containing the agf structure */
1979 xfs_agblock_t
*bnop
, /* block address retrieved from freelist */
1980 int btreeblk
) /* destination is a AGF btree */
1982 xfs_agf_t
*agf
; /* a.g. freespace structure */
1983 xfs_agfl_t
*agfl
; /* a.g. freelist structure */
1984 xfs_buf_t
*agflbp
;/* buffer for a.g. freelist structure */
1985 xfs_agblock_t bno
; /* block number returned */
1988 xfs_mount_t
*mp
; /* mount structure */
1989 xfs_perag_t
*pag
; /* per allocation group data */
1991 agf
= XFS_BUF_TO_AGF(agbp
);
1993 * Freelist is empty, give up.
1995 if (!agf
->agf_flcount
) {
1996 *bnop
= NULLAGBLOCK
;
2000 * Read the array of free blocks.
2003 if ((error
= xfs_alloc_read_agfl(mp
, tp
,
2004 be32_to_cpu(agf
->agf_seqno
), &agflbp
)))
2006 agfl
= XFS_BUF_TO_AGFL(agflbp
);
2008 * Get the block number and update the data structures.
2010 bno
= be32_to_cpu(agfl
->agfl_bno
[be32_to_cpu(agf
->agf_flfirst
)]);
2011 be32_add(&agf
->agf_flfirst
, 1);
2012 xfs_trans_brelse(tp
, agflbp
);
2013 if (be32_to_cpu(agf
->agf_flfirst
) == XFS_AGFL_SIZE(mp
))
2014 agf
->agf_flfirst
= 0;
2015 pag
= &mp
->m_perag
[be32_to_cpu(agf
->agf_seqno
)];
2016 be32_add(&agf
->agf_flcount
, -1);
2017 xfs_trans_agflist_delta(tp
, -1);
2018 pag
->pagf_flcount
--;
2020 logflags
= XFS_AGF_FLFIRST
| XFS_AGF_FLCOUNT
;
2022 be32_add(&agf
->agf_btreeblks
, 1);
2023 pag
->pagf_btreeblks
++;
2024 logflags
|= XFS_AGF_BTREEBLKS
;
2027 TRACE_MODAGF(NULL
, agf
, logflags
);
2028 xfs_alloc_log_agf(tp
, agbp
, logflags
);
2032 * As blocks are freed, they are added to the per-ag busy list
2033 * and remain there until the freeing transaction is committed to
2034 * disk. Now that we have allocated blocks, this list must be
2035 * searched to see if a block is being reused. If one is, then
2036 * the freeing transaction must be pushed to disk NOW by forcing
2037 * to disk all iclogs up that transaction's LSN.
2039 xfs_alloc_search_busy(tp
, be32_to_cpu(agf
->agf_seqno
), bno
, 1);
2044 * Log the given fields from the agf structure.
2048 xfs_trans_t
*tp
, /* transaction pointer */
2049 xfs_buf_t
*bp
, /* buffer for a.g. freelist header */
2050 int fields
) /* mask of fields to be logged (XFS_AGF_...) */
2052 int first
; /* first byte offset */
2053 int last
; /* last byte offset */
2054 static const short offsets
[] = {
2055 offsetof(xfs_agf_t
, agf_magicnum
),
2056 offsetof(xfs_agf_t
, agf_versionnum
),
2057 offsetof(xfs_agf_t
, agf_seqno
),
2058 offsetof(xfs_agf_t
, agf_length
),
2059 offsetof(xfs_agf_t
, agf_roots
[0]),
2060 offsetof(xfs_agf_t
, agf_levels
[0]),
2061 offsetof(xfs_agf_t
, agf_flfirst
),
2062 offsetof(xfs_agf_t
, agf_fllast
),
2063 offsetof(xfs_agf_t
, agf_flcount
),
2064 offsetof(xfs_agf_t
, agf_freeblks
),
2065 offsetof(xfs_agf_t
, agf_longest
),
2066 offsetof(xfs_agf_t
, agf_btreeblks
),
2070 xfs_btree_offsets(fields
, offsets
, XFS_AGF_NUM_BITS
, &first
, &last
);
2071 xfs_trans_log_buf(tp
, bp
, (uint
)first
, (uint
)last
);
2075 * Interface for inode allocation to force the pag data to be initialized.
2078 xfs_alloc_pagf_init(
2079 xfs_mount_t
*mp
, /* file system mount structure */
2080 xfs_trans_t
*tp
, /* transaction pointer */
2081 xfs_agnumber_t agno
, /* allocation group number */
2082 int flags
) /* XFS_ALLOC_FLAGS_... */
2087 if ((error
= xfs_alloc_read_agf(mp
, tp
, agno
, flags
, &bp
)))
2090 xfs_trans_brelse(tp
, bp
);
2095 * Put the block on the freelist for the allocation group.
2098 xfs_alloc_put_freelist(
2099 xfs_trans_t
*tp
, /* transaction pointer */
2100 xfs_buf_t
*agbp
, /* buffer for a.g. freelist header */
2101 xfs_buf_t
*agflbp
,/* buffer for a.g. free block array */
2102 xfs_agblock_t bno
, /* block being freed */
2103 int btreeblk
) /* block came from a AGF btree */
2105 xfs_agf_t
*agf
; /* a.g. freespace structure */
2106 xfs_agfl_t
*agfl
; /* a.g. free block array */
2107 __be32
*blockp
;/* pointer to array entry */
2110 xfs_mount_t
*mp
; /* mount structure */
2111 xfs_perag_t
*pag
; /* per allocation group data */
2113 agf
= XFS_BUF_TO_AGF(agbp
);
2116 if (!agflbp
&& (error
= xfs_alloc_read_agfl(mp
, tp
,
2117 be32_to_cpu(agf
->agf_seqno
), &agflbp
)))
2119 agfl
= XFS_BUF_TO_AGFL(agflbp
);
2120 be32_add(&agf
->agf_fllast
, 1);
2121 if (be32_to_cpu(agf
->agf_fllast
) == XFS_AGFL_SIZE(mp
))
2122 agf
->agf_fllast
= 0;
2123 pag
= &mp
->m_perag
[be32_to_cpu(agf
->agf_seqno
)];
2124 be32_add(&agf
->agf_flcount
, 1);
2125 xfs_trans_agflist_delta(tp
, 1);
2126 pag
->pagf_flcount
++;
2128 logflags
= XFS_AGF_FLLAST
| XFS_AGF_FLCOUNT
;
2130 be32_add(&agf
->agf_btreeblks
, -1);
2131 pag
->pagf_btreeblks
--;
2132 logflags
|= XFS_AGF_BTREEBLKS
;
2135 TRACE_MODAGF(NULL
, agf
, logflags
);
2136 xfs_alloc_log_agf(tp
, agbp
, logflags
);
2138 ASSERT(be32_to_cpu(agf
->agf_flcount
) <= XFS_AGFL_SIZE(mp
));
2139 blockp
= &agfl
->agfl_bno
[be32_to_cpu(agf
->agf_fllast
)];
2140 *blockp
= cpu_to_be32(bno
);
2141 TRACE_MODAGF(NULL
, agf
, logflags
);
2142 xfs_alloc_log_agf(tp
, agbp
, logflags
);
2143 xfs_trans_log_buf(tp
, agflbp
,
2144 (int)((xfs_caddr_t
)blockp
- (xfs_caddr_t
)agfl
),
2145 (int)((xfs_caddr_t
)blockp
- (xfs_caddr_t
)agfl
+
2146 sizeof(xfs_agblock_t
) - 1));
2151 * Read in the allocation group header (free/alloc section).
2155 xfs_mount_t
*mp
, /* mount point structure */
2156 xfs_trans_t
*tp
, /* transaction pointer */
2157 xfs_agnumber_t agno
, /* allocation group number */
2158 int flags
, /* XFS_ALLOC_FLAG_... */
2159 xfs_buf_t
**bpp
) /* buffer for the ag freelist header */
2161 xfs_agf_t
*agf
; /* ag freelist header */
2162 int agf_ok
; /* set if agf is consistent */
2163 xfs_buf_t
*bp
; /* return value */
2164 xfs_perag_t
*pag
; /* per allocation group data */
2167 ASSERT(agno
!= NULLAGNUMBER
);
2168 error
= xfs_trans_read_buf(
2169 mp
, tp
, mp
->m_ddev_targp
,
2170 XFS_AG_DADDR(mp
, agno
, XFS_AGF_DADDR(mp
)),
2171 XFS_FSS_TO_BB(mp
, 1),
2172 (flags
& XFS_ALLOC_FLAG_TRYLOCK
) ? XFS_BUF_TRYLOCK
: 0U,
2176 ASSERT(!bp
|| !XFS_BUF_GETERROR(bp
));
2182 * Validate the magic number of the agf block.
2184 agf
= XFS_BUF_TO_AGF(bp
);
2186 be32_to_cpu(agf
->agf_magicnum
) == XFS_AGF_MAGIC
&&
2187 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf
->agf_versionnum
)) &&
2188 be32_to_cpu(agf
->agf_freeblks
) <= be32_to_cpu(agf
->agf_length
) &&
2189 be32_to_cpu(agf
->agf_flfirst
) < XFS_AGFL_SIZE(mp
) &&
2190 be32_to_cpu(agf
->agf_fllast
) < XFS_AGFL_SIZE(mp
) &&
2191 be32_to_cpu(agf
->agf_flcount
) <= XFS_AGFL_SIZE(mp
);
2192 if (unlikely(XFS_TEST_ERROR(!agf_ok
, mp
, XFS_ERRTAG_ALLOC_READ_AGF
,
2193 XFS_RANDOM_ALLOC_READ_AGF
))) {
2194 XFS_CORRUPTION_ERROR("xfs_alloc_read_agf",
2195 XFS_ERRLEVEL_LOW
, mp
, agf
);
2196 xfs_trans_brelse(tp
, bp
);
2197 return XFS_ERROR(EFSCORRUPTED
);
2199 pag
= &mp
->m_perag
[agno
];
2200 if (!pag
->pagf_init
) {
2201 pag
->pagf_freeblks
= be32_to_cpu(agf
->agf_freeblks
);
2202 pag
->pagf_btreeblks
= be32_to_cpu(agf
->agf_btreeblks
);
2203 pag
->pagf_flcount
= be32_to_cpu(agf
->agf_flcount
);
2204 pag
->pagf_longest
= be32_to_cpu(agf
->agf_longest
);
2205 pag
->pagf_levels
[XFS_BTNUM_BNOi
] =
2206 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_BNOi
]);
2207 pag
->pagf_levels
[XFS_BTNUM_CNTi
] =
2208 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_CNTi
]);
2209 spinlock_init(&pag
->pagb_lock
, "xfspagb");
2210 pag
->pagb_list
= kmem_zalloc(XFS_PAGB_NUM_SLOTS
*
2211 sizeof(xfs_perag_busy_t
), KM_SLEEP
);
2215 else if (!XFS_FORCED_SHUTDOWN(mp
)) {
2216 ASSERT(pag
->pagf_freeblks
== be32_to_cpu(agf
->agf_freeblks
));
2217 ASSERT(pag
->pagf_flcount
== be32_to_cpu(agf
->agf_flcount
));
2218 ASSERT(pag
->pagf_longest
== be32_to_cpu(agf
->agf_longest
));
2219 ASSERT(pag
->pagf_levels
[XFS_BTNUM_BNOi
] ==
2220 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_BNOi
]));
2221 ASSERT(pag
->pagf_levels
[XFS_BTNUM_CNTi
] ==
2222 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_CNTi
]));
2225 XFS_BUF_SET_VTYPE_REF(bp
, B_FS_AGF
, XFS_AGF_REF
);
2231 * Allocate an extent (variable-size).
2232 * Depending on the allocation type, we either look in a single allocation
2233 * group or loop over the allocation groups to find the result.
2237 xfs_alloc_arg_t
*args
) /* allocation argument structure */
2239 xfs_agblock_t agsize
; /* allocation group size */
2241 int flags
; /* XFS_ALLOC_FLAG_... locking flags */
2242 xfs_extlen_t minleft
;/* minimum left value, temp copy */
2243 xfs_mount_t
*mp
; /* mount structure pointer */
2244 xfs_agnumber_t sagno
; /* starting allocation group number */
2245 xfs_alloctype_t type
; /* input allocation type */
2248 xfs_agnumber_t rotorstep
= xfs_rotorstep
; /* inode32 agf stepper */
2251 type
= args
->otype
= args
->type
;
2252 args
->agbno
= NULLAGBLOCK
;
2254 * Just fix this up, for the case where the last a.g. is shorter
2255 * (or there's only one a.g.) and the caller couldn't easily figure
2256 * that out (xfs_bmap_alloc).
2258 agsize
= mp
->m_sb
.sb_agblocks
;
2259 if (args
->maxlen
> agsize
)
2260 args
->maxlen
= agsize
;
2261 if (args
->alignment
== 0)
2262 args
->alignment
= 1;
2263 ASSERT(XFS_FSB_TO_AGNO(mp
, args
->fsbno
) < mp
->m_sb
.sb_agcount
);
2264 ASSERT(XFS_FSB_TO_AGBNO(mp
, args
->fsbno
) < agsize
);
2265 ASSERT(args
->minlen
<= args
->maxlen
);
2266 ASSERT(args
->minlen
<= agsize
);
2267 ASSERT(args
->mod
< args
->prod
);
2268 if (XFS_FSB_TO_AGNO(mp
, args
->fsbno
) >= mp
->m_sb
.sb_agcount
||
2269 XFS_FSB_TO_AGBNO(mp
, args
->fsbno
) >= agsize
||
2270 args
->minlen
> args
->maxlen
|| args
->minlen
> agsize
||
2271 args
->mod
>= args
->prod
) {
2272 args
->fsbno
= NULLFSBLOCK
;
2273 TRACE_ALLOC("badargs", args
);
2276 minleft
= args
->minleft
;
2279 case XFS_ALLOCTYPE_THIS_AG
:
2280 case XFS_ALLOCTYPE_NEAR_BNO
:
2281 case XFS_ALLOCTYPE_THIS_BNO
:
2283 * These three force us into a single a.g.
2285 args
->agno
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
2286 down_read(&mp
->m_peraglock
);
2287 args
->pag
= &mp
->m_perag
[args
->agno
];
2289 error
= xfs_alloc_fix_freelist(args
, 0);
2290 args
->minleft
= minleft
;
2292 TRACE_ALLOC("nofix", args
);
2296 up_read(&mp
->m_peraglock
);
2297 TRACE_ALLOC("noagbp", args
);
2300 args
->agbno
= XFS_FSB_TO_AGBNO(mp
, args
->fsbno
);
2301 if ((error
= xfs_alloc_ag_vextent(args
)))
2303 up_read(&mp
->m_peraglock
);
2305 case XFS_ALLOCTYPE_START_BNO
:
2307 * Try near allocation first, then anywhere-in-ag after
2308 * the first a.g. fails.
2310 if ((args
->userdata
== XFS_ALLOC_INITIAL_USER_DATA
) &&
2311 (mp
->m_flags
& XFS_MOUNT_32BITINODES
)) {
2312 args
->fsbno
= XFS_AGB_TO_FSB(mp
,
2313 ((mp
->m_agfrotor
/ rotorstep
) %
2314 mp
->m_sb
.sb_agcount
), 0);
2317 args
->agbno
= XFS_FSB_TO_AGBNO(mp
, args
->fsbno
);
2318 args
->type
= XFS_ALLOCTYPE_NEAR_BNO
;
2320 case XFS_ALLOCTYPE_ANY_AG
:
2321 case XFS_ALLOCTYPE_START_AG
:
2322 case XFS_ALLOCTYPE_FIRST_AG
:
2324 * Rotate through the allocation groups looking for a winner.
2326 if (type
== XFS_ALLOCTYPE_ANY_AG
) {
2328 * Start with the last place we left off.
2330 args
->agno
= sagno
= (mp
->m_agfrotor
/ rotorstep
) %
2331 mp
->m_sb
.sb_agcount
;
2332 args
->type
= XFS_ALLOCTYPE_THIS_AG
;
2333 flags
= XFS_ALLOC_FLAG_TRYLOCK
;
2334 } else if (type
== XFS_ALLOCTYPE_FIRST_AG
) {
2336 * Start with allocation group given by bno.
2338 args
->agno
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
2339 args
->type
= XFS_ALLOCTYPE_THIS_AG
;
2343 if (type
== XFS_ALLOCTYPE_START_AG
)
2344 args
->type
= XFS_ALLOCTYPE_THIS_AG
;
2346 * Start with the given allocation group.
2348 args
->agno
= sagno
= XFS_FSB_TO_AGNO(mp
, args
->fsbno
);
2349 flags
= XFS_ALLOC_FLAG_TRYLOCK
;
2352 * Loop over allocation groups twice; first time with
2353 * trylock set, second time without.
2355 down_read(&mp
->m_peraglock
);
2357 args
->pag
= &mp
->m_perag
[args
->agno
];
2358 if (no_min
) args
->minleft
= 0;
2359 error
= xfs_alloc_fix_freelist(args
, flags
);
2360 args
->minleft
= minleft
;
2362 TRACE_ALLOC("nofix", args
);
2366 * If we get a buffer back then the allocation will fly.
2369 if ((error
= xfs_alloc_ag_vextent(args
)))
2373 TRACE_ALLOC("loopfailed", args
);
2375 * Didn't work, figure out the next iteration.
2377 if (args
->agno
== sagno
&&
2378 type
== XFS_ALLOCTYPE_START_BNO
)
2379 args
->type
= XFS_ALLOCTYPE_THIS_AG
;
2381 * For the first allocation, we can try any AG to get
2382 * space. However, if we already have allocated a
2383 * block, we don't want to try AGs whose number is below
2384 * sagno. Otherwise, we may end up with out-of-order
2385 * locking of AGF, which might cause deadlock.
2387 if (++(args
->agno
) == mp
->m_sb
.sb_agcount
) {
2388 if (args
->firstblock
!= NULLFSBLOCK
)
2394 * Reached the starting a.g., must either be done
2395 * or switch to non-trylock mode.
2397 if (args
->agno
== sagno
) {
2399 args
->agbno
= NULLAGBLOCK
;
2400 TRACE_ALLOC("allfailed", args
);
2407 if (type
== XFS_ALLOCTYPE_START_BNO
) {
2408 args
->agbno
= XFS_FSB_TO_AGBNO(mp
,
2410 args
->type
= XFS_ALLOCTYPE_NEAR_BNO
;
2415 up_read(&mp
->m_peraglock
);
2416 if (bump_rotor
|| (type
== XFS_ALLOCTYPE_ANY_AG
)) {
2417 if (args
->agno
== sagno
)
2418 mp
->m_agfrotor
= (mp
->m_agfrotor
+ 1) %
2419 (mp
->m_sb
.sb_agcount
* rotorstep
);
2421 mp
->m_agfrotor
= (args
->agno
* rotorstep
+ 1) %
2422 (mp
->m_sb
.sb_agcount
* rotorstep
);
2429 if (args
->agbno
== NULLAGBLOCK
)
2430 args
->fsbno
= NULLFSBLOCK
;
2432 args
->fsbno
= XFS_AGB_TO_FSB(mp
, args
->agno
, args
->agbno
);
2434 ASSERT(args
->len
>= args
->minlen
);
2435 ASSERT(args
->len
<= args
->maxlen
);
2436 ASSERT(args
->agbno
% args
->alignment
== 0);
2437 XFS_AG_CHECK_DADDR(mp
, XFS_FSB_TO_DADDR(mp
, args
->fsbno
),
2443 up_read(&mp
->m_peraglock
);
2449 * Just break up the extent address and hand off to xfs_free_ag_extent
2450 * after fixing up the freelist.
2454 xfs_trans_t
*tp
, /* transaction pointer */
2455 xfs_fsblock_t bno
, /* starting block number of extent */
2456 xfs_extlen_t len
) /* length of extent */
2458 xfs_alloc_arg_t args
;
2462 memset(&args
, 0, sizeof(xfs_alloc_arg_t
));
2464 args
.mp
= tp
->t_mountp
;
2465 args
.agno
= XFS_FSB_TO_AGNO(args
.mp
, bno
);
2466 ASSERT(args
.agno
< args
.mp
->m_sb
.sb_agcount
);
2467 args
.agbno
= XFS_FSB_TO_AGBNO(args
.mp
, bno
);
2468 down_read(&args
.mp
->m_peraglock
);
2469 args
.pag
= &args
.mp
->m_perag
[args
.agno
];
2470 if ((error
= xfs_alloc_fix_freelist(&args
, XFS_ALLOC_FLAG_FREEING
)))
2473 ASSERT(args
.agbp
!= NULL
);
2474 ASSERT((args
.agbno
+ len
) <=
2475 be32_to_cpu(XFS_BUF_TO_AGF(args
.agbp
)->agf_length
));
2477 error
= xfs_free_ag_extent(tp
, args
.agbp
, args
.agno
, args
.agbno
, len
, 0);
2479 up_read(&args
.mp
->m_peraglock
);
2485 * AG Busy list management
2486 * The busy list contains block ranges that have been freed but whose
2487 * transactions have not yet hit disk. If any block listed in a busy
2488 * list is reused, the transaction that freed it must be forced to disk
2489 * before continuing to use the block.
2491 * xfs_alloc_mark_busy - add to the per-ag busy list
2492 * xfs_alloc_clear_busy - remove an item from the per-ag busy list
2495 xfs_alloc_mark_busy(xfs_trans_t
*tp
,
2496 xfs_agnumber_t agno
,
2501 xfs_perag_busy_t
*bsy
;
2506 s
= mutex_spinlock(&mp
->m_perag
[agno
].pagb_lock
);
2508 /* search pagb_list for an open slot */
2509 for (bsy
= mp
->m_perag
[agno
].pagb_list
, n
= 0;
2510 n
< XFS_PAGB_NUM_SLOTS
;
2512 if (bsy
->busy_tp
== NULL
) {
2517 if (n
< XFS_PAGB_NUM_SLOTS
) {
2518 bsy
= &mp
->m_perag
[agno
].pagb_list
[n
];
2519 mp
->m_perag
[agno
].pagb_count
++;
2520 TRACE_BUSY("xfs_alloc_mark_busy", "got", agno
, bno
, len
, n
, tp
);
2521 bsy
->busy_start
= bno
;
2522 bsy
->busy_length
= len
;
2524 xfs_trans_add_busy(tp
, agno
, n
);
2526 TRACE_BUSY("xfs_alloc_mark_busy", "FULL", agno
, bno
, len
, -1, tp
);
2528 * The busy list is full! Since it is now not possible to
2529 * track the free block, make this a synchronous transaction
2530 * to insure that the block is not reused before this
2531 * transaction commits.
2533 xfs_trans_set_sync(tp
);
2536 mutex_spinunlock(&mp
->m_perag
[agno
].pagb_lock
, s
);
2540 xfs_alloc_clear_busy(xfs_trans_t
*tp
,
2541 xfs_agnumber_t agno
,
2545 xfs_perag_busy_t
*list
;
2550 s
= mutex_spinlock(&mp
->m_perag
[agno
].pagb_lock
);
2551 list
= mp
->m_perag
[agno
].pagb_list
;
2553 ASSERT(idx
< XFS_PAGB_NUM_SLOTS
);
2554 if (list
[idx
].busy_tp
== tp
) {
2555 TRACE_UNBUSY("xfs_alloc_clear_busy", "found", agno
, idx
, tp
);
2556 list
[idx
].busy_tp
= NULL
;
2557 mp
->m_perag
[agno
].pagb_count
--;
2559 TRACE_UNBUSY("xfs_alloc_clear_busy", "missing", agno
, idx
, tp
);
2562 mutex_spinunlock(&mp
->m_perag
[agno
].pagb_lock
, s
);
2567 * returns non-zero if any of (agno,bno):len is in a busy list
2570 xfs_alloc_search_busy(xfs_trans_t
*tp
,
2571 xfs_agnumber_t agno
,
2576 xfs_perag_busy_t
*bsy
;
2578 xfs_agblock_t uend
, bend
;
2585 s
= mutex_spinlock(&mp
->m_perag
[agno
].pagb_lock
);
2586 cnt
= mp
->m_perag
[agno
].pagb_count
;
2588 uend
= bno
+ len
- 1;
2590 /* search pagb_list for this slot, skipping open slots */
2591 for (bsy
= mp
->m_perag
[agno
].pagb_list
, n
= 0;
2595 * (start1,length1) within (start2, length2)
2597 if (bsy
->busy_tp
!= NULL
) {
2598 bend
= bsy
->busy_start
+ bsy
->busy_length
- 1;
2600 (uend
< bsy
->busy_start
)) {
2603 TRACE_BUSYSEARCH("xfs_alloc_search_busy",
2604 "found1", agno
, bno
, len
, n
,
2612 * If a block was found, force the log through the LSN of the
2613 * transaction that freed the block
2616 TRACE_BUSYSEARCH("xfs_alloc_search_busy", "found", agno
, bno
, len
, n
, tp
);
2617 lsn
= bsy
->busy_tp
->t_commit_lsn
;
2618 mutex_spinunlock(&mp
->m_perag
[agno
].pagb_lock
, s
);
2619 xfs_log_force(mp
, lsn
, XFS_LOG_FORCE
|XFS_LOG_SYNC
);
2621 TRACE_BUSYSEARCH("xfs_alloc_search_busy", "not-found", agno
, bno
, len
, n
, tp
);
2623 mutex_spinunlock(&mp
->m_perag
[agno
].pagb_lock
, s
);