blob: 53157d4d5e8bacde21724e26565b16607da6c1ea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_dinode.h"
32#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000036#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38
39#define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
40
41#define XFSA_FIXUP_BNO_OK 1
42#define XFSA_FIXUP_CNT_OK 2
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044STATIC int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t *);
45STATIC int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t *);
46STATIC int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t *);
47STATIC int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t *,
Christoph Hellwige26f0502011-04-24 19:06:15 +000048 xfs_btree_cur_t *, xfs_agblock_t *, xfs_extlen_t *, int *);
49STATIC void xfs_alloc_busy_trim(struct xfs_alloc_arg *,
50 xfs_agblock_t, xfs_extlen_t, xfs_agblock_t *, xfs_extlen_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110053 * Lookup the record equal to [bno, len] in the btree given by cur.
54 */
55STATIC int /* error */
56xfs_alloc_lookup_eq(
57 struct xfs_btree_cur *cur, /* btree cursor */
58 xfs_agblock_t bno, /* starting block of extent */
59 xfs_extlen_t len, /* length of extent */
60 int *stat) /* success/failure */
61{
62 cur->bc_rec.a.ar_startblock = bno;
63 cur->bc_rec.a.ar_blockcount = len;
64 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
65}
66
67/*
68 * Lookup the first record greater than or equal to [bno, len]
69 * in the btree given by cur.
70 */
71STATIC int /* error */
72xfs_alloc_lookup_ge(
73 struct xfs_btree_cur *cur, /* btree cursor */
74 xfs_agblock_t bno, /* starting block of extent */
75 xfs_extlen_t len, /* length of extent */
76 int *stat) /* success/failure */
77{
78 cur->bc_rec.a.ar_startblock = bno;
79 cur->bc_rec.a.ar_blockcount = len;
80 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
81}
82
83/*
84 * Lookup the first record less than or equal to [bno, len]
85 * in the btree given by cur.
86 */
Christoph Hellwiga46db602011-01-07 13:02:04 +000087int /* error */
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110088xfs_alloc_lookup_le(
89 struct xfs_btree_cur *cur, /* btree cursor */
90 xfs_agblock_t bno, /* starting block of extent */
91 xfs_extlen_t len, /* length of extent */
92 int *stat) /* success/failure */
93{
94 cur->bc_rec.a.ar_startblock = bno;
95 cur->bc_rec.a.ar_blockcount = len;
96 return xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat);
97}
98
Christoph Hellwig278d0ca2008-10-30 16:56:32 +110099/*
100 * Update the record referred to by cur to the value given
101 * by [bno, len].
102 * This either works (return 0) or gets an EFSCORRUPTED error.
103 */
104STATIC int /* error */
105xfs_alloc_update(
106 struct xfs_btree_cur *cur, /* btree cursor */
107 xfs_agblock_t bno, /* starting block of extent */
108 xfs_extlen_t len) /* length of extent */
109{
110 union xfs_btree_rec rec;
111
112 rec.alloc.ar_startblock = cpu_to_be32(bno);
113 rec.alloc.ar_blockcount = cpu_to_be32(len);
114 return xfs_btree_update(cur, &rec);
115}
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100116
117/*
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100118 * Get the data from the pointed-to record.
119 */
Christoph Hellwiga46db602011-01-07 13:02:04 +0000120int /* error */
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100121xfs_alloc_get_rec(
122 struct xfs_btree_cur *cur, /* btree cursor */
123 xfs_agblock_t *bno, /* output: starting block of extent */
124 xfs_extlen_t *len, /* output: length of extent */
125 int *stat) /* output: success/failure */
126{
127 union xfs_btree_rec *rec;
128 int error;
129
130 error = xfs_btree_get_rec(cur, &rec, stat);
131 if (!error && *stat == 1) {
132 *bno = be32_to_cpu(rec->alloc.ar_startblock);
133 *len = be32_to_cpu(rec->alloc.ar_blockcount);
134 }
135 return error;
136}
137
138/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 * Compute aligned version of the found extent.
140 * Takes alignment and min length into account.
141 */
David Chinner12375c82008-04-10 12:21:32 +1000142STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143xfs_alloc_compute_aligned(
Christoph Hellwig86fa8af2011-03-04 12:59:54 +0000144 xfs_alloc_arg_t *args, /* allocation argument structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 xfs_agblock_t foundbno, /* starting block in found extent */
146 xfs_extlen_t foundlen, /* length in found extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 xfs_agblock_t *resbno, /* result block number */
148 xfs_extlen_t *reslen) /* result length */
149{
150 xfs_agblock_t bno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 xfs_extlen_t len;
152
Christoph Hellwige26f0502011-04-24 19:06:15 +0000153 /* Trim busy sections out of found extent */
154 xfs_alloc_busy_trim(args, foundbno, foundlen, &bno, &len);
155
156 if (args->alignment > 1 && len >= args->minlen) {
157 xfs_agblock_t aligned_bno = roundup(bno, args->alignment);
158 xfs_extlen_t diff = aligned_bno - bno;
159
160 *resbno = aligned_bno;
161 *reslen = diff >= len ? 0 : len - diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 } else {
Christoph Hellwige26f0502011-04-24 19:06:15 +0000163 *resbno = bno;
164 *reslen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168/*
169 * Compute best start block and diff for "near" allocations.
170 * freelen >= wantlen already checked by caller.
171 */
172STATIC xfs_extlen_t /* difference value (absolute) */
173xfs_alloc_compute_diff(
174 xfs_agblock_t wantbno, /* target starting block */
175 xfs_extlen_t wantlen, /* target length */
176 xfs_extlen_t alignment, /* target alignment */
177 xfs_agblock_t freebno, /* freespace's starting block */
178 xfs_extlen_t freelen, /* freespace's length */
179 xfs_agblock_t *newbnop) /* result: best start block from free */
180{
181 xfs_agblock_t freeend; /* end of freespace extent */
182 xfs_agblock_t newbno1; /* return block number */
183 xfs_agblock_t newbno2; /* other new block number */
184 xfs_extlen_t newlen1=0; /* length with newbno1 */
185 xfs_extlen_t newlen2=0; /* length with newbno2 */
186 xfs_agblock_t wantend; /* end of target extent */
187
188 ASSERT(freelen >= wantlen);
189 freeend = freebno + freelen;
190 wantend = wantbno + wantlen;
191 if (freebno >= wantbno) {
192 if ((newbno1 = roundup(freebno, alignment)) >= freeend)
193 newbno1 = NULLAGBLOCK;
194 } else if (freeend >= wantend && alignment > 1) {
195 newbno1 = roundup(wantbno, alignment);
196 newbno2 = newbno1 - alignment;
197 if (newbno1 >= freeend)
198 newbno1 = NULLAGBLOCK;
199 else
200 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1);
201 if (newbno2 < freebno)
202 newbno2 = NULLAGBLOCK;
203 else
204 newlen2 = XFS_EXTLEN_MIN(wantlen, freeend - newbno2);
205 if (newbno1 != NULLAGBLOCK && newbno2 != NULLAGBLOCK) {
206 if (newlen1 < newlen2 ||
207 (newlen1 == newlen2 &&
208 XFS_ABSDIFF(newbno1, wantbno) >
209 XFS_ABSDIFF(newbno2, wantbno)))
210 newbno1 = newbno2;
211 } else if (newbno2 != NULLAGBLOCK)
212 newbno1 = newbno2;
213 } else if (freeend >= wantend) {
214 newbno1 = wantbno;
215 } else if (alignment > 1) {
216 newbno1 = roundup(freeend - wantlen, alignment);
217 if (newbno1 > freeend - wantlen &&
218 newbno1 - alignment >= freebno)
219 newbno1 -= alignment;
220 else if (newbno1 >= freeend)
221 newbno1 = NULLAGBLOCK;
222 } else
223 newbno1 = freeend - wantlen;
224 *newbnop = newbno1;
225 return newbno1 == NULLAGBLOCK ? 0 : XFS_ABSDIFF(newbno1, wantbno);
226}
227
228/*
229 * Fix up the length, based on mod and prod.
230 * len should be k * prod + mod for some k.
231 * If len is too small it is returned unchanged.
232 * If len hits maxlen it is left alone.
233 */
234STATIC void
235xfs_alloc_fix_len(
236 xfs_alloc_arg_t *args) /* allocation argument structure */
237{
238 xfs_extlen_t k;
239 xfs_extlen_t rlen;
240
241 ASSERT(args->mod < args->prod);
242 rlen = args->len;
243 ASSERT(rlen >= args->minlen);
244 ASSERT(rlen <= args->maxlen);
245 if (args->prod <= 1 || rlen < args->mod || rlen == args->maxlen ||
246 (args->mod == 0 && rlen < args->prod))
247 return;
248 k = rlen % args->prod;
249 if (k == args->mod)
250 return;
251 if (k > args->mod) {
252 if ((int)(rlen = rlen - k - args->mod) < (int)args->minlen)
253 return;
254 } else {
255 if ((int)(rlen = rlen - args->prod - (args->mod - k)) <
256 (int)args->minlen)
257 return;
258 }
259 ASSERT(rlen >= args->minlen);
260 ASSERT(rlen <= args->maxlen);
261 args->len = rlen;
262}
263
264/*
265 * Fix up length if there is too little space left in the a.g.
266 * Return 1 if ok, 0 if too little, should give up.
267 */
268STATIC int
269xfs_alloc_fix_minleft(
270 xfs_alloc_arg_t *args) /* allocation argument structure */
271{
272 xfs_agf_t *agf; /* a.g. freelist header */
273 int diff; /* free space difference */
274
275 if (args->minleft == 0)
276 return 1;
277 agf = XFS_BUF_TO_AGF(args->agbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100278 diff = be32_to_cpu(agf->agf_freeblks)
279 + be32_to_cpu(agf->agf_flcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 - args->len - args->minleft;
281 if (diff >= 0)
282 return 1;
283 args->len += diff; /* shrink the allocated space */
284 if (args->len >= args->minlen)
285 return 1;
286 args->agbno = NULLAGBLOCK;
287 return 0;
288}
289
290/*
291 * Update the two btrees, logically removing from freespace the extent
292 * starting at rbno, rlen blocks. The extent is contained within the
293 * actual (current) free extent fbno for flen blocks.
294 * Flags are passed in indicating whether the cursors are set to the
295 * relevant records.
296 */
297STATIC int /* error code */
298xfs_alloc_fixup_trees(
299 xfs_btree_cur_t *cnt_cur, /* cursor for by-size btree */
300 xfs_btree_cur_t *bno_cur, /* cursor for by-block btree */
301 xfs_agblock_t fbno, /* starting block of free extent */
302 xfs_extlen_t flen, /* length of free extent */
303 xfs_agblock_t rbno, /* starting block of returned extent */
304 xfs_extlen_t rlen, /* length of returned extent */
305 int flags) /* flags, XFSA_FIXUP_... */
306{
307 int error; /* error code */
308 int i; /* operation results */
309 xfs_agblock_t nfbno1; /* first new free startblock */
310 xfs_agblock_t nfbno2; /* second new free startblock */
311 xfs_extlen_t nflen1=0; /* first new free length */
312 xfs_extlen_t nflen2=0; /* second new free length */
313
314 /*
315 * Look up the record in the by-size tree if necessary.
316 */
317 if (flags & XFSA_FIXUP_CNT_OK) {
318#ifdef DEBUG
319 if ((error = xfs_alloc_get_rec(cnt_cur, &nfbno1, &nflen1, &i)))
320 return error;
321 XFS_WANT_CORRUPTED_RETURN(
322 i == 1 && nfbno1 == fbno && nflen1 == flen);
323#endif
324 } else {
325 if ((error = xfs_alloc_lookup_eq(cnt_cur, fbno, flen, &i)))
326 return error;
327 XFS_WANT_CORRUPTED_RETURN(i == 1);
328 }
329 /*
330 * Look up the record in the by-block tree if necessary.
331 */
332 if (flags & XFSA_FIXUP_BNO_OK) {
333#ifdef DEBUG
334 if ((error = xfs_alloc_get_rec(bno_cur, &nfbno1, &nflen1, &i)))
335 return error;
336 XFS_WANT_CORRUPTED_RETURN(
337 i == 1 && nfbno1 == fbno && nflen1 == flen);
338#endif
339 } else {
340 if ((error = xfs_alloc_lookup_eq(bno_cur, fbno, flen, &i)))
341 return error;
342 XFS_WANT_CORRUPTED_RETURN(i == 1);
343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100345#ifdef DEBUG
346 if (bno_cur->bc_nlevels == 1 && cnt_cur->bc_nlevels == 1) {
347 struct xfs_btree_block *bnoblock;
348 struct xfs_btree_block *cntblock;
349
350 bnoblock = XFS_BUF_TO_BLOCK(bno_cur->bc_bufs[0]);
351 cntblock = XFS_BUF_TO_BLOCK(cnt_cur->bc_bufs[0]);
352
353 XFS_WANT_CORRUPTED_RETURN(
354 bnoblock->bb_numrecs == cntblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356#endif
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 /*
359 * Deal with all four cases: the allocated record is contained
360 * within the freespace record, so we can have new freespace
361 * at either (or both) end, or no freespace remaining.
362 */
363 if (rbno == fbno && rlen == flen)
364 nfbno1 = nfbno2 = NULLAGBLOCK;
365 else if (rbno == fbno) {
366 nfbno1 = rbno + rlen;
367 nflen1 = flen - rlen;
368 nfbno2 = NULLAGBLOCK;
369 } else if (rbno + rlen == fbno + flen) {
370 nfbno1 = fbno;
371 nflen1 = flen - rlen;
372 nfbno2 = NULLAGBLOCK;
373 } else {
374 nfbno1 = fbno;
375 nflen1 = rbno - fbno;
376 nfbno2 = rbno + rlen;
377 nflen2 = (fbno + flen) - nfbno2;
378 }
379 /*
380 * Delete the entry from the by-size btree.
381 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100382 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return error;
384 XFS_WANT_CORRUPTED_RETURN(i == 1);
385 /*
386 * Add new by-size btree entry(s).
387 */
388 if (nfbno1 != NULLAGBLOCK) {
389 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno1, nflen1, &i)))
390 return error;
391 XFS_WANT_CORRUPTED_RETURN(i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100392 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return error;
394 XFS_WANT_CORRUPTED_RETURN(i == 1);
395 }
396 if (nfbno2 != NULLAGBLOCK) {
397 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno2, nflen2, &i)))
398 return error;
399 XFS_WANT_CORRUPTED_RETURN(i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100400 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return error;
402 XFS_WANT_CORRUPTED_RETURN(i == 1);
403 }
404 /*
405 * Fix up the by-block btree entry(s).
406 */
407 if (nfbno1 == NULLAGBLOCK) {
408 /*
409 * No remaining freespace, just delete the by-block tree entry.
410 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100411 if ((error = xfs_btree_delete(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return error;
413 XFS_WANT_CORRUPTED_RETURN(i == 1);
414 } else {
415 /*
416 * Update the by-block entry to start later|be shorter.
417 */
418 if ((error = xfs_alloc_update(bno_cur, nfbno1, nflen1)))
419 return error;
420 }
421 if (nfbno2 != NULLAGBLOCK) {
422 /*
423 * 2 resulting free entries, need to add one.
424 */
425 if ((error = xfs_alloc_lookup_eq(bno_cur, nfbno2, nflen2, &i)))
426 return error;
427 XFS_WANT_CORRUPTED_RETURN(i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100428 if ((error = xfs_btree_insert(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return error;
430 XFS_WANT_CORRUPTED_RETURN(i == 1);
431 }
432 return 0;
433}
434
435/*
436 * Read in the allocation group free block array.
437 */
438STATIC int /* error */
439xfs_alloc_read_agfl(
440 xfs_mount_t *mp, /* mount point structure */
441 xfs_trans_t *tp, /* transaction pointer */
442 xfs_agnumber_t agno, /* allocation group number */
443 xfs_buf_t **bpp) /* buffer for the ag free block array */
444{
445 xfs_buf_t *bp; /* return value */
446 int error;
447
448 ASSERT(agno != NULLAGNUMBER);
449 error = xfs_trans_read_buf(
450 mp, tp, mp->m_ddev_targp,
451 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
452 XFS_FSS_TO_BB(mp, 1), 0, &bp);
453 if (error)
454 return error;
455 ASSERT(bp);
456 ASSERT(!XFS_BUF_GETERROR(bp));
457 XFS_BUF_SET_VTYPE_REF(bp, B_FS_AGFL, XFS_AGFL_REF);
458 *bpp = bp;
459 return 0;
460}
461
Christoph Hellwigecb69282011-03-04 12:59:55 +0000462STATIC int
463xfs_alloc_update_counters(
464 struct xfs_trans *tp,
465 struct xfs_perag *pag,
466 struct xfs_buf *agbp,
467 long len)
468{
469 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
470
471 pag->pagf_freeblks += len;
472 be32_add_cpu(&agf->agf_freeblks, len);
473
474 xfs_trans_agblocks_delta(tp, len);
475 if (unlikely(be32_to_cpu(agf->agf_freeblks) >
476 be32_to_cpu(agf->agf_length)))
477 return EFSCORRUPTED;
478
479 xfs_alloc_log_agf(tp, agbp, XFS_AGF_FREEBLKS);
480 return 0;
481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483/*
484 * Allocation group level functions.
485 */
486
487/*
488 * Allocate a variable extent in the allocation group agno.
489 * Type and bno are used to determine where in the allocation group the
490 * extent will start.
491 * Extent's length (returned in *len) will be between minlen and maxlen,
492 * and of the form k * prod + mod unless there's nothing that large.
493 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
494 */
495STATIC int /* error */
496xfs_alloc_ag_vextent(
497 xfs_alloc_arg_t *args) /* argument structure for allocation */
498{
499 int error=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 ASSERT(args->minlen > 0);
502 ASSERT(args->maxlen > 0);
503 ASSERT(args->minlen <= args->maxlen);
504 ASSERT(args->mod < args->prod);
505 ASSERT(args->alignment > 0);
506 /*
507 * Branch to correct routine based on the type.
508 */
509 args->wasfromfl = 0;
510 switch (args->type) {
511 case XFS_ALLOCTYPE_THIS_AG:
512 error = xfs_alloc_ag_vextent_size(args);
513 break;
514 case XFS_ALLOCTYPE_NEAR_BNO:
515 error = xfs_alloc_ag_vextent_near(args);
516 break;
517 case XFS_ALLOCTYPE_THIS_BNO:
518 error = xfs_alloc_ag_vextent_exact(args);
519 break;
520 default:
521 ASSERT(0);
522 /* NOTREACHED */
523 }
Christoph Hellwigecb69282011-03-04 12:59:55 +0000524
525 if (error || args->agbno == NULLAGBLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Christoph Hellwigecb69282011-03-04 12:59:55 +0000528 ASSERT(args->len >= args->minlen);
529 ASSERT(args->len <= args->maxlen);
530 ASSERT(!args->wasfromfl || !args->isfl);
531 ASSERT(args->agbno % args->alignment == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Christoph Hellwigecb69282011-03-04 12:59:55 +0000533 if (!args->wasfromfl) {
534 error = xfs_alloc_update_counters(args->tp, args->pag,
535 args->agbp,
536 -((long)(args->len)));
537 if (error)
538 return error;
539
Christoph Hellwige26f0502011-04-24 19:06:15 +0000540 ASSERT(!xfs_alloc_busy_search(args->mp, args->agno,
541 args->agbno, args->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
Christoph Hellwigecb69282011-03-04 12:59:55 +0000543
544 if (!args->isfl) {
545 xfs_trans_mod_sb(args->tp, args->wasdel ?
546 XFS_TRANS_SB_RES_FDBLOCKS :
547 XFS_TRANS_SB_FDBLOCKS,
548 -((long)(args->len)));
549 }
550
551 XFS_STATS_INC(xs_allocx);
552 XFS_STATS_ADD(xs_allocb, args->len);
553 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
556/*
557 * Allocate a variable extent at exactly agno/bno.
558 * Extent's length (returned in *len) will be between minlen and maxlen,
559 * and of the form k * prod + mod unless there's nothing that large.
560 * Return the starting a.g. block (bno), or NULLAGBLOCK if we can't do it.
561 */
562STATIC int /* error */
563xfs_alloc_ag_vextent_exact(
564 xfs_alloc_arg_t *args) /* allocation argument structure */
565{
566 xfs_btree_cur_t *bno_cur;/* by block-number btree cursor */
567 xfs_btree_cur_t *cnt_cur;/* by count btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 int error;
569 xfs_agblock_t fbno; /* start block of found extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 xfs_extlen_t flen; /* length of found extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000571 xfs_agblock_t tbno; /* start block of trimmed extent */
572 xfs_extlen_t tlen; /* length of trimmed extent */
573 xfs_agblock_t tend; /* end block of trimmed extent */
574 xfs_agblock_t end; /* end of allocated extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 int i; /* success/failure of operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 xfs_extlen_t rlen; /* length of returned extent */
577
578 ASSERT(args->alignment == 1);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /*
581 * Allocate/initialize a cursor for the by-number freespace btree.
582 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100583 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000584 args->agno, XFS_BTNUM_BNO);
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /*
587 * Lookup bno and minlen in the btree (minlen is irrelevant, really).
588 * Look for the closest free block <= bno, it must contain bno
589 * if any free block does.
590 */
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000591 error = xfs_alloc_lookup_le(bno_cur, args->agbno, args->minlen, &i);
592 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 goto error0;
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000594 if (!i)
595 goto not_found;
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /*
598 * Grab the freespace record.
599 */
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000600 error = xfs_alloc_get_rec(bno_cur, &fbno, &flen, &i);
601 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 goto error0;
603 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
604 ASSERT(fbno <= args->agbno);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 /*
Christoph Hellwige26f0502011-04-24 19:06:15 +0000607 * Check for overlapping busy extents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000609 xfs_alloc_busy_trim(args, fbno, flen, &tbno, &tlen);
610
611 /*
612 * Give up if the start of the extent is busy, or the freespace isn't
613 * long enough for the minimum request.
614 */
615 if (tbno > args->agbno)
616 goto not_found;
617 if (tlen < args->minlen)
618 goto not_found;
619 tend = tbno + tlen;
620 if (tend < args->agbno + args->minlen)
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000621 goto not_found;
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 /*
624 * End of extent will be smaller of the freespace end and the
625 * maximal requested end.
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000626 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 * Fix the length according to mod and prod if given.
628 */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000629 end = XFS_AGBLOCK_MIN(tend, args->agbno + args->maxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 args->len = end - args->agbno;
631 xfs_alloc_fix_len(args);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000632 if (!xfs_alloc_fix_minleft(args))
633 goto not_found;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 rlen = args->len;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000636 ASSERT(args->agbno + rlen <= tend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 end = args->agbno + rlen;
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /*
640 * We are allocating agbno for rlen [agbno .. end]
641 * Allocate/initialize a cursor for the by-size btree.
642 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100643 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
644 args->agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ASSERT(args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +1100646 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000647 error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen, args->agbno,
648 args->len, XFSA_FIXUP_BNO_OK);
649 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
651 goto error0;
652 }
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
655 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 args->wasfromfl = 0;
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000658 trace_xfs_alloc_exact_done(args);
659 return 0;
660
661not_found:
662 /* Didn't find it, return null. */
663 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
664 args->agbno = NULLAGBLOCK;
665 trace_xfs_alloc_exact_notfound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return 0;
667
668error0:
669 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000670 trace_xfs_alloc_exact_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return error;
672}
673
674/*
Christoph Hellwig489a1502010-12-10 15:04:11 +0000675 * Search the btree in a given direction via the search cursor and compare
676 * the records found against the good extent we've already found.
677 */
678STATIC int
679xfs_alloc_find_best_extent(
680 struct xfs_alloc_arg *args, /* allocation argument structure */
681 struct xfs_btree_cur **gcur, /* good cursor */
682 struct xfs_btree_cur **scur, /* searching cursor */
683 xfs_agblock_t gdiff, /* difference for search comparison */
684 xfs_agblock_t *sbno, /* extent found by search */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000685 xfs_extlen_t *slen, /* extent length */
686 xfs_agblock_t *sbnoa, /* aligned extent found by search */
687 xfs_extlen_t *slena, /* aligned extent length */
Christoph Hellwig489a1502010-12-10 15:04:11 +0000688 int dir) /* 0 = search right, 1 = search left */
689{
Christoph Hellwig489a1502010-12-10 15:04:11 +0000690 xfs_agblock_t new;
691 xfs_agblock_t sdiff;
692 int error;
693 int i;
694
695 /* The good extent is perfect, no need to search. */
696 if (!gdiff)
697 goto out_use_good;
698
699 /*
700 * Look until we find a better one, run out of space or run off the end.
701 */
702 do {
703 error = xfs_alloc_get_rec(*scur, sbno, slen, &i);
704 if (error)
705 goto error0;
706 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000707 xfs_alloc_compute_aligned(args, *sbno, *slen, sbnoa, slena);
Christoph Hellwig489a1502010-12-10 15:04:11 +0000708
709 /*
710 * The good extent is closer than this one.
711 */
712 if (!dir) {
Christoph Hellwige26f0502011-04-24 19:06:15 +0000713 if (*sbnoa >= args->agbno + gdiff)
Christoph Hellwig489a1502010-12-10 15:04:11 +0000714 goto out_use_good;
715 } else {
Christoph Hellwige26f0502011-04-24 19:06:15 +0000716 if (*sbnoa <= args->agbno - gdiff)
Christoph Hellwig489a1502010-12-10 15:04:11 +0000717 goto out_use_good;
718 }
719
720 /*
721 * Same distance, compare length and pick the best.
722 */
723 if (*slena >= args->minlen) {
724 args->len = XFS_EXTLEN_MIN(*slena, args->maxlen);
725 xfs_alloc_fix_len(args);
726
727 sdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Christoph Hellwige26f0502011-04-24 19:06:15 +0000728 args->alignment, *sbnoa,
729 *slena, &new);
Christoph Hellwig489a1502010-12-10 15:04:11 +0000730
731 /*
732 * Choose closer size and invalidate other cursor.
733 */
734 if (sdiff < gdiff)
735 goto out_use_search;
736 goto out_use_good;
737 }
738
739 if (!dir)
740 error = xfs_btree_increment(*scur, 0, &i);
741 else
742 error = xfs_btree_decrement(*scur, 0, &i);
743 if (error)
744 goto error0;
745 } while (i);
746
747out_use_good:
748 xfs_btree_del_cursor(*scur, XFS_BTREE_NOERROR);
749 *scur = NULL;
750 return 0;
751
752out_use_search:
753 xfs_btree_del_cursor(*gcur, XFS_BTREE_NOERROR);
754 *gcur = NULL;
755 return 0;
756
757error0:
758 /* caller invalidates cursors */
759 return error;
760}
761
762/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * Allocate a variable extent near bno in the allocation group agno.
764 * Extent's length (returned in len) will be between minlen and maxlen,
765 * and of the form k * prod + mod unless there's nothing that large.
766 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
767 */
768STATIC int /* error */
769xfs_alloc_ag_vextent_near(
770 xfs_alloc_arg_t *args) /* allocation argument structure */
771{
772 xfs_btree_cur_t *bno_cur_gt; /* cursor for bno btree, right side */
773 xfs_btree_cur_t *bno_cur_lt; /* cursor for bno btree, left side */
774 xfs_btree_cur_t *cnt_cur; /* cursor for count btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 xfs_agblock_t gtbno; /* start bno of right side entry */
776 xfs_agblock_t gtbnoa; /* aligned ... */
777 xfs_extlen_t gtdiff; /* difference to right side entry */
778 xfs_extlen_t gtlen; /* length of right side entry */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000779 xfs_extlen_t gtlena; /* aligned ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 xfs_agblock_t gtnew; /* useful start bno of right side */
781 int error; /* error code */
782 int i; /* result code, temporary */
783 int j; /* result code, temporary */
784 xfs_agblock_t ltbno; /* start bno of left side entry */
785 xfs_agblock_t ltbnoa; /* aligned ... */
786 xfs_extlen_t ltdiff; /* difference to left side entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 xfs_extlen_t ltlen; /* length of left side entry */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000788 xfs_extlen_t ltlena; /* aligned ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 xfs_agblock_t ltnew; /* useful start bno of left side */
790 xfs_extlen_t rlen; /* length of returned extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000791 int forced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792#if defined(DEBUG) && defined(__KERNEL__)
793 /*
794 * Randomly don't execute the first algorithm.
795 */
796 int dofirst; /* set to do first algorithm */
797
Joe Perchese7a23a92007-05-08 13:49:03 +1000798 dofirst = random32() & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799#endif
Christoph Hellwige26f0502011-04-24 19:06:15 +0000800
801restart:
802 bno_cur_lt = NULL;
803 bno_cur_gt = NULL;
804 ltlen = 0;
805 gtlena = 0;
806 ltlena = 0;
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /*
809 * Get a cursor for the by-size btree.
810 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100811 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
812 args->agno, XFS_BTNUM_CNT);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /*
815 * See if there are any free extents as big as maxlen.
816 */
817 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0, args->maxlen, &i)))
818 goto error0;
819 /*
820 * If none, then pick up the last entry in the tree unless the
821 * tree is empty.
822 */
823 if (!i) {
824 if ((error = xfs_alloc_ag_vextent_small(args, cnt_cur, &ltbno,
825 &ltlen, &i)))
826 goto error0;
827 if (i == 0 || ltlen == 0) {
828 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000829 trace_xfs_alloc_near_noentry(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return 0;
831 }
832 ASSERT(i == 1);
833 }
834 args->wasfromfl = 0;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /*
837 * First algorithm.
838 * If the requested extent is large wrt the freespaces available
839 * in this a.g., then the cursor will be pointing to a btree entry
840 * near the right edge of the tree. If it's in the last btree leaf
841 * block, then we just examine all the entries in that block
842 * that are big enough, and pick the best one.
843 * This is written as a while loop so we can break out of it,
844 * but we never loop back to the top.
845 */
846 while (xfs_btree_islastblock(cnt_cur, 0)) {
847 xfs_extlen_t bdiff;
848 int besti=0;
849 xfs_extlen_t blen=0;
850 xfs_agblock_t bnew=0;
851
852#if defined(DEBUG) && defined(__KERNEL__)
853 if (!dofirst)
854 break;
855#endif
856 /*
857 * Start from the entry that lookup found, sequence through
858 * all larger free blocks. If we're actually pointing at a
859 * record smaller than maxlen, go to the start of this block,
860 * and skip all those smaller than minlen.
861 */
862 if (ltlen || args->alignment > 1) {
863 cnt_cur->bc_ptrs[0] = 1;
864 do {
865 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno,
866 &ltlen, &i)))
867 goto error0;
868 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
869 if (ltlen >= args->minlen)
870 break;
Christoph Hellwig637aa502008-10-30 16:55:45 +1100871 if ((error = xfs_btree_increment(cnt_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 goto error0;
873 } while (i);
874 ASSERT(ltlen >= args->minlen);
875 if (!i)
876 break;
877 }
878 i = cnt_cur->bc_ptrs[0];
879 for (j = 1, blen = 0, bdiff = 0;
880 !error && j && (blen < args->maxlen || bdiff > 0);
Christoph Hellwig637aa502008-10-30 16:55:45 +1100881 error = xfs_btree_increment(cnt_cur, 0, &j)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 /*
883 * For each entry, decide if it's better than
884 * the previous best entry.
885 */
886 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
887 goto error0;
888 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +0000889 xfs_alloc_compute_aligned(args, ltbno, ltlen,
890 &ltbnoa, &ltlena);
David Chinnere6430032008-04-17 16:49:49 +1000891 if (ltlena < args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 continue;
893 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
894 xfs_alloc_fix_len(args);
895 ASSERT(args->len >= args->minlen);
896 if (args->len < blen)
897 continue;
898 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Christoph Hellwige26f0502011-04-24 19:06:15 +0000899 args->alignment, ltbnoa, ltlena, &ltnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (ltnew != NULLAGBLOCK &&
901 (args->len > blen || ltdiff < bdiff)) {
902 bdiff = ltdiff;
903 bnew = ltnew;
904 blen = args->len;
905 besti = cnt_cur->bc_ptrs[0];
906 }
907 }
908 /*
909 * It didn't work. We COULD be in a case where
910 * there's a good record somewhere, so try again.
911 */
912 if (blen == 0)
913 break;
914 /*
915 * Point at the best entry, and retrieve it again.
916 */
917 cnt_cur->bc_ptrs[0] = besti;
918 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
919 goto error0;
920 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig73523a22010-07-20 17:54:45 +1000921 ASSERT(ltbno + ltlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 args->len = blen;
923 if (!xfs_alloc_fix_minleft(args)) {
924 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000925 trace_xfs_alloc_near_nominleft(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return 0;
927 }
928 blen = args->len;
929 /*
930 * We are allocating starting at bnew for blen blocks.
931 */
932 args->agbno = bnew;
933 ASSERT(bnew >= ltbno);
Christoph Hellwig73523a22010-07-20 17:54:45 +1000934 ASSERT(bnew + blen <= ltbno + ltlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 /*
936 * Set up a cursor for the by-bno tree.
937 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100938 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp,
939 args->agbp, args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /*
941 * Fix up the btree entries.
942 */
943 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno,
944 ltlen, bnew, blen, XFSA_FIXUP_CNT_OK)))
945 goto error0;
946 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
947 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000948
949 trace_xfs_alloc_near_first(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return 0;
951 }
952 /*
953 * Second algorithm.
954 * Search in the by-bno tree to the left and to the right
955 * simultaneously, until in each case we find a space big enough,
956 * or run into the edge of the tree. When we run into the edge,
957 * we deallocate that cursor.
958 * If both searches succeed, we compare the two spaces and pick
959 * the better one.
960 * With alignment, it's possible for both to fail; the upper
961 * level algorithm that picks allocation groups for allocations
962 * is not supposed to do this.
963 */
964 /*
965 * Allocate and initialize the cursor for the leftward search.
966 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100967 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
968 args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 /*
970 * Lookup <= bno to find the leftward search's starting point.
971 */
972 if ((error = xfs_alloc_lookup_le(bno_cur_lt, args->agbno, args->maxlen, &i)))
973 goto error0;
974 if (!i) {
975 /*
976 * Didn't find anything; use this cursor for the rightward
977 * search.
978 */
979 bno_cur_gt = bno_cur_lt;
980 bno_cur_lt = NULL;
981 }
982 /*
983 * Found something. Duplicate the cursor for the rightward search.
984 */
985 else if ((error = xfs_btree_dup_cursor(bno_cur_lt, &bno_cur_gt)))
986 goto error0;
987 /*
988 * Increment the cursor, so we will point at the entry just right
989 * of the leftward entry if any, or to the leftmost entry.
990 */
Christoph Hellwig637aa502008-10-30 16:55:45 +1100991 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 goto error0;
993 if (!i) {
994 /*
995 * It failed, there are no rightward entries.
996 */
997 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_NOERROR);
998 bno_cur_gt = NULL;
999 }
1000 /*
1001 * Loop going left with the leftward cursor, right with the
1002 * rightward cursor, until either both directions give up or
1003 * we find an entry at least as big as minlen.
1004 */
1005 do {
1006 if (bno_cur_lt) {
1007 if ((error = xfs_alloc_get_rec(bno_cur_lt, &ltbno, &ltlen, &i)))
1008 goto error0;
1009 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001010 xfs_alloc_compute_aligned(args, ltbno, ltlen,
1011 &ltbnoa, &ltlena);
David Chinner12375c82008-04-10 12:21:32 +10001012 if (ltlena >= args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 break;
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001014 if ((error = xfs_btree_decrement(bno_cur_lt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 goto error0;
1016 if (!i) {
1017 xfs_btree_del_cursor(bno_cur_lt,
1018 XFS_BTREE_NOERROR);
1019 bno_cur_lt = NULL;
1020 }
1021 }
1022 if (bno_cur_gt) {
1023 if ((error = xfs_alloc_get_rec(bno_cur_gt, &gtbno, &gtlen, &i)))
1024 goto error0;
1025 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001026 xfs_alloc_compute_aligned(args, gtbno, gtlen,
1027 &gtbnoa, &gtlena);
David Chinner12375c82008-04-10 12:21:32 +10001028 if (gtlena >= args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 break;
Christoph Hellwig637aa502008-10-30 16:55:45 +11001030 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 goto error0;
1032 if (!i) {
1033 xfs_btree_del_cursor(bno_cur_gt,
1034 XFS_BTREE_NOERROR);
1035 bno_cur_gt = NULL;
1036 }
1037 }
1038 } while (bno_cur_lt || bno_cur_gt);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 /*
1041 * Got both cursors still active, need to find better entry.
1042 */
1043 if (bno_cur_lt && bno_cur_gt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (ltlena >= args->minlen) {
1045 /*
Christoph Hellwig489a1502010-12-10 15:04:11 +00001046 * Left side is good, look for a right side entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 */
1048 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1049 xfs_alloc_fix_len(args);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001050 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001051 args->alignment, ltbnoa, ltlena, &ltnew);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001052
1053 error = xfs_alloc_find_best_extent(args,
1054 &bno_cur_lt, &bno_cur_gt,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001055 ltdiff, &gtbno, &gtlen,
1056 &gtbnoa, &gtlena,
Christoph Hellwig489a1502010-12-10 15:04:11 +00001057 0 /* search right */);
1058 } else {
1059 ASSERT(gtlena >= args->minlen);
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 /*
Christoph Hellwig489a1502010-12-10 15:04:11 +00001062 * Right side is good, look for a left side entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 */
1064 args->len = XFS_EXTLEN_MIN(gtlena, args->maxlen);
1065 xfs_alloc_fix_len(args);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001066 gtdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001067 args->alignment, gtbnoa, gtlena, &gtnew);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001068
1069 error = xfs_alloc_find_best_extent(args,
1070 &bno_cur_gt, &bno_cur_lt,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001071 gtdiff, &ltbno, &ltlen,
1072 &ltbnoa, &ltlena,
Christoph Hellwig489a1502010-12-10 15:04:11 +00001073 1 /* search left */);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001075
1076 if (error)
1077 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 /*
1081 * If we couldn't get anything, give up.
1082 */
1083 if (bno_cur_lt == NULL && bno_cur_gt == NULL) {
Christoph Hellwige26f0502011-04-24 19:06:15 +00001084 if (!forced++) {
1085 trace_xfs_alloc_near_busy(args);
1086 xfs_log_force(args->mp, XFS_LOG_SYNC);
1087 goto restart;
1088 }
1089
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001090 trace_xfs_alloc_size_neither(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 args->agbno = NULLAGBLOCK;
1092 return 0;
1093 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 /*
1096 * At this point we have selected a freespace entry, either to the
1097 * left or to the right. If it's on the right, copy all the
1098 * useful variables to the "left" set so we only have one
1099 * copy of this code.
1100 */
1101 if (bno_cur_gt) {
1102 bno_cur_lt = bno_cur_gt;
1103 bno_cur_gt = NULL;
1104 ltbno = gtbno;
1105 ltbnoa = gtbnoa;
1106 ltlen = gtlen;
1107 ltlena = gtlena;
1108 j = 1;
1109 } else
1110 j = 0;
Christoph Hellwig489a1502010-12-10 15:04:11 +00001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 /*
1113 * Fix up the length and compute the useful address.
1114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1116 xfs_alloc_fix_len(args);
1117 if (!xfs_alloc_fix_minleft(args)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001118 trace_xfs_alloc_near_nominleft(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1120 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1121 return 0;
1122 }
1123 rlen = args->len;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001124 (void)xfs_alloc_compute_diff(args->agbno, rlen, args->alignment,
1125 ltbnoa, ltlena, &ltnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 ASSERT(ltnew >= ltbno);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001127 ASSERT(ltnew + rlen <= ltbnoa + ltlena);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001128 ASSERT(ltnew + rlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 args->agbno = ltnew;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno, ltlen,
1132 ltnew, rlen, XFSA_FIXUP_BNO_OK)))
1133 goto error0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001134
1135 if (j)
1136 trace_xfs_alloc_near_greater(args);
1137 else
1138 trace_xfs_alloc_near_lesser(args);
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1141 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1142 return 0;
1143
1144 error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001145 trace_xfs_alloc_near_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (cnt_cur != NULL)
1147 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1148 if (bno_cur_lt != NULL)
1149 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_ERROR);
1150 if (bno_cur_gt != NULL)
1151 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_ERROR);
1152 return error;
1153}
1154
1155/*
1156 * Allocate a variable extent anywhere in the allocation group agno.
1157 * Extent's length (returned in len) will be between minlen and maxlen,
1158 * and of the form k * prod + mod unless there's nothing that large.
1159 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
1160 */
1161STATIC int /* error */
1162xfs_alloc_ag_vextent_size(
1163 xfs_alloc_arg_t *args) /* allocation argument structure */
1164{
1165 xfs_btree_cur_t *bno_cur; /* cursor for bno btree */
1166 xfs_btree_cur_t *cnt_cur; /* cursor for cnt btree */
1167 int error; /* error result */
1168 xfs_agblock_t fbno; /* start of found freespace */
1169 xfs_extlen_t flen; /* length of found freespace */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 int i; /* temp status variable */
1171 xfs_agblock_t rbno; /* returned block number */
1172 xfs_extlen_t rlen; /* length of returned extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001173 int forced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Christoph Hellwige26f0502011-04-24 19:06:15 +00001175restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /*
1177 * Allocate and initialize a cursor for the by-size btree.
1178 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001179 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1180 args->agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 bno_cur = NULL;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /*
1184 * Look for an entry >= maxlen+alignment-1 blocks.
1185 */
1186 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0,
1187 args->maxlen + args->alignment - 1, &i)))
1188 goto error0;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 /*
Christoph Hellwige26f0502011-04-24 19:06:15 +00001191 * If none or we have busy extents that we cannot allocate from, then
1192 * we have to settle for a smaller extent. In the case that there are
1193 * no large extents, this will return the last entry in the tree unless
1194 * the tree is empty. In the case that there are only busy large
1195 * extents, this will return the largest small extent unless there
1196 * are no smaller extents available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001198 if (!i || forced > 1) {
1199 error = xfs_alloc_ag_vextent_small(args, cnt_cur,
1200 &fbno, &flen, &i);
1201 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 goto error0;
1203 if (i == 0 || flen == 0) {
1204 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001205 trace_xfs_alloc_size_noentry(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 return 0;
1207 }
1208 ASSERT(i == 1);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001209 xfs_alloc_compute_aligned(args, fbno, flen, &rbno, &rlen);
1210 } else {
1211 /*
1212 * Search for a non-busy extent that is large enough.
1213 * If we are at low space, don't check, or if we fall of
1214 * the end of the btree, turn off the busy check and
1215 * restart.
1216 */
1217 for (;;) {
1218 error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen, &i);
1219 if (error)
1220 goto error0;
1221 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1222
1223 xfs_alloc_compute_aligned(args, fbno, flen,
1224 &rbno, &rlen);
1225
1226 if (rlen >= args->maxlen)
1227 break;
1228
1229 error = xfs_btree_increment(cnt_cur, 0, &i);
1230 if (error)
1231 goto error0;
1232 if (i == 0) {
1233 /*
1234 * Our only valid extents must have been busy.
1235 * Make it unbusy by forcing the log out and
1236 * retrying. If we've been here before, forcing
1237 * the log isn't making the extents available,
1238 * which means they have probably been freed in
1239 * this transaction. In that case, we have to
1240 * give up on them and we'll attempt a minlen
1241 * allocation the next time around.
1242 */
1243 xfs_btree_del_cursor(cnt_cur,
1244 XFS_BTREE_NOERROR);
1245 trace_xfs_alloc_size_busy(args);
1246 if (!forced++)
1247 xfs_log_force(args->mp, XFS_LOG_SYNC);
1248 goto restart;
1249 }
1250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
Christoph Hellwige26f0502011-04-24 19:06:15 +00001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 /*
1254 * In the first case above, we got the last entry in the
1255 * by-size btree. Now we check to see if the space hits maxlen
1256 * once aligned; if not, we search left for something better.
1257 * This can't happen in the second case above.
1258 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
1260 XFS_WANT_CORRUPTED_GOTO(rlen == 0 ||
1261 (rlen <= flen && rbno + rlen <= fbno + flen), error0);
1262 if (rlen < args->maxlen) {
1263 xfs_agblock_t bestfbno;
1264 xfs_extlen_t bestflen;
1265 xfs_agblock_t bestrbno;
1266 xfs_extlen_t bestrlen;
1267
1268 bestrlen = rlen;
1269 bestrbno = rbno;
1270 bestflen = flen;
1271 bestfbno = fbno;
1272 for (;;) {
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001273 if ((error = xfs_btree_decrement(cnt_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 goto error0;
1275 if (i == 0)
1276 break;
1277 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen,
1278 &i)))
1279 goto error0;
1280 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1281 if (flen < bestrlen)
1282 break;
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001283 xfs_alloc_compute_aligned(args, fbno, flen,
1284 &rbno, &rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
1286 XFS_WANT_CORRUPTED_GOTO(rlen == 0 ||
1287 (rlen <= flen && rbno + rlen <= fbno + flen),
1288 error0);
1289 if (rlen > bestrlen) {
1290 bestrlen = rlen;
1291 bestrbno = rbno;
1292 bestflen = flen;
1293 bestfbno = fbno;
1294 if (rlen == args->maxlen)
1295 break;
1296 }
1297 }
1298 if ((error = xfs_alloc_lookup_eq(cnt_cur, bestfbno, bestflen,
1299 &i)))
1300 goto error0;
1301 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1302 rlen = bestrlen;
1303 rbno = bestrbno;
1304 flen = bestflen;
1305 fbno = bestfbno;
1306 }
1307 args->wasfromfl = 0;
1308 /*
1309 * Fix up the length.
1310 */
1311 args->len = rlen;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001312 if (rlen < args->minlen) {
1313 if (!forced++) {
1314 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1315 trace_xfs_alloc_size_busy(args);
1316 xfs_log_force(args->mp, XFS_LOG_SYNC);
1317 goto restart;
1318 }
1319 goto out_nominleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
Christoph Hellwige26f0502011-04-24 19:06:15 +00001321 xfs_alloc_fix_len(args);
1322
1323 if (!xfs_alloc_fix_minleft(args))
1324 goto out_nominleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 rlen = args->len;
1326 XFS_WANT_CORRUPTED_GOTO(rlen <= flen, error0);
1327 /*
1328 * Allocate and initialize a cursor for the by-block tree.
1329 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001330 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1331 args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1333 rbno, rlen, XFSA_FIXUP_CNT_OK)))
1334 goto error0;
1335 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1336 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1337 cnt_cur = bno_cur = NULL;
1338 args->len = rlen;
1339 args->agbno = rbno;
1340 XFS_WANT_CORRUPTED_GOTO(
1341 args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +11001342 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 error0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001344 trace_xfs_alloc_size_done(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return 0;
1346
1347error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001348 trace_xfs_alloc_size_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (cnt_cur)
1350 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1351 if (bno_cur)
1352 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1353 return error;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001354
1355out_nominleft:
1356 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1357 trace_xfs_alloc_size_nominleft(args);
1358 args->agbno = NULLAGBLOCK;
1359 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
1362/*
1363 * Deal with the case where only small freespaces remain.
1364 * Either return the contents of the last freespace record,
1365 * or allocate space from the freelist if there is nothing in the tree.
1366 */
1367STATIC int /* error */
1368xfs_alloc_ag_vextent_small(
1369 xfs_alloc_arg_t *args, /* allocation argument structure */
1370 xfs_btree_cur_t *ccur, /* by-size cursor */
1371 xfs_agblock_t *fbnop, /* result block number */
1372 xfs_extlen_t *flenp, /* result length */
1373 int *stat) /* status: 0-freelist, 1-normal/none */
1374{
1375 int error;
1376 xfs_agblock_t fbno;
1377 xfs_extlen_t flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 int i;
1379
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001380 if ((error = xfs_btree_decrement(ccur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 goto error0;
1382 if (i) {
1383 if ((error = xfs_alloc_get_rec(ccur, &fbno, &flen, &i)))
1384 goto error0;
1385 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1386 }
1387 /*
1388 * Nothing in the btree, try the freelist. Make sure
1389 * to respect minleft even when pulling from the
1390 * freelist.
1391 */
1392 else if (args->minlen == 1 && args->alignment == 1 && !args->isfl &&
Christoph Hellwig16259e72005-11-02 15:11:25 +11001393 (be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_flcount)
1394 > args->minleft)) {
David Chinner92821e22007-05-24 15:26:31 +10001395 error = xfs_alloc_get_freelist(args->tp, args->agbp, &fbno, 0);
1396 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 goto error0;
1398 if (fbno != NULLAGBLOCK) {
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00001399 xfs_alloc_busy_reuse(args->mp, args->agno, fbno, 1,
1400 args->userdata);
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (args->userdata) {
1403 xfs_buf_t *bp;
1404
1405 bp = xfs_btree_get_bufs(args->mp, args->tp,
1406 args->agno, fbno, 0);
1407 xfs_trans_binval(args->tp, bp);
1408 }
1409 args->len = 1;
1410 args->agbno = fbno;
1411 XFS_WANT_CORRUPTED_GOTO(
1412 args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +11001413 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 error0);
1415 args->wasfromfl = 1;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001416 trace_xfs_alloc_small_freelist(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 *stat = 0;
1418 return 0;
1419 }
1420 /*
1421 * Nothing in the freelist.
1422 */
1423 else
1424 flen = 0;
1425 }
1426 /*
1427 * Can't allocate from the freelist for some reason.
1428 */
Nathan Scottd432c802006-09-28 11:03:44 +10001429 else {
1430 fbno = NULLAGBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 flen = 0;
Nathan Scottd432c802006-09-28 11:03:44 +10001432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 /*
1434 * Can't do the allocation, give up.
1435 */
1436 if (flen < args->minlen) {
1437 args->agbno = NULLAGBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001438 trace_xfs_alloc_small_notenough(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 flen = 0;
1440 }
1441 *fbnop = fbno;
1442 *flenp = flen;
1443 *stat = 1;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001444 trace_xfs_alloc_small_done(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return 0;
1446
1447error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001448 trace_xfs_alloc_small_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return error;
1450}
1451
1452/*
1453 * Free the extent starting at agno/bno for length.
1454 */
1455STATIC int /* error */
1456xfs_free_ag_extent(
1457 xfs_trans_t *tp, /* transaction pointer */
1458 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
1459 xfs_agnumber_t agno, /* allocation group number */
1460 xfs_agblock_t bno, /* starting block number */
1461 xfs_extlen_t len, /* length of extent */
1462 int isfl) /* set if is freelist blocks - no sb acctg */
1463{
1464 xfs_btree_cur_t *bno_cur; /* cursor for by-block btree */
1465 xfs_btree_cur_t *cnt_cur; /* cursor for by-size btree */
1466 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 xfs_agblock_t gtbno; /* start of right neighbor block */
1468 xfs_extlen_t gtlen; /* length of right neighbor block */
1469 int haveleft; /* have a left neighbor block */
1470 int haveright; /* have a right neighbor block */
1471 int i; /* temp, result code */
1472 xfs_agblock_t ltbno; /* start of left neighbor block */
1473 xfs_extlen_t ltlen; /* length of left neighbor block */
1474 xfs_mount_t *mp; /* mount point struct for filesystem */
1475 xfs_agblock_t nbno; /* new starting block of freespace */
1476 xfs_extlen_t nlen; /* new length of freespace */
Christoph Hellwigecb69282011-03-04 12:59:55 +00001477 xfs_perag_t *pag; /* per allocation group data */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 mp = tp->t_mountp;
1480 /*
1481 * Allocate and initialize a cursor for the by-block btree.
1482 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001483 bno_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 cnt_cur = NULL;
1485 /*
1486 * Look for a neighboring block on the left (lower block numbers)
1487 * that is contiguous with this space.
1488 */
1489 if ((error = xfs_alloc_lookup_le(bno_cur, bno, len, &haveleft)))
1490 goto error0;
1491 if (haveleft) {
1492 /*
1493 * There is a block to our left.
1494 */
1495 if ((error = xfs_alloc_get_rec(bno_cur, &ltbno, &ltlen, &i)))
1496 goto error0;
1497 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1498 /*
1499 * It's not contiguous, though.
1500 */
1501 if (ltbno + ltlen < bno)
1502 haveleft = 0;
1503 else {
1504 /*
1505 * If this failure happens the request to free this
1506 * space was invalid, it's (partly) already free.
1507 * Very bad.
1508 */
1509 XFS_WANT_CORRUPTED_GOTO(ltbno + ltlen <= bno, error0);
1510 }
1511 }
1512 /*
1513 * Look for a neighboring block on the right (higher block numbers)
1514 * that is contiguous with this space.
1515 */
Christoph Hellwig637aa502008-10-30 16:55:45 +11001516 if ((error = xfs_btree_increment(bno_cur, 0, &haveright)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 goto error0;
1518 if (haveright) {
1519 /*
1520 * There is a block to our right.
1521 */
1522 if ((error = xfs_alloc_get_rec(bno_cur, &gtbno, &gtlen, &i)))
1523 goto error0;
1524 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1525 /*
1526 * It's not contiguous, though.
1527 */
1528 if (bno + len < gtbno)
1529 haveright = 0;
1530 else {
1531 /*
1532 * If this failure happens the request to free this
1533 * space was invalid, it's (partly) already free.
1534 * Very bad.
1535 */
1536 XFS_WANT_CORRUPTED_GOTO(gtbno >= bno + len, error0);
1537 }
1538 }
1539 /*
1540 * Now allocate and initialize a cursor for the by-size tree.
1541 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001542 cnt_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 /*
1544 * Have both left and right contiguous neighbors.
1545 * Merge all three into a single free block.
1546 */
1547 if (haveleft && haveright) {
1548 /*
1549 * Delete the old by-size entry on the left.
1550 */
1551 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1552 goto error0;
1553 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001554 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 goto error0;
1556 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1557 /*
1558 * Delete the old by-size entry on the right.
1559 */
1560 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1561 goto error0;
1562 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001563 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 goto error0;
1565 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1566 /*
1567 * Delete the old by-block entry for the right block.
1568 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001569 if ((error = xfs_btree_delete(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 goto error0;
1571 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1572 /*
1573 * Move the by-block cursor back to the left neighbor.
1574 */
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001575 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 goto error0;
1577 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1578#ifdef DEBUG
1579 /*
1580 * Check that this is the right record: delete didn't
1581 * mangle the cursor.
1582 */
1583 {
1584 xfs_agblock_t xxbno;
1585 xfs_extlen_t xxlen;
1586
1587 if ((error = xfs_alloc_get_rec(bno_cur, &xxbno, &xxlen,
1588 &i)))
1589 goto error0;
1590 XFS_WANT_CORRUPTED_GOTO(
1591 i == 1 && xxbno == ltbno && xxlen == ltlen,
1592 error0);
1593 }
1594#endif
1595 /*
1596 * Update remaining by-block entry to the new, joined block.
1597 */
1598 nbno = ltbno;
1599 nlen = len + ltlen + gtlen;
1600 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1601 goto error0;
1602 }
1603 /*
1604 * Have only a left contiguous neighbor.
1605 * Merge it together with the new freespace.
1606 */
1607 else if (haveleft) {
1608 /*
1609 * Delete the old by-size entry on the left.
1610 */
1611 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1612 goto error0;
1613 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001614 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 goto error0;
1616 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1617 /*
1618 * Back up the by-block cursor to the left neighbor, and
1619 * update its length.
1620 */
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001621 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 goto error0;
1623 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1624 nbno = ltbno;
1625 nlen = len + ltlen;
1626 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1627 goto error0;
1628 }
1629 /*
1630 * Have only a right contiguous neighbor.
1631 * Merge it together with the new freespace.
1632 */
1633 else if (haveright) {
1634 /*
1635 * Delete the old by-size entry on the right.
1636 */
1637 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1638 goto error0;
1639 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001640 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 goto error0;
1642 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1643 /*
1644 * Update the starting block and length of the right
1645 * neighbor in the by-block tree.
1646 */
1647 nbno = bno;
1648 nlen = len + gtlen;
1649 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1650 goto error0;
1651 }
1652 /*
1653 * No contiguous neighbors.
1654 * Insert the new freespace into the by-block tree.
1655 */
1656 else {
1657 nbno = bno;
1658 nlen = len;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001659 if ((error = xfs_btree_insert(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 goto error0;
1661 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1662 }
1663 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1664 bno_cur = NULL;
1665 /*
1666 * In all cases we need to insert the new freespace in the by-size tree.
1667 */
1668 if ((error = xfs_alloc_lookup_eq(cnt_cur, nbno, nlen, &i)))
1669 goto error0;
1670 XFS_WANT_CORRUPTED_GOTO(i == 0, error0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001671 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 goto error0;
1673 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1674 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1675 cnt_cur = NULL;
Christoph Hellwigecb69282011-03-04 12:59:55 +00001676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 /*
1678 * Update the freespace totals in the ag and superblock.
1679 */
Christoph Hellwigecb69282011-03-04 12:59:55 +00001680 pag = xfs_perag_get(mp, agno);
1681 error = xfs_alloc_update_counters(tp, pag, agbp, len);
1682 xfs_perag_put(pag);
1683 if (error)
1684 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Christoph Hellwigecb69282011-03-04 12:59:55 +00001686 if (!isfl)
1687 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, (long)len);
1688 XFS_STATS_INC(xs_freex);
1689 XFS_STATS_ADD(xs_freeb, len);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001690
1691 trace_xfs_free_extent(mp, agno, bno, len, isfl, haveleft, haveright);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return 0;
1694
1695 error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001696 trace_xfs_free_extent(mp, agno, bno, len, isfl, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (bno_cur)
1698 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1699 if (cnt_cur)
1700 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1701 return error;
1702}
1703
1704/*
1705 * Visible (exported) allocation/free functions.
1706 * Some of these are used just by xfs_alloc_btree.c and this file.
1707 */
1708
1709/*
1710 * Compute and fill in value of m_ag_maxlevels.
1711 */
1712void
1713xfs_alloc_compute_maxlevels(
1714 xfs_mount_t *mp) /* file system mount structure */
1715{
1716 int level;
1717 uint maxblocks;
1718 uint maxleafents;
1719 int minleafrecs;
1720 int minnoderecs;
1721
1722 maxleafents = (mp->m_sb.sb_agblocks + 1) / 2;
1723 minleafrecs = mp->m_alloc_mnr[0];
1724 minnoderecs = mp->m_alloc_mnr[1];
1725 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
1726 for (level = 1; maxblocks > 1; level++)
1727 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
1728 mp->m_ag_maxlevels = level;
1729}
1730
1731/*
Dave Chinner6cc87642009-03-16 08:29:46 +01001732 * Find the length of the longest extent in an AG.
1733 */
1734xfs_extlen_t
1735xfs_alloc_longest_free_extent(
1736 struct xfs_mount *mp,
1737 struct xfs_perag *pag)
1738{
1739 xfs_extlen_t need, delta = 0;
1740
1741 need = XFS_MIN_FREELIST_PAG(pag, mp);
1742 if (need > pag->pagf_flcount)
1743 delta = need - pag->pagf_flcount;
1744
1745 if (pag->pagf_longest > delta)
1746 return pag->pagf_longest - delta;
1747 return pag->pagf_flcount > 0 || pag->pagf_longest > 0;
1748}
1749
1750/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 * Decide whether to use this allocation group for this allocation.
1752 * If so, fix up the btree freelist's size.
1753 */
1754STATIC int /* error */
1755xfs_alloc_fix_freelist(
1756 xfs_alloc_arg_t *args, /* allocation argument structure */
1757 int flags) /* XFS_ALLOC_FLAG_... */
1758{
1759 xfs_buf_t *agbp; /* agf buffer pointer */
1760 xfs_agf_t *agf; /* a.g. freespace structure pointer */
1761 xfs_buf_t *agflbp;/* agfl buffer pointer */
1762 xfs_agblock_t bno; /* freelist block */
1763 xfs_extlen_t delta; /* new blocks needed in freelist */
1764 int error; /* error result code */
1765 xfs_extlen_t longest;/* longest extent in allocation group */
1766 xfs_mount_t *mp; /* file system mount point structure */
1767 xfs_extlen_t need; /* total blocks needed in freelist */
1768 xfs_perag_t *pag; /* per-ag information structure */
1769 xfs_alloc_arg_t targs; /* local allocation arguments */
1770 xfs_trans_t *tp; /* transaction pointer */
1771
1772 mp = args->mp;
1773
1774 pag = args->pag;
1775 tp = args->tp;
1776 if (!pag->pagf_init) {
1777 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1778 &agbp)))
1779 return error;
1780 if (!pag->pagf_init) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001781 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1782 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 args->agbp = NULL;
1784 return 0;
1785 }
1786 } else
1787 agbp = NULL;
1788
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001789 /*
1790 * If this is a metadata preferred pag and we are user data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 * then try somewhere else if we are not being asked to
1792 * try harder at this point
1793 */
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001794 if (pag->pagf_metadata && args->userdata &&
1795 (flags & XFS_ALLOC_FLAG_TRYLOCK)) {
1796 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 args->agbp = NULL;
1798 return 0;
1799 }
1800
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001801 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001802 /*
1803 * If it looks like there isn't a long enough extent, or enough
1804 * total blocks, reject it.
1805 */
Dave Chinner6cc87642009-03-16 08:29:46 +01001806 need = XFS_MIN_FREELIST_PAG(pag, mp);
1807 longest = xfs_alloc_longest_free_extent(mp, pag);
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001808 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1809 longest ||
1810 ((int)(pag->pagf_freeblks + pag->pagf_flcount -
1811 need - args->total) < (int)args->minleft)) {
1812 if (agbp)
1813 xfs_trans_brelse(tp, agbp);
1814 args->agbp = NULL;
1815 return 0;
1816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 /*
1820 * Get the a.g. freespace buffer.
1821 * Can fail if we're not blocking on locks, and it's held.
1822 */
1823 if (agbp == NULL) {
1824 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1825 &agbp)))
1826 return error;
1827 if (agbp == NULL) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001828 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1829 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 args->agbp = NULL;
1831 return 0;
1832 }
1833 }
1834 /*
1835 * Figure out how many blocks we should have in the freelist.
1836 */
1837 agf = XFS_BUF_TO_AGF(agbp);
1838 need = XFS_MIN_FREELIST(agf, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 /*
1840 * If there isn't enough total or single-extent, reject it.
1841 */
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001842 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
1843 delta = need > be32_to_cpu(agf->agf_flcount) ?
1844 (need - be32_to_cpu(agf->agf_flcount)) : 0;
1845 longest = be32_to_cpu(agf->agf_longest);
1846 longest = (longest > delta) ? (longest - delta) :
1847 (be32_to_cpu(agf->agf_flcount) > 0 || longest > 0);
1848 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1849 longest ||
1850 ((int)(be32_to_cpu(agf->agf_freeblks) +
1851 be32_to_cpu(agf->agf_flcount) - need - args->total) <
1852 (int)args->minleft)) {
1853 xfs_trans_brelse(tp, agbp);
1854 args->agbp = NULL;
1855 return 0;
1856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
1858 /*
1859 * Make the freelist shorter if it's too long.
1860 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11001861 while (be32_to_cpu(agf->agf_flcount) > need) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 xfs_buf_t *bp;
1863
David Chinner92821e22007-05-24 15:26:31 +10001864 error = xfs_alloc_get_freelist(tp, agbp, &bno, 0);
1865 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return error;
1867 if ((error = xfs_free_ag_extent(tp, agbp, args->agno, bno, 1, 1)))
1868 return error;
1869 bp = xfs_btree_get_bufs(mp, tp, args->agno, bno, 0);
1870 xfs_trans_binval(tp, bp);
1871 }
1872 /*
1873 * Initialize the args structure.
1874 */
1875 targs.tp = tp;
1876 targs.mp = mp;
1877 targs.agbp = agbp;
1878 targs.agno = args->agno;
1879 targs.mod = targs.minleft = targs.wasdel = targs.userdata =
1880 targs.minalignslop = 0;
1881 targs.alignment = targs.minlen = targs.prod = targs.isfl = 1;
1882 targs.type = XFS_ALLOCTYPE_THIS_AG;
1883 targs.pag = pag;
1884 if ((error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp)))
1885 return error;
1886 /*
1887 * Make the freelist longer if it's too short.
1888 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11001889 while (be32_to_cpu(agf->agf_flcount) < need) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 targs.agbno = 0;
Christoph Hellwig16259e72005-11-02 15:11:25 +11001891 targs.maxlen = need - be32_to_cpu(agf->agf_flcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 /*
1893 * Allocate as many blocks as possible at once.
1894 */
Nathan Scotte63a3692006-05-08 19:51:58 +10001895 if ((error = xfs_alloc_ag_vextent(&targs))) {
1896 xfs_trans_brelse(tp, agflbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return error;
Nathan Scotte63a3692006-05-08 19:51:58 +10001898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 /*
1900 * Stop if we run out. Won't happen if callers are obeying
1901 * the restrictions correctly. Can happen for free calls
1902 * on a completely full ag.
1903 */
Yingping Lud210a282006-06-09 14:55:18 +10001904 if (targs.agbno == NULLAGBLOCK) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001905 if (flags & XFS_ALLOC_FLAG_FREEING)
1906 break;
1907 xfs_trans_brelse(tp, agflbp);
1908 args->agbp = NULL;
1909 return 0;
Yingping Lud210a282006-06-09 14:55:18 +10001910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 /*
1912 * Put each allocated block on the list.
1913 */
1914 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
David Chinner92821e22007-05-24 15:26:31 +10001915 error = xfs_alloc_put_freelist(tp, agbp,
1916 agflbp, bno, 0);
1917 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return error;
1919 }
1920 }
Nathan Scotte63a3692006-05-08 19:51:58 +10001921 xfs_trans_brelse(tp, agflbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 args->agbp = agbp;
1923 return 0;
1924}
1925
1926/*
1927 * Get a block from the freelist.
1928 * Returns with the buffer for the block gotten.
1929 */
1930int /* error */
1931xfs_alloc_get_freelist(
1932 xfs_trans_t *tp, /* transaction pointer */
1933 xfs_buf_t *agbp, /* buffer containing the agf structure */
David Chinner92821e22007-05-24 15:26:31 +10001934 xfs_agblock_t *bnop, /* block address retrieved from freelist */
1935 int btreeblk) /* destination is a AGF btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
1937 xfs_agf_t *agf; /* a.g. freespace structure */
1938 xfs_agfl_t *agfl; /* a.g. freelist structure */
1939 xfs_buf_t *agflbp;/* buffer for a.g. freelist structure */
1940 xfs_agblock_t bno; /* block number returned */
1941 int error;
David Chinner92821e22007-05-24 15:26:31 +10001942 int logflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 xfs_mount_t *mp; /* mount structure */
1944 xfs_perag_t *pag; /* per allocation group data */
1945
1946 agf = XFS_BUF_TO_AGF(agbp);
1947 /*
1948 * Freelist is empty, give up.
1949 */
1950 if (!agf->agf_flcount) {
1951 *bnop = NULLAGBLOCK;
1952 return 0;
1953 }
1954 /*
1955 * Read the array of free blocks.
1956 */
1957 mp = tp->t_mountp;
1958 if ((error = xfs_alloc_read_agfl(mp, tp,
Christoph Hellwig16259e72005-11-02 15:11:25 +11001959 be32_to_cpu(agf->agf_seqno), &agflbp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return error;
1961 agfl = XFS_BUF_TO_AGFL(agflbp);
1962 /*
1963 * Get the block number and update the data structures.
1964 */
Christoph Hellwige2101002006-09-28 10:56:51 +10001965 bno = be32_to_cpu(agfl->agfl_bno[be32_to_cpu(agf->agf_flfirst)]);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001966 be32_add_cpu(&agf->agf_flfirst, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 xfs_trans_brelse(tp, agflbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001968 if (be32_to_cpu(agf->agf_flfirst) == XFS_AGFL_SIZE(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 agf->agf_flfirst = 0;
Dave Chinnera862e0f2010-01-11 11:47:41 +00001970
1971 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001972 be32_add_cpu(&agf->agf_flcount, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 xfs_trans_agflist_delta(tp, -1);
1974 pag->pagf_flcount--;
Dave Chinnera862e0f2010-01-11 11:47:41 +00001975 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +10001976
1977 logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT;
1978 if (btreeblk) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001979 be32_add_cpu(&agf->agf_btreeblks, 1);
David Chinner92821e22007-05-24 15:26:31 +10001980 pag->pagf_btreeblks++;
1981 logflags |= XFS_AGF_BTREEBLKS;
1982 }
1983
David Chinner92821e22007-05-24 15:26:31 +10001984 xfs_alloc_log_agf(tp, agbp, logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 *bnop = bno;
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 return 0;
1988}
1989
1990/*
1991 * Log the given fields from the agf structure.
1992 */
1993void
1994xfs_alloc_log_agf(
1995 xfs_trans_t *tp, /* transaction pointer */
1996 xfs_buf_t *bp, /* buffer for a.g. freelist header */
1997 int fields) /* mask of fields to be logged (XFS_AGF_...) */
1998{
1999 int first; /* first byte offset */
2000 int last; /* last byte offset */
2001 static const short offsets[] = {
2002 offsetof(xfs_agf_t, agf_magicnum),
2003 offsetof(xfs_agf_t, agf_versionnum),
2004 offsetof(xfs_agf_t, agf_seqno),
2005 offsetof(xfs_agf_t, agf_length),
2006 offsetof(xfs_agf_t, agf_roots[0]),
2007 offsetof(xfs_agf_t, agf_levels[0]),
2008 offsetof(xfs_agf_t, agf_flfirst),
2009 offsetof(xfs_agf_t, agf_fllast),
2010 offsetof(xfs_agf_t, agf_flcount),
2011 offsetof(xfs_agf_t, agf_freeblks),
2012 offsetof(xfs_agf_t, agf_longest),
David Chinner92821e22007-05-24 15:26:31 +10002013 offsetof(xfs_agf_t, agf_btreeblks),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 sizeof(xfs_agf_t)
2015 };
2016
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002017 trace_xfs_agf(tp->t_mountp, XFS_BUF_TO_AGF(bp), fields, _RET_IP_);
2018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 xfs_btree_offsets(fields, offsets, XFS_AGF_NUM_BITS, &first, &last);
2020 xfs_trans_log_buf(tp, bp, (uint)first, (uint)last);
2021}
2022
2023/*
2024 * Interface for inode allocation to force the pag data to be initialized.
2025 */
2026int /* error */
2027xfs_alloc_pagf_init(
2028 xfs_mount_t *mp, /* file system mount structure */
2029 xfs_trans_t *tp, /* transaction pointer */
2030 xfs_agnumber_t agno, /* allocation group number */
2031 int flags) /* XFS_ALLOC_FLAGS_... */
2032{
2033 xfs_buf_t *bp;
2034 int error;
2035
2036 if ((error = xfs_alloc_read_agf(mp, tp, agno, flags, &bp)))
2037 return error;
2038 if (bp)
2039 xfs_trans_brelse(tp, bp);
2040 return 0;
2041}
2042
2043/*
2044 * Put the block on the freelist for the allocation group.
2045 */
2046int /* error */
2047xfs_alloc_put_freelist(
2048 xfs_trans_t *tp, /* transaction pointer */
2049 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
2050 xfs_buf_t *agflbp,/* buffer for a.g. free block array */
David Chinner92821e22007-05-24 15:26:31 +10002051 xfs_agblock_t bno, /* block being freed */
2052 int btreeblk) /* block came from a AGF btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
2054 xfs_agf_t *agf; /* a.g. freespace structure */
2055 xfs_agfl_t *agfl; /* a.g. free block array */
Christoph Hellwige2101002006-09-28 10:56:51 +10002056 __be32 *blockp;/* pointer to array entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 int error;
David Chinner92821e22007-05-24 15:26:31 +10002058 int logflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 xfs_mount_t *mp; /* mount structure */
2060 xfs_perag_t *pag; /* per allocation group data */
2061
2062 agf = XFS_BUF_TO_AGF(agbp);
2063 mp = tp->t_mountp;
2064
2065 if (!agflbp && (error = xfs_alloc_read_agfl(mp, tp,
Christoph Hellwig16259e72005-11-02 15:11:25 +11002066 be32_to_cpu(agf->agf_seqno), &agflbp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return error;
2068 agfl = XFS_BUF_TO_AGFL(agflbp);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002069 be32_add_cpu(&agf->agf_fllast, 1);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002070 if (be32_to_cpu(agf->agf_fllast) == XFS_AGFL_SIZE(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 agf->agf_fllast = 0;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002072
2073 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002074 be32_add_cpu(&agf->agf_flcount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 xfs_trans_agflist_delta(tp, 1);
2076 pag->pagf_flcount++;
David Chinner92821e22007-05-24 15:26:31 +10002077
2078 logflags = XFS_AGF_FLLAST | XFS_AGF_FLCOUNT;
2079 if (btreeblk) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002080 be32_add_cpu(&agf->agf_btreeblks, -1);
David Chinner92821e22007-05-24 15:26:31 +10002081 pag->pagf_btreeblks--;
2082 logflags |= XFS_AGF_BTREEBLKS;
2083 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002084 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +10002085
David Chinner92821e22007-05-24 15:26:31 +10002086 xfs_alloc_log_agf(tp, agbp, logflags);
2087
Christoph Hellwig16259e72005-11-02 15:11:25 +11002088 ASSERT(be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp));
2089 blockp = &agfl->agfl_bno[be32_to_cpu(agf->agf_fllast)];
Christoph Hellwige2101002006-09-28 10:56:51 +10002090 *blockp = cpu_to_be32(bno);
David Chinner92821e22007-05-24 15:26:31 +10002091 xfs_alloc_log_agf(tp, agbp, logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 xfs_trans_log_buf(tp, agflbp,
2093 (int)((xfs_caddr_t)blockp - (xfs_caddr_t)agfl),
2094 (int)((xfs_caddr_t)blockp - (xfs_caddr_t)agfl +
2095 sizeof(xfs_agblock_t) - 1));
2096 return 0;
2097}
2098
2099/*
2100 * Read in the allocation group header (free/alloc section).
2101 */
2102int /* error */
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002103xfs_read_agf(
2104 struct xfs_mount *mp, /* mount point structure */
2105 struct xfs_trans *tp, /* transaction pointer */
2106 xfs_agnumber_t agno, /* allocation group number */
2107 int flags, /* XFS_BUF_ */
2108 struct xfs_buf **bpp) /* buffer for the ag freelist header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002110 struct xfs_agf *agf; /* ag freelist header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 int agf_ok; /* set if agf is consistent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 int error;
2113
2114 ASSERT(agno != NULLAGNUMBER);
2115 error = xfs_trans_read_buf(
2116 mp, tp, mp->m_ddev_targp,
2117 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002118 XFS_FSS_TO_BB(mp, 1), flags, bpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 if (error)
2120 return error;
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002121 if (!*bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 return 0;
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002123
2124 ASSERT(!XFS_BUF_GETERROR(*bpp));
2125 agf = XFS_BUF_TO_AGF(*bpp);
2126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 /*
2128 * Validate the magic number of the agf block.
2129 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 agf_ok =
Christoph Hellwig16259e72005-11-02 15:11:25 +11002131 be32_to_cpu(agf->agf_magicnum) == XFS_AGF_MAGIC &&
2132 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf->agf_versionnum)) &&
2133 be32_to_cpu(agf->agf_freeblks) <= be32_to_cpu(agf->agf_length) &&
2134 be32_to_cpu(agf->agf_flfirst) < XFS_AGFL_SIZE(mp) &&
2135 be32_to_cpu(agf->agf_fllast) < XFS_AGFL_SIZE(mp) &&
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002136 be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp) &&
2137 be32_to_cpu(agf->agf_seqno) == agno;
Barry Naujok89b28392008-10-30 17:05:49 +11002138 if (xfs_sb_version_haslazysbcount(&mp->m_sb))
2139 agf_ok = agf_ok && be32_to_cpu(agf->agf_btreeblks) <=
2140 be32_to_cpu(agf->agf_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 if (unlikely(XFS_TEST_ERROR(!agf_ok, mp, XFS_ERRTAG_ALLOC_READ_AGF,
2142 XFS_RANDOM_ALLOC_READ_AGF))) {
2143 XFS_CORRUPTION_ERROR("xfs_alloc_read_agf",
2144 XFS_ERRLEVEL_LOW, mp, agf);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002145 xfs_trans_brelse(tp, *bpp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return XFS_ERROR(EFSCORRUPTED);
2147 }
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002148 XFS_BUF_SET_VTYPE_REF(*bpp, B_FS_AGF, XFS_AGF_REF);
2149 return 0;
2150}
2151
2152/*
2153 * Read in the allocation group header (free/alloc section).
2154 */
2155int /* error */
2156xfs_alloc_read_agf(
2157 struct xfs_mount *mp, /* mount point structure */
2158 struct xfs_trans *tp, /* transaction pointer */
2159 xfs_agnumber_t agno, /* allocation group number */
2160 int flags, /* XFS_ALLOC_FLAG_... */
2161 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2162{
2163 struct xfs_agf *agf; /* ag freelist header */
2164 struct xfs_perag *pag; /* per allocation group data */
2165 int error;
2166
2167 ASSERT(agno != NULLAGNUMBER);
2168
2169 error = xfs_read_agf(mp, tp, agno,
Christoph Hellwig0cadda12010-01-19 09:56:44 +00002170 (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0,
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002171 bpp);
2172 if (error)
2173 return error;
2174 if (!*bpp)
2175 return 0;
2176 ASSERT(!XFS_BUF_GETERROR(*bpp));
2177
2178 agf = XFS_BUF_TO_AGF(*bpp);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002179 pag = xfs_perag_get(mp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 if (!pag->pagf_init) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11002181 pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks);
David Chinner92821e22007-05-24 15:26:31 +10002182 pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002183 pag->pagf_flcount = be32_to_cpu(agf->agf_flcount);
2184 pag->pagf_longest = be32_to_cpu(agf->agf_longest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 pag->pagf_levels[XFS_BTNUM_BNOi] =
Christoph Hellwig16259e72005-11-02 15:11:25 +11002186 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 pag->pagf_levels[XFS_BTNUM_CNTi] =
Christoph Hellwig16259e72005-11-02 15:11:25 +11002188 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]);
Eric Sandeen007c61c2007-10-11 17:43:56 +10002189 spin_lock_init(&pag->pagb_lock);
Dave Chinnere57336f2010-01-11 11:47:49 +00002190 pag->pagb_count = 0;
Dave Chinnered3b4d62010-05-21 12:07:08 +10002191 pag->pagb_tree = RB_ROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 pag->pagf_init = 1;
2193 }
2194#ifdef DEBUG
2195 else if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11002196 ASSERT(pag->pagf_freeblks == be32_to_cpu(agf->agf_freeblks));
Barry Naujok89b28392008-10-30 17:05:49 +11002197 ASSERT(pag->pagf_btreeblks == be32_to_cpu(agf->agf_btreeblks));
Christoph Hellwig16259e72005-11-02 15:11:25 +11002198 ASSERT(pag->pagf_flcount == be32_to_cpu(agf->agf_flcount));
2199 ASSERT(pag->pagf_longest == be32_to_cpu(agf->agf_longest));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 ASSERT(pag->pagf_levels[XFS_BTNUM_BNOi] ==
Christoph Hellwig16259e72005-11-02 15:11:25 +11002201 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 ASSERT(pag->pagf_levels[XFS_BTNUM_CNTi] ==
Christoph Hellwig16259e72005-11-02 15:11:25 +11002203 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 }
2205#endif
Dave Chinnera862e0f2010-01-11 11:47:41 +00002206 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return 0;
2208}
2209
2210/*
2211 * Allocate an extent (variable-size).
2212 * Depending on the allocation type, we either look in a single allocation
2213 * group or loop over the allocation groups to find the result.
2214 */
2215int /* error */
2216xfs_alloc_vextent(
2217 xfs_alloc_arg_t *args) /* allocation argument structure */
2218{
2219 xfs_agblock_t agsize; /* allocation group size */
2220 int error;
2221 int flags; /* XFS_ALLOC_FLAG_... locking flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 xfs_extlen_t minleft;/* minimum left value, temp copy */
2223 xfs_mount_t *mp; /* mount structure pointer */
2224 xfs_agnumber_t sagno; /* starting allocation group number */
2225 xfs_alloctype_t type; /* input allocation type */
2226 int bump_rotor = 0;
2227 int no_min = 0;
2228 xfs_agnumber_t rotorstep = xfs_rotorstep; /* inode32 agf stepper */
2229
2230 mp = args->mp;
2231 type = args->otype = args->type;
2232 args->agbno = NULLAGBLOCK;
2233 /*
2234 * Just fix this up, for the case where the last a.g. is shorter
2235 * (or there's only one a.g.) and the caller couldn't easily figure
2236 * that out (xfs_bmap_alloc).
2237 */
2238 agsize = mp->m_sb.sb_agblocks;
2239 if (args->maxlen > agsize)
2240 args->maxlen = agsize;
2241 if (args->alignment == 0)
2242 args->alignment = 1;
2243 ASSERT(XFS_FSB_TO_AGNO(mp, args->fsbno) < mp->m_sb.sb_agcount);
2244 ASSERT(XFS_FSB_TO_AGBNO(mp, args->fsbno) < agsize);
2245 ASSERT(args->minlen <= args->maxlen);
2246 ASSERT(args->minlen <= agsize);
2247 ASSERT(args->mod < args->prod);
2248 if (XFS_FSB_TO_AGNO(mp, args->fsbno) >= mp->m_sb.sb_agcount ||
2249 XFS_FSB_TO_AGBNO(mp, args->fsbno) >= agsize ||
2250 args->minlen > args->maxlen || args->minlen > agsize ||
2251 args->mod >= args->prod) {
2252 args->fsbno = NULLFSBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002253 trace_xfs_alloc_vextent_badargs(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return 0;
2255 }
2256 minleft = args->minleft;
2257
2258 switch (type) {
2259 case XFS_ALLOCTYPE_THIS_AG:
2260 case XFS_ALLOCTYPE_NEAR_BNO:
2261 case XFS_ALLOCTYPE_THIS_BNO:
2262 /*
2263 * These three force us into a single a.g.
2264 */
2265 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002266 args->pag = xfs_perag_get(mp, args->agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 args->minleft = 0;
2268 error = xfs_alloc_fix_freelist(args, 0);
2269 args->minleft = minleft;
2270 if (error) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002271 trace_xfs_alloc_vextent_nofix(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 goto error0;
2273 }
2274 if (!args->agbp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002275 trace_xfs_alloc_vextent_noagbp(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 break;
2277 }
2278 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2279 if ((error = xfs_alloc_ag_vextent(args)))
2280 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 break;
2282 case XFS_ALLOCTYPE_START_BNO:
2283 /*
2284 * Try near allocation first, then anywhere-in-ag after
2285 * the first a.g. fails.
2286 */
2287 if ((args->userdata == XFS_ALLOC_INITIAL_USER_DATA) &&
2288 (mp->m_flags & XFS_MOUNT_32BITINODES)) {
2289 args->fsbno = XFS_AGB_TO_FSB(mp,
2290 ((mp->m_agfrotor / rotorstep) %
2291 mp->m_sb.sb_agcount), 0);
2292 bump_rotor = 1;
2293 }
2294 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2295 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2296 /* FALLTHROUGH */
2297 case XFS_ALLOCTYPE_ANY_AG:
2298 case XFS_ALLOCTYPE_START_AG:
2299 case XFS_ALLOCTYPE_FIRST_AG:
2300 /*
2301 * Rotate through the allocation groups looking for a winner.
2302 */
2303 if (type == XFS_ALLOCTYPE_ANY_AG) {
2304 /*
2305 * Start with the last place we left off.
2306 */
2307 args->agno = sagno = (mp->m_agfrotor / rotorstep) %
2308 mp->m_sb.sb_agcount;
2309 args->type = XFS_ALLOCTYPE_THIS_AG;
2310 flags = XFS_ALLOC_FLAG_TRYLOCK;
2311 } else if (type == XFS_ALLOCTYPE_FIRST_AG) {
2312 /*
2313 * Start with allocation group given by bno.
2314 */
2315 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2316 args->type = XFS_ALLOCTYPE_THIS_AG;
2317 sagno = 0;
2318 flags = 0;
2319 } else {
2320 if (type == XFS_ALLOCTYPE_START_AG)
2321 args->type = XFS_ALLOCTYPE_THIS_AG;
2322 /*
2323 * Start with the given allocation group.
2324 */
2325 args->agno = sagno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2326 flags = XFS_ALLOC_FLAG_TRYLOCK;
2327 }
2328 /*
2329 * Loop over allocation groups twice; first time with
2330 * trylock set, second time without.
2331 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 for (;;) {
Dave Chinnera862e0f2010-01-11 11:47:41 +00002333 args->pag = xfs_perag_get(mp, args->agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 if (no_min) args->minleft = 0;
2335 error = xfs_alloc_fix_freelist(args, flags);
2336 args->minleft = minleft;
2337 if (error) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002338 trace_xfs_alloc_vextent_nofix(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 goto error0;
2340 }
2341 /*
2342 * If we get a buffer back then the allocation will fly.
2343 */
2344 if (args->agbp) {
2345 if ((error = xfs_alloc_ag_vextent(args)))
2346 goto error0;
2347 break;
2348 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002349
2350 trace_xfs_alloc_vextent_loopfailed(args);
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 /*
2353 * Didn't work, figure out the next iteration.
2354 */
2355 if (args->agno == sagno &&
2356 type == XFS_ALLOCTYPE_START_BNO)
2357 args->type = XFS_ALLOCTYPE_THIS_AG;
Yingping Lud210a282006-06-09 14:55:18 +10002358 /*
2359 * For the first allocation, we can try any AG to get
2360 * space. However, if we already have allocated a
2361 * block, we don't want to try AGs whose number is below
2362 * sagno. Otherwise, we may end up with out-of-order
2363 * locking of AGF, which might cause deadlock.
2364 */
2365 if (++(args->agno) == mp->m_sb.sb_agcount) {
2366 if (args->firstblock != NULLFSBLOCK)
2367 args->agno = sagno;
2368 else
2369 args->agno = 0;
2370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 /*
2372 * Reached the starting a.g., must either be done
2373 * or switch to non-trylock mode.
2374 */
2375 if (args->agno == sagno) {
2376 if (no_min == 1) {
2377 args->agbno = NULLAGBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002378 trace_xfs_alloc_vextent_allfailed(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 break;
2380 }
2381 if (flags == 0) {
2382 no_min = 1;
2383 } else {
2384 flags = 0;
2385 if (type == XFS_ALLOCTYPE_START_BNO) {
2386 args->agbno = XFS_FSB_TO_AGBNO(mp,
2387 args->fsbno);
2388 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2389 }
2390 }
2391 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002392 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 if (bump_rotor || (type == XFS_ALLOCTYPE_ANY_AG)) {
2395 if (args->agno == sagno)
2396 mp->m_agfrotor = (mp->m_agfrotor + 1) %
2397 (mp->m_sb.sb_agcount * rotorstep);
2398 else
2399 mp->m_agfrotor = (args->agno * rotorstep + 1) %
2400 (mp->m_sb.sb_agcount * rotorstep);
2401 }
2402 break;
2403 default:
2404 ASSERT(0);
2405 /* NOTREACHED */
2406 }
2407 if (args->agbno == NULLAGBLOCK)
2408 args->fsbno = NULLFSBLOCK;
2409 else {
2410 args->fsbno = XFS_AGB_TO_FSB(mp, args->agno, args->agbno);
2411#ifdef DEBUG
2412 ASSERT(args->len >= args->minlen);
2413 ASSERT(args->len <= args->maxlen);
2414 ASSERT(args->agbno % args->alignment == 0);
2415 XFS_AG_CHECK_DADDR(mp, XFS_FSB_TO_DADDR(mp, args->fsbno),
2416 args->len);
2417#endif
2418 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002419 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 return 0;
2421error0:
Dave Chinnera862e0f2010-01-11 11:47:41 +00002422 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return error;
2424}
2425
2426/*
2427 * Free an extent.
2428 * Just break up the extent address and hand off to xfs_free_ag_extent
2429 * after fixing up the freelist.
2430 */
2431int /* error */
2432xfs_free_extent(
2433 xfs_trans_t *tp, /* transaction pointer */
2434 xfs_fsblock_t bno, /* starting block number of extent */
2435 xfs_extlen_t len) /* length of extent */
2436{
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002437 xfs_alloc_arg_t args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 int error;
2439
2440 ASSERT(len != 0);
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002441 memset(&args, 0, sizeof(xfs_alloc_arg_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 args.tp = tp;
2443 args.mp = tp->t_mountp;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002444
2445 /*
2446 * validate that the block number is legal - the enables us to detect
2447 * and handle a silent filesystem corruption rather than crashing.
2448 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 args.agno = XFS_FSB_TO_AGNO(args.mp, bno);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002450 if (args.agno >= args.mp->m_sb.sb_agcount)
2451 return EFSCORRUPTED;
2452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 args.agbno = XFS_FSB_TO_AGBNO(args.mp, bno);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002454 if (args.agbno >= args.mp->m_sb.sb_agblocks)
2455 return EFSCORRUPTED;
2456
Dave Chinnera862e0f2010-01-11 11:47:41 +00002457 args.pag = xfs_perag_get(args.mp, args.agno);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002458 ASSERT(args.pag);
2459
2460 error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
2461 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 goto error0;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002463
2464 /* validate the extent size is legal now we have the agf locked */
2465 if (args.agbno + len >
2466 be32_to_cpu(XFS_BUF_TO_AGF(args.agbp)->agf_length)) {
2467 error = EFSCORRUPTED;
2468 goto error0;
2469 }
2470
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002471 error = xfs_free_ag_extent(tp, args.agbp, args.agno, args.agbno, len, 0);
Christoph Hellwiga870acd2011-04-24 19:06:14 +00002472 if (!error)
2473 xfs_alloc_busy_insert(tp, args.agno, args.agbno, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474error0:
Dave Chinnera862e0f2010-01-11 11:47:41 +00002475 xfs_perag_put(args.pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 return error;
2477}
2478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479void
Dave Chinnered3b4d62010-05-21 12:07:08 +10002480xfs_alloc_busy_insert(
2481 struct xfs_trans *tp,
2482 xfs_agnumber_t agno,
2483 xfs_agblock_t bno,
2484 xfs_extlen_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485{
Dave Chinnered3b4d62010-05-21 12:07:08 +10002486 struct xfs_busy_extent *new;
2487 struct xfs_busy_extent *busyp;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002488 struct xfs_perag *pag;
Dave Chinnered3b4d62010-05-21 12:07:08 +10002489 struct rb_node **rbp;
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002490 struct rb_node *parent = NULL;
Dave Chinnered3b4d62010-05-21 12:07:08 +10002491
2492 new = kmem_zalloc(sizeof(struct xfs_busy_extent), KM_MAYFAIL);
2493 if (!new) {
2494 /*
2495 * No Memory! Since it is now not possible to track the free
2496 * block, make this a synchronous transaction to insure that
2497 * the block is not reused before this transaction commits.
2498 */
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002499 trace_xfs_alloc_busy_enomem(tp->t_mountp, agno, bno, len);
Dave Chinnered3b4d62010-05-21 12:07:08 +10002500 xfs_trans_set_sync(tp);
2501 return;
2502 }
2503
2504 new->agno = agno;
2505 new->bno = bno;
2506 new->length = len;
Dave Chinnered3b4d62010-05-21 12:07:08 +10002507 INIT_LIST_HEAD(&new->list);
2508
2509 /* trace before insert to be able to see failed inserts */
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002510 trace_xfs_alloc_busy(tp->t_mountp, agno, bno, len);
Dave Chinnered3b4d62010-05-21 12:07:08 +10002511
2512 pag = xfs_perag_get(tp->t_mountp, new->agno);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002513 spin_lock(&pag->pagb_lock);
Dave Chinnered3b4d62010-05-21 12:07:08 +10002514 rbp = &pag->pagb_tree.rb_node;
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002515 while (*rbp) {
Dave Chinnered3b4d62010-05-21 12:07:08 +10002516 parent = *rbp;
2517 busyp = rb_entry(parent, struct xfs_busy_extent, rb_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Dave Chinnered3b4d62010-05-21 12:07:08 +10002519 if (new->bno < busyp->bno) {
Dave Chinnered3b4d62010-05-21 12:07:08 +10002520 rbp = &(*rbp)->rb_left;
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002521 ASSERT(new->bno + new->length <= busyp->bno);
Dave Chinnered3b4d62010-05-21 12:07:08 +10002522 } else if (new->bno > busyp->bno) {
Dave Chinnered3b4d62010-05-21 12:07:08 +10002523 rbp = &(*rbp)->rb_right;
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002524 ASSERT(bno >= busyp->bno + busyp->length);
Dave Chinnered3b4d62010-05-21 12:07:08 +10002525 } else {
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002526 ASSERT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 }
2528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Dave Chinnered3b4d62010-05-21 12:07:08 +10002530 rb_link_node(&new->rb_node, parent, rbp);
2531 rb_insert_color(&new->rb_node, &pag->pagb_tree);
2532
2533 list_add(&new->list, &tp->t_busy);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002534 spin_unlock(&pag->pagb_lock);
2535 xfs_perag_put(pag);
Dave Chinnered3b4d62010-05-21 12:07:08 +10002536}
2537
2538/*
2539 * Search for a busy extent within the range of the extent we are about to
2540 * allocate. You need to be holding the busy extent tree lock when calling
2541 * xfs_alloc_busy_search(). This function returns 0 for no overlapping busy
2542 * extent, -1 for an overlapping but not exact busy extent, and 1 for an exact
2543 * match. This is done so that a non-zero return indicates an overlap that
2544 * will require a synchronous transaction, but it can still be
2545 * used to distinguish between a partial or exact match.
2546 */
Christoph Hellwiga46db602011-01-07 13:02:04 +00002547int
Dave Chinnered3b4d62010-05-21 12:07:08 +10002548xfs_alloc_busy_search(
2549 struct xfs_mount *mp,
2550 xfs_agnumber_t agno,
2551 xfs_agblock_t bno,
2552 xfs_extlen_t len)
2553{
2554 struct xfs_perag *pag;
2555 struct rb_node *rbp;
2556 struct xfs_busy_extent *busyp;
2557 int match = 0;
2558
2559 pag = xfs_perag_get(mp, agno);
2560 spin_lock(&pag->pagb_lock);
2561
2562 rbp = pag->pagb_tree.rb_node;
2563
2564 /* find closest start bno overlap */
2565 while (rbp) {
2566 busyp = rb_entry(rbp, struct xfs_busy_extent, rb_node);
2567 if (bno < busyp->bno) {
2568 /* may overlap, but exact start block is lower */
2569 if (bno + len > busyp->bno)
2570 match = -1;
2571 rbp = rbp->rb_left;
2572 } else if (bno > busyp->bno) {
2573 /* may overlap, but exact start block is higher */
2574 if (bno < busyp->bno + busyp->length)
2575 match = -1;
2576 rbp = rbp->rb_right;
2577 } else {
2578 /* bno matches busyp, length determines exact match */
2579 match = (busyp->length == len) ? 1 : -1;
2580 break;
2581 }
2582 }
2583 spin_unlock(&pag->pagb_lock);
Dave Chinnered3b4d62010-05-21 12:07:08 +10002584 xfs_perag_put(pag);
2585 return match;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586}
2587
Christoph Hellwige26f0502011-04-24 19:06:15 +00002588/*
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002589 * The found free extent [fbno, fend] overlaps part or all of the given busy
2590 * extent. If the overlap covers the beginning, the end, or all of the busy
2591 * extent, the overlapping portion can be made unbusy and used for the
2592 * allocation. We can't split a busy extent because we can't modify a
2593 * transaction/CIL context busy list, but we can update an entries block
2594 * number or length.
2595 *
2596 * Returns true if the extent can safely be reused, or false if the search
2597 * needs to be restarted.
2598 */
2599STATIC bool
2600xfs_alloc_busy_update_extent(
2601 struct xfs_mount *mp,
2602 struct xfs_perag *pag,
2603 struct xfs_busy_extent *busyp,
2604 xfs_agblock_t fbno,
2605 xfs_extlen_t flen,
2606 bool userdata)
2607{
2608 xfs_agblock_t fend = fbno + flen;
2609 xfs_agblock_t bbno = busyp->bno;
2610 xfs_agblock_t bend = bbno + busyp->length;
2611
2612 /*
2613 * If there is a busy extent overlapping a user allocation, we have
2614 * no choice but to force the log and retry the search.
2615 *
2616 * Fortunately this does not happen during normal operation, but
2617 * only if the filesystem is very low on space and has to dip into
2618 * the AGFL for normal allocations.
2619 */
2620 if (userdata)
2621 goto out_force_log;
2622
2623 if (bbno < fbno && bend > fend) {
2624 /*
2625 * Case 1:
2626 * bbno bend
2627 * +BBBBBBBBBBBBBBBBB+
2628 * +---------+
2629 * fbno fend
2630 */
2631
2632 /*
2633 * We would have to split the busy extent to be able to track
2634 * it correct, which we cannot do because we would have to
2635 * modify the list of busy extents attached to the transaction
2636 * or CIL context, which is immutable.
2637 *
2638 * Force out the log to clear the busy extent and retry the
2639 * search.
2640 */
2641 goto out_force_log;
2642 } else if (bbno >= fbno && bend <= fend) {
2643 /*
2644 * Case 2:
2645 * bbno bend
2646 * +BBBBBBBBBBBBBBBBB+
2647 * +-----------------+
2648 * fbno fend
2649 *
2650 * Case 3:
2651 * bbno bend
2652 * +BBBBBBBBBBBBBBBBB+
2653 * +--------------------------+
2654 * fbno fend
2655 *
2656 * Case 4:
2657 * bbno bend
2658 * +BBBBBBBBBBBBBBBBB+
2659 * +--------------------------+
2660 * fbno fend
2661 *
2662 * Case 5:
2663 * bbno bend
2664 * +BBBBBBBBBBBBBBBBB+
2665 * +-----------------------------------+
2666 * fbno fend
2667 *
2668 */
2669
2670 /*
2671 * The busy extent is fully covered by the extent we are
2672 * allocating, and can simply be removed from the rbtree.
2673 * However we cannot remove it from the immutable list
2674 * tracking busy extents in the transaction or CIL context,
2675 * so set the length to zero to mark it invalid.
2676 *
2677 * We also need to restart the busy extent search from the
2678 * tree root, because erasing the node can rearrange the
2679 * tree topology.
2680 */
2681 rb_erase(&busyp->rb_node, &pag->pagb_tree);
2682 busyp->length = 0;
2683 return false;
2684 } else if (fend < bend) {
2685 /*
2686 * Case 6:
2687 * bbno bend
2688 * +BBBBBBBBBBBBBBBBB+
2689 * +---------+
2690 * fbno fend
2691 *
2692 * Case 7:
2693 * bbno bend
2694 * +BBBBBBBBBBBBBBBBB+
2695 * +------------------+
2696 * fbno fend
2697 *
2698 */
2699 busyp->bno = fend;
2700 } else if (bbno < fbno) {
2701 /*
2702 * Case 8:
2703 * bbno bend
2704 * +BBBBBBBBBBBBBBBBB+
2705 * +-------------+
2706 * fbno fend
2707 *
2708 * Case 9:
2709 * bbno bend
2710 * +BBBBBBBBBBBBBBBBB+
2711 * +----------------------+
2712 * fbno fend
2713 */
2714 busyp->length = fbno - busyp->bno;
2715 } else {
2716 ASSERT(0);
2717 }
2718
2719 trace_xfs_alloc_busy_reuse(mp, pag->pag_agno, fbno, flen);
2720 return true;
2721
2722out_force_log:
2723 spin_unlock(&pag->pagb_lock);
2724 xfs_log_force(mp, XFS_LOG_SYNC);
2725 trace_xfs_alloc_busy_force(mp, pag->pag_agno, fbno, flen);
2726 spin_lock(&pag->pagb_lock);
2727 return false;
2728}
2729
2730
2731/*
2732 * For a given extent [fbno, flen], make sure we can reuse it safely.
2733 */
2734void
2735xfs_alloc_busy_reuse(
2736 struct xfs_mount *mp,
2737 xfs_agnumber_t agno,
2738 xfs_agblock_t fbno,
2739 xfs_extlen_t flen,
2740 bool userdata)
2741{
2742 struct xfs_perag *pag;
2743 struct rb_node *rbp;
2744
2745 ASSERT(flen > 0);
2746
2747 pag = xfs_perag_get(mp, agno);
2748 spin_lock(&pag->pagb_lock);
2749restart:
2750 rbp = pag->pagb_tree.rb_node;
2751 while (rbp) {
2752 struct xfs_busy_extent *busyp =
2753 rb_entry(rbp, struct xfs_busy_extent, rb_node);
2754 xfs_agblock_t bbno = busyp->bno;
2755 xfs_agblock_t bend = bbno + busyp->length;
2756
2757 if (fbno + flen <= bbno) {
2758 rbp = rbp->rb_left;
2759 continue;
2760 } else if (fbno >= bend) {
2761 rbp = rbp->rb_right;
2762 continue;
2763 }
2764
2765 if (!xfs_alloc_busy_update_extent(mp, pag, busyp, fbno, flen,
2766 userdata))
2767 goto restart;
2768 }
2769 spin_unlock(&pag->pagb_lock);
2770 xfs_perag_put(pag);
2771}
2772
2773/*
Christoph Hellwige26f0502011-04-24 19:06:15 +00002774 * For a given extent [fbno, flen], search the busy extent list to find a
2775 * subset of the extent that is not busy. If *rlen is smaller than
2776 * args->minlen no suitable extent could be found, and the higher level
2777 * code needs to force out the log and retry the allocation.
2778 */
2779STATIC void
2780xfs_alloc_busy_trim(
2781 struct xfs_alloc_arg *args,
2782 xfs_agblock_t bno,
2783 xfs_extlen_t len,
2784 xfs_agblock_t *rbno,
2785 xfs_extlen_t *rlen)
2786{
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002787 xfs_agblock_t fbno;
2788 xfs_extlen_t flen;
Christoph Hellwige26f0502011-04-24 19:06:15 +00002789 struct rb_node *rbp;
2790
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002791 ASSERT(len > 0);
Christoph Hellwige26f0502011-04-24 19:06:15 +00002792
2793 spin_lock(&args->pag->pagb_lock);
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002794restart:
2795 fbno = bno;
2796 flen = len;
Christoph Hellwige26f0502011-04-24 19:06:15 +00002797 rbp = args->pag->pagb_tree.rb_node;
2798 while (rbp && flen >= args->minlen) {
2799 struct xfs_busy_extent *busyp =
2800 rb_entry(rbp, struct xfs_busy_extent, rb_node);
2801 xfs_agblock_t fend = fbno + flen;
2802 xfs_agblock_t bbno = busyp->bno;
2803 xfs_agblock_t bend = bbno + busyp->length;
2804
2805 if (fend <= bbno) {
2806 rbp = rbp->rb_left;
2807 continue;
2808 } else if (fbno >= bend) {
2809 rbp = rbp->rb_right;
2810 continue;
2811 }
2812
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002813 /*
2814 * If this is a metadata allocation, try to reuse the busy
2815 * extent instead of trimming the allocation.
2816 */
2817 if (!args->userdata) {
2818 if (!xfs_alloc_busy_update_extent(args->mp, args->pag,
2819 busyp, fbno, flen,
2820 false))
2821 goto restart;
2822 continue;
2823 }
2824
Christoph Hellwige26f0502011-04-24 19:06:15 +00002825 if (bbno <= fbno) {
2826 /* start overlap */
2827
2828 /*
2829 * Case 1:
2830 * bbno bend
2831 * +BBBBBBBBBBBBBBBBB+
2832 * +---------+
2833 * fbno fend
2834 *
2835 * Case 2:
2836 * bbno bend
2837 * +BBBBBBBBBBBBBBBBB+
2838 * +-------------+
2839 * fbno fend
2840 *
2841 * Case 3:
2842 * bbno bend
2843 * +BBBBBBBBBBBBBBBBB+
2844 * +-------------+
2845 * fbno fend
2846 *
2847 * Case 4:
2848 * bbno bend
2849 * +BBBBBBBBBBBBBBBBB+
2850 * +-----------------+
2851 * fbno fend
2852 *
2853 * No unbusy region in extent, return failure.
2854 */
2855 if (fend <= bend)
2856 goto fail;
2857
2858 /*
2859 * Case 5:
2860 * bbno bend
2861 * +BBBBBBBBBBBBBBBBB+
2862 * +----------------------+
2863 * fbno fend
2864 *
2865 * Case 6:
2866 * bbno bend
2867 * +BBBBBBBBBBBBBBBBB+
2868 * +--------------------------+
2869 * fbno fend
2870 *
2871 * Needs to be trimmed to:
2872 * +-------+
2873 * fbno fend
2874 */
2875 fbno = bend;
2876 } else if (bend >= fend) {
2877 /* end overlap */
2878
2879 /*
2880 * Case 7:
2881 * bbno bend
2882 * +BBBBBBBBBBBBBBBBB+
2883 * +------------------+
2884 * fbno fend
2885 *
2886 * Case 8:
2887 * bbno bend
2888 * +BBBBBBBBBBBBBBBBB+
2889 * +--------------------------+
2890 * fbno fend
2891 *
2892 * Needs to be trimmed to:
2893 * +-------+
2894 * fbno fend
2895 */
2896 fend = bbno;
2897 } else {
2898 /* middle overlap */
2899
2900 /*
2901 * Case 9:
2902 * bbno bend
2903 * +BBBBBBBBBBBBBBBBB+
2904 * +-----------------------------------+
2905 * fbno fend
2906 *
2907 * Can be trimmed to:
2908 * +-------+ OR +-------+
2909 * fbno fend fbno fend
2910 *
2911 * Backward allocation leads to significant
2912 * fragmentation of directories, which degrades
2913 * directory performance, therefore we always want to
2914 * choose the option that produces forward allocation
2915 * patterns.
2916 * Preferring the lower bno extent will make the next
2917 * request use "fend" as the start of the next
2918 * allocation; if the segment is no longer busy at
2919 * that point, we'll get a contiguous allocation, but
2920 * even if it is still busy, we will get a forward
2921 * allocation.
2922 * We try to avoid choosing the segment at "bend",
2923 * because that can lead to the next allocation
2924 * taking the segment at "fbno", which would be a
2925 * backward allocation. We only use the segment at
2926 * "fbno" if it is much larger than the current
2927 * requested size, because in that case there's a
2928 * good chance subsequent allocations will be
2929 * contiguous.
2930 */
2931 if (bbno - fbno >= args->maxlen) {
2932 /* left candidate fits perfect */
2933 fend = bbno;
2934 } else if (fend - bend >= args->maxlen * 4) {
2935 /* right candidate has enough free space */
2936 fbno = bend;
2937 } else if (bbno - fbno >= args->minlen) {
2938 /* left candidate fits minimum requirement */
2939 fend = bbno;
2940 } else {
2941 goto fail;
2942 }
2943 }
2944
2945 flen = fend - fbno;
2946 }
2947 spin_unlock(&args->pag->pagb_lock);
2948
2949 if (fbno != bno || flen != len) {
2950 trace_xfs_alloc_busy_trim(args->mp, args->agno, bno, len,
2951 fbno, flen);
2952 }
2953 *rbno = fbno;
2954 *rlen = flen;
2955 return;
2956fail:
2957 /*
2958 * Return a zero extent length as failure indications. All callers
2959 * re-check if the trimmed extent satisfies the minlen requirement.
2960 */
2961 spin_unlock(&args->pag->pagb_lock);
2962 trace_xfs_alloc_busy_trim(args->mp, args->agno, bno, len, fbno, 0);
2963 *rbno = fbno;
2964 *rlen = 0;
2965}
2966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967void
Dave Chinnered3b4d62010-05-21 12:07:08 +10002968xfs_alloc_busy_clear(
2969 struct xfs_mount *mp,
2970 struct xfs_busy_extent *busyp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
Dave Chinnera862e0f2010-01-11 11:47:41 +00002972 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Dave Chinnered3b4d62010-05-21 12:07:08 +10002974 list_del_init(&busyp->list);
2975
2976 pag = xfs_perag_get(mp, busyp->agno);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002977 spin_lock(&pag->pagb_lock);
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00002978 if (busyp->length) {
2979 trace_xfs_alloc_busy_clear(mp, busyp->agno, busyp->bno,
2980 busyp->length);
2981 rb_erase(&busyp->rb_node, &pag->pagb_tree);
2982 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002983 spin_unlock(&pag->pagb_lock);
2984 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
Dave Chinnered3b4d62010-05-21 12:07:08 +10002986 kmem_free(busyp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987}