]> git.ipfire.org Git - people/ms/linux.git/blame - fs/xfs/xfs_alloc.c
xfs: connect up write verifiers to new buffers
[people/ms/linux.git] / fs / xfs / xfs_alloc.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
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
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
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.
1da177e4 13 *
7b718769
NS
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
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
a844f451 21#include "xfs_bit.h"
1da177e4
LT
22#include "xfs_log.h"
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
1da177e4 26#include "xfs_mount.h"
1da177e4 27#include "xfs_bmap_btree.h"
a844f451 28#include "xfs_alloc_btree.h"
1da177e4 29#include "xfs_ialloc_btree.h"
a844f451
NS
30#include "xfs_dinode.h"
31#include "xfs_inode.h"
1da177e4 32#include "xfs_btree.h"
1da177e4 33#include "xfs_alloc.h"
efc27b52 34#include "xfs_extent_busy.h"
1da177e4 35#include "xfs_error.h"
0b1b213f 36#include "xfs_trace.h"
1da177e4 37
c999a223 38struct workqueue_struct *xfs_alloc_wq;
1da177e4
LT
39
40#define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
41
42#define XFSA_FIXUP_BNO_OK 1
43#define XFSA_FIXUP_CNT_OK 2
44
1da177e4
LT
45STATIC int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t *);
46STATIC int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t *);
47STATIC int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t *);
48STATIC int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t *,
e26f0501 49 xfs_btree_cur_t *, xfs_agblock_t *, xfs_extlen_t *, int *);
1da177e4 50
fe033cc8
CH
51/*
52 * Lookup the record equal to [bno, len] in the btree given by cur.
53 */
54STATIC int /* error */
55xfs_alloc_lookup_eq(
56 struct xfs_btree_cur *cur, /* btree cursor */
57 xfs_agblock_t bno, /* starting block of extent */
58 xfs_extlen_t len, /* length of extent */
59 int *stat) /* success/failure */
60{
61 cur->bc_rec.a.ar_startblock = bno;
62 cur->bc_rec.a.ar_blockcount = len;
63 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
64}
65
66/*
67 * Lookup the first record greater than or equal to [bno, len]
68 * in the btree given by cur.
69 */
a66d6363 70int /* error */
fe033cc8
CH
71xfs_alloc_lookup_ge(
72 struct xfs_btree_cur *cur, /* btree cursor */
73 xfs_agblock_t bno, /* starting block of extent */
74 xfs_extlen_t len, /* length of extent */
75 int *stat) /* success/failure */
76{
77 cur->bc_rec.a.ar_startblock = bno;
78 cur->bc_rec.a.ar_blockcount = len;
79 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
80}
81
82/*
83 * Lookup the first record less than or equal to [bno, len]
84 * in the btree given by cur.
85 */
a46db608 86int /* error */
fe033cc8
CH
87xfs_alloc_lookup_le(
88 struct xfs_btree_cur *cur, /* btree cursor */
89 xfs_agblock_t bno, /* starting block of extent */
90 xfs_extlen_t len, /* length of extent */
91 int *stat) /* success/failure */
92{
93 cur->bc_rec.a.ar_startblock = bno;
94 cur->bc_rec.a.ar_blockcount = len;
95 return xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat);
96}
97
278d0ca1
CH
98/*
99 * Update the record referred to by cur to the value given
100 * by [bno, len].
101 * This either works (return 0) or gets an EFSCORRUPTED error.
102 */
103STATIC int /* error */
104xfs_alloc_update(
105 struct xfs_btree_cur *cur, /* btree cursor */
106 xfs_agblock_t bno, /* starting block of extent */
107 xfs_extlen_t len) /* length of extent */
108{
109 union xfs_btree_rec rec;
110
111 rec.alloc.ar_startblock = cpu_to_be32(bno);
112 rec.alloc.ar_blockcount = cpu_to_be32(len);
113 return xfs_btree_update(cur, &rec);
114}
fe033cc8 115
8cc938fe
CH
116/*
117 * Get the data from the pointed-to record.
118 */
a46db608 119int /* error */
8cc938fe
CH
120xfs_alloc_get_rec(
121 struct xfs_btree_cur *cur, /* btree cursor */
122 xfs_agblock_t *bno, /* output: starting block of extent */
123 xfs_extlen_t *len, /* output: length of extent */
124 int *stat) /* output: success/failure */
125{
126 union xfs_btree_rec *rec;
127 int error;
128
129 error = xfs_btree_get_rec(cur, &rec, stat);
130 if (!error && *stat == 1) {
131 *bno = be32_to_cpu(rec->alloc.ar_startblock);
132 *len = be32_to_cpu(rec->alloc.ar_blockcount);
133 }
134 return error;
135}
136
1da177e4
LT
137/*
138 * Compute aligned version of the found extent.
139 * Takes alignment and min length into account.
140 */
12375c82 141STATIC void
1da177e4 142xfs_alloc_compute_aligned(
86fa8af6 143 xfs_alloc_arg_t *args, /* allocation argument structure */
1da177e4
LT
144 xfs_agblock_t foundbno, /* starting block in found extent */
145 xfs_extlen_t foundlen, /* length in found extent */
1da177e4
LT
146 xfs_agblock_t *resbno, /* result block number */
147 xfs_extlen_t *reslen) /* result length */
148{
149 xfs_agblock_t bno;
1da177e4
LT
150 xfs_extlen_t len;
151
e26f0501 152 /* Trim busy sections out of found extent */
4ecbfe63 153 xfs_extent_busy_trim(args, foundbno, foundlen, &bno, &len);
e26f0501
CH
154
155 if (args->alignment > 1 && len >= args->minlen) {
156 xfs_agblock_t aligned_bno = roundup(bno, args->alignment);
157 xfs_extlen_t diff = aligned_bno - bno;
158
159 *resbno = aligned_bno;
160 *reslen = diff >= len ? 0 : len - diff;
1da177e4 161 } else {
e26f0501
CH
162 *resbno = bno;
163 *reslen = len;
1da177e4 164 }
1da177e4
LT
165}
166
167/*
168 * Compute best start block and diff for "near" allocations.
169 * freelen >= wantlen already checked by caller.
170 */
171STATIC xfs_extlen_t /* difference value (absolute) */
172xfs_alloc_compute_diff(
173 xfs_agblock_t wantbno, /* target starting block */
174 xfs_extlen_t wantlen, /* target length */
175 xfs_extlen_t alignment, /* target alignment */
176 xfs_agblock_t freebno, /* freespace's starting block */
177 xfs_extlen_t freelen, /* freespace's length */
178 xfs_agblock_t *newbnop) /* result: best start block from free */
179{
180 xfs_agblock_t freeend; /* end of freespace extent */
181 xfs_agblock_t newbno1; /* return block number */
182 xfs_agblock_t newbno2; /* other new block number */
183 xfs_extlen_t newlen1=0; /* length with newbno1 */
184 xfs_extlen_t newlen2=0; /* length with newbno2 */
185 xfs_agblock_t wantend; /* end of target extent */
186
187 ASSERT(freelen >= wantlen);
188 freeend = freebno + freelen;
189 wantend = wantbno + wantlen;
190 if (freebno >= wantbno) {
191 if ((newbno1 = roundup(freebno, alignment)) >= freeend)
192 newbno1 = NULLAGBLOCK;
193 } else if (freeend >= wantend && alignment > 1) {
194 newbno1 = roundup(wantbno, alignment);
195 newbno2 = newbno1 - alignment;
196 if (newbno1 >= freeend)
197 newbno1 = NULLAGBLOCK;
198 else
199 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1);
200 if (newbno2 < freebno)
201 newbno2 = NULLAGBLOCK;
202 else
203 newlen2 = XFS_EXTLEN_MIN(wantlen, freeend - newbno2);
204 if (newbno1 != NULLAGBLOCK && newbno2 != NULLAGBLOCK) {
205 if (newlen1 < newlen2 ||
206 (newlen1 == newlen2 &&
207 XFS_ABSDIFF(newbno1, wantbno) >
208 XFS_ABSDIFF(newbno2, wantbno)))
209 newbno1 = newbno2;
210 } else if (newbno2 != NULLAGBLOCK)
211 newbno1 = newbno2;
212 } else if (freeend >= wantend) {
213 newbno1 = wantbno;
214 } else if (alignment > 1) {
215 newbno1 = roundup(freeend - wantlen, alignment);
216 if (newbno1 > freeend - wantlen &&
217 newbno1 - alignment >= freebno)
218 newbno1 -= alignment;
219 else if (newbno1 >= freeend)
220 newbno1 = NULLAGBLOCK;
221 } else
222 newbno1 = freeend - wantlen;
223 *newbnop = newbno1;
224 return newbno1 == NULLAGBLOCK ? 0 : XFS_ABSDIFF(newbno1, wantbno);
225}
226
227/*
228 * Fix up the length, based on mod and prod.
229 * len should be k * prod + mod for some k.
230 * If len is too small it is returned unchanged.
231 * If len hits maxlen it is left alone.
232 */
233STATIC void
234xfs_alloc_fix_len(
235 xfs_alloc_arg_t *args) /* allocation argument structure */
236{
237 xfs_extlen_t k;
238 xfs_extlen_t rlen;
239
240 ASSERT(args->mod < args->prod);
241 rlen = args->len;
242 ASSERT(rlen >= args->minlen);
243 ASSERT(rlen <= args->maxlen);
244 if (args->prod <= 1 || rlen < args->mod || rlen == args->maxlen ||
245 (args->mod == 0 && rlen < args->prod))
246 return;
247 k = rlen % args->prod;
248 if (k == args->mod)
249 return;
250 if (k > args->mod) {
251 if ((int)(rlen = rlen - k - args->mod) < (int)args->minlen)
252 return;
253 } else {
254 if ((int)(rlen = rlen - args->prod - (args->mod - k)) <
255 (int)args->minlen)
256 return;
257 }
258 ASSERT(rlen >= args->minlen);
259 ASSERT(rlen <= args->maxlen);
260 args->len = rlen;
261}
262
263/*
264 * Fix up length if there is too little space left in the a.g.
265 * Return 1 if ok, 0 if too little, should give up.
266 */
267STATIC int
268xfs_alloc_fix_minleft(
269 xfs_alloc_arg_t *args) /* allocation argument structure */
270{
271 xfs_agf_t *agf; /* a.g. freelist header */
272 int diff; /* free space difference */
273
274 if (args->minleft == 0)
275 return 1;
276 agf = XFS_BUF_TO_AGF(args->agbp);
16259e7d 277 diff = be32_to_cpu(agf->agf_freeblks)
1da177e4
LT
278 - args->len - args->minleft;
279 if (diff >= 0)
280 return 1;
281 args->len += diff; /* shrink the allocated space */
282 if (args->len >= args->minlen)
283 return 1;
284 args->agbno = NULLAGBLOCK;
285 return 0;
286}
287
288/*
289 * Update the two btrees, logically removing from freespace the extent
290 * starting at rbno, rlen blocks. The extent is contained within the
291 * actual (current) free extent fbno for flen blocks.
292 * Flags are passed in indicating whether the cursors are set to the
293 * relevant records.
294 */
295STATIC int /* error code */
296xfs_alloc_fixup_trees(
297 xfs_btree_cur_t *cnt_cur, /* cursor for by-size btree */
298 xfs_btree_cur_t *bno_cur, /* cursor for by-block btree */
299 xfs_agblock_t fbno, /* starting block of free extent */
300 xfs_extlen_t flen, /* length of free extent */
301 xfs_agblock_t rbno, /* starting block of returned extent */
302 xfs_extlen_t rlen, /* length of returned extent */
303 int flags) /* flags, XFSA_FIXUP_... */
304{
305 int error; /* error code */
306 int i; /* operation results */
307 xfs_agblock_t nfbno1; /* first new free startblock */
308 xfs_agblock_t nfbno2; /* second new free startblock */
309 xfs_extlen_t nflen1=0; /* first new free length */
310 xfs_extlen_t nflen2=0; /* second new free length */
311
312 /*
313 * Look up the record in the by-size tree if necessary.
314 */
315 if (flags & XFSA_FIXUP_CNT_OK) {
316#ifdef DEBUG
317 if ((error = xfs_alloc_get_rec(cnt_cur, &nfbno1, &nflen1, &i)))
318 return error;
319 XFS_WANT_CORRUPTED_RETURN(
320 i == 1 && nfbno1 == fbno && nflen1 == flen);
321#endif
322 } else {
323 if ((error = xfs_alloc_lookup_eq(cnt_cur, fbno, flen, &i)))
324 return error;
325 XFS_WANT_CORRUPTED_RETURN(i == 1);
326 }
327 /*
328 * Look up the record in the by-block tree if necessary.
329 */
330 if (flags & XFSA_FIXUP_BNO_OK) {
331#ifdef DEBUG
332 if ((error = xfs_alloc_get_rec(bno_cur, &nfbno1, &nflen1, &i)))
333 return error;
334 XFS_WANT_CORRUPTED_RETURN(
335 i == 1 && nfbno1 == fbno && nflen1 == flen);
336#endif
337 } else {
338 if ((error = xfs_alloc_lookup_eq(bno_cur, fbno, flen, &i)))
339 return error;
340 XFS_WANT_CORRUPTED_RETURN(i == 1);
341 }
7cc95a82 342
1da177e4 343#ifdef DEBUG
7cc95a82
CH
344 if (bno_cur->bc_nlevels == 1 && cnt_cur->bc_nlevels == 1) {
345 struct xfs_btree_block *bnoblock;
346 struct xfs_btree_block *cntblock;
347
348 bnoblock = XFS_BUF_TO_BLOCK(bno_cur->bc_bufs[0]);
349 cntblock = XFS_BUF_TO_BLOCK(cnt_cur->bc_bufs[0]);
1da177e4 350
7cc95a82
CH
351 XFS_WANT_CORRUPTED_RETURN(
352 bnoblock->bb_numrecs == cntblock->bb_numrecs);
1da177e4
LT
353 }
354#endif
7cc95a82 355
1da177e4
LT
356 /*
357 * Deal with all four cases: the allocated record is contained
358 * within the freespace record, so we can have new freespace
359 * at either (or both) end, or no freespace remaining.
360 */
361 if (rbno == fbno && rlen == flen)
362 nfbno1 = nfbno2 = NULLAGBLOCK;
363 else if (rbno == fbno) {
364 nfbno1 = rbno + rlen;
365 nflen1 = flen - rlen;
366 nfbno2 = NULLAGBLOCK;
367 } else if (rbno + rlen == fbno + flen) {
368 nfbno1 = fbno;
369 nflen1 = flen - rlen;
370 nfbno2 = NULLAGBLOCK;
371 } else {
372 nfbno1 = fbno;
373 nflen1 = rbno - fbno;
374 nfbno2 = rbno + rlen;
375 nflen2 = (fbno + flen) - nfbno2;
376 }
377 /*
378 * Delete the entry from the by-size btree.
379 */
91cca5df 380 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4
LT
381 return error;
382 XFS_WANT_CORRUPTED_RETURN(i == 1);
383 /*
384 * Add new by-size btree entry(s).
385 */
386 if (nfbno1 != NULLAGBLOCK) {
387 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno1, nflen1, &i)))
388 return error;
389 XFS_WANT_CORRUPTED_RETURN(i == 0);
4b22a571 390 if ((error = xfs_btree_insert(cnt_cur, &i)))
1da177e4
LT
391 return error;
392 XFS_WANT_CORRUPTED_RETURN(i == 1);
393 }
394 if (nfbno2 != NULLAGBLOCK) {
395 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno2, nflen2, &i)))
396 return error;
397 XFS_WANT_CORRUPTED_RETURN(i == 0);
4b22a571 398 if ((error = xfs_btree_insert(cnt_cur, &i)))
1da177e4
LT
399 return error;
400 XFS_WANT_CORRUPTED_RETURN(i == 1);
401 }
402 /*
403 * Fix up the by-block btree entry(s).
404 */
405 if (nfbno1 == NULLAGBLOCK) {
406 /*
407 * No remaining freespace, just delete the by-block tree entry.
408 */
91cca5df 409 if ((error = xfs_btree_delete(bno_cur, &i)))
1da177e4
LT
410 return error;
411 XFS_WANT_CORRUPTED_RETURN(i == 1);
412 } else {
413 /*
414 * Update the by-block entry to start later|be shorter.
415 */
416 if ((error = xfs_alloc_update(bno_cur, nfbno1, nflen1)))
417 return error;
418 }
419 if (nfbno2 != NULLAGBLOCK) {
420 /*
421 * 2 resulting free entries, need to add one.
422 */
423 if ((error = xfs_alloc_lookup_eq(bno_cur, nfbno2, nflen2, &i)))
424 return error;
425 XFS_WANT_CORRUPTED_RETURN(i == 0);
4b22a571 426 if ((error = xfs_btree_insert(bno_cur, &i)))
1da177e4
LT
427 return error;
428 XFS_WANT_CORRUPTED_RETURN(i == 1);
429 }
430 return 0;
431}
432
612cfbfe
DC
433static void
434xfs_agfl_verify(
bb80c6d7
DC
435 struct xfs_buf *bp)
436{
437#ifdef WHEN_CRCS_COME_ALONG
438 /*
439 * we cannot actually do any verification of the AGFL because mkfs does
440 * not initialise the AGFL to zero or NULL. Hence the only valid part of
441 * the AGFL is what the AGF says is active. We can't get to the AGF, so
442 * we can't verify just those entries are valid.
443 *
444 * This problem goes away when the CRC format change comes along as that
445 * requires the AGFL to be initialised by mkfs. At that point, we can
446 * verify the blocks in the agfl -active or not- lie within the bounds
447 * of the AG. Until then, just leave this check ifdef'd out.
448 */
449 struct xfs_mount *mp = bp->b_target->bt_mount;
450 struct xfs_agfl *agfl = XFS_BUF_TO_AGFL(bp);
451 int agfl_ok = 1;
452
453 int i;
454
455 for (i = 0; i < XFS_AGFL_SIZE(mp); i++) {
456 if (be32_to_cpu(agfl->agfl_bno[i]) == NULLAGBLOCK ||
457 be32_to_cpu(agfl->agfl_bno[i]) >= mp->m_sb.sb_agblocks)
458 agfl_ok = 0;
459 }
460
461 if (!agfl_ok) {
462 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, agfl);
463 xfs_buf_ioerror(bp, EFSCORRUPTED);
464 }
465#endif
612cfbfe
DC
466}
467
b0f539de 468void
612cfbfe
DC
469xfs_agfl_write_verify(
470 struct xfs_buf *bp)
471{
472 xfs_agfl_verify(bp);
473}
474
b0f539de 475static void
612cfbfe
DC
476xfs_agfl_read_verify(
477 struct xfs_buf *bp)
478{
479 xfs_agfl_verify(bp);
480 bp->b_pre_io = xfs_agfl_write_verify;
bb80c6d7
DC
481 bp->b_iodone = NULL;
482 xfs_buf_ioend(bp, 0);
483}
484
1da177e4
LT
485/*
486 * Read in the allocation group free block array.
487 */
488STATIC int /* error */
489xfs_alloc_read_agfl(
490 xfs_mount_t *mp, /* mount point structure */
491 xfs_trans_t *tp, /* transaction pointer */
492 xfs_agnumber_t agno, /* allocation group number */
493 xfs_buf_t **bpp) /* buffer for the ag free block array */
494{
495 xfs_buf_t *bp; /* return value */
496 int error;
497
498 ASSERT(agno != NULLAGNUMBER);
499 error = xfs_trans_read_buf(
500 mp, tp, mp->m_ddev_targp,
501 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
bb80c6d7 502 XFS_FSS_TO_BB(mp, 1), 0, &bp, xfs_agfl_read_verify);
1da177e4
LT
503 if (error)
504 return error;
5a52c2a5 505 ASSERT(!xfs_buf_geterror(bp));
38f23232 506 xfs_buf_set_ref(bp, XFS_AGFL_REF);
1da177e4
LT
507 *bpp = bp;
508 return 0;
509}
510
ecb6928f
CH
511STATIC int
512xfs_alloc_update_counters(
513 struct xfs_trans *tp,
514 struct xfs_perag *pag,
515 struct xfs_buf *agbp,
516 long len)
517{
518 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
519
520 pag->pagf_freeblks += len;
521 be32_add_cpu(&agf->agf_freeblks, len);
522
523 xfs_trans_agblocks_delta(tp, len);
524 if (unlikely(be32_to_cpu(agf->agf_freeblks) >
525 be32_to_cpu(agf->agf_length)))
526 return EFSCORRUPTED;
527
528 xfs_alloc_log_agf(tp, agbp, XFS_AGF_FREEBLKS);
529 return 0;
530}
531
1da177e4
LT
532/*
533 * Allocation group level functions.
534 */
535
536/*
537 * Allocate a variable extent in the allocation group agno.
538 * Type and bno are used to determine where in the allocation group the
539 * extent will start.
540 * Extent's length (returned in *len) will be between minlen and maxlen,
541 * and of the form k * prod + mod unless there's nothing that large.
542 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
543 */
544STATIC int /* error */
545xfs_alloc_ag_vextent(
546 xfs_alloc_arg_t *args) /* argument structure for allocation */
547{
548 int error=0;
1da177e4
LT
549
550 ASSERT(args->minlen > 0);
551 ASSERT(args->maxlen > 0);
552 ASSERT(args->minlen <= args->maxlen);
553 ASSERT(args->mod < args->prod);
554 ASSERT(args->alignment > 0);
555 /*
556 * Branch to correct routine based on the type.
557 */
558 args->wasfromfl = 0;
559 switch (args->type) {
560 case XFS_ALLOCTYPE_THIS_AG:
561 error = xfs_alloc_ag_vextent_size(args);
562 break;
563 case XFS_ALLOCTYPE_NEAR_BNO:
564 error = xfs_alloc_ag_vextent_near(args);
565 break;
566 case XFS_ALLOCTYPE_THIS_BNO:
567 error = xfs_alloc_ag_vextent_exact(args);
568 break;
569 default:
570 ASSERT(0);
571 /* NOTREACHED */
572 }
ecb6928f
CH
573
574 if (error || args->agbno == NULLAGBLOCK)
1da177e4 575 return error;
ecb6928f
CH
576
577 ASSERT(args->len >= args->minlen);
578 ASSERT(args->len <= args->maxlen);
579 ASSERT(!args->wasfromfl || !args->isfl);
580 ASSERT(args->agbno % args->alignment == 0);
581
582 if (!args->wasfromfl) {
583 error = xfs_alloc_update_counters(args->tp, args->pag,
584 args->agbp,
585 -((long)(args->len)));
586 if (error)
587 return error;
588
4ecbfe63 589 ASSERT(!xfs_extent_busy_search(args->mp, args->agno,
e26f0501 590 args->agbno, args->len));
1da177e4 591 }
ecb6928f
CH
592
593 if (!args->isfl) {
594 xfs_trans_mod_sb(args->tp, args->wasdel ?
595 XFS_TRANS_SB_RES_FDBLOCKS :
596 XFS_TRANS_SB_FDBLOCKS,
597 -((long)(args->len)));
598 }
599
600 XFS_STATS_INC(xs_allocx);
601 XFS_STATS_ADD(xs_allocb, args->len);
602 return error;
1da177e4
LT
603}
604
605/*
606 * Allocate a variable extent at exactly agno/bno.
607 * Extent's length (returned in *len) will be between minlen and maxlen,
608 * and of the form k * prod + mod unless there's nothing that large.
609 * Return the starting a.g. block (bno), or NULLAGBLOCK if we can't do it.
610 */
611STATIC int /* error */
612xfs_alloc_ag_vextent_exact(
613 xfs_alloc_arg_t *args) /* allocation argument structure */
614{
615 xfs_btree_cur_t *bno_cur;/* by block-number btree cursor */
616 xfs_btree_cur_t *cnt_cur;/* by count btree cursor */
1da177e4
LT
617 int error;
618 xfs_agblock_t fbno; /* start block of found extent */
1da177e4 619 xfs_extlen_t flen; /* length of found extent */
e26f0501
CH
620 xfs_agblock_t tbno; /* start block of trimmed extent */
621 xfs_extlen_t tlen; /* length of trimmed extent */
622 xfs_agblock_t tend; /* end block of trimmed extent */
1da177e4 623 int i; /* success/failure of operation */
1da177e4
LT
624
625 ASSERT(args->alignment == 1);
9f9baab3 626
1da177e4
LT
627 /*
628 * Allocate/initialize a cursor for the by-number freespace btree.
629 */
561f7d17 630 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
9f9baab3
CH
631 args->agno, XFS_BTNUM_BNO);
632
1da177e4
LT
633 /*
634 * Lookup bno and minlen in the btree (minlen is irrelevant, really).
635 * Look for the closest free block <= bno, it must contain bno
636 * if any free block does.
637 */
9f9baab3
CH
638 error = xfs_alloc_lookup_le(bno_cur, args->agbno, args->minlen, &i);
639 if (error)
1da177e4 640 goto error0;
9f9baab3
CH
641 if (!i)
642 goto not_found;
643
1da177e4
LT
644 /*
645 * Grab the freespace record.
646 */
9f9baab3
CH
647 error = xfs_alloc_get_rec(bno_cur, &fbno, &flen, &i);
648 if (error)
1da177e4
LT
649 goto error0;
650 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
651 ASSERT(fbno <= args->agbno);
9f9baab3 652
1da177e4 653 /*
e26f0501 654 * Check for overlapping busy extents.
1da177e4 655 */
4ecbfe63 656 xfs_extent_busy_trim(args, fbno, flen, &tbno, &tlen);
e26f0501
CH
657
658 /*
659 * Give up if the start of the extent is busy, or the freespace isn't
660 * long enough for the minimum request.
661 */
662 if (tbno > args->agbno)
663 goto not_found;
664 if (tlen < args->minlen)
665 goto not_found;
666 tend = tbno + tlen;
667 if (tend < args->agbno + args->minlen)
9f9baab3
CH
668 goto not_found;
669
1da177e4
LT
670 /*
671 * End of extent will be smaller of the freespace end and the
672 * maximal requested end.
9f9baab3 673 *
1da177e4
LT
674 * Fix the length according to mod and prod if given.
675 */
81463b1c
CS
676 args->len = XFS_AGBLOCK_MIN(tend, args->agbno + args->maxlen)
677 - args->agbno;
1da177e4 678 xfs_alloc_fix_len(args);
9f9baab3
CH
679 if (!xfs_alloc_fix_minleft(args))
680 goto not_found;
681
81463b1c 682 ASSERT(args->agbno + args->len <= tend);
9f9baab3 683
1da177e4 684 /*
81463b1c 685 * We are allocating agbno for args->len
1da177e4
LT
686 * Allocate/initialize a cursor for the by-size btree.
687 */
561f7d17
CH
688 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
689 args->agno, XFS_BTNUM_CNT);
1da177e4 690 ASSERT(args->agbno + args->len <=
16259e7d 691 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
9f9baab3
CH
692 error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen, args->agbno,
693 args->len, XFSA_FIXUP_BNO_OK);
694 if (error) {
1da177e4
LT
695 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
696 goto error0;
697 }
9f9baab3 698
1da177e4
LT
699 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
700 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
0b1b213f 701
1da177e4 702 args->wasfromfl = 0;
9f9baab3
CH
703 trace_xfs_alloc_exact_done(args);
704 return 0;
705
706not_found:
707 /* Didn't find it, return null. */
708 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
709 args->agbno = NULLAGBLOCK;
710 trace_xfs_alloc_exact_notfound(args);
1da177e4
LT
711 return 0;
712
713error0:
714 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
0b1b213f 715 trace_xfs_alloc_exact_error(args);
1da177e4
LT
716 return error;
717}
718
489a150f
CH
719/*
720 * Search the btree in a given direction via the search cursor and compare
721 * the records found against the good extent we've already found.
722 */
723STATIC int
724xfs_alloc_find_best_extent(
725 struct xfs_alloc_arg *args, /* allocation argument structure */
726 struct xfs_btree_cur **gcur, /* good cursor */
727 struct xfs_btree_cur **scur, /* searching cursor */
728 xfs_agblock_t gdiff, /* difference for search comparison */
729 xfs_agblock_t *sbno, /* extent found by search */
e26f0501
CH
730 xfs_extlen_t *slen, /* extent length */
731 xfs_agblock_t *sbnoa, /* aligned extent found by search */
732 xfs_extlen_t *slena, /* aligned extent length */
489a150f
CH
733 int dir) /* 0 = search right, 1 = search left */
734{
489a150f
CH
735 xfs_agblock_t new;
736 xfs_agblock_t sdiff;
737 int error;
738 int i;
739
740 /* The good extent is perfect, no need to search. */
741 if (!gdiff)
742 goto out_use_good;
743
744 /*
745 * Look until we find a better one, run out of space or run off the end.
746 */
747 do {
748 error = xfs_alloc_get_rec(*scur, sbno, slen, &i);
749 if (error)
750 goto error0;
751 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
e26f0501 752 xfs_alloc_compute_aligned(args, *sbno, *slen, sbnoa, slena);
489a150f
CH
753
754 /*
755 * The good extent is closer than this one.
756 */
757 if (!dir) {
e26f0501 758 if (*sbnoa >= args->agbno + gdiff)
489a150f
CH
759 goto out_use_good;
760 } else {
e26f0501 761 if (*sbnoa <= args->agbno - gdiff)
489a150f
CH
762 goto out_use_good;
763 }
764
765 /*
766 * Same distance, compare length and pick the best.
767 */
768 if (*slena >= args->minlen) {
769 args->len = XFS_EXTLEN_MIN(*slena, args->maxlen);
770 xfs_alloc_fix_len(args);
771
772 sdiff = xfs_alloc_compute_diff(args->agbno, args->len,
e26f0501
CH
773 args->alignment, *sbnoa,
774 *slena, &new);
489a150f
CH
775
776 /*
777 * Choose closer size and invalidate other cursor.
778 */
779 if (sdiff < gdiff)
780 goto out_use_search;
781 goto out_use_good;
782 }
783
784 if (!dir)
785 error = xfs_btree_increment(*scur, 0, &i);
786 else
787 error = xfs_btree_decrement(*scur, 0, &i);
788 if (error)
789 goto error0;
790 } while (i);
791
792out_use_good:
793 xfs_btree_del_cursor(*scur, XFS_BTREE_NOERROR);
794 *scur = NULL;
795 return 0;
796
797out_use_search:
798 xfs_btree_del_cursor(*gcur, XFS_BTREE_NOERROR);
799 *gcur = NULL;
800 return 0;
801
802error0:
803 /* caller invalidates cursors */
804 return error;
805}
806
1da177e4
LT
807/*
808 * Allocate a variable extent near bno in the allocation group agno.
809 * Extent's length (returned in len) will be between minlen and maxlen,
810 * and of the form k * prod + mod unless there's nothing that large.
811 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
812 */
813STATIC int /* error */
814xfs_alloc_ag_vextent_near(
815 xfs_alloc_arg_t *args) /* allocation argument structure */
816{
817 xfs_btree_cur_t *bno_cur_gt; /* cursor for bno btree, right side */
818 xfs_btree_cur_t *bno_cur_lt; /* cursor for bno btree, left side */
819 xfs_btree_cur_t *cnt_cur; /* cursor for count btree */
1da177e4
LT
820 xfs_agblock_t gtbno; /* start bno of right side entry */
821 xfs_agblock_t gtbnoa; /* aligned ... */
822 xfs_extlen_t gtdiff; /* difference to right side entry */
823 xfs_extlen_t gtlen; /* length of right side entry */
e26f0501 824 xfs_extlen_t gtlena; /* aligned ... */
1da177e4
LT
825 xfs_agblock_t gtnew; /* useful start bno of right side */
826 int error; /* error code */
827 int i; /* result code, temporary */
828 int j; /* result code, temporary */
829 xfs_agblock_t ltbno; /* start bno of left side entry */
830 xfs_agblock_t ltbnoa; /* aligned ... */
831 xfs_extlen_t ltdiff; /* difference to left side entry */
1da177e4 832 xfs_extlen_t ltlen; /* length of left side entry */
e26f0501 833 xfs_extlen_t ltlena; /* aligned ... */
1da177e4
LT
834 xfs_agblock_t ltnew; /* useful start bno of left side */
835 xfs_extlen_t rlen; /* length of returned extent */
e26f0501 836 int forced = 0;
1da177e4
LT
837#if defined(DEBUG) && defined(__KERNEL__)
838 /*
839 * Randomly don't execute the first algorithm.
840 */
841 int dofirst; /* set to do first algorithm */
842
e7a23a9b 843 dofirst = random32() & 1;
1da177e4 844#endif
e26f0501
CH
845
846restart:
847 bno_cur_lt = NULL;
848 bno_cur_gt = NULL;
849 ltlen = 0;
850 gtlena = 0;
851 ltlena = 0;
852
1da177e4
LT
853 /*
854 * Get a cursor for the by-size btree.
855 */
561f7d17
CH
856 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
857 args->agno, XFS_BTNUM_CNT);
e26f0501 858
1da177e4
LT
859 /*
860 * See if there are any free extents as big as maxlen.
861 */
862 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0, args->maxlen, &i)))
863 goto error0;
864 /*
865 * If none, then pick up the last entry in the tree unless the
866 * tree is empty.
867 */
868 if (!i) {
869 if ((error = xfs_alloc_ag_vextent_small(args, cnt_cur, &ltbno,
870 &ltlen, &i)))
871 goto error0;
872 if (i == 0 || ltlen == 0) {
873 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
e26f0501 874 trace_xfs_alloc_near_noentry(args);
1da177e4
LT
875 return 0;
876 }
877 ASSERT(i == 1);
878 }
879 args->wasfromfl = 0;
e26f0501 880
1da177e4
LT
881 /*
882 * First algorithm.
883 * If the requested extent is large wrt the freespaces available
884 * in this a.g., then the cursor will be pointing to a btree entry
885 * near the right edge of the tree. If it's in the last btree leaf
886 * block, then we just examine all the entries in that block
887 * that are big enough, and pick the best one.
888 * This is written as a while loop so we can break out of it,
889 * but we never loop back to the top.
890 */
891 while (xfs_btree_islastblock(cnt_cur, 0)) {
892 xfs_extlen_t bdiff;
893 int besti=0;
894 xfs_extlen_t blen=0;
895 xfs_agblock_t bnew=0;
896
897#if defined(DEBUG) && defined(__KERNEL__)
898 if (!dofirst)
899 break;
900#endif
901 /*
902 * Start from the entry that lookup found, sequence through
903 * all larger free blocks. If we're actually pointing at a
904 * record smaller than maxlen, go to the start of this block,
905 * and skip all those smaller than minlen.
906 */
907 if (ltlen || args->alignment > 1) {
908 cnt_cur->bc_ptrs[0] = 1;
909 do {
910 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno,
911 &ltlen, &i)))
912 goto error0;
913 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
914 if (ltlen >= args->minlen)
915 break;
637aa50f 916 if ((error = xfs_btree_increment(cnt_cur, 0, &i)))
1da177e4
LT
917 goto error0;
918 } while (i);
919 ASSERT(ltlen >= args->minlen);
920 if (!i)
921 break;
922 }
923 i = cnt_cur->bc_ptrs[0];
924 for (j = 1, blen = 0, bdiff = 0;
925 !error && j && (blen < args->maxlen || bdiff > 0);
637aa50f 926 error = xfs_btree_increment(cnt_cur, 0, &j)) {
1da177e4
LT
927 /*
928 * For each entry, decide if it's better than
929 * the previous best entry.
930 */
931 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
932 goto error0;
933 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
86fa8af6
CH
934 xfs_alloc_compute_aligned(args, ltbno, ltlen,
935 &ltbnoa, &ltlena);
e6430037 936 if (ltlena < args->minlen)
1da177e4
LT
937 continue;
938 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
939 xfs_alloc_fix_len(args);
940 ASSERT(args->len >= args->minlen);
941 if (args->len < blen)
942 continue;
943 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
e26f0501 944 args->alignment, ltbnoa, ltlena, &ltnew);
1da177e4
LT
945 if (ltnew != NULLAGBLOCK &&
946 (args->len > blen || ltdiff < bdiff)) {
947 bdiff = ltdiff;
948 bnew = ltnew;
949 blen = args->len;
950 besti = cnt_cur->bc_ptrs[0];
951 }
952 }
953 /*
954 * It didn't work. We COULD be in a case where
955 * there's a good record somewhere, so try again.
956 */
957 if (blen == 0)
958 break;
959 /*
960 * Point at the best entry, and retrieve it again.
961 */
962 cnt_cur->bc_ptrs[0] = besti;
963 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
964 goto error0;
965 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
73523a2e 966 ASSERT(ltbno + ltlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
1da177e4
LT
967 args->len = blen;
968 if (!xfs_alloc_fix_minleft(args)) {
969 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
0b1b213f 970 trace_xfs_alloc_near_nominleft(args);
1da177e4
LT
971 return 0;
972 }
973 blen = args->len;
974 /*
975 * We are allocating starting at bnew for blen blocks.
976 */
977 args->agbno = bnew;
978 ASSERT(bnew >= ltbno);
73523a2e 979 ASSERT(bnew + blen <= ltbno + ltlen);
1da177e4
LT
980 /*
981 * Set up a cursor for the by-bno tree.
982 */
561f7d17
CH
983 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp,
984 args->agbp, args->agno, XFS_BTNUM_BNO);
1da177e4
LT
985 /*
986 * Fix up the btree entries.
987 */
988 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno,
989 ltlen, bnew, blen, XFSA_FIXUP_CNT_OK)))
990 goto error0;
991 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
992 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
0b1b213f
CH
993
994 trace_xfs_alloc_near_first(args);
1da177e4
LT
995 return 0;
996 }
997 /*
998 * Second algorithm.
999 * Search in the by-bno tree to the left and to the right
1000 * simultaneously, until in each case we find a space big enough,
1001 * or run into the edge of the tree. When we run into the edge,
1002 * we deallocate that cursor.
1003 * If both searches succeed, we compare the two spaces and pick
1004 * the better one.
1005 * With alignment, it's possible for both to fail; the upper
1006 * level algorithm that picks allocation groups for allocations
1007 * is not supposed to do this.
1008 */
1009 /*
1010 * Allocate and initialize the cursor for the leftward search.
1011 */
561f7d17
CH
1012 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1013 args->agno, XFS_BTNUM_BNO);
1da177e4
LT
1014 /*
1015 * Lookup <= bno to find the leftward search's starting point.
1016 */
1017 if ((error = xfs_alloc_lookup_le(bno_cur_lt, args->agbno, args->maxlen, &i)))
1018 goto error0;
1019 if (!i) {
1020 /*
1021 * Didn't find anything; use this cursor for the rightward
1022 * search.
1023 */
1024 bno_cur_gt = bno_cur_lt;
1025 bno_cur_lt = NULL;
1026 }
1027 /*
1028 * Found something. Duplicate the cursor for the rightward search.
1029 */
1030 else if ((error = xfs_btree_dup_cursor(bno_cur_lt, &bno_cur_gt)))
1031 goto error0;
1032 /*
1033 * Increment the cursor, so we will point at the entry just right
1034 * of the leftward entry if any, or to the leftmost entry.
1035 */
637aa50f 1036 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
1da177e4
LT
1037 goto error0;
1038 if (!i) {
1039 /*
1040 * It failed, there are no rightward entries.
1041 */
1042 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_NOERROR);
1043 bno_cur_gt = NULL;
1044 }
1045 /*
1046 * Loop going left with the leftward cursor, right with the
1047 * rightward cursor, until either both directions give up or
1048 * we find an entry at least as big as minlen.
1049 */
1050 do {
1051 if (bno_cur_lt) {
1052 if ((error = xfs_alloc_get_rec(bno_cur_lt, &ltbno, &ltlen, &i)))
1053 goto error0;
1054 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
86fa8af6
CH
1055 xfs_alloc_compute_aligned(args, ltbno, ltlen,
1056 &ltbnoa, &ltlena);
12375c82 1057 if (ltlena >= args->minlen)
1da177e4 1058 break;
8df4da4a 1059 if ((error = xfs_btree_decrement(bno_cur_lt, 0, &i)))
1da177e4
LT
1060 goto error0;
1061 if (!i) {
1062 xfs_btree_del_cursor(bno_cur_lt,
1063 XFS_BTREE_NOERROR);
1064 bno_cur_lt = NULL;
1065 }
1066 }
1067 if (bno_cur_gt) {
1068 if ((error = xfs_alloc_get_rec(bno_cur_gt, &gtbno, &gtlen, &i)))
1069 goto error0;
1070 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
86fa8af6
CH
1071 xfs_alloc_compute_aligned(args, gtbno, gtlen,
1072 &gtbnoa, &gtlena);
12375c82 1073 if (gtlena >= args->minlen)
1da177e4 1074 break;
637aa50f 1075 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
1da177e4
LT
1076 goto error0;
1077 if (!i) {
1078 xfs_btree_del_cursor(bno_cur_gt,
1079 XFS_BTREE_NOERROR);
1080 bno_cur_gt = NULL;
1081 }
1082 }
1083 } while (bno_cur_lt || bno_cur_gt);
489a150f 1084
1da177e4
LT
1085 /*
1086 * Got both cursors still active, need to find better entry.
1087 */
1088 if (bno_cur_lt && bno_cur_gt) {
1da177e4
LT
1089 if (ltlena >= args->minlen) {
1090 /*
489a150f 1091 * Left side is good, look for a right side entry.
1da177e4
LT
1092 */
1093 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1094 xfs_alloc_fix_len(args);
489a150f 1095 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
e26f0501 1096 args->alignment, ltbnoa, ltlena, &ltnew);
489a150f
CH
1097
1098 error = xfs_alloc_find_best_extent(args,
1099 &bno_cur_lt, &bno_cur_gt,
e26f0501
CH
1100 ltdiff, &gtbno, &gtlen,
1101 &gtbnoa, &gtlena,
489a150f
CH
1102 0 /* search right */);
1103 } else {
1104 ASSERT(gtlena >= args->minlen);
1105
1da177e4 1106 /*
489a150f 1107 * Right side is good, look for a left side entry.
1da177e4
LT
1108 */
1109 args->len = XFS_EXTLEN_MIN(gtlena, args->maxlen);
1110 xfs_alloc_fix_len(args);
489a150f 1111 gtdiff = xfs_alloc_compute_diff(args->agbno, args->len,
e26f0501 1112 args->alignment, gtbnoa, gtlena, &gtnew);
489a150f
CH
1113
1114 error = xfs_alloc_find_best_extent(args,
1115 &bno_cur_gt, &bno_cur_lt,
e26f0501
CH
1116 gtdiff, &ltbno, &ltlen,
1117 &ltbnoa, &ltlena,
489a150f 1118 1 /* search left */);
1da177e4 1119 }
489a150f
CH
1120
1121 if (error)
1122 goto error0;
1da177e4 1123 }
489a150f 1124
1da177e4
LT
1125 /*
1126 * If we couldn't get anything, give up.
1127 */
1128 if (bno_cur_lt == NULL && bno_cur_gt == NULL) {
e3a746f5
DC
1129 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1130
e26f0501
CH
1131 if (!forced++) {
1132 trace_xfs_alloc_near_busy(args);
1133 xfs_log_force(args->mp, XFS_LOG_SYNC);
1134 goto restart;
1135 }
0b1b213f 1136 trace_xfs_alloc_size_neither(args);
1da177e4
LT
1137 args->agbno = NULLAGBLOCK;
1138 return 0;
1139 }
489a150f 1140
1da177e4
LT
1141 /*
1142 * At this point we have selected a freespace entry, either to the
1143 * left or to the right. If it's on the right, copy all the
1144 * useful variables to the "left" set so we only have one
1145 * copy of this code.
1146 */
1147 if (bno_cur_gt) {
1148 bno_cur_lt = bno_cur_gt;
1149 bno_cur_gt = NULL;
1150 ltbno = gtbno;
1151 ltbnoa = gtbnoa;
1152 ltlen = gtlen;
1153 ltlena = gtlena;
1154 j = 1;
1155 } else
1156 j = 0;
489a150f 1157
1da177e4
LT
1158 /*
1159 * Fix up the length and compute the useful address.
1160 */
1da177e4
LT
1161 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1162 xfs_alloc_fix_len(args);
1163 if (!xfs_alloc_fix_minleft(args)) {
0b1b213f 1164 trace_xfs_alloc_near_nominleft(args);
1da177e4
LT
1165 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1166 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1167 return 0;
1168 }
1169 rlen = args->len;
e26f0501
CH
1170 (void)xfs_alloc_compute_diff(args->agbno, rlen, args->alignment,
1171 ltbnoa, ltlena, &ltnew);
1da177e4 1172 ASSERT(ltnew >= ltbno);
e26f0501 1173 ASSERT(ltnew + rlen <= ltbnoa + ltlena);
16259e7d 1174 ASSERT(ltnew + rlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
1da177e4 1175 args->agbno = ltnew;
e26f0501 1176
1da177e4
LT
1177 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno, ltlen,
1178 ltnew, rlen, XFSA_FIXUP_BNO_OK)))
1179 goto error0;
0b1b213f
CH
1180
1181 if (j)
1182 trace_xfs_alloc_near_greater(args);
1183 else
1184 trace_xfs_alloc_near_lesser(args);
1185
1da177e4
LT
1186 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1187 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1188 return 0;
1189
1190 error0:
0b1b213f 1191 trace_xfs_alloc_near_error(args);
1da177e4
LT
1192 if (cnt_cur != NULL)
1193 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1194 if (bno_cur_lt != NULL)
1195 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_ERROR);
1196 if (bno_cur_gt != NULL)
1197 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_ERROR);
1198 return error;
1199}
1200
1201/*
1202 * Allocate a variable extent anywhere in the allocation group agno.
1203 * Extent's length (returned in len) will be between minlen and maxlen,
1204 * and of the form k * prod + mod unless there's nothing that large.
1205 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
1206 */
1207STATIC int /* error */
1208xfs_alloc_ag_vextent_size(
1209 xfs_alloc_arg_t *args) /* allocation argument structure */
1210{
1211 xfs_btree_cur_t *bno_cur; /* cursor for bno btree */
1212 xfs_btree_cur_t *cnt_cur; /* cursor for cnt btree */
1213 int error; /* error result */
1214 xfs_agblock_t fbno; /* start of found freespace */
1215 xfs_extlen_t flen; /* length of found freespace */
1da177e4
LT
1216 int i; /* temp status variable */
1217 xfs_agblock_t rbno; /* returned block number */
1218 xfs_extlen_t rlen; /* length of returned extent */
e26f0501 1219 int forced = 0;
1da177e4 1220
e26f0501 1221restart:
1da177e4
LT
1222 /*
1223 * Allocate and initialize a cursor for the by-size btree.
1224 */
561f7d17
CH
1225 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1226 args->agno, XFS_BTNUM_CNT);
1da177e4 1227 bno_cur = NULL;
e26f0501 1228
1da177e4
LT
1229 /*
1230 * Look for an entry >= maxlen+alignment-1 blocks.
1231 */
1232 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0,
1233 args->maxlen + args->alignment - 1, &i)))
1234 goto error0;
e26f0501 1235
1da177e4 1236 /*
e26f0501
CH
1237 * If none or we have busy extents that we cannot allocate from, then
1238 * we have to settle for a smaller extent. In the case that there are
1239 * no large extents, this will return the last entry in the tree unless
1240 * the tree is empty. In the case that there are only busy large
1241 * extents, this will return the largest small extent unless there
1242 * are no smaller extents available.
1da177e4 1243 */
e26f0501
CH
1244 if (!i || forced > 1) {
1245 error = xfs_alloc_ag_vextent_small(args, cnt_cur,
1246 &fbno, &flen, &i);
1247 if (error)
1da177e4
LT
1248 goto error0;
1249 if (i == 0 || flen == 0) {
1250 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
0b1b213f 1251 trace_xfs_alloc_size_noentry(args);
1da177e4
LT
1252 return 0;
1253 }
1254 ASSERT(i == 1);
e26f0501
CH
1255 xfs_alloc_compute_aligned(args, fbno, flen, &rbno, &rlen);
1256 } else {
1257 /*
1258 * Search for a non-busy extent that is large enough.
1259 * If we are at low space, don't check, or if we fall of
1260 * the end of the btree, turn off the busy check and
1261 * restart.
1262 */
1263 for (;;) {
1264 error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen, &i);
1265 if (error)
1266 goto error0;
1267 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1268
1269 xfs_alloc_compute_aligned(args, fbno, flen,
1270 &rbno, &rlen);
1271
1272 if (rlen >= args->maxlen)
1273 break;
1274
1275 error = xfs_btree_increment(cnt_cur, 0, &i);
1276 if (error)
1277 goto error0;
1278 if (i == 0) {
1279 /*
1280 * Our only valid extents must have been busy.
1281 * Make it unbusy by forcing the log out and
1282 * retrying. If we've been here before, forcing
1283 * the log isn't making the extents available,
1284 * which means they have probably been freed in
1285 * this transaction. In that case, we have to
1286 * give up on them and we'll attempt a minlen
1287 * allocation the next time around.
1288 */
1289 xfs_btree_del_cursor(cnt_cur,
1290 XFS_BTREE_NOERROR);
1291 trace_xfs_alloc_size_busy(args);
1292 if (!forced++)
1293 xfs_log_force(args->mp, XFS_LOG_SYNC);
1294 goto restart;
1295 }
1296 }
1da177e4 1297 }
e26f0501 1298
1da177e4
LT
1299 /*
1300 * In the first case above, we got the last entry in the
1301 * by-size btree. Now we check to see if the space hits maxlen
1302 * once aligned; if not, we search left for something better.
1303 * This can't happen in the second case above.
1304 */
1da177e4
LT
1305 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
1306 XFS_WANT_CORRUPTED_GOTO(rlen == 0 ||
1307 (rlen <= flen && rbno + rlen <= fbno + flen), error0);
1308 if (rlen < args->maxlen) {
1309 xfs_agblock_t bestfbno;
1310 xfs_extlen_t bestflen;
1311 xfs_agblock_t bestrbno;
1312 xfs_extlen_t bestrlen;
1313
1314 bestrlen = rlen;
1315 bestrbno = rbno;
1316 bestflen = flen;
1317 bestfbno = fbno;
1318 for (;;) {
8df4da4a 1319 if ((error = xfs_btree_decrement(cnt_cur, 0, &i)))
1da177e4
LT
1320 goto error0;
1321 if (i == 0)
1322 break;
1323 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen,
1324 &i)))
1325 goto error0;
1326 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1327 if (flen < bestrlen)
1328 break;
86fa8af6
CH
1329 xfs_alloc_compute_aligned(args, fbno, flen,
1330 &rbno, &rlen);
1da177e4
LT
1331 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
1332 XFS_WANT_CORRUPTED_GOTO(rlen == 0 ||
1333 (rlen <= flen && rbno + rlen <= fbno + flen),
1334 error0);
1335 if (rlen > bestrlen) {
1336 bestrlen = rlen;
1337 bestrbno = rbno;
1338 bestflen = flen;
1339 bestfbno = fbno;
1340 if (rlen == args->maxlen)
1341 break;
1342 }
1343 }
1344 if ((error = xfs_alloc_lookup_eq(cnt_cur, bestfbno, bestflen,
1345 &i)))
1346 goto error0;
1347 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1348 rlen = bestrlen;
1349 rbno = bestrbno;
1350 flen = bestflen;
1351 fbno = bestfbno;
1352 }
1353 args->wasfromfl = 0;
1354 /*
1355 * Fix up the length.
1356 */
1357 args->len = rlen;
e26f0501
CH
1358 if (rlen < args->minlen) {
1359 if (!forced++) {
1360 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1361 trace_xfs_alloc_size_busy(args);
1362 xfs_log_force(args->mp, XFS_LOG_SYNC);
1363 goto restart;
1364 }
1365 goto out_nominleft;
1da177e4 1366 }
e26f0501
CH
1367 xfs_alloc_fix_len(args);
1368
1369 if (!xfs_alloc_fix_minleft(args))
1370 goto out_nominleft;
1da177e4
LT
1371 rlen = args->len;
1372 XFS_WANT_CORRUPTED_GOTO(rlen <= flen, error0);
1373 /*
1374 * Allocate and initialize a cursor for the by-block tree.
1375 */
561f7d17
CH
1376 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1377 args->agno, XFS_BTNUM_BNO);
1da177e4
LT
1378 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1379 rbno, rlen, XFSA_FIXUP_CNT_OK)))
1380 goto error0;
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;
1384 args->len = rlen;
1385 args->agbno = rbno;
1386 XFS_WANT_CORRUPTED_GOTO(
1387 args->agbno + args->len <=
16259e7d 1388 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
1da177e4 1389 error0);
0b1b213f 1390 trace_xfs_alloc_size_done(args);
1da177e4
LT
1391 return 0;
1392
1393error0:
0b1b213f 1394 trace_xfs_alloc_size_error(args);
1da177e4
LT
1395 if (cnt_cur)
1396 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1397 if (bno_cur)
1398 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1399 return error;
e26f0501
CH
1400
1401out_nominleft:
1402 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1403 trace_xfs_alloc_size_nominleft(args);
1404 args->agbno = NULLAGBLOCK;
1405 return 0;
1da177e4
LT
1406}
1407
1408/*
1409 * Deal with the case where only small freespaces remain.
1410 * Either return the contents of the last freespace record,
1411 * or allocate space from the freelist if there is nothing in the tree.
1412 */
1413STATIC int /* error */
1414xfs_alloc_ag_vextent_small(
1415 xfs_alloc_arg_t *args, /* allocation argument structure */
1416 xfs_btree_cur_t *ccur, /* by-size cursor */
1417 xfs_agblock_t *fbnop, /* result block number */
1418 xfs_extlen_t *flenp, /* result length */
1419 int *stat) /* status: 0-freelist, 1-normal/none */
1420{
1421 int error;
1422 xfs_agblock_t fbno;
1423 xfs_extlen_t flen;
1da177e4
LT
1424 int i;
1425
8df4da4a 1426 if ((error = xfs_btree_decrement(ccur, 0, &i)))
1da177e4
LT
1427 goto error0;
1428 if (i) {
1429 if ((error = xfs_alloc_get_rec(ccur, &fbno, &flen, &i)))
1430 goto error0;
1431 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1432 }
1433 /*
1434 * Nothing in the btree, try the freelist. Make sure
1435 * to respect minleft even when pulling from the
1436 * freelist.
1437 */
1438 else if (args->minlen == 1 && args->alignment == 1 && !args->isfl &&
16259e7d
CH
1439 (be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_flcount)
1440 > args->minleft)) {
92821e2b
DC
1441 error = xfs_alloc_get_freelist(args->tp, args->agbp, &fbno, 0);
1442 if (error)
1da177e4
LT
1443 goto error0;
1444 if (fbno != NULLAGBLOCK) {
4ecbfe63 1445 xfs_extent_busy_reuse(args->mp, args->agno, fbno, 1,
97d3ac75
CH
1446 args->userdata);
1447
1da177e4
LT
1448 if (args->userdata) {
1449 xfs_buf_t *bp;
1450
1451 bp = xfs_btree_get_bufs(args->mp, args->tp,
1452 args->agno, fbno, 0);
1453 xfs_trans_binval(args->tp, bp);
1454 }
1455 args->len = 1;
1456 args->agbno = fbno;
1457 XFS_WANT_CORRUPTED_GOTO(
1458 args->agbno + args->len <=
16259e7d 1459 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
1da177e4
LT
1460 error0);
1461 args->wasfromfl = 1;
0b1b213f 1462 trace_xfs_alloc_small_freelist(args);
1da177e4
LT
1463 *stat = 0;
1464 return 0;
1465 }
1466 /*
1467 * Nothing in the freelist.
1468 */
1469 else
1470 flen = 0;
1471 }
1472 /*
1473 * Can't allocate from the freelist for some reason.
1474 */
d432c80e
NS
1475 else {
1476 fbno = NULLAGBLOCK;
1da177e4 1477 flen = 0;
d432c80e 1478 }
1da177e4
LT
1479 /*
1480 * Can't do the allocation, give up.
1481 */
1482 if (flen < args->minlen) {
1483 args->agbno = NULLAGBLOCK;
0b1b213f 1484 trace_xfs_alloc_small_notenough(args);
1da177e4
LT
1485 flen = 0;
1486 }
1487 *fbnop = fbno;
1488 *flenp = flen;
1489 *stat = 1;
0b1b213f 1490 trace_xfs_alloc_small_done(args);
1da177e4
LT
1491 return 0;
1492
1493error0:
0b1b213f 1494 trace_xfs_alloc_small_error(args);
1da177e4
LT
1495 return error;
1496}
1497
1498/*
1499 * Free the extent starting at agno/bno for length.
1500 */
1501STATIC int /* error */
1502xfs_free_ag_extent(
1503 xfs_trans_t *tp, /* transaction pointer */
1504 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
1505 xfs_agnumber_t agno, /* allocation group number */
1506 xfs_agblock_t bno, /* starting block number */
1507 xfs_extlen_t len, /* length of extent */
1508 int isfl) /* set if is freelist blocks - no sb acctg */
1509{
1510 xfs_btree_cur_t *bno_cur; /* cursor for by-block btree */
1511 xfs_btree_cur_t *cnt_cur; /* cursor for by-size btree */
1512 int error; /* error return value */
1da177e4
LT
1513 xfs_agblock_t gtbno; /* start of right neighbor block */
1514 xfs_extlen_t gtlen; /* length of right neighbor block */
1515 int haveleft; /* have a left neighbor block */
1516 int haveright; /* have a right neighbor block */
1517 int i; /* temp, result code */
1518 xfs_agblock_t ltbno; /* start of left neighbor block */
1519 xfs_extlen_t ltlen; /* length of left neighbor block */
1520 xfs_mount_t *mp; /* mount point struct for filesystem */
1521 xfs_agblock_t nbno; /* new starting block of freespace */
1522 xfs_extlen_t nlen; /* new length of freespace */
ecb6928f 1523 xfs_perag_t *pag; /* per allocation group data */
1da177e4
LT
1524
1525 mp = tp->t_mountp;
1526 /*
1527 * Allocate and initialize a cursor for the by-block btree.
1528 */
561f7d17 1529 bno_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_BNO);
1da177e4
LT
1530 cnt_cur = NULL;
1531 /*
1532 * Look for a neighboring block on the left (lower block numbers)
1533 * that is contiguous with this space.
1534 */
1535 if ((error = xfs_alloc_lookup_le(bno_cur, bno, len, &haveleft)))
1536 goto error0;
1537 if (haveleft) {
1538 /*
1539 * There is a block to our left.
1540 */
1541 if ((error = xfs_alloc_get_rec(bno_cur, &ltbno, &ltlen, &i)))
1542 goto error0;
1543 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1544 /*
1545 * It's not contiguous, though.
1546 */
1547 if (ltbno + ltlen < bno)
1548 haveleft = 0;
1549 else {
1550 /*
1551 * If this failure happens the request to free this
1552 * space was invalid, it's (partly) already free.
1553 * Very bad.
1554 */
1555 XFS_WANT_CORRUPTED_GOTO(ltbno + ltlen <= bno, error0);
1556 }
1557 }
1558 /*
1559 * Look for a neighboring block on the right (higher block numbers)
1560 * that is contiguous with this space.
1561 */
637aa50f 1562 if ((error = xfs_btree_increment(bno_cur, 0, &haveright)))
1da177e4
LT
1563 goto error0;
1564 if (haveright) {
1565 /*
1566 * There is a block to our right.
1567 */
1568 if ((error = xfs_alloc_get_rec(bno_cur, &gtbno, &gtlen, &i)))
1569 goto error0;
1570 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1571 /*
1572 * It's not contiguous, though.
1573 */
1574 if (bno + len < gtbno)
1575 haveright = 0;
1576 else {
1577 /*
1578 * If this failure happens the request to free this
1579 * space was invalid, it's (partly) already free.
1580 * Very bad.
1581 */
1582 XFS_WANT_CORRUPTED_GOTO(gtbno >= bno + len, error0);
1583 }
1584 }
1585 /*
1586 * Now allocate and initialize a cursor for the by-size tree.
1587 */
561f7d17 1588 cnt_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_CNT);
1da177e4
LT
1589 /*
1590 * Have both left and right contiguous neighbors.
1591 * Merge all three into a single free block.
1592 */
1593 if (haveleft && haveright) {
1594 /*
1595 * Delete the old by-size entry on the left.
1596 */
1597 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1598 goto error0;
1599 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
91cca5df 1600 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4
LT
1601 goto error0;
1602 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1603 /*
1604 * Delete the old by-size entry on the right.
1605 */
1606 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1607 goto error0;
1608 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
91cca5df 1609 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4
LT
1610 goto error0;
1611 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1612 /*
1613 * Delete the old by-block entry for the right block.
1614 */
91cca5df 1615 if ((error = xfs_btree_delete(bno_cur, &i)))
1da177e4
LT
1616 goto error0;
1617 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1618 /*
1619 * Move the by-block cursor back to the left neighbor.
1620 */
8df4da4a 1621 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
1da177e4
LT
1622 goto error0;
1623 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1624#ifdef DEBUG
1625 /*
1626 * Check that this is the right record: delete didn't
1627 * mangle the cursor.
1628 */
1629 {
1630 xfs_agblock_t xxbno;
1631 xfs_extlen_t xxlen;
1632
1633 if ((error = xfs_alloc_get_rec(bno_cur, &xxbno, &xxlen,
1634 &i)))
1635 goto error0;
1636 XFS_WANT_CORRUPTED_GOTO(
1637 i == 1 && xxbno == ltbno && xxlen == ltlen,
1638 error0);
1639 }
1640#endif
1641 /*
1642 * Update remaining by-block entry to the new, joined block.
1643 */
1644 nbno = ltbno;
1645 nlen = len + ltlen + gtlen;
1646 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1647 goto error0;
1648 }
1649 /*
1650 * Have only a left contiguous neighbor.
1651 * Merge it together with the new freespace.
1652 */
1653 else if (haveleft) {
1654 /*
1655 * Delete the old by-size entry on the left.
1656 */
1657 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1658 goto error0;
1659 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
91cca5df 1660 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4
LT
1661 goto error0;
1662 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1663 /*
1664 * Back up the by-block cursor to the left neighbor, and
1665 * update its length.
1666 */
8df4da4a 1667 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
1da177e4
LT
1668 goto error0;
1669 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1670 nbno = ltbno;
1671 nlen = len + ltlen;
1672 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1673 goto error0;
1674 }
1675 /*
1676 * Have only a right contiguous neighbor.
1677 * Merge it together with the new freespace.
1678 */
1679 else if (haveright) {
1680 /*
1681 * Delete the old by-size entry on the right.
1682 */
1683 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1684 goto error0;
1685 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
91cca5df 1686 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4
LT
1687 goto error0;
1688 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1689 /*
1690 * Update the starting block and length of the right
1691 * neighbor in the by-block tree.
1692 */
1693 nbno = bno;
1694 nlen = len + gtlen;
1695 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1696 goto error0;
1697 }
1698 /*
1699 * No contiguous neighbors.
1700 * Insert the new freespace into the by-block tree.
1701 */
1702 else {
1703 nbno = bno;
1704 nlen = len;
4b22a571 1705 if ((error = xfs_btree_insert(bno_cur, &i)))
1da177e4
LT
1706 goto error0;
1707 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1708 }
1709 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1710 bno_cur = NULL;
1711 /*
1712 * In all cases we need to insert the new freespace in the by-size tree.
1713 */
1714 if ((error = xfs_alloc_lookup_eq(cnt_cur, nbno, nlen, &i)))
1715 goto error0;
1716 XFS_WANT_CORRUPTED_GOTO(i == 0, error0);
4b22a571 1717 if ((error = xfs_btree_insert(cnt_cur, &i)))
1da177e4
LT
1718 goto error0;
1719 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1720 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1721 cnt_cur = NULL;
ecb6928f 1722
1da177e4
LT
1723 /*
1724 * Update the freespace totals in the ag and superblock.
1725 */
ecb6928f
CH
1726 pag = xfs_perag_get(mp, agno);
1727 error = xfs_alloc_update_counters(tp, pag, agbp, len);
1728 xfs_perag_put(pag);
1729 if (error)
1730 goto error0;
1731
1732 if (!isfl)
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);
0b1b213f
CH
1736
1737 trace_xfs_free_extent(mp, agno, bno, len, isfl, haveleft, haveright);
1da177e4 1738
1da177e4
LT
1739 return 0;
1740
1741 error0:
0b1b213f 1742 trace_xfs_free_extent(mp, agno, bno, len, isfl, -1, -1);
1da177e4
LT
1743 if (bno_cur)
1744 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1745 if (cnt_cur)
1746 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1747 return error;
1748}
1749
1750/*
1751 * Visible (exported) allocation/free functions.
1752 * Some of these are used just by xfs_alloc_btree.c and this file.
1753 */
1754
1755/*
1756 * Compute and fill in value of m_ag_maxlevels.
1757 */
1758void
1759xfs_alloc_compute_maxlevels(
1760 xfs_mount_t *mp) /* file system mount structure */
1761{
1762 int level;
1763 uint maxblocks;
1764 uint maxleafents;
1765 int minleafrecs;
1766 int minnoderecs;
1767
1768 maxleafents = (mp->m_sb.sb_agblocks + 1) / 2;
1769 minleafrecs = mp->m_alloc_mnr[0];
1770 minnoderecs = mp->m_alloc_mnr[1];
1771 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
1772 for (level = 1; maxblocks > 1; level++)
1773 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
1774 mp->m_ag_maxlevels = level;
1775}
1776
6cc87645
DC
1777/*
1778 * Find the length of the longest extent in an AG.
1779 */
1780xfs_extlen_t
1781xfs_alloc_longest_free_extent(
1782 struct xfs_mount *mp,
1783 struct xfs_perag *pag)
1784{
1785 xfs_extlen_t need, delta = 0;
1786
1787 need = XFS_MIN_FREELIST_PAG(pag, mp);
1788 if (need > pag->pagf_flcount)
1789 delta = need - pag->pagf_flcount;
1790
1791 if (pag->pagf_longest > delta)
1792 return pag->pagf_longest - delta;
1793 return pag->pagf_flcount > 0 || pag->pagf_longest > 0;
1794}
1795
1da177e4
LT
1796/*
1797 * Decide whether to use this allocation group for this allocation.
1798 * If so, fix up the btree freelist's size.
1799 */
1800STATIC int /* error */
1801xfs_alloc_fix_freelist(
1802 xfs_alloc_arg_t *args, /* allocation argument structure */
1803 int flags) /* XFS_ALLOC_FLAG_... */
1804{
1805 xfs_buf_t *agbp; /* agf buffer pointer */
1806 xfs_agf_t *agf; /* a.g. freespace structure pointer */
1807 xfs_buf_t *agflbp;/* agfl buffer pointer */
1808 xfs_agblock_t bno; /* freelist block */
1809 xfs_extlen_t delta; /* new blocks needed in freelist */
1810 int error; /* error result code */
1811 xfs_extlen_t longest;/* longest extent in allocation group */
1812 xfs_mount_t *mp; /* file system mount point structure */
1813 xfs_extlen_t need; /* total blocks needed in freelist */
1814 xfs_perag_t *pag; /* per-ag information structure */
1815 xfs_alloc_arg_t targs; /* local allocation arguments */
1816 xfs_trans_t *tp; /* transaction pointer */
1817
1818 mp = args->mp;
1819
1820 pag = args->pag;
1821 tp = args->tp;
1822 if (!pag->pagf_init) {
1823 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1824 &agbp)))
1825 return error;
1826 if (!pag->pagf_init) {
0e1edbd9
NS
1827 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1828 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
1da177e4
LT
1829 args->agbp = NULL;
1830 return 0;
1831 }
1832 } else
1833 agbp = NULL;
1834
0e1edbd9
NS
1835 /*
1836 * If this is a metadata preferred pag and we are user data
1da177e4
LT
1837 * then try somewhere else if we are not being asked to
1838 * try harder at this point
1839 */
0e1edbd9
NS
1840 if (pag->pagf_metadata && args->userdata &&
1841 (flags & XFS_ALLOC_FLAG_TRYLOCK)) {
1842 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
1da177e4
LT
1843 args->agbp = NULL;
1844 return 0;
1845 }
1846
0e1edbd9 1847 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
0e1edbd9
NS
1848 /*
1849 * If it looks like there isn't a long enough extent, or enough
1850 * total blocks, reject it.
1851 */
6cc87645
DC
1852 need = XFS_MIN_FREELIST_PAG(pag, mp);
1853 longest = xfs_alloc_longest_free_extent(mp, pag);
0e1edbd9
NS
1854 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1855 longest ||
1856 ((int)(pag->pagf_freeblks + pag->pagf_flcount -
1857 need - args->total) < (int)args->minleft)) {
1858 if (agbp)
1859 xfs_trans_brelse(tp, agbp);
1860 args->agbp = NULL;
1861 return 0;
1862 }
1da177e4 1863 }
0e1edbd9 1864
1da177e4
LT
1865 /*
1866 * Get the a.g. freespace buffer.
1867 * Can fail if we're not blocking on locks, and it's held.
1868 */
1869 if (agbp == NULL) {
1870 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1871 &agbp)))
1872 return error;
1873 if (agbp == NULL) {
0e1edbd9
NS
1874 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1875 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
1da177e4
LT
1876 args->agbp = NULL;
1877 return 0;
1878 }
1879 }
1880 /*
1881 * Figure out how many blocks we should have in the freelist.
1882 */
1883 agf = XFS_BUF_TO_AGF(agbp);
1884 need = XFS_MIN_FREELIST(agf, mp);
1da177e4
LT
1885 /*
1886 * If there isn't enough total or single-extent, reject it.
1887 */
0e1edbd9
NS
1888 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
1889 delta = need > be32_to_cpu(agf->agf_flcount) ?
1890 (need - be32_to_cpu(agf->agf_flcount)) : 0;
1891 longest = be32_to_cpu(agf->agf_longest);
1892 longest = (longest > delta) ? (longest - delta) :
1893 (be32_to_cpu(agf->agf_flcount) > 0 || longest > 0);
1894 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1895 longest ||
1896 ((int)(be32_to_cpu(agf->agf_freeblks) +
1897 be32_to_cpu(agf->agf_flcount) - need - args->total) <
1898 (int)args->minleft)) {
1899 xfs_trans_brelse(tp, agbp);
1900 args->agbp = NULL;
1901 return 0;
1902 }
1da177e4
LT
1903 }
1904 /*
1905 * Make the freelist shorter if it's too long.
1906 */
16259e7d 1907 while (be32_to_cpu(agf->agf_flcount) > need) {
1da177e4
LT
1908 xfs_buf_t *bp;
1909
92821e2b
DC
1910 error = xfs_alloc_get_freelist(tp, agbp, &bno, 0);
1911 if (error)
1da177e4
LT
1912 return error;
1913 if ((error = xfs_free_ag_extent(tp, agbp, args->agno, bno, 1, 1)))
1914 return error;
1915 bp = xfs_btree_get_bufs(mp, tp, args->agno, bno, 0);
1916 xfs_trans_binval(tp, bp);
1917 }
1918 /*
1919 * Initialize the args structure.
1920 */
a0041684 1921 memset(&targs, 0, sizeof(targs));
1da177e4
LT
1922 targs.tp = tp;
1923 targs.mp = mp;
1924 targs.agbp = agbp;
1925 targs.agno = args->agno;
1926 targs.mod = targs.minleft = targs.wasdel = targs.userdata =
1927 targs.minalignslop = 0;
1928 targs.alignment = targs.minlen = targs.prod = targs.isfl = 1;
1929 targs.type = XFS_ALLOCTYPE_THIS_AG;
1930 targs.pag = pag;
1931 if ((error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp)))
1932 return error;
1933 /*
1934 * Make the freelist longer if it's too short.
1935 */
16259e7d 1936 while (be32_to_cpu(agf->agf_flcount) < need) {
1da177e4 1937 targs.agbno = 0;
16259e7d 1938 targs.maxlen = need - be32_to_cpu(agf->agf_flcount);
1da177e4
LT
1939 /*
1940 * Allocate as many blocks as possible at once.
1941 */
e63a3690
NS
1942 if ((error = xfs_alloc_ag_vextent(&targs))) {
1943 xfs_trans_brelse(tp, agflbp);
1da177e4 1944 return error;
e63a3690 1945 }
1da177e4
LT
1946 /*
1947 * Stop if we run out. Won't happen if callers are obeying
1948 * the restrictions correctly. Can happen for free calls
1949 * on a completely full ag.
1950 */
d210a28c 1951 if (targs.agbno == NULLAGBLOCK) {
0e1edbd9
NS
1952 if (flags & XFS_ALLOC_FLAG_FREEING)
1953 break;
1954 xfs_trans_brelse(tp, agflbp);
1955 args->agbp = NULL;
1956 return 0;
d210a28c 1957 }
1da177e4
LT
1958 /*
1959 * Put each allocated block on the list.
1960 */
1961 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
92821e2b
DC
1962 error = xfs_alloc_put_freelist(tp, agbp,
1963 agflbp, bno, 0);
1964 if (error)
1da177e4
LT
1965 return error;
1966 }
1967 }
e63a3690 1968 xfs_trans_brelse(tp, agflbp);
1da177e4
LT
1969 args->agbp = agbp;
1970 return 0;
1971}
1972
1973/*
1974 * Get a block from the freelist.
1975 * Returns with the buffer for the block gotten.
1976 */
1977int /* error */
1978xfs_alloc_get_freelist(
1979 xfs_trans_t *tp, /* transaction pointer */
1980 xfs_buf_t *agbp, /* buffer containing the agf structure */
92821e2b
DC
1981 xfs_agblock_t *bnop, /* block address retrieved from freelist */
1982 int btreeblk) /* destination is a AGF btree */
1da177e4
LT
1983{
1984 xfs_agf_t *agf; /* a.g. freespace structure */
1985 xfs_agfl_t *agfl; /* a.g. freelist structure */
1986 xfs_buf_t *agflbp;/* buffer for a.g. freelist structure */
1987 xfs_agblock_t bno; /* block number returned */
1988 int error;
92821e2b 1989 int logflags;
1da177e4
LT
1990 xfs_mount_t *mp; /* mount structure */
1991 xfs_perag_t *pag; /* per allocation group data */
1992
1993 agf = XFS_BUF_TO_AGF(agbp);
1994 /*
1995 * Freelist is empty, give up.
1996 */
1997 if (!agf->agf_flcount) {
1998 *bnop = NULLAGBLOCK;
1999 return 0;
2000 }
2001 /*
2002 * Read the array of free blocks.
2003 */
2004 mp = tp->t_mountp;
2005 if ((error = xfs_alloc_read_agfl(mp, tp,
16259e7d 2006 be32_to_cpu(agf->agf_seqno), &agflbp)))
1da177e4
LT
2007 return error;
2008 agfl = XFS_BUF_TO_AGFL(agflbp);
2009 /*
2010 * Get the block number and update the data structures.
2011 */
e2101005 2012 bno = be32_to_cpu(agfl->agfl_bno[be32_to_cpu(agf->agf_flfirst)]);
413d57c9 2013 be32_add_cpu(&agf->agf_flfirst, 1);
1da177e4 2014 xfs_trans_brelse(tp, agflbp);
16259e7d 2015 if (be32_to_cpu(agf->agf_flfirst) == XFS_AGFL_SIZE(mp))
1da177e4 2016 agf->agf_flfirst = 0;
a862e0fd
DC
2017
2018 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
413d57c9 2019 be32_add_cpu(&agf->agf_flcount, -1);
1da177e4
LT
2020 xfs_trans_agflist_delta(tp, -1);
2021 pag->pagf_flcount--;
a862e0fd 2022 xfs_perag_put(pag);
92821e2b
DC
2023
2024 logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT;
2025 if (btreeblk) {
413d57c9 2026 be32_add_cpu(&agf->agf_btreeblks, 1);
92821e2b
DC
2027 pag->pagf_btreeblks++;
2028 logflags |= XFS_AGF_BTREEBLKS;
2029 }
2030
92821e2b 2031 xfs_alloc_log_agf(tp, agbp, logflags);
1da177e4
LT
2032 *bnop = bno;
2033
1da177e4
LT
2034 return 0;
2035}
2036
2037/*
2038 * Log the given fields from the agf structure.
2039 */
2040void
2041xfs_alloc_log_agf(
2042 xfs_trans_t *tp, /* transaction pointer */
2043 xfs_buf_t *bp, /* buffer for a.g. freelist header */
2044 int fields) /* mask of fields to be logged (XFS_AGF_...) */
2045{
2046 int first; /* first byte offset */
2047 int last; /* last byte offset */
2048 static const short offsets[] = {
2049 offsetof(xfs_agf_t, agf_magicnum),
2050 offsetof(xfs_agf_t, agf_versionnum),
2051 offsetof(xfs_agf_t, agf_seqno),
2052 offsetof(xfs_agf_t, agf_length),
2053 offsetof(xfs_agf_t, agf_roots[0]),
2054 offsetof(xfs_agf_t, agf_levels[0]),
2055 offsetof(xfs_agf_t, agf_flfirst),
2056 offsetof(xfs_agf_t, agf_fllast),
2057 offsetof(xfs_agf_t, agf_flcount),
2058 offsetof(xfs_agf_t, agf_freeblks),
2059 offsetof(xfs_agf_t, agf_longest),
92821e2b 2060 offsetof(xfs_agf_t, agf_btreeblks),
1da177e4
LT
2061 sizeof(xfs_agf_t)
2062 };
2063
0b1b213f
CH
2064 trace_xfs_agf(tp->t_mountp, XFS_BUF_TO_AGF(bp), fields, _RET_IP_);
2065
1da177e4
LT
2066 xfs_btree_offsets(fields, offsets, XFS_AGF_NUM_BITS, &first, &last);
2067 xfs_trans_log_buf(tp, bp, (uint)first, (uint)last);
2068}
2069
2070/*
2071 * Interface for inode allocation to force the pag data to be initialized.
2072 */
2073int /* error */
2074xfs_alloc_pagf_init(
2075 xfs_mount_t *mp, /* file system mount structure */
2076 xfs_trans_t *tp, /* transaction pointer */
2077 xfs_agnumber_t agno, /* allocation group number */
2078 int flags) /* XFS_ALLOC_FLAGS_... */
2079{
2080 xfs_buf_t *bp;
2081 int error;
2082
2083 if ((error = xfs_alloc_read_agf(mp, tp, agno, flags, &bp)))
2084 return error;
2085 if (bp)
2086 xfs_trans_brelse(tp, bp);
2087 return 0;
2088}
2089
2090/*
2091 * Put the block on the freelist for the allocation group.
2092 */
2093int /* error */
2094xfs_alloc_put_freelist(
2095 xfs_trans_t *tp, /* transaction pointer */
2096 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
2097 xfs_buf_t *agflbp,/* buffer for a.g. free block array */
92821e2b
DC
2098 xfs_agblock_t bno, /* block being freed */
2099 int btreeblk) /* block came from a AGF btree */
1da177e4
LT
2100{
2101 xfs_agf_t *agf; /* a.g. freespace structure */
2102 xfs_agfl_t *agfl; /* a.g. free block array */
e2101005 2103 __be32 *blockp;/* pointer to array entry */
1da177e4 2104 int error;
92821e2b 2105 int logflags;
1da177e4
LT
2106 xfs_mount_t *mp; /* mount structure */
2107 xfs_perag_t *pag; /* per allocation group data */
2108
2109 agf = XFS_BUF_TO_AGF(agbp);
2110 mp = tp->t_mountp;
2111
2112 if (!agflbp && (error = xfs_alloc_read_agfl(mp, tp,
16259e7d 2113 be32_to_cpu(agf->agf_seqno), &agflbp)))
1da177e4
LT
2114 return error;
2115 agfl = XFS_BUF_TO_AGFL(agflbp);
413d57c9 2116 be32_add_cpu(&agf->agf_fllast, 1);
16259e7d 2117 if (be32_to_cpu(agf->agf_fllast) == XFS_AGFL_SIZE(mp))
1da177e4 2118 agf->agf_fllast = 0;
a862e0fd
DC
2119
2120 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
413d57c9 2121 be32_add_cpu(&agf->agf_flcount, 1);
1da177e4
LT
2122 xfs_trans_agflist_delta(tp, 1);
2123 pag->pagf_flcount++;
92821e2b
DC
2124
2125 logflags = XFS_AGF_FLLAST | XFS_AGF_FLCOUNT;
2126 if (btreeblk) {
413d57c9 2127 be32_add_cpu(&agf->agf_btreeblks, -1);
92821e2b
DC
2128 pag->pagf_btreeblks--;
2129 logflags |= XFS_AGF_BTREEBLKS;
2130 }
a862e0fd 2131 xfs_perag_put(pag);
92821e2b 2132
92821e2b
DC
2133 xfs_alloc_log_agf(tp, agbp, logflags);
2134
16259e7d
CH
2135 ASSERT(be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp));
2136 blockp = &agfl->agfl_bno[be32_to_cpu(agf->agf_fllast)];
e2101005 2137 *blockp = cpu_to_be32(bno);
92821e2b 2138 xfs_alloc_log_agf(tp, agbp, logflags);
1da177e4
LT
2139 xfs_trans_log_buf(tp, agflbp,
2140 (int)((xfs_caddr_t)blockp - (xfs_caddr_t)agfl),
2141 (int)((xfs_caddr_t)blockp - (xfs_caddr_t)agfl +
2142 sizeof(xfs_agblock_t) - 1));
2143 return 0;
2144}
2145
5d5f527d 2146static void
612cfbfe 2147xfs_agf_verify(
5d5f527d
DC
2148 struct xfs_buf *bp)
2149 {
2150 struct xfs_mount *mp = bp->b_target->bt_mount;
2151 struct xfs_agf *agf;
2152 int agf_ok;
2153
2154 agf = XFS_BUF_TO_AGF(bp);
2155
2156 agf_ok = agf->agf_magicnum == cpu_to_be32(XFS_AGF_MAGIC) &&
2157 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf->agf_versionnum)) &&
2158 be32_to_cpu(agf->agf_freeblks) <= be32_to_cpu(agf->agf_length) &&
2159 be32_to_cpu(agf->agf_flfirst) < XFS_AGFL_SIZE(mp) &&
2160 be32_to_cpu(agf->agf_fllast) < XFS_AGFL_SIZE(mp) &&
2161 be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp);
2162
2163 /*
2164 * during growfs operations, the perag is not fully initialised,
2165 * so we can't use it for any useful checking. growfs ensures we can't
2166 * use it by using uncached buffers that don't have the perag attached
2167 * so we can detect and avoid this problem.
2168 */
2169 if (bp->b_pag)
2170 agf_ok = agf_ok && be32_to_cpu(agf->agf_seqno) ==
2171 bp->b_pag->pag_agno;
2172
2173 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
2174 agf_ok = agf_ok && be32_to_cpu(agf->agf_btreeblks) <=
2175 be32_to_cpu(agf->agf_length);
2176
2177 if (unlikely(XFS_TEST_ERROR(!agf_ok, mp, XFS_ERRTAG_ALLOC_READ_AGF,
2178 XFS_RANDOM_ALLOC_READ_AGF))) {
2179 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, agf);
2180 xfs_buf_ioerror(bp, EFSCORRUPTED);
2181 }
612cfbfe
DC
2182}
2183
b0f539de 2184void
612cfbfe
DC
2185xfs_agf_write_verify(
2186 struct xfs_buf *bp)
2187{
2188 xfs_agf_verify(bp);
2189}
5d5f527d 2190
b0f539de 2191static void
612cfbfe
DC
2192xfs_agf_read_verify(
2193 struct xfs_buf *bp)
2194{
2195 xfs_agf_verify(bp);
2196 bp->b_pre_io = xfs_agf_write_verify;
5d5f527d
DC
2197 bp->b_iodone = NULL;
2198 xfs_buf_ioend(bp, 0);
2199}
2200
1da177e4
LT
2201/*
2202 * Read in the allocation group header (free/alloc section).
2203 */
2204int /* error */
4805621a
CH
2205xfs_read_agf(
2206 struct xfs_mount *mp, /* mount point structure */
2207 struct xfs_trans *tp, /* transaction pointer */
2208 xfs_agnumber_t agno, /* allocation group number */
2209 int flags, /* XFS_BUF_ */
2210 struct xfs_buf **bpp) /* buffer for the ag freelist header */
1da177e4 2211{
1da177e4
LT
2212 int error;
2213
2214 ASSERT(agno != NULLAGNUMBER);
2215 error = xfs_trans_read_buf(
2216 mp, tp, mp->m_ddev_targp,
2217 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
5d5f527d 2218 XFS_FSS_TO_BB(mp, 1), flags, bpp, xfs_agf_read_verify);
1da177e4
LT
2219 if (error)
2220 return error;
4805621a 2221 if (!*bpp)
1da177e4 2222 return 0;
4805621a 2223
5a52c2a5 2224 ASSERT(!(*bpp)->b_error);
38f23232 2225 xfs_buf_set_ref(*bpp, XFS_AGF_REF);
4805621a
CH
2226 return 0;
2227}
2228
2229/*
2230 * Read in the allocation group header (free/alloc section).
2231 */
2232int /* error */
2233xfs_alloc_read_agf(
2234 struct xfs_mount *mp, /* mount point structure */
2235 struct xfs_trans *tp, /* transaction pointer */
2236 xfs_agnumber_t agno, /* allocation group number */
2237 int flags, /* XFS_ALLOC_FLAG_... */
2238 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2239{
2240 struct xfs_agf *agf; /* ag freelist header */
2241 struct xfs_perag *pag; /* per allocation group data */
2242 int error;
2243
2244 ASSERT(agno != NULLAGNUMBER);
2245
2246 error = xfs_read_agf(mp, tp, agno,
0cadda1c 2247 (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0,
4805621a
CH
2248 bpp);
2249 if (error)
2250 return error;
2251 if (!*bpp)
2252 return 0;
5a52c2a5 2253 ASSERT(!(*bpp)->b_error);
4805621a
CH
2254
2255 agf = XFS_BUF_TO_AGF(*bpp);
a862e0fd 2256 pag = xfs_perag_get(mp, agno);
1da177e4 2257 if (!pag->pagf_init) {
16259e7d 2258 pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks);
92821e2b 2259 pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks);
16259e7d
CH
2260 pag->pagf_flcount = be32_to_cpu(agf->agf_flcount);
2261 pag->pagf_longest = be32_to_cpu(agf->agf_longest);
1da177e4 2262 pag->pagf_levels[XFS_BTNUM_BNOi] =
16259e7d 2263 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]);
1da177e4 2264 pag->pagf_levels[XFS_BTNUM_CNTi] =
16259e7d 2265 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]);
007c61c6 2266 spin_lock_init(&pag->pagb_lock);
e57336ff 2267 pag->pagb_count = 0;
ed3b4d6c 2268 pag->pagb_tree = RB_ROOT;
1da177e4
LT
2269 pag->pagf_init = 1;
2270 }
2271#ifdef DEBUG
2272 else if (!XFS_FORCED_SHUTDOWN(mp)) {
16259e7d 2273 ASSERT(pag->pagf_freeblks == be32_to_cpu(agf->agf_freeblks));
89b28393 2274 ASSERT(pag->pagf_btreeblks == be32_to_cpu(agf->agf_btreeblks));
16259e7d
CH
2275 ASSERT(pag->pagf_flcount == be32_to_cpu(agf->agf_flcount));
2276 ASSERT(pag->pagf_longest == be32_to_cpu(agf->agf_longest));
1da177e4 2277 ASSERT(pag->pagf_levels[XFS_BTNUM_BNOi] ==
16259e7d 2278 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]));
1da177e4 2279 ASSERT(pag->pagf_levels[XFS_BTNUM_CNTi] ==
16259e7d 2280 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]));
1da177e4
LT
2281 }
2282#endif
a862e0fd 2283 xfs_perag_put(pag);
1da177e4
LT
2284 return 0;
2285}
2286
2287/*
2288 * Allocate an extent (variable-size).
2289 * Depending on the allocation type, we either look in a single allocation
2290 * group or loop over the allocation groups to find the result.
2291 */
2292int /* error */
e04426b9 2293xfs_alloc_vextent(
1da177e4
LT
2294 xfs_alloc_arg_t *args) /* allocation argument structure */
2295{
2296 xfs_agblock_t agsize; /* allocation group size */
2297 int error;
2298 int flags; /* XFS_ALLOC_FLAG_... locking flags */
1da177e4
LT
2299 xfs_extlen_t minleft;/* minimum left value, temp copy */
2300 xfs_mount_t *mp; /* mount structure pointer */
2301 xfs_agnumber_t sagno; /* starting allocation group number */
2302 xfs_alloctype_t type; /* input allocation type */
2303 int bump_rotor = 0;
2304 int no_min = 0;
2305 xfs_agnumber_t rotorstep = xfs_rotorstep; /* inode32 agf stepper */
2306
2307 mp = args->mp;
2308 type = args->otype = args->type;
2309 args->agbno = NULLAGBLOCK;
2310 /*
2311 * Just fix this up, for the case where the last a.g. is shorter
2312 * (or there's only one a.g.) and the caller couldn't easily figure
2313 * that out (xfs_bmap_alloc).
2314 */
2315 agsize = mp->m_sb.sb_agblocks;
2316 if (args->maxlen > agsize)
2317 args->maxlen = agsize;
2318 if (args->alignment == 0)
2319 args->alignment = 1;
2320 ASSERT(XFS_FSB_TO_AGNO(mp, args->fsbno) < mp->m_sb.sb_agcount);
2321 ASSERT(XFS_FSB_TO_AGBNO(mp, args->fsbno) < agsize);
2322 ASSERT(args->minlen <= args->maxlen);
2323 ASSERT(args->minlen <= agsize);
2324 ASSERT(args->mod < args->prod);
2325 if (XFS_FSB_TO_AGNO(mp, args->fsbno) >= mp->m_sb.sb_agcount ||
2326 XFS_FSB_TO_AGBNO(mp, args->fsbno) >= agsize ||
2327 args->minlen > args->maxlen || args->minlen > agsize ||
2328 args->mod >= args->prod) {
2329 args->fsbno = NULLFSBLOCK;
0b1b213f 2330 trace_xfs_alloc_vextent_badargs(args);
1da177e4
LT
2331 return 0;
2332 }
2333 minleft = args->minleft;
2334
2335 switch (type) {
2336 case XFS_ALLOCTYPE_THIS_AG:
2337 case XFS_ALLOCTYPE_NEAR_BNO:
2338 case XFS_ALLOCTYPE_THIS_BNO:
2339 /*
2340 * These three force us into a single a.g.
2341 */
2342 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
a862e0fd 2343 args->pag = xfs_perag_get(mp, args->agno);
1da177e4
LT
2344 args->minleft = 0;
2345 error = xfs_alloc_fix_freelist(args, 0);
2346 args->minleft = minleft;
2347 if (error) {
0b1b213f 2348 trace_xfs_alloc_vextent_nofix(args);
1da177e4
LT
2349 goto error0;
2350 }
2351 if (!args->agbp) {
0b1b213f 2352 trace_xfs_alloc_vextent_noagbp(args);
1da177e4
LT
2353 break;
2354 }
2355 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2356 if ((error = xfs_alloc_ag_vextent(args)))
2357 goto error0;
1da177e4
LT
2358 break;
2359 case XFS_ALLOCTYPE_START_BNO:
2360 /*
2361 * Try near allocation first, then anywhere-in-ag after
2362 * the first a.g. fails.
2363 */
2364 if ((args->userdata == XFS_ALLOC_INITIAL_USER_DATA) &&
2365 (mp->m_flags & XFS_MOUNT_32BITINODES)) {
2366 args->fsbno = XFS_AGB_TO_FSB(mp,
2367 ((mp->m_agfrotor / rotorstep) %
2368 mp->m_sb.sb_agcount), 0);
2369 bump_rotor = 1;
2370 }
2371 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2372 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2373 /* FALLTHROUGH */
2374 case XFS_ALLOCTYPE_ANY_AG:
2375 case XFS_ALLOCTYPE_START_AG:
2376 case XFS_ALLOCTYPE_FIRST_AG:
2377 /*
2378 * Rotate through the allocation groups looking for a winner.
2379 */
2380 if (type == XFS_ALLOCTYPE_ANY_AG) {
2381 /*
2382 * Start with the last place we left off.
2383 */
2384 args->agno = sagno = (mp->m_agfrotor / rotorstep) %
2385 mp->m_sb.sb_agcount;
2386 args->type = XFS_ALLOCTYPE_THIS_AG;
2387 flags = XFS_ALLOC_FLAG_TRYLOCK;
2388 } else if (type == XFS_ALLOCTYPE_FIRST_AG) {
2389 /*
2390 * Start with allocation group given by bno.
2391 */
2392 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2393 args->type = XFS_ALLOCTYPE_THIS_AG;
2394 sagno = 0;
2395 flags = 0;
2396 } else {
2397 if (type == XFS_ALLOCTYPE_START_AG)
2398 args->type = XFS_ALLOCTYPE_THIS_AG;
2399 /*
2400 * Start with the given allocation group.
2401 */
2402 args->agno = sagno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2403 flags = XFS_ALLOC_FLAG_TRYLOCK;
2404 }
2405 /*
2406 * Loop over allocation groups twice; first time with
2407 * trylock set, second time without.
2408 */
1da177e4 2409 for (;;) {
a862e0fd 2410 args->pag = xfs_perag_get(mp, args->agno);
1da177e4
LT
2411 if (no_min) args->minleft = 0;
2412 error = xfs_alloc_fix_freelist(args, flags);
2413 args->minleft = minleft;
2414 if (error) {
0b1b213f 2415 trace_xfs_alloc_vextent_nofix(args);
1da177e4
LT
2416 goto error0;
2417 }
2418 /*
2419 * If we get a buffer back then the allocation will fly.
2420 */
2421 if (args->agbp) {
2422 if ((error = xfs_alloc_ag_vextent(args)))
2423 goto error0;
2424 break;
2425 }
0b1b213f
CH
2426
2427 trace_xfs_alloc_vextent_loopfailed(args);
2428
1da177e4
LT
2429 /*
2430 * Didn't work, figure out the next iteration.
2431 */
2432 if (args->agno == sagno &&
2433 type == XFS_ALLOCTYPE_START_BNO)
2434 args->type = XFS_ALLOCTYPE_THIS_AG;
d210a28c
YL
2435 /*
2436 * For the first allocation, we can try any AG to get
2437 * space. However, if we already have allocated a
2438 * block, we don't want to try AGs whose number is below
2439 * sagno. Otherwise, we may end up with out-of-order
2440 * locking of AGF, which might cause deadlock.
2441 */
2442 if (++(args->agno) == mp->m_sb.sb_agcount) {
2443 if (args->firstblock != NULLFSBLOCK)
2444 args->agno = sagno;
2445 else
2446 args->agno = 0;
2447 }
1da177e4
LT
2448 /*
2449 * Reached the starting a.g., must either be done
2450 * or switch to non-trylock mode.
2451 */
2452 if (args->agno == sagno) {
2453 if (no_min == 1) {
2454 args->agbno = NULLAGBLOCK;
0b1b213f 2455 trace_xfs_alloc_vextent_allfailed(args);
1da177e4
LT
2456 break;
2457 }
2458 if (flags == 0) {
2459 no_min = 1;
2460 } else {
2461 flags = 0;
2462 if (type == XFS_ALLOCTYPE_START_BNO) {
2463 args->agbno = XFS_FSB_TO_AGBNO(mp,
2464 args->fsbno);
2465 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2466 }
2467 }
2468 }
a862e0fd 2469 xfs_perag_put(args->pag);
1da177e4 2470 }
1da177e4
LT
2471 if (bump_rotor || (type == XFS_ALLOCTYPE_ANY_AG)) {
2472 if (args->agno == sagno)
2473 mp->m_agfrotor = (mp->m_agfrotor + 1) %
2474 (mp->m_sb.sb_agcount * rotorstep);
2475 else
2476 mp->m_agfrotor = (args->agno * rotorstep + 1) %
2477 (mp->m_sb.sb_agcount * rotorstep);
2478 }
2479 break;
2480 default:
2481 ASSERT(0);
2482 /* NOTREACHED */
2483 }
2484 if (args->agbno == NULLAGBLOCK)
2485 args->fsbno = NULLFSBLOCK;
2486 else {
2487 args->fsbno = XFS_AGB_TO_FSB(mp, args->agno, args->agbno);
2488#ifdef DEBUG
2489 ASSERT(args->len >= args->minlen);
2490 ASSERT(args->len <= args->maxlen);
2491 ASSERT(args->agbno % args->alignment == 0);
2492 XFS_AG_CHECK_DADDR(mp, XFS_FSB_TO_DADDR(mp, args->fsbno),
2493 args->len);
2494#endif
2495 }
a862e0fd 2496 xfs_perag_put(args->pag);
1da177e4
LT
2497 return 0;
2498error0:
a862e0fd 2499 xfs_perag_put(args->pag);
1da177e4
LT
2500 return error;
2501}
2502
2503/*
2504 * Free an extent.
2505 * Just break up the extent address and hand off to xfs_free_ag_extent
2506 * after fixing up the freelist.
2507 */
2508int /* error */
2509xfs_free_extent(
2510 xfs_trans_t *tp, /* transaction pointer */
2511 xfs_fsblock_t bno, /* starting block number of extent */
2512 xfs_extlen_t len) /* length of extent */
2513{
0e1edbd9 2514 xfs_alloc_arg_t args;
1da177e4
LT
2515 int error;
2516
2517 ASSERT(len != 0);
0e1edbd9 2518 memset(&args, 0, sizeof(xfs_alloc_arg_t));
1da177e4
LT
2519 args.tp = tp;
2520 args.mp = tp->t_mountp;
be65b18a
DC
2521
2522 /*
2523 * validate that the block number is legal - the enables us to detect
2524 * and handle a silent filesystem corruption rather than crashing.
2525 */
1da177e4 2526 args.agno = XFS_FSB_TO_AGNO(args.mp, bno);
be65b18a
DC
2527 if (args.agno >= args.mp->m_sb.sb_agcount)
2528 return EFSCORRUPTED;
2529
1da177e4 2530 args.agbno = XFS_FSB_TO_AGBNO(args.mp, bno);
be65b18a
DC
2531 if (args.agbno >= args.mp->m_sb.sb_agblocks)
2532 return EFSCORRUPTED;
2533
a862e0fd 2534 args.pag = xfs_perag_get(args.mp, args.agno);
be65b18a
DC
2535 ASSERT(args.pag);
2536
2537 error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
2538 if (error)
1da177e4 2539 goto error0;
be65b18a
DC
2540
2541 /* validate the extent size is legal now we have the agf locked */
2542 if (args.agbno + len >
2543 be32_to_cpu(XFS_BUF_TO_AGF(args.agbp)->agf_length)) {
2544 error = EFSCORRUPTED;
2545 goto error0;
2546 }
2547
0e1edbd9 2548 error = xfs_free_ag_extent(tp, args.agbp, args.agno, args.agbno, len, 0);
a870acd9 2549 if (!error)
4ecbfe63 2550 xfs_extent_busy_insert(tp, args.agno, args.agbno, len, 0);
1da177e4 2551error0:
a862e0fd 2552 xfs_perag_put(args.pag);
1da177e4
LT
2553 return error;
2554}