blob: 9b3e3681dfa9b196bb29c56707c19f9e2e41f98c [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"
Dave Chinner70a9883c2013-10-23 10:36:05 +110020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110022#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_btree.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110029#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_alloc.h"
Dave Chinnerefc27b52012-04-29 10:39:43 +000031#include "xfs_extent_busy.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_error.h"
Dave Chinner4e0e6042013-04-03 16:11:13 +110033#include "xfs_cksum.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000034#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110035#include "xfs_trans.h"
Dave Chinner4e0e6042013-04-03 16:11:13 +110036#include "xfs_buf_item.h"
Dave Chinner239880e2013-10-23 10:50:10 +110037#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Dave Chinnerc999a222012-03-22 05:15:07 +000039struct workqueue_struct *xfs_alloc_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
42
43#define XFSA_FIXUP_BNO_OK 1
44#define XFSA_FIXUP_CNT_OK 2
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046STATIC int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t *);
47STATIC int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t *);
48STATIC int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t *);
49STATIC int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t *,
Christoph Hellwige26f0502011-04-24 19:06:15 +000050 xfs_btree_cur_t *, xfs_agblock_t *, xfs_extlen_t *, int *);
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 */
Dave Chinnera66d6362012-03-22 05:15:12 +000071int /* error */
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110072xfs_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 */
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000154 xfs_extent_busy_trim(args, foundbno, foundlen, &bno, &len);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000155
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 */
Jan Kara211d0222013-04-11 22:09:56 +0200177 char userdata, /* are we allocating data? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 xfs_agblock_t freebno, /* freespace's starting block */
179 xfs_extlen_t freelen, /* freespace's length */
180 xfs_agblock_t *newbnop) /* result: best start block from free */
181{
182 xfs_agblock_t freeend; /* end of freespace extent */
183 xfs_agblock_t newbno1; /* return block number */
184 xfs_agblock_t newbno2; /* other new block number */
185 xfs_extlen_t newlen1=0; /* length with newbno1 */
186 xfs_extlen_t newlen2=0; /* length with newbno2 */
187 xfs_agblock_t wantend; /* end of target extent */
188
189 ASSERT(freelen >= wantlen);
190 freeend = freebno + freelen;
191 wantend = wantbno + wantlen;
Jan Kara211d0222013-04-11 22:09:56 +0200192 /*
193 * We want to allocate from the start of a free extent if it is past
194 * the desired block or if we are allocating user data and the free
195 * extent is before desired block. The second case is there to allow
196 * for contiguous allocation from the remaining free space if the file
197 * grows in the short term.
198 */
199 if (freebno >= wantbno || (userdata && freeend < wantend)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if ((newbno1 = roundup(freebno, alignment)) >= freeend)
201 newbno1 = NULLAGBLOCK;
202 } else if (freeend >= wantend && alignment > 1) {
203 newbno1 = roundup(wantbno, alignment);
204 newbno2 = newbno1 - alignment;
205 if (newbno1 >= freeend)
206 newbno1 = NULLAGBLOCK;
207 else
208 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1);
209 if (newbno2 < freebno)
210 newbno2 = NULLAGBLOCK;
211 else
212 newlen2 = XFS_EXTLEN_MIN(wantlen, freeend - newbno2);
213 if (newbno1 != NULLAGBLOCK && newbno2 != NULLAGBLOCK) {
214 if (newlen1 < newlen2 ||
215 (newlen1 == newlen2 &&
216 XFS_ABSDIFF(newbno1, wantbno) >
217 XFS_ABSDIFF(newbno2, wantbno)))
218 newbno1 = newbno2;
219 } else if (newbno2 != NULLAGBLOCK)
220 newbno1 = newbno2;
221 } else if (freeend >= wantend) {
222 newbno1 = wantbno;
223 } else if (alignment > 1) {
224 newbno1 = roundup(freeend - wantlen, alignment);
225 if (newbno1 > freeend - wantlen &&
226 newbno1 - alignment >= freebno)
227 newbno1 -= alignment;
228 else if (newbno1 >= freeend)
229 newbno1 = NULLAGBLOCK;
230 } else
231 newbno1 = freeend - wantlen;
232 *newbnop = newbno1;
233 return newbno1 == NULLAGBLOCK ? 0 : XFS_ABSDIFF(newbno1, wantbno);
234}
235
236/*
237 * Fix up the length, based on mod and prod.
238 * len should be k * prod + mod for some k.
239 * If len is too small it is returned unchanged.
240 * If len hits maxlen it is left alone.
241 */
242STATIC void
243xfs_alloc_fix_len(
244 xfs_alloc_arg_t *args) /* allocation argument structure */
245{
246 xfs_extlen_t k;
247 xfs_extlen_t rlen;
248
249 ASSERT(args->mod < args->prod);
250 rlen = args->len;
251 ASSERT(rlen >= args->minlen);
252 ASSERT(rlen <= args->maxlen);
253 if (args->prod <= 1 || rlen < args->mod || rlen == args->maxlen ||
254 (args->mod == 0 && rlen < args->prod))
255 return;
256 k = rlen % args->prod;
257 if (k == args->mod)
258 return;
Jan Kara30265112014-06-06 16:06:37 +1000259 if (k > args->mod)
260 rlen = rlen - (k - args->mod);
261 else
262 rlen = rlen - args->prod + (args->mod - k);
Dave Chinner3790a8c2015-02-24 10:16:04 +1100263 /* casts to (int) catch length underflows */
Jan Kara30265112014-06-06 16:06:37 +1000264 if ((int)rlen < (int)args->minlen)
265 return;
266 ASSERT(rlen >= args->minlen && rlen <= args->maxlen);
267 ASSERT(rlen % args->prod == args->mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 args->len = rlen;
269}
270
271/*
272 * Fix up length if there is too little space left in the a.g.
273 * Return 1 if ok, 0 if too little, should give up.
274 */
275STATIC int
276xfs_alloc_fix_minleft(
277 xfs_alloc_arg_t *args) /* allocation argument structure */
278{
279 xfs_agf_t *agf; /* a.g. freelist header */
280 int diff; /* free space difference */
281
282 if (args->minleft == 0)
283 return 1;
284 agf = XFS_BUF_TO_AGF(args->agbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100285 diff = be32_to_cpu(agf->agf_freeblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 - args->len - args->minleft;
287 if (diff >= 0)
288 return 1;
289 args->len += diff; /* shrink the allocated space */
Dave Chinner3790a8c2015-02-24 10:16:04 +1100290 /* casts to (int) catch length underflows */
291 if ((int)args->len >= (int)args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 1;
293 args->agbno = NULLAGBLOCK;
294 return 0;
295}
296
297/*
298 * Update the two btrees, logically removing from freespace the extent
299 * starting at rbno, rlen blocks. The extent is contained within the
300 * actual (current) free extent fbno for flen blocks.
301 * Flags are passed in indicating whether the cursors are set to the
302 * relevant records.
303 */
304STATIC int /* error code */
305xfs_alloc_fixup_trees(
306 xfs_btree_cur_t *cnt_cur, /* cursor for by-size btree */
307 xfs_btree_cur_t *bno_cur, /* cursor for by-block btree */
308 xfs_agblock_t fbno, /* starting block of free extent */
309 xfs_extlen_t flen, /* length of free extent */
310 xfs_agblock_t rbno, /* starting block of returned extent */
311 xfs_extlen_t rlen, /* length of returned extent */
312 int flags) /* flags, XFSA_FIXUP_... */
313{
314 int error; /* error code */
315 int i; /* operation results */
316 xfs_agblock_t nfbno1; /* first new free startblock */
317 xfs_agblock_t nfbno2; /* second new free startblock */
318 xfs_extlen_t nflen1=0; /* first new free length */
319 xfs_extlen_t nflen2=0; /* second new free length */
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100320 struct xfs_mount *mp;
321
322 mp = cnt_cur->bc_mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /*
325 * Look up the record in the by-size tree if necessary.
326 */
327 if (flags & XFSA_FIXUP_CNT_OK) {
328#ifdef DEBUG
329 if ((error = xfs_alloc_get_rec(cnt_cur, &nfbno1, &nflen1, &i)))
330 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100331 XFS_WANT_CORRUPTED_RETURN(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 i == 1 && nfbno1 == fbno && nflen1 == flen);
333#endif
334 } else {
335 if ((error = xfs_alloc_lookup_eq(cnt_cur, fbno, flen, &i)))
336 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100337 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339 /*
340 * Look up the record in the by-block tree if necessary.
341 */
342 if (flags & XFSA_FIXUP_BNO_OK) {
343#ifdef DEBUG
344 if ((error = xfs_alloc_get_rec(bno_cur, &nfbno1, &nflen1, &i)))
345 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100346 XFS_WANT_CORRUPTED_RETURN(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 i == 1 && nfbno1 == fbno && nflen1 == flen);
348#endif
349 } else {
350 if ((error = xfs_alloc_lookup_eq(bno_cur, fbno, flen, &i)))
351 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100352 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100355#ifdef DEBUG
356 if (bno_cur->bc_nlevels == 1 && cnt_cur->bc_nlevels == 1) {
357 struct xfs_btree_block *bnoblock;
358 struct xfs_btree_block *cntblock;
359
360 bnoblock = XFS_BUF_TO_BLOCK(bno_cur->bc_bufs[0]);
361 cntblock = XFS_BUF_TO_BLOCK(cnt_cur->bc_bufs[0]);
362
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100363 XFS_WANT_CORRUPTED_RETURN(mp,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100364 bnoblock->bb_numrecs == cntblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366#endif
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 /*
369 * Deal with all four cases: the allocated record is contained
370 * within the freespace record, so we can have new freespace
371 * at either (or both) end, or no freespace remaining.
372 */
373 if (rbno == fbno && rlen == flen)
374 nfbno1 = nfbno2 = NULLAGBLOCK;
375 else if (rbno == fbno) {
376 nfbno1 = rbno + rlen;
377 nflen1 = flen - rlen;
378 nfbno2 = NULLAGBLOCK;
379 } else if (rbno + rlen == fbno + flen) {
380 nfbno1 = fbno;
381 nflen1 = flen - rlen;
382 nfbno2 = NULLAGBLOCK;
383 } else {
384 nfbno1 = fbno;
385 nflen1 = rbno - fbno;
386 nfbno2 = rbno + rlen;
387 nflen2 = (fbno + flen) - nfbno2;
388 }
389 /*
390 * Delete the entry from the by-size btree.
391 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100392 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100394 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /*
396 * Add new by-size btree entry(s).
397 */
398 if (nfbno1 != NULLAGBLOCK) {
399 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno1, nflen1, &i)))
400 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100401 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100402 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100404 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406 if (nfbno2 != NULLAGBLOCK) {
407 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno2, nflen2, &i)))
408 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100409 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100410 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100412 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 /*
415 * Fix up the by-block btree entry(s).
416 */
417 if (nfbno1 == NULLAGBLOCK) {
418 /*
419 * No remaining freespace, just delete the by-block tree entry.
420 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100421 if ((error = xfs_btree_delete(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100423 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 } else {
425 /*
426 * Update the by-block entry to start later|be shorter.
427 */
428 if ((error = xfs_alloc_update(bno_cur, nfbno1, nflen1)))
429 return error;
430 }
431 if (nfbno2 != NULLAGBLOCK) {
432 /*
433 * 2 resulting free entries, need to add one.
434 */
435 if ((error = xfs_alloc_lookup_eq(bno_cur, nfbno2, nflen2, &i)))
436 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100437 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100438 if ((error = xfs_btree_insert(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100440 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442 return 0;
443}
444
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100445static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +1100446xfs_agfl_verify(
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100447 struct xfs_buf *bp)
448{
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100449 struct xfs_mount *mp = bp->b_target->bt_mount;
450 struct xfs_agfl *agfl = XFS_BUF_TO_AGFL(bp);
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100451 int i;
452
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100453 if (!uuid_equal(&agfl->agfl_uuid, &mp->m_sb.sb_uuid))
454 return false;
455 if (be32_to_cpu(agfl->agfl_magicnum) != XFS_AGFL_MAGIC)
456 return false;
457 /*
458 * during growfs operations, the perag is not fully initialised,
459 * so we can't use it for any useful checking. growfs ensures we can't
460 * use it by using uncached buffers that don't have the perag attached
461 * so we can detect and avoid this problem.
462 */
463 if (bp->b_pag && be32_to_cpu(agfl->agfl_seqno) != bp->b_pag->pag_agno)
464 return false;
465
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100466 for (i = 0; i < XFS_AGFL_SIZE(mp); i++) {
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100467 if (be32_to_cpu(agfl->agfl_bno[i]) != NULLAGBLOCK &&
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100468 be32_to_cpu(agfl->agfl_bno[i]) >= mp->m_sb.sb_agblocks)
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100469 return false;
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100470 }
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100471 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +1100472}
473
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100474static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100475xfs_agfl_read_verify(
476 struct xfs_buf *bp)
477{
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100478 struct xfs_mount *mp = bp->b_target->bt_mount;
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100479
480 /*
481 * There is no verification of non-crc AGFLs because mkfs does not
482 * initialise the AGFL to zero or NULL. Hence the only valid part of the
483 * AGFL is what the AGF says is active. We can't get to the AGF, so we
484 * can't verify just those entries are valid.
485 */
486 if (!xfs_sb_version_hascrc(&mp->m_sb))
487 return;
488
Eric Sandeence5028c2014-02-27 15:23:10 +1100489 if (!xfs_buf_verify_cksum(bp, XFS_AGFL_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +1000490 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100491 else if (!xfs_agfl_verify(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000492 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100493
494 if (bp->b_error)
495 xfs_verifier_error(bp);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100496}
497
498static void
499xfs_agfl_write_verify(
500 struct xfs_buf *bp)
501{
502 struct xfs_mount *mp = bp->b_target->bt_mount;
503 struct xfs_buf_log_item *bip = bp->b_fspriv;
504
505 /* no verification of non-crc AGFLs */
506 if (!xfs_sb_version_hascrc(&mp->m_sb))
507 return;
508
509 if (!xfs_agfl_verify(bp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000510 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100511 xfs_verifier_error(bp);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100512 return;
513 }
514
515 if (bip)
516 XFS_BUF_TO_AGFL(bp)->agfl_lsn = cpu_to_be64(bip->bli_item.li_lsn);
517
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100518 xfs_buf_update_cksum(bp, XFS_AGFL_CRC_OFF);
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100519}
520
Dave Chinner1813dd62012-11-14 17:54:40 +1100521const struct xfs_buf_ops xfs_agfl_buf_ops = {
522 .verify_read = xfs_agfl_read_verify,
523 .verify_write = xfs_agfl_write_verify,
524};
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/*
527 * Read in the allocation group free block array.
528 */
529STATIC int /* error */
530xfs_alloc_read_agfl(
531 xfs_mount_t *mp, /* mount point structure */
532 xfs_trans_t *tp, /* transaction pointer */
533 xfs_agnumber_t agno, /* allocation group number */
534 xfs_buf_t **bpp) /* buffer for the ag free block array */
535{
536 xfs_buf_t *bp; /* return value */
537 int error;
538
539 ASSERT(agno != NULLAGNUMBER);
540 error = xfs_trans_read_buf(
541 mp, tp, mp->m_ddev_targp,
542 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +1100543 XFS_FSS_TO_BB(mp, 1), 0, &bp, &xfs_agfl_buf_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (error)
545 return error;
Christoph Hellwig38f23232011-10-10 16:52:45 +0000546 xfs_buf_set_ref(bp, XFS_AGFL_REF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 *bpp = bp;
548 return 0;
549}
550
Christoph Hellwigecb69282011-03-04 12:59:55 +0000551STATIC int
552xfs_alloc_update_counters(
553 struct xfs_trans *tp,
554 struct xfs_perag *pag,
555 struct xfs_buf *agbp,
556 long len)
557{
558 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
559
560 pag->pagf_freeblks += len;
561 be32_add_cpu(&agf->agf_freeblks, len);
562
563 xfs_trans_agblocks_delta(tp, len);
564 if (unlikely(be32_to_cpu(agf->agf_freeblks) >
565 be32_to_cpu(agf->agf_length)))
Dave Chinner24513372014-06-25 14:58:08 +1000566 return -EFSCORRUPTED;
Christoph Hellwigecb69282011-03-04 12:59:55 +0000567
568 xfs_alloc_log_agf(tp, agbp, XFS_AGF_FREEBLKS);
569 return 0;
570}
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572/*
573 * Allocation group level functions.
574 */
575
576/*
577 * Allocate a variable extent in the allocation group agno.
578 * Type and bno are used to determine where in the allocation group the
579 * extent will start.
580 * Extent's length (returned in *len) will be between minlen and maxlen,
581 * and of the form k * prod + mod unless there's nothing that large.
582 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
583 */
584STATIC int /* error */
585xfs_alloc_ag_vextent(
586 xfs_alloc_arg_t *args) /* argument structure for allocation */
587{
588 int error=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 ASSERT(args->minlen > 0);
591 ASSERT(args->maxlen > 0);
592 ASSERT(args->minlen <= args->maxlen);
593 ASSERT(args->mod < args->prod);
594 ASSERT(args->alignment > 0);
595 /*
596 * Branch to correct routine based on the type.
597 */
598 args->wasfromfl = 0;
599 switch (args->type) {
600 case XFS_ALLOCTYPE_THIS_AG:
601 error = xfs_alloc_ag_vextent_size(args);
602 break;
603 case XFS_ALLOCTYPE_NEAR_BNO:
604 error = xfs_alloc_ag_vextent_near(args);
605 break;
606 case XFS_ALLOCTYPE_THIS_BNO:
607 error = xfs_alloc_ag_vextent_exact(args);
608 break;
609 default:
610 ASSERT(0);
611 /* NOTREACHED */
612 }
Christoph Hellwigecb69282011-03-04 12:59:55 +0000613
614 if (error || args->agbno == NULLAGBLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Christoph Hellwigecb69282011-03-04 12:59:55 +0000617 ASSERT(args->len >= args->minlen);
618 ASSERT(args->len <= args->maxlen);
619 ASSERT(!args->wasfromfl || !args->isfl);
620 ASSERT(args->agbno % args->alignment == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Christoph Hellwigecb69282011-03-04 12:59:55 +0000622 if (!args->wasfromfl) {
623 error = xfs_alloc_update_counters(args->tp, args->pag,
624 args->agbp,
625 -((long)(args->len)));
626 if (error)
627 return error;
628
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000629 ASSERT(!xfs_extent_busy_search(args->mp, args->agno,
Christoph Hellwige26f0502011-04-24 19:06:15 +0000630 args->agbno, args->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
Christoph Hellwigecb69282011-03-04 12:59:55 +0000632
633 if (!args->isfl) {
634 xfs_trans_mod_sb(args->tp, args->wasdel ?
635 XFS_TRANS_SB_RES_FDBLOCKS :
636 XFS_TRANS_SB_FDBLOCKS,
637 -((long)(args->len)));
638 }
639
640 XFS_STATS_INC(xs_allocx);
641 XFS_STATS_ADD(xs_allocb, args->len);
642 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645/*
646 * Allocate a variable extent at exactly agno/bno.
647 * Extent's length (returned in *len) will be between minlen and maxlen,
648 * and of the form k * prod + mod unless there's nothing that large.
649 * Return the starting a.g. block (bno), or NULLAGBLOCK if we can't do it.
650 */
651STATIC int /* error */
652xfs_alloc_ag_vextent_exact(
653 xfs_alloc_arg_t *args) /* allocation argument structure */
654{
655 xfs_btree_cur_t *bno_cur;/* by block-number btree cursor */
656 xfs_btree_cur_t *cnt_cur;/* by count btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 int error;
658 xfs_agblock_t fbno; /* start block of found extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 xfs_extlen_t flen; /* length of found extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000660 xfs_agblock_t tbno; /* start block of trimmed extent */
661 xfs_extlen_t tlen; /* length of trimmed extent */
662 xfs_agblock_t tend; /* end block of trimmed extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 int i; /* success/failure of operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 ASSERT(args->alignment == 1);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 /*
668 * Allocate/initialize a cursor for the by-number freespace btree.
669 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100670 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000671 args->agno, XFS_BTNUM_BNO);
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /*
674 * Lookup bno and minlen in the btree (minlen is irrelevant, really).
675 * Look for the closest free block <= bno, it must contain bno
676 * if any free block does.
677 */
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000678 error = xfs_alloc_lookup_le(bno_cur, args->agbno, args->minlen, &i);
679 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 goto error0;
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000681 if (!i)
682 goto not_found;
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /*
685 * Grab the freespace record.
686 */
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000687 error = xfs_alloc_get_rec(bno_cur, &fbno, &flen, &i);
688 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +1100690 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 ASSERT(fbno <= args->agbno);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /*
Christoph Hellwige26f0502011-04-24 19:06:15 +0000694 * Check for overlapping busy extents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 */
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000696 xfs_extent_busy_trim(args, fbno, flen, &tbno, &tlen);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000697
698 /*
699 * Give up if the start of the extent is busy, or the freespace isn't
700 * long enough for the minimum request.
701 */
702 if (tbno > args->agbno)
703 goto not_found;
704 if (tlen < args->minlen)
705 goto not_found;
706 tend = tbno + tlen;
707 if (tend < args->agbno + args->minlen)
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000708 goto not_found;
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 /*
711 * End of extent will be smaller of the freespace end and the
712 * maximal requested end.
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000713 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 * Fix the length according to mod and prod if given.
715 */
Chandra Seetharaman81463b12011-06-09 16:47:49 +0000716 args->len = XFS_AGBLOCK_MIN(tend, args->agbno + args->maxlen)
717 - args->agbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 xfs_alloc_fix_len(args);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000719 if (!xfs_alloc_fix_minleft(args))
720 goto not_found;
721
Chandra Seetharaman81463b12011-06-09 16:47:49 +0000722 ASSERT(args->agbno + args->len <= tend);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 /*
Chandra Seetharaman81463b12011-06-09 16:47:49 +0000725 * We are allocating agbno for args->len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 * Allocate/initialize a cursor for the by-size btree.
727 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100728 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
729 args->agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 ASSERT(args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +1100731 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000732 error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen, args->agbno,
733 args->len, XFSA_FIXUP_BNO_OK);
734 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
736 goto error0;
737 }
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
740 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 args->wasfromfl = 0;
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000743 trace_xfs_alloc_exact_done(args);
744 return 0;
745
746not_found:
747 /* Didn't find it, return null. */
748 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
749 args->agbno = NULLAGBLOCK;
750 trace_xfs_alloc_exact_notfound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return 0;
752
753error0:
754 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000755 trace_xfs_alloc_exact_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return error;
757}
758
759/*
Christoph Hellwig489a1502010-12-10 15:04:11 +0000760 * Search the btree in a given direction via the search cursor and compare
761 * the records found against the good extent we've already found.
762 */
763STATIC int
764xfs_alloc_find_best_extent(
765 struct xfs_alloc_arg *args, /* allocation argument structure */
766 struct xfs_btree_cur **gcur, /* good cursor */
767 struct xfs_btree_cur **scur, /* searching cursor */
768 xfs_agblock_t gdiff, /* difference for search comparison */
769 xfs_agblock_t *sbno, /* extent found by search */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000770 xfs_extlen_t *slen, /* extent length */
771 xfs_agblock_t *sbnoa, /* aligned extent found by search */
772 xfs_extlen_t *slena, /* aligned extent length */
Christoph Hellwig489a1502010-12-10 15:04:11 +0000773 int dir) /* 0 = search right, 1 = search left */
774{
Christoph Hellwig489a1502010-12-10 15:04:11 +0000775 xfs_agblock_t new;
776 xfs_agblock_t sdiff;
777 int error;
778 int i;
779
780 /* The good extent is perfect, no need to search. */
781 if (!gdiff)
782 goto out_use_good;
783
784 /*
785 * Look until we find a better one, run out of space or run off the end.
786 */
787 do {
788 error = xfs_alloc_get_rec(*scur, sbno, slen, &i);
789 if (error)
790 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +1100791 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000792 xfs_alloc_compute_aligned(args, *sbno, *slen, sbnoa, slena);
Christoph Hellwig489a1502010-12-10 15:04:11 +0000793
794 /*
795 * The good extent is closer than this one.
796 */
797 if (!dir) {
Christoph Hellwige26f0502011-04-24 19:06:15 +0000798 if (*sbnoa >= args->agbno + gdiff)
Christoph Hellwig489a1502010-12-10 15:04:11 +0000799 goto out_use_good;
800 } else {
Christoph Hellwige26f0502011-04-24 19:06:15 +0000801 if (*sbnoa <= args->agbno - gdiff)
Christoph Hellwig489a1502010-12-10 15:04:11 +0000802 goto out_use_good;
803 }
804
805 /*
806 * Same distance, compare length and pick the best.
807 */
808 if (*slena >= args->minlen) {
809 args->len = XFS_EXTLEN_MIN(*slena, args->maxlen);
810 xfs_alloc_fix_len(args);
811
812 sdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Jan Kara211d0222013-04-11 22:09:56 +0200813 args->alignment,
814 args->userdata, *sbnoa,
Christoph Hellwige26f0502011-04-24 19:06:15 +0000815 *slena, &new);
Christoph Hellwig489a1502010-12-10 15:04:11 +0000816
817 /*
818 * Choose closer size and invalidate other cursor.
819 */
820 if (sdiff < gdiff)
821 goto out_use_search;
822 goto out_use_good;
823 }
824
825 if (!dir)
826 error = xfs_btree_increment(*scur, 0, &i);
827 else
828 error = xfs_btree_decrement(*scur, 0, &i);
829 if (error)
830 goto error0;
831 } while (i);
832
833out_use_good:
834 xfs_btree_del_cursor(*scur, XFS_BTREE_NOERROR);
835 *scur = NULL;
836 return 0;
837
838out_use_search:
839 xfs_btree_del_cursor(*gcur, XFS_BTREE_NOERROR);
840 *gcur = NULL;
841 return 0;
842
843error0:
844 /* caller invalidates cursors */
845 return error;
846}
847
848/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 * Allocate a variable extent near bno in the allocation group agno.
850 * Extent's length (returned in len) will be between minlen and maxlen,
851 * and of the form k * prod + mod unless there's nothing that large.
852 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
853 */
854STATIC int /* error */
855xfs_alloc_ag_vextent_near(
856 xfs_alloc_arg_t *args) /* allocation argument structure */
857{
858 xfs_btree_cur_t *bno_cur_gt; /* cursor for bno btree, right side */
859 xfs_btree_cur_t *bno_cur_lt; /* cursor for bno btree, left side */
860 xfs_btree_cur_t *cnt_cur; /* cursor for count btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 xfs_agblock_t gtbno; /* start bno of right side entry */
862 xfs_agblock_t gtbnoa; /* aligned ... */
863 xfs_extlen_t gtdiff; /* difference to right side entry */
864 xfs_extlen_t gtlen; /* length of right side entry */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000865 xfs_extlen_t gtlena; /* aligned ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 xfs_agblock_t gtnew; /* useful start bno of right side */
867 int error; /* error code */
868 int i; /* result code, temporary */
869 int j; /* result code, temporary */
870 xfs_agblock_t ltbno; /* start bno of left side entry */
871 xfs_agblock_t ltbnoa; /* aligned ... */
872 xfs_extlen_t ltdiff; /* difference to left side entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 xfs_extlen_t ltlen; /* length of left side entry */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000874 xfs_extlen_t ltlena; /* aligned ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 xfs_agblock_t ltnew; /* useful start bno of left side */
876 xfs_extlen_t rlen; /* length of returned extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000877 int forced = 0;
Dave Chinner63d20d62013-08-12 20:49:50 +1000878#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /*
880 * Randomly don't execute the first algorithm.
881 */
882 int dofirst; /* set to do first algorithm */
883
Akinobu Mitaecb34032013-03-04 21:58:20 +0900884 dofirst = prandom_u32() & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885#endif
Christoph Hellwige26f0502011-04-24 19:06:15 +0000886
887restart:
888 bno_cur_lt = NULL;
889 bno_cur_gt = NULL;
890 ltlen = 0;
891 gtlena = 0;
892 ltlena = 0;
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /*
895 * Get a cursor for the by-size btree.
896 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100897 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
898 args->agno, XFS_BTNUM_CNT);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /*
901 * See if there are any free extents as big as maxlen.
902 */
903 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0, args->maxlen, &i)))
904 goto error0;
905 /*
906 * If none, then pick up the last entry in the tree unless the
907 * tree is empty.
908 */
909 if (!i) {
910 if ((error = xfs_alloc_ag_vextent_small(args, cnt_cur, &ltbno,
911 &ltlen, &i)))
912 goto error0;
913 if (i == 0 || ltlen == 0) {
914 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000915 trace_xfs_alloc_near_noentry(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return 0;
917 }
918 ASSERT(i == 1);
919 }
920 args->wasfromfl = 0;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 /*
923 * First algorithm.
924 * If the requested extent is large wrt the freespaces available
925 * in this a.g., then the cursor will be pointing to a btree entry
926 * near the right edge of the tree. If it's in the last btree leaf
927 * block, then we just examine all the entries in that block
928 * that are big enough, and pick the best one.
929 * This is written as a while loop so we can break out of it,
930 * but we never loop back to the top.
931 */
932 while (xfs_btree_islastblock(cnt_cur, 0)) {
933 xfs_extlen_t bdiff;
934 int besti=0;
935 xfs_extlen_t blen=0;
936 xfs_agblock_t bnew=0;
937
Dave Chinner63d20d62013-08-12 20:49:50 +1000938#ifdef DEBUG
939 if (dofirst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 break;
941#endif
942 /*
943 * Start from the entry that lookup found, sequence through
944 * all larger free blocks. If we're actually pointing at a
945 * record smaller than maxlen, go to the start of this block,
946 * and skip all those smaller than minlen.
947 */
948 if (ltlen || args->alignment > 1) {
949 cnt_cur->bc_ptrs[0] = 1;
950 do {
951 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno,
952 &ltlen, &i)))
953 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +1100954 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (ltlen >= args->minlen)
956 break;
Christoph Hellwig637aa502008-10-30 16:55:45 +1100957 if ((error = xfs_btree_increment(cnt_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 goto error0;
959 } while (i);
960 ASSERT(ltlen >= args->minlen);
961 if (!i)
962 break;
963 }
964 i = cnt_cur->bc_ptrs[0];
965 for (j = 1, blen = 0, bdiff = 0;
966 !error && j && (blen < args->maxlen || bdiff > 0);
Christoph Hellwig637aa502008-10-30 16:55:45 +1100967 error = xfs_btree_increment(cnt_cur, 0, &j)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /*
969 * For each entry, decide if it's better than
970 * the previous best entry.
971 */
972 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
973 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +1100974 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +0000975 xfs_alloc_compute_aligned(args, ltbno, ltlen,
976 &ltbnoa, &ltlena);
David Chinnere6430032008-04-17 16:49:49 +1000977 if (ltlena < args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 continue;
979 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
980 xfs_alloc_fix_len(args);
981 ASSERT(args->len >= args->minlen);
982 if (args->len < blen)
983 continue;
984 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Jan Kara211d0222013-04-11 22:09:56 +0200985 args->alignment, args->userdata, ltbnoa,
986 ltlena, &ltnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (ltnew != NULLAGBLOCK &&
988 (args->len > blen || ltdiff < bdiff)) {
989 bdiff = ltdiff;
990 bnew = ltnew;
991 blen = args->len;
992 besti = cnt_cur->bc_ptrs[0];
993 }
994 }
995 /*
996 * It didn't work. We COULD be in a case where
997 * there's a good record somewhere, so try again.
998 */
999 if (blen == 0)
1000 break;
1001 /*
1002 * Point at the best entry, and retrieve it again.
1003 */
1004 cnt_cur->bc_ptrs[0] = besti;
1005 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
1006 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001007 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig73523a22010-07-20 17:54:45 +10001008 ASSERT(ltbno + ltlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 args->len = blen;
1010 if (!xfs_alloc_fix_minleft(args)) {
1011 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001012 trace_xfs_alloc_near_nominleft(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return 0;
1014 }
1015 blen = args->len;
1016 /*
1017 * We are allocating starting at bnew for blen blocks.
1018 */
1019 args->agbno = bnew;
1020 ASSERT(bnew >= ltbno);
Christoph Hellwig73523a22010-07-20 17:54:45 +10001021 ASSERT(bnew + blen <= ltbno + ltlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 /*
1023 * Set up a cursor for the by-bno tree.
1024 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001025 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp,
1026 args->agbp, args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 /*
1028 * Fix up the btree entries.
1029 */
1030 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno,
1031 ltlen, bnew, blen, XFSA_FIXUP_CNT_OK)))
1032 goto error0;
1033 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1034 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001035
1036 trace_xfs_alloc_near_first(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return 0;
1038 }
1039 /*
1040 * Second algorithm.
1041 * Search in the by-bno tree to the left and to the right
1042 * simultaneously, until in each case we find a space big enough,
1043 * or run into the edge of the tree. When we run into the edge,
1044 * we deallocate that cursor.
1045 * If both searches succeed, we compare the two spaces and pick
1046 * the better one.
1047 * With alignment, it's possible for both to fail; the upper
1048 * level algorithm that picks allocation groups for allocations
1049 * is not supposed to do this.
1050 */
1051 /*
1052 * Allocate and initialize the cursor for the leftward search.
1053 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001054 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1055 args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 /*
1057 * Lookup <= bno to find the leftward search's starting point.
1058 */
1059 if ((error = xfs_alloc_lookup_le(bno_cur_lt, args->agbno, args->maxlen, &i)))
1060 goto error0;
1061 if (!i) {
1062 /*
1063 * Didn't find anything; use this cursor for the rightward
1064 * search.
1065 */
1066 bno_cur_gt = bno_cur_lt;
1067 bno_cur_lt = NULL;
1068 }
1069 /*
1070 * Found something. Duplicate the cursor for the rightward search.
1071 */
1072 else if ((error = xfs_btree_dup_cursor(bno_cur_lt, &bno_cur_gt)))
1073 goto error0;
1074 /*
1075 * Increment the cursor, so we will point at the entry just right
1076 * of the leftward entry if any, or to the leftmost entry.
1077 */
Christoph Hellwig637aa502008-10-30 16:55:45 +11001078 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 goto error0;
1080 if (!i) {
1081 /*
1082 * It failed, there are no rightward entries.
1083 */
1084 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_NOERROR);
1085 bno_cur_gt = NULL;
1086 }
1087 /*
1088 * Loop going left with the leftward cursor, right with the
1089 * rightward cursor, until either both directions give up or
1090 * we find an entry at least as big as minlen.
1091 */
1092 do {
1093 if (bno_cur_lt) {
1094 if ((error = xfs_alloc_get_rec(bno_cur_lt, &ltbno, &ltlen, &i)))
1095 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001096 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001097 xfs_alloc_compute_aligned(args, ltbno, ltlen,
1098 &ltbnoa, &ltlena);
David Chinner12375c82008-04-10 12:21:32 +10001099 if (ltlena >= args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 break;
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001101 if ((error = xfs_btree_decrement(bno_cur_lt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 goto error0;
1103 if (!i) {
1104 xfs_btree_del_cursor(bno_cur_lt,
1105 XFS_BTREE_NOERROR);
1106 bno_cur_lt = NULL;
1107 }
1108 }
1109 if (bno_cur_gt) {
1110 if ((error = xfs_alloc_get_rec(bno_cur_gt, &gtbno, &gtlen, &i)))
1111 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001112 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001113 xfs_alloc_compute_aligned(args, gtbno, gtlen,
1114 &gtbnoa, &gtlena);
David Chinner12375c82008-04-10 12:21:32 +10001115 if (gtlena >= args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 break;
Christoph Hellwig637aa502008-10-30 16:55:45 +11001117 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 goto error0;
1119 if (!i) {
1120 xfs_btree_del_cursor(bno_cur_gt,
1121 XFS_BTREE_NOERROR);
1122 bno_cur_gt = NULL;
1123 }
1124 }
1125 } while (bno_cur_lt || bno_cur_gt);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 /*
1128 * Got both cursors still active, need to find better entry.
1129 */
1130 if (bno_cur_lt && bno_cur_gt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (ltlena >= args->minlen) {
1132 /*
Christoph Hellwig489a1502010-12-10 15:04:11 +00001133 * Left side is good, look for a right side entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 */
1135 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1136 xfs_alloc_fix_len(args);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001137 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Jan Kara211d0222013-04-11 22:09:56 +02001138 args->alignment, args->userdata, ltbnoa,
1139 ltlena, &ltnew);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001140
1141 error = xfs_alloc_find_best_extent(args,
1142 &bno_cur_lt, &bno_cur_gt,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001143 ltdiff, &gtbno, &gtlen,
1144 &gtbnoa, &gtlena,
Christoph Hellwig489a1502010-12-10 15:04:11 +00001145 0 /* search right */);
1146 } else {
1147 ASSERT(gtlena >= args->minlen);
1148
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 /*
Christoph Hellwig489a1502010-12-10 15:04:11 +00001150 * Right side is good, look for a left side entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 */
1152 args->len = XFS_EXTLEN_MIN(gtlena, args->maxlen);
1153 xfs_alloc_fix_len(args);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001154 gtdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Jan Kara211d0222013-04-11 22:09:56 +02001155 args->alignment, args->userdata, gtbnoa,
1156 gtlena, &gtnew);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001157
1158 error = xfs_alloc_find_best_extent(args,
1159 &bno_cur_gt, &bno_cur_lt,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001160 gtdiff, &ltbno, &ltlen,
1161 &ltbnoa, &ltlena,
Christoph Hellwig489a1502010-12-10 15:04:11 +00001162 1 /* search left */);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001164
1165 if (error)
1166 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /*
1170 * If we couldn't get anything, give up.
1171 */
1172 if (bno_cur_lt == NULL && bno_cur_gt == NULL) {
Dave Chinnere3a746f52012-07-12 07:40:42 +10001173 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1174
Christoph Hellwige26f0502011-04-24 19:06:15 +00001175 if (!forced++) {
1176 trace_xfs_alloc_near_busy(args);
1177 xfs_log_force(args->mp, XFS_LOG_SYNC);
1178 goto restart;
1179 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001180 trace_xfs_alloc_size_neither(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 args->agbno = NULLAGBLOCK;
1182 return 0;
1183 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 /*
1186 * At this point we have selected a freespace entry, either to the
1187 * left or to the right. If it's on the right, copy all the
1188 * useful variables to the "left" set so we only have one
1189 * copy of this code.
1190 */
1191 if (bno_cur_gt) {
1192 bno_cur_lt = bno_cur_gt;
1193 bno_cur_gt = NULL;
1194 ltbno = gtbno;
1195 ltbnoa = gtbnoa;
1196 ltlen = gtlen;
1197 ltlena = gtlena;
1198 j = 1;
1199 } else
1200 j = 0;
Christoph Hellwig489a1502010-12-10 15:04:11 +00001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 /*
1203 * Fix up the length and compute the useful address.
1204 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1206 xfs_alloc_fix_len(args);
1207 if (!xfs_alloc_fix_minleft(args)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001208 trace_xfs_alloc_near_nominleft(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1210 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1211 return 0;
1212 }
1213 rlen = args->len;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001214 (void)xfs_alloc_compute_diff(args->agbno, rlen, args->alignment,
Jan Kara211d0222013-04-11 22:09:56 +02001215 args->userdata, ltbnoa, ltlena, &ltnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 ASSERT(ltnew >= ltbno);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001217 ASSERT(ltnew + rlen <= ltbnoa + ltlena);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001218 ASSERT(ltnew + rlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 args->agbno = ltnew;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno, ltlen,
1222 ltnew, rlen, XFSA_FIXUP_BNO_OK)))
1223 goto error0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001224
1225 if (j)
1226 trace_xfs_alloc_near_greater(args);
1227 else
1228 trace_xfs_alloc_near_lesser(args);
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1231 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1232 return 0;
1233
1234 error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001235 trace_xfs_alloc_near_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (cnt_cur != NULL)
1237 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1238 if (bno_cur_lt != NULL)
1239 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_ERROR);
1240 if (bno_cur_gt != NULL)
1241 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_ERROR);
1242 return error;
1243}
1244
1245/*
1246 * Allocate a variable extent anywhere in the allocation group agno.
1247 * Extent's length (returned in len) will be between minlen and maxlen,
1248 * and of the form k * prod + mod unless there's nothing that large.
1249 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
1250 */
1251STATIC int /* error */
1252xfs_alloc_ag_vextent_size(
1253 xfs_alloc_arg_t *args) /* allocation argument structure */
1254{
1255 xfs_btree_cur_t *bno_cur; /* cursor for bno btree */
1256 xfs_btree_cur_t *cnt_cur; /* cursor for cnt btree */
1257 int error; /* error result */
1258 xfs_agblock_t fbno; /* start of found freespace */
1259 xfs_extlen_t flen; /* length of found freespace */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 int i; /* temp status variable */
1261 xfs_agblock_t rbno; /* returned block number */
1262 xfs_extlen_t rlen; /* length of returned extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001263 int forced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Christoph Hellwige26f0502011-04-24 19:06:15 +00001265restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 /*
1267 * Allocate and initialize a cursor for the by-size btree.
1268 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001269 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1270 args->agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 bno_cur = NULL;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 /*
1274 * Look for an entry >= maxlen+alignment-1 blocks.
1275 */
1276 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0,
1277 args->maxlen + args->alignment - 1, &i)))
1278 goto error0;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 /*
Christoph Hellwige26f0502011-04-24 19:06:15 +00001281 * If none or we have busy extents that we cannot allocate from, then
1282 * we have to settle for a smaller extent. In the case that there are
1283 * no large extents, this will return the last entry in the tree unless
1284 * the tree is empty. In the case that there are only busy large
1285 * extents, this will return the largest small extent unless there
1286 * are no smaller extents available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001288 if (!i || forced > 1) {
1289 error = xfs_alloc_ag_vextent_small(args, cnt_cur,
1290 &fbno, &flen, &i);
1291 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 goto error0;
1293 if (i == 0 || flen == 0) {
1294 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001295 trace_xfs_alloc_size_noentry(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return 0;
1297 }
1298 ASSERT(i == 1);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001299 xfs_alloc_compute_aligned(args, fbno, flen, &rbno, &rlen);
1300 } else {
1301 /*
1302 * Search for a non-busy extent that is large enough.
1303 * If we are at low space, don't check, or if we fall of
1304 * the end of the btree, turn off the busy check and
1305 * restart.
1306 */
1307 for (;;) {
1308 error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen, &i);
1309 if (error)
1310 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001311 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001312
1313 xfs_alloc_compute_aligned(args, fbno, flen,
1314 &rbno, &rlen);
1315
1316 if (rlen >= args->maxlen)
1317 break;
1318
1319 error = xfs_btree_increment(cnt_cur, 0, &i);
1320 if (error)
1321 goto error0;
1322 if (i == 0) {
1323 /*
1324 * Our only valid extents must have been busy.
1325 * Make it unbusy by forcing the log out and
1326 * retrying. If we've been here before, forcing
1327 * the log isn't making the extents available,
1328 * which means they have probably been freed in
1329 * this transaction. In that case, we have to
1330 * give up on them and we'll attempt a minlen
1331 * allocation the next time around.
1332 */
1333 xfs_btree_del_cursor(cnt_cur,
1334 XFS_BTREE_NOERROR);
1335 trace_xfs_alloc_size_busy(args);
1336 if (!forced++)
1337 xfs_log_force(args->mp, XFS_LOG_SYNC);
1338 goto restart;
1339 }
1340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
Christoph Hellwige26f0502011-04-24 19:06:15 +00001342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 /*
1344 * In the first case above, we got the last entry in the
1345 * by-size btree. Now we check to see if the space hits maxlen
1346 * once aligned; if not, we search left for something better.
1347 * This can't happen in the second case above.
1348 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
Eric Sandeenc29aad42015-02-23 22:39:08 +11001350 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 (rlen <= flen && rbno + rlen <= fbno + flen), error0);
1352 if (rlen < args->maxlen) {
1353 xfs_agblock_t bestfbno;
1354 xfs_extlen_t bestflen;
1355 xfs_agblock_t bestrbno;
1356 xfs_extlen_t bestrlen;
1357
1358 bestrlen = rlen;
1359 bestrbno = rbno;
1360 bestflen = flen;
1361 bestfbno = fbno;
1362 for (;;) {
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001363 if ((error = xfs_btree_decrement(cnt_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 goto error0;
1365 if (i == 0)
1366 break;
1367 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen,
1368 &i)))
1369 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001370 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (flen < bestrlen)
1372 break;
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001373 xfs_alloc_compute_aligned(args, fbno, flen,
1374 &rbno, &rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
Eric Sandeenc29aad42015-02-23 22:39:08 +11001376 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 (rlen <= flen && rbno + rlen <= fbno + flen),
1378 error0);
1379 if (rlen > bestrlen) {
1380 bestrlen = rlen;
1381 bestrbno = rbno;
1382 bestflen = flen;
1383 bestfbno = fbno;
1384 if (rlen == args->maxlen)
1385 break;
1386 }
1387 }
1388 if ((error = xfs_alloc_lookup_eq(cnt_cur, bestfbno, bestflen,
1389 &i)))
1390 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001391 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 rlen = bestrlen;
1393 rbno = bestrbno;
1394 flen = bestflen;
1395 fbno = bestfbno;
1396 }
1397 args->wasfromfl = 0;
1398 /*
1399 * Fix up the length.
1400 */
1401 args->len = rlen;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001402 if (rlen < args->minlen) {
1403 if (!forced++) {
1404 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1405 trace_xfs_alloc_size_busy(args);
1406 xfs_log_force(args->mp, XFS_LOG_SYNC);
1407 goto restart;
1408 }
1409 goto out_nominleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 }
Christoph Hellwige26f0502011-04-24 19:06:15 +00001411 xfs_alloc_fix_len(args);
1412
1413 if (!xfs_alloc_fix_minleft(args))
1414 goto out_nominleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 rlen = args->len;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001416 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen <= flen, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 /*
1418 * Allocate and initialize a cursor for the by-block tree.
1419 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001420 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1421 args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1423 rbno, rlen, XFSA_FIXUP_CNT_OK)))
1424 goto error0;
1425 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1426 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1427 cnt_cur = bno_cur = NULL;
1428 args->len = rlen;
1429 args->agbno = rbno;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001430 XFS_WANT_CORRUPTED_GOTO(args->mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +11001432 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 error0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001434 trace_xfs_alloc_size_done(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return 0;
1436
1437error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001438 trace_xfs_alloc_size_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 if (cnt_cur)
1440 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1441 if (bno_cur)
1442 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1443 return error;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001444
1445out_nominleft:
1446 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1447 trace_xfs_alloc_size_nominleft(args);
1448 args->agbno = NULLAGBLOCK;
1449 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450}
1451
1452/*
1453 * Deal with the case where only small freespaces remain.
1454 * Either return the contents of the last freespace record,
1455 * or allocate space from the freelist if there is nothing in the tree.
1456 */
1457STATIC int /* error */
1458xfs_alloc_ag_vextent_small(
1459 xfs_alloc_arg_t *args, /* allocation argument structure */
1460 xfs_btree_cur_t *ccur, /* by-size cursor */
1461 xfs_agblock_t *fbnop, /* result block number */
1462 xfs_extlen_t *flenp, /* result length */
1463 int *stat) /* status: 0-freelist, 1-normal/none */
1464{
1465 int error;
1466 xfs_agblock_t fbno;
1467 xfs_extlen_t flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 int i;
1469
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001470 if ((error = xfs_btree_decrement(ccur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 goto error0;
1472 if (i) {
1473 if ((error = xfs_alloc_get_rec(ccur, &fbno, &flen, &i)))
1474 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001475 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
1477 /*
1478 * Nothing in the btree, try the freelist. Make sure
1479 * to respect minleft even when pulling from the
1480 * freelist.
1481 */
1482 else if (args->minlen == 1 && args->alignment == 1 && !args->isfl &&
Christoph Hellwig16259e72005-11-02 15:11:25 +11001483 (be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_flcount)
1484 > args->minleft)) {
David Chinner92821e22007-05-24 15:26:31 +10001485 error = xfs_alloc_get_freelist(args->tp, args->agbp, &fbno, 0);
1486 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 goto error0;
1488 if (fbno != NULLAGBLOCK) {
Dave Chinner4ecbfe62012-04-29 10:41:10 +00001489 xfs_extent_busy_reuse(args->mp, args->agno, fbno, 1,
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00001490 args->userdata);
1491
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (args->userdata) {
1493 xfs_buf_t *bp;
1494
1495 bp = xfs_btree_get_bufs(args->mp, args->tp,
1496 args->agno, fbno, 0);
1497 xfs_trans_binval(args->tp, bp);
1498 }
1499 args->len = 1;
1500 args->agbno = fbno;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001501 XFS_WANT_CORRUPTED_GOTO(args->mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +11001503 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 error0);
1505 args->wasfromfl = 1;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001506 trace_xfs_alloc_small_freelist(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 *stat = 0;
1508 return 0;
1509 }
1510 /*
1511 * Nothing in the freelist.
1512 */
1513 else
1514 flen = 0;
1515 }
1516 /*
1517 * Can't allocate from the freelist for some reason.
1518 */
Nathan Scottd432c802006-09-28 11:03:44 +10001519 else {
1520 fbno = NULLAGBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 flen = 0;
Nathan Scottd432c802006-09-28 11:03:44 +10001522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 /*
1524 * Can't do the allocation, give up.
1525 */
1526 if (flen < args->minlen) {
1527 args->agbno = NULLAGBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001528 trace_xfs_alloc_small_notenough(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 flen = 0;
1530 }
1531 *fbnop = fbno;
1532 *flenp = flen;
1533 *stat = 1;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001534 trace_xfs_alloc_small_done(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return 0;
1536
1537error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001538 trace_xfs_alloc_small_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return error;
1540}
1541
1542/*
1543 * Free the extent starting at agno/bno for length.
1544 */
1545STATIC int /* error */
1546xfs_free_ag_extent(
1547 xfs_trans_t *tp, /* transaction pointer */
1548 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
1549 xfs_agnumber_t agno, /* allocation group number */
1550 xfs_agblock_t bno, /* starting block number */
1551 xfs_extlen_t len, /* length of extent */
1552 int isfl) /* set if is freelist blocks - no sb acctg */
1553{
1554 xfs_btree_cur_t *bno_cur; /* cursor for by-block btree */
1555 xfs_btree_cur_t *cnt_cur; /* cursor for by-size btree */
1556 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 xfs_agblock_t gtbno; /* start of right neighbor block */
1558 xfs_extlen_t gtlen; /* length of right neighbor block */
1559 int haveleft; /* have a left neighbor block */
1560 int haveright; /* have a right neighbor block */
1561 int i; /* temp, result code */
1562 xfs_agblock_t ltbno; /* start of left neighbor block */
1563 xfs_extlen_t ltlen; /* length of left neighbor block */
1564 xfs_mount_t *mp; /* mount point struct for filesystem */
1565 xfs_agblock_t nbno; /* new starting block of freespace */
1566 xfs_extlen_t nlen; /* new length of freespace */
Christoph Hellwigecb69282011-03-04 12:59:55 +00001567 xfs_perag_t *pag; /* per allocation group data */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 mp = tp->t_mountp;
1570 /*
1571 * Allocate and initialize a cursor for the by-block btree.
1572 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001573 bno_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 cnt_cur = NULL;
1575 /*
1576 * Look for a neighboring block on the left (lower block numbers)
1577 * that is contiguous with this space.
1578 */
1579 if ((error = xfs_alloc_lookup_le(bno_cur, bno, len, &haveleft)))
1580 goto error0;
1581 if (haveleft) {
1582 /*
1583 * There is a block to our left.
1584 */
1585 if ((error = xfs_alloc_get_rec(bno_cur, &ltbno, &ltlen, &i)))
1586 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001587 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /*
1589 * It's not contiguous, though.
1590 */
1591 if (ltbno + ltlen < bno)
1592 haveleft = 0;
1593 else {
1594 /*
1595 * If this failure happens the request to free this
1596 * space was invalid, it's (partly) already free.
1597 * Very bad.
1598 */
Eric Sandeenc29aad42015-02-23 22:39:08 +11001599 XFS_WANT_CORRUPTED_GOTO(mp,
1600 ltbno + ltlen <= bno, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
1602 }
1603 /*
1604 * Look for a neighboring block on the right (higher block numbers)
1605 * that is contiguous with this space.
1606 */
Christoph Hellwig637aa502008-10-30 16:55:45 +11001607 if ((error = xfs_btree_increment(bno_cur, 0, &haveright)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 goto error0;
1609 if (haveright) {
1610 /*
1611 * There is a block to our right.
1612 */
1613 if ((error = xfs_alloc_get_rec(bno_cur, &gtbno, &gtlen, &i)))
1614 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001615 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 /*
1617 * It's not contiguous, though.
1618 */
1619 if (bno + len < gtbno)
1620 haveright = 0;
1621 else {
1622 /*
1623 * If this failure happens the request to free this
1624 * space was invalid, it's (partly) already free.
1625 * Very bad.
1626 */
Eric Sandeenc29aad42015-02-23 22:39:08 +11001627 XFS_WANT_CORRUPTED_GOTO(mp, gtbno >= bno + len, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629 }
1630 /*
1631 * Now allocate and initialize a cursor for the by-size tree.
1632 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001633 cnt_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 /*
1635 * Have both left and right contiguous neighbors.
1636 * Merge all three into a single free block.
1637 */
1638 if (haveleft && haveright) {
1639 /*
1640 * Delete the old by-size entry on the left.
1641 */
1642 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1643 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001644 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001645 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001647 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 /*
1649 * Delete the old by-size entry on the right.
1650 */
1651 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1652 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001653 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001654 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001656 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 /*
1658 * Delete the old by-block entry for the right block.
1659 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001660 if ((error = xfs_btree_delete(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001662 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 /*
1664 * Move the by-block cursor back to the left neighbor.
1665 */
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001666 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001668 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669#ifdef DEBUG
1670 /*
1671 * Check that this is the right record: delete didn't
1672 * mangle the cursor.
1673 */
1674 {
1675 xfs_agblock_t xxbno;
1676 xfs_extlen_t xxlen;
1677
1678 if ((error = xfs_alloc_get_rec(bno_cur, &xxbno, &xxlen,
1679 &i)))
1680 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001681 XFS_WANT_CORRUPTED_GOTO(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 i == 1 && xxbno == ltbno && xxlen == ltlen,
1683 error0);
1684 }
1685#endif
1686 /*
1687 * Update remaining by-block entry to the new, joined block.
1688 */
1689 nbno = ltbno;
1690 nlen = len + ltlen + gtlen;
1691 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1692 goto error0;
1693 }
1694 /*
1695 * Have only a left contiguous neighbor.
1696 * Merge it together with the new freespace.
1697 */
1698 else if (haveleft) {
1699 /*
1700 * Delete the old by-size entry on the left.
1701 */
1702 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1703 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001704 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001705 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001707 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 /*
1709 * Back up the by-block cursor to the left neighbor, and
1710 * update its length.
1711 */
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001712 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001714 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 nbno = ltbno;
1716 nlen = len + ltlen;
1717 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1718 goto error0;
1719 }
1720 /*
1721 * Have only a right contiguous neighbor.
1722 * Merge it together with the new freespace.
1723 */
1724 else if (haveright) {
1725 /*
1726 * Delete the old by-size entry on the right.
1727 */
1728 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1729 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001730 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001731 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001733 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 /*
1735 * Update the starting block and length of the right
1736 * neighbor in the by-block tree.
1737 */
1738 nbno = bno;
1739 nlen = len + gtlen;
1740 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1741 goto error0;
1742 }
1743 /*
1744 * No contiguous neighbors.
1745 * Insert the new freespace into the by-block tree.
1746 */
1747 else {
1748 nbno = bno;
1749 nlen = len;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001750 if ((error = xfs_btree_insert(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001752 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
1754 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1755 bno_cur = NULL;
1756 /*
1757 * In all cases we need to insert the new freespace in the by-size tree.
1758 */
1759 if ((error = xfs_alloc_lookup_eq(cnt_cur, nbno, nlen, &i)))
1760 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001761 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, error0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001762 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001764 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1766 cnt_cur = NULL;
Christoph Hellwigecb69282011-03-04 12:59:55 +00001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 /*
1769 * Update the freespace totals in the ag and superblock.
1770 */
Christoph Hellwigecb69282011-03-04 12:59:55 +00001771 pag = xfs_perag_get(mp, agno);
1772 error = xfs_alloc_update_counters(tp, pag, agbp, len);
1773 xfs_perag_put(pag);
1774 if (error)
1775 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Christoph Hellwigecb69282011-03-04 12:59:55 +00001777 if (!isfl)
1778 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, (long)len);
1779 XFS_STATS_INC(xs_freex);
1780 XFS_STATS_ADD(xs_freeb, len);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001781
1782 trace_xfs_free_extent(mp, agno, bno, len, isfl, haveleft, haveright);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return 0;
1785
1786 error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001787 trace_xfs_free_extent(mp, agno, bno, len, isfl, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 if (bno_cur)
1789 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1790 if (cnt_cur)
1791 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1792 return error;
1793}
1794
1795/*
1796 * Visible (exported) allocation/free functions.
1797 * Some of these are used just by xfs_alloc_btree.c and this file.
1798 */
1799
1800/*
1801 * Compute and fill in value of m_ag_maxlevels.
1802 */
1803void
1804xfs_alloc_compute_maxlevels(
1805 xfs_mount_t *mp) /* file system mount structure */
1806{
1807 int level;
1808 uint maxblocks;
1809 uint maxleafents;
1810 int minleafrecs;
1811 int minnoderecs;
1812
1813 maxleafents = (mp->m_sb.sb_agblocks + 1) / 2;
1814 minleafrecs = mp->m_alloc_mnr[0];
1815 minnoderecs = mp->m_alloc_mnr[1];
1816 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
1817 for (level = 1; maxblocks > 1; level++)
1818 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
1819 mp->m_ag_maxlevels = level;
1820}
1821
1822/*
Dave Chinner6cc87642009-03-16 08:29:46 +01001823 * Find the length of the longest extent in an AG.
1824 */
1825xfs_extlen_t
1826xfs_alloc_longest_free_extent(
1827 struct xfs_mount *mp,
Dave Chinner50adbcb2015-06-22 10:04:31 +10001828 struct xfs_perag *pag,
1829 xfs_extlen_t need)
Dave Chinner6cc87642009-03-16 08:29:46 +01001830{
Dave Chinner50adbcb2015-06-22 10:04:31 +10001831 xfs_extlen_t delta = 0;
Dave Chinner6cc87642009-03-16 08:29:46 +01001832
Dave Chinner6cc87642009-03-16 08:29:46 +01001833 if (need > pag->pagf_flcount)
1834 delta = need - pag->pagf_flcount;
1835
1836 if (pag->pagf_longest > delta)
1837 return pag->pagf_longest - delta;
1838 return pag->pagf_flcount > 0 || pag->pagf_longest > 0;
1839}
1840
1841/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 * Decide whether to use this allocation group for this allocation.
1843 * If so, fix up the btree freelist's size.
1844 */
1845STATIC int /* error */
1846xfs_alloc_fix_freelist(
1847 xfs_alloc_arg_t *args, /* allocation argument structure */
1848 int flags) /* XFS_ALLOC_FLAG_... */
1849{
1850 xfs_buf_t *agbp; /* agf buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 xfs_buf_t *agflbp;/* agfl buffer pointer */
1852 xfs_agblock_t bno; /* freelist block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 int error; /* error result code */
1854 xfs_extlen_t longest;/* longest extent in allocation group */
1855 xfs_mount_t *mp; /* file system mount point structure */
1856 xfs_extlen_t need; /* total blocks needed in freelist */
1857 xfs_perag_t *pag; /* per-ag information structure */
1858 xfs_alloc_arg_t targs; /* local allocation arguments */
1859 xfs_trans_t *tp; /* transaction pointer */
1860
1861 mp = args->mp;
1862
1863 pag = args->pag;
1864 tp = args->tp;
1865 if (!pag->pagf_init) {
1866 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1867 &agbp)))
1868 return error;
1869 if (!pag->pagf_init) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001870 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1871 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 args->agbp = NULL;
1873 return 0;
1874 }
1875 } else
1876 agbp = NULL;
1877
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001878 /*
1879 * If this is a metadata preferred pag and we are user data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 * then try somewhere else if we are not being asked to
1881 * try harder at this point
1882 */
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001883 if (pag->pagf_metadata && args->userdata &&
1884 (flags & XFS_ALLOC_FLAG_TRYLOCK)) {
1885 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 args->agbp = NULL;
1887 return 0;
1888 }
1889
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001890 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001891 /*
1892 * If it looks like there isn't a long enough extent, or enough
1893 * total blocks, reject it.
1894 */
Dave Chinner6cc87642009-03-16 08:29:46 +01001895 need = XFS_MIN_FREELIST_PAG(pag, mp);
Dave Chinner50adbcb2015-06-22 10:04:31 +10001896 longest = xfs_alloc_longest_free_extent(mp, pag, need);
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001897 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1898 longest ||
1899 ((int)(pag->pagf_freeblks + pag->pagf_flcount -
1900 need - args->total) < (int)args->minleft)) {
1901 if (agbp)
1902 xfs_trans_brelse(tp, agbp);
1903 args->agbp = NULL;
1904 return 0;
1905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 }
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 /*
1909 * Get the a.g. freespace buffer.
1910 * Can fail if we're not blocking on locks, and it's held.
1911 */
1912 if (agbp == NULL) {
1913 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1914 &agbp)))
1915 return error;
1916 if (agbp == NULL) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001917 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1918 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 args->agbp = NULL;
1920 return 0;
1921 }
1922 }
Dave Chinner50adbcb2015-06-22 10:04:31 +10001923
1924
1925 /* If there isn't enough total space or single-extent, reject it. */
1926 need = XFS_MIN_FREELIST_PAG(pag, mp);
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001927 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
Dave Chinner50adbcb2015-06-22 10:04:31 +10001928 longest = xfs_alloc_longest_free_extent(mp, pag, need);
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001929 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1930 longest ||
Dave Chinner50adbcb2015-06-22 10:04:31 +10001931 ((int)(pag->pagf_freeblks + pag->pagf_flcount -
1932 need - args->total) < (int)args->minleft)) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001933 xfs_trans_brelse(tp, agbp);
1934 args->agbp = NULL;
1935 return 0;
1936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938 /*
1939 * Make the freelist shorter if it's too long.
Dave Chinner50adbcb2015-06-22 10:04:31 +10001940 *
1941 * XXX (dgc): When we have lots of free space, does this buy us
1942 * anything other than extra overhead when we need to put more blocks
1943 * back on the free list? Maybe we should only do this when space is
1944 * getting low or the AGFL is more than half full?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 */
Dave Chinner50adbcb2015-06-22 10:04:31 +10001946 while (pag->pagf_flcount > need) {
1947 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
David Chinner92821e22007-05-24 15:26:31 +10001949 error = xfs_alloc_get_freelist(tp, agbp, &bno, 0);
1950 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 return error;
Dave Chinner50adbcb2015-06-22 10:04:31 +10001952 error = xfs_free_ag_extent(tp, agbp, args->agno, bno, 1, 1);
1953 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return error;
1955 bp = xfs_btree_get_bufs(mp, tp, args->agno, bno, 0);
1956 xfs_trans_binval(tp, bp);
1957 }
Dave Chinner50adbcb2015-06-22 10:04:31 +10001958
Mark Tinguelya0041682012-09-20 13:16:45 -05001959 memset(&targs, 0, sizeof(targs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 targs.tp = tp;
1961 targs.mp = mp;
1962 targs.agbp = agbp;
1963 targs.agno = args->agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 targs.alignment = targs.minlen = targs.prod = targs.isfl = 1;
1965 targs.type = XFS_ALLOCTYPE_THIS_AG;
1966 targs.pag = pag;
Dave Chinner50adbcb2015-06-22 10:04:31 +10001967 error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp);
1968 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return error;
Dave Chinner50adbcb2015-06-22 10:04:31 +10001970
1971 /* Make the freelist longer if it's too short. */
1972 while (pag->pagf_flcount < need) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 targs.agbno = 0;
Dave Chinner50adbcb2015-06-22 10:04:31 +10001974 targs.maxlen = need - pag->pagf_flcount;
1975
1976 /* Allocate as many blocks as possible at once. */
1977 error = xfs_alloc_ag_vextent(&targs);
1978 if (error) {
Nathan Scotte63a3692006-05-08 19:51:58 +10001979 xfs_trans_brelse(tp, agflbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 return error;
Nathan Scotte63a3692006-05-08 19:51:58 +10001981 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 /*
1983 * Stop if we run out. Won't happen if callers are obeying
1984 * the restrictions correctly. Can happen for free calls
1985 * on a completely full ag.
1986 */
Yingping Lud210a282006-06-09 14:55:18 +10001987 if (targs.agbno == NULLAGBLOCK) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001988 if (flags & XFS_ALLOC_FLAG_FREEING)
1989 break;
1990 xfs_trans_brelse(tp, agflbp);
1991 args->agbp = NULL;
1992 return 0;
Yingping Lud210a282006-06-09 14:55:18 +10001993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 /*
1995 * Put each allocated block on the list.
1996 */
1997 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
David Chinner92821e22007-05-24 15:26:31 +10001998 error = xfs_alloc_put_freelist(tp, agbp,
1999 agflbp, bno, 0);
2000 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 return error;
2002 }
2003 }
Nathan Scotte63a3692006-05-08 19:51:58 +10002004 xfs_trans_brelse(tp, agflbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 args->agbp = agbp;
2006 return 0;
2007}
2008
2009/*
2010 * Get a block from the freelist.
2011 * Returns with the buffer for the block gotten.
2012 */
2013int /* error */
2014xfs_alloc_get_freelist(
2015 xfs_trans_t *tp, /* transaction pointer */
2016 xfs_buf_t *agbp, /* buffer containing the agf structure */
David Chinner92821e22007-05-24 15:26:31 +10002017 xfs_agblock_t *bnop, /* block address retrieved from freelist */
2018 int btreeblk) /* destination is a AGF btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
2020 xfs_agf_t *agf; /* a.g. freespace structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 xfs_buf_t *agflbp;/* buffer for a.g. freelist structure */
2022 xfs_agblock_t bno; /* block number returned */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002023 __be32 *agfl_bno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 int error;
David Chinner92821e22007-05-24 15:26:31 +10002025 int logflags;
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002026 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 xfs_perag_t *pag; /* per allocation group data */
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 /*
2030 * Freelist is empty, give up.
2031 */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002032 agf = XFS_BUF_TO_AGF(agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 if (!agf->agf_flcount) {
2034 *bnop = NULLAGBLOCK;
2035 return 0;
2036 }
2037 /*
2038 * Read the array of free blocks.
2039 */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002040 error = xfs_alloc_read_agfl(mp, tp, be32_to_cpu(agf->agf_seqno),
2041 &agflbp);
2042 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return error;
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002044
2045
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 /*
2047 * Get the block number and update the data structures.
2048 */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002049 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2050 bno = be32_to_cpu(agfl_bno[be32_to_cpu(agf->agf_flfirst)]);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002051 be32_add_cpu(&agf->agf_flfirst, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 xfs_trans_brelse(tp, agflbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002053 if (be32_to_cpu(agf->agf_flfirst) == XFS_AGFL_SIZE(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 agf->agf_flfirst = 0;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002055
2056 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002057 be32_add_cpu(&agf->agf_flcount, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 xfs_trans_agflist_delta(tp, -1);
2059 pag->pagf_flcount--;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002060 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +10002061
2062 logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT;
2063 if (btreeblk) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002064 be32_add_cpu(&agf->agf_btreeblks, 1);
David Chinner92821e22007-05-24 15:26:31 +10002065 pag->pagf_btreeblks++;
2066 logflags |= XFS_AGF_BTREEBLKS;
2067 }
2068
David Chinner92821e22007-05-24 15:26:31 +10002069 xfs_alloc_log_agf(tp, agbp, logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 *bnop = bno;
2071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 return 0;
2073}
2074
2075/*
2076 * Log the given fields from the agf structure.
2077 */
2078void
2079xfs_alloc_log_agf(
2080 xfs_trans_t *tp, /* transaction pointer */
2081 xfs_buf_t *bp, /* buffer for a.g. freelist header */
2082 int fields) /* mask of fields to be logged (XFS_AGF_...) */
2083{
2084 int first; /* first byte offset */
2085 int last; /* last byte offset */
2086 static const short offsets[] = {
2087 offsetof(xfs_agf_t, agf_magicnum),
2088 offsetof(xfs_agf_t, agf_versionnum),
2089 offsetof(xfs_agf_t, agf_seqno),
2090 offsetof(xfs_agf_t, agf_length),
2091 offsetof(xfs_agf_t, agf_roots[0]),
2092 offsetof(xfs_agf_t, agf_levels[0]),
2093 offsetof(xfs_agf_t, agf_flfirst),
2094 offsetof(xfs_agf_t, agf_fllast),
2095 offsetof(xfs_agf_t, agf_flcount),
2096 offsetof(xfs_agf_t, agf_freeblks),
2097 offsetof(xfs_agf_t, agf_longest),
David Chinner92821e22007-05-24 15:26:31 +10002098 offsetof(xfs_agf_t, agf_btreeblks),
Dave Chinner4e0e6042013-04-03 16:11:13 +11002099 offsetof(xfs_agf_t, agf_uuid),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 sizeof(xfs_agf_t)
2101 };
2102
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002103 trace_xfs_agf(tp->t_mountp, XFS_BUF_TO_AGF(bp), fields, _RET_IP_);
2104
Dave Chinner61fe1352013-04-03 16:11:30 +11002105 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGF_BUF);
Dave Chinner4e0e6042013-04-03 16:11:13 +11002106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 xfs_btree_offsets(fields, offsets, XFS_AGF_NUM_BITS, &first, &last);
2108 xfs_trans_log_buf(tp, bp, (uint)first, (uint)last);
2109}
2110
2111/*
2112 * Interface for inode allocation to force the pag data to be initialized.
2113 */
2114int /* error */
2115xfs_alloc_pagf_init(
2116 xfs_mount_t *mp, /* file system mount structure */
2117 xfs_trans_t *tp, /* transaction pointer */
2118 xfs_agnumber_t agno, /* allocation group number */
2119 int flags) /* XFS_ALLOC_FLAGS_... */
2120{
2121 xfs_buf_t *bp;
2122 int error;
2123
2124 if ((error = xfs_alloc_read_agf(mp, tp, agno, flags, &bp)))
2125 return error;
2126 if (bp)
2127 xfs_trans_brelse(tp, bp);
2128 return 0;
2129}
2130
2131/*
2132 * Put the block on the freelist for the allocation group.
2133 */
2134int /* error */
2135xfs_alloc_put_freelist(
2136 xfs_trans_t *tp, /* transaction pointer */
2137 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
2138 xfs_buf_t *agflbp,/* buffer for a.g. free block array */
David Chinner92821e22007-05-24 15:26:31 +10002139 xfs_agblock_t bno, /* block being freed */
2140 int btreeblk) /* block came from a AGF btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
2142 xfs_agf_t *agf; /* a.g. freespace structure */
Christoph Hellwige2101002006-09-28 10:56:51 +10002143 __be32 *blockp;/* pointer to array entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 int error;
David Chinner92821e22007-05-24 15:26:31 +10002145 int logflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 xfs_mount_t *mp; /* mount structure */
2147 xfs_perag_t *pag; /* per allocation group data */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002148 __be32 *agfl_bno;
2149 int startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 agf = XFS_BUF_TO_AGF(agbp);
2152 mp = tp->t_mountp;
2153
2154 if (!agflbp && (error = xfs_alloc_read_agfl(mp, tp,
Christoph Hellwig16259e72005-11-02 15:11:25 +11002155 be32_to_cpu(agf->agf_seqno), &agflbp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return error;
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002157 be32_add_cpu(&agf->agf_fllast, 1);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002158 if (be32_to_cpu(agf->agf_fllast) == XFS_AGFL_SIZE(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 agf->agf_fllast = 0;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002160
2161 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002162 be32_add_cpu(&agf->agf_flcount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 xfs_trans_agflist_delta(tp, 1);
2164 pag->pagf_flcount++;
David Chinner92821e22007-05-24 15:26:31 +10002165
2166 logflags = XFS_AGF_FLLAST | XFS_AGF_FLCOUNT;
2167 if (btreeblk) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002168 be32_add_cpu(&agf->agf_btreeblks, -1);
David Chinner92821e22007-05-24 15:26:31 +10002169 pag->pagf_btreeblks--;
2170 logflags |= XFS_AGF_BTREEBLKS;
2171 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002172 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +10002173
David Chinner92821e22007-05-24 15:26:31 +10002174 xfs_alloc_log_agf(tp, agbp, logflags);
2175
Christoph Hellwig16259e72005-11-02 15:11:25 +11002176 ASSERT(be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp));
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002177
2178 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2179 blockp = &agfl_bno[be32_to_cpu(agf->agf_fllast)];
Christoph Hellwige2101002006-09-28 10:56:51 +10002180 *blockp = cpu_to_be32(bno);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002181 startoff = (char *)blockp - (char *)agflbp->b_addr;
2182
David Chinner92821e22007-05-24 15:26:31 +10002183 xfs_alloc_log_agf(tp, agbp, logflags);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002184
Dave Chinner61fe1352013-04-03 16:11:30 +11002185 xfs_trans_buf_set_type(tp, agflbp, XFS_BLFT_AGFL_BUF);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002186 xfs_trans_log_buf(tp, agflbp, startoff,
2187 startoff + sizeof(xfs_agblock_t) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 return 0;
2189}
2190
Dave Chinner4e0e6042013-04-03 16:11:13 +11002191static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +11002192xfs_agf_verify(
Dave Chinner4e0e6042013-04-03 16:11:13 +11002193 struct xfs_mount *mp,
Dave Chinner5d5f5272012-11-14 17:44:56 +11002194 struct xfs_buf *bp)
2195 {
Dave Chinner4e0e6042013-04-03 16:11:13 +11002196 struct xfs_agf *agf = XFS_BUF_TO_AGF(bp);
Dave Chinner5d5f5272012-11-14 17:44:56 +11002197
Dave Chinner4e0e6042013-04-03 16:11:13 +11002198 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2199 !uuid_equal(&agf->agf_uuid, &mp->m_sb.sb_uuid))
2200 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002201
Dave Chinner4e0e6042013-04-03 16:11:13 +11002202 if (!(agf->agf_magicnum == cpu_to_be32(XFS_AGF_MAGIC) &&
2203 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf->agf_versionnum)) &&
2204 be32_to_cpu(agf->agf_freeblks) <= be32_to_cpu(agf->agf_length) &&
2205 be32_to_cpu(agf->agf_flfirst) < XFS_AGFL_SIZE(mp) &&
2206 be32_to_cpu(agf->agf_fllast) < XFS_AGFL_SIZE(mp) &&
2207 be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp)))
2208 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002209
Eric Sandeene1b05722014-09-09 11:47:24 +10002210 if (be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]) > XFS_BTREE_MAXLEVELS ||
2211 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNT]) > XFS_BTREE_MAXLEVELS)
2212 return false;
2213
Dave Chinner5d5f5272012-11-14 17:44:56 +11002214 /*
2215 * during growfs operations, the perag is not fully initialised,
2216 * so we can't use it for any useful checking. growfs ensures we can't
2217 * use it by using uncached buffers that don't have the perag attached
2218 * so we can detect and avoid this problem.
2219 */
Dave Chinner4e0e6042013-04-03 16:11:13 +11002220 if (bp->b_pag && be32_to_cpu(agf->agf_seqno) != bp->b_pag->pag_agno)
2221 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002222
Dave Chinner4e0e6042013-04-03 16:11:13 +11002223 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
2224 be32_to_cpu(agf->agf_btreeblks) > be32_to_cpu(agf->agf_length))
2225 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002226
Dave Chinner4e0e6042013-04-03 16:11:13 +11002227 return true;;
2228
Dave Chinner612cfbf2012-11-14 17:52:32 +11002229}
Dave Chinner5d5f5272012-11-14 17:44:56 +11002230
Dave Chinner1813dd62012-11-14 17:54:40 +11002231static void
2232xfs_agf_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11002233 struct xfs_buf *bp)
2234{
Dave Chinner4e0e6042013-04-03 16:11:13 +11002235 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner4e0e6042013-04-03 16:11:13 +11002236
Eric Sandeence5028c2014-02-27 15:23:10 +11002237 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2238 !xfs_buf_verify_cksum(bp, XFS_AGF_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +10002239 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +11002240 else if (XFS_TEST_ERROR(!xfs_agf_verify(mp, bp), mp,
2241 XFS_ERRTAG_ALLOC_READ_AGF,
2242 XFS_RANDOM_ALLOC_READ_AGF))
Dave Chinner24513372014-06-25 14:58:08 +10002243 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +11002244
2245 if (bp->b_error)
2246 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +11002247}
2248
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002249static void
Dave Chinner1813dd62012-11-14 17:54:40 +11002250xfs_agf_write_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11002251 struct xfs_buf *bp)
2252{
Dave Chinner4e0e6042013-04-03 16:11:13 +11002253 struct xfs_mount *mp = bp->b_target->bt_mount;
2254 struct xfs_buf_log_item *bip = bp->b_fspriv;
2255
2256 if (!xfs_agf_verify(mp, bp)) {
Dave Chinner24513372014-06-25 14:58:08 +10002257 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +11002258 xfs_verifier_error(bp);
Dave Chinner4e0e6042013-04-03 16:11:13 +11002259 return;
2260 }
2261
2262 if (!xfs_sb_version_hascrc(&mp->m_sb))
2263 return;
2264
2265 if (bip)
2266 XFS_BUF_TO_AGF(bp)->agf_lsn = cpu_to_be64(bip->bli_item.li_lsn);
2267
Eric Sandeenf1dbcd72014-02-27 15:18:23 +11002268 xfs_buf_update_cksum(bp, XFS_AGF_CRC_OFF);
Dave Chinner5d5f5272012-11-14 17:44:56 +11002269}
2270
Dave Chinner1813dd62012-11-14 17:54:40 +11002271const struct xfs_buf_ops xfs_agf_buf_ops = {
2272 .verify_read = xfs_agf_read_verify,
2273 .verify_write = xfs_agf_write_verify,
2274};
2275
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276/*
2277 * Read in the allocation group header (free/alloc section).
2278 */
2279int /* error */
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002280xfs_read_agf(
2281 struct xfs_mount *mp, /* mount point structure */
2282 struct xfs_trans *tp, /* transaction pointer */
2283 xfs_agnumber_t agno, /* allocation group number */
2284 int flags, /* XFS_BUF_ */
2285 struct xfs_buf **bpp) /* buffer for the ag freelist header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 int error;
2288
Dave Chinnerd1230312013-11-01 15:27:19 +11002289 trace_xfs_read_agf(mp, agno);
2290
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 ASSERT(agno != NULLAGNUMBER);
2292 error = xfs_trans_read_buf(
2293 mp, tp, mp->m_ddev_targp,
2294 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +11002295 XFS_FSS_TO_BB(mp, 1), flags, bpp, &xfs_agf_buf_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (error)
2297 return error;
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002298 if (!*bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 return 0;
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002300
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00002301 ASSERT(!(*bpp)->b_error);
Christoph Hellwig38f23232011-10-10 16:52:45 +00002302 xfs_buf_set_ref(*bpp, XFS_AGF_REF);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002303 return 0;
2304}
2305
2306/*
2307 * Read in the allocation group header (free/alloc section).
2308 */
2309int /* error */
2310xfs_alloc_read_agf(
2311 struct xfs_mount *mp, /* mount point structure */
2312 struct xfs_trans *tp, /* transaction pointer */
2313 xfs_agnumber_t agno, /* allocation group number */
2314 int flags, /* XFS_ALLOC_FLAG_... */
2315 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2316{
2317 struct xfs_agf *agf; /* ag freelist header */
2318 struct xfs_perag *pag; /* per allocation group data */
2319 int error;
2320
Dave Chinnerd1230312013-11-01 15:27:19 +11002321 trace_xfs_alloc_read_agf(mp, agno);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002322
Dave Chinnerd1230312013-11-01 15:27:19 +11002323 ASSERT(agno != NULLAGNUMBER);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002324 error = xfs_read_agf(mp, tp, agno,
Christoph Hellwig0cadda12010-01-19 09:56:44 +00002325 (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0,
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002326 bpp);
2327 if (error)
2328 return error;
2329 if (!*bpp)
2330 return 0;
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00002331 ASSERT(!(*bpp)->b_error);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002332
2333 agf = XFS_BUF_TO_AGF(*bpp);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002334 pag = xfs_perag_get(mp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 if (!pag->pagf_init) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11002336 pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks);
David Chinner92821e22007-05-24 15:26:31 +10002337 pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002338 pag->pagf_flcount = be32_to_cpu(agf->agf_flcount);
2339 pag->pagf_longest = be32_to_cpu(agf->agf_longest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 pag->pagf_levels[XFS_BTNUM_BNOi] =
Christoph Hellwig16259e72005-11-02 15:11:25 +11002341 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 pag->pagf_levels[XFS_BTNUM_CNTi] =
Christoph Hellwig16259e72005-11-02 15:11:25 +11002343 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]);
Eric Sandeen007c61c2007-10-11 17:43:56 +10002344 spin_lock_init(&pag->pagb_lock);
Dave Chinnere57336f2010-01-11 11:47:49 +00002345 pag->pagb_count = 0;
Dave Chinnered3b4d62010-05-21 12:07:08 +10002346 pag->pagb_tree = RB_ROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 pag->pagf_init = 1;
2348 }
2349#ifdef DEBUG
2350 else if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11002351 ASSERT(pag->pagf_freeblks == be32_to_cpu(agf->agf_freeblks));
Barry Naujok89b28392008-10-30 17:05:49 +11002352 ASSERT(pag->pagf_btreeblks == be32_to_cpu(agf->agf_btreeblks));
Christoph Hellwig16259e72005-11-02 15:11:25 +11002353 ASSERT(pag->pagf_flcount == be32_to_cpu(agf->agf_flcount));
2354 ASSERT(pag->pagf_longest == be32_to_cpu(agf->agf_longest));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 ASSERT(pag->pagf_levels[XFS_BTNUM_BNOi] ==
Christoph Hellwig16259e72005-11-02 15:11:25 +11002356 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 ASSERT(pag->pagf_levels[XFS_BTNUM_CNTi] ==
Christoph Hellwig16259e72005-11-02 15:11:25 +11002358 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 }
2360#endif
Dave Chinnera862e0f2010-01-11 11:47:41 +00002361 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 return 0;
2363}
2364
2365/*
2366 * Allocate an extent (variable-size).
2367 * Depending on the allocation type, we either look in a single allocation
2368 * group or loop over the allocation groups to find the result.
2369 */
2370int /* error */
Dave Chinnere04426b2012-10-05 11:06:59 +10002371xfs_alloc_vextent(
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 xfs_alloc_arg_t *args) /* allocation argument structure */
2373{
2374 xfs_agblock_t agsize; /* allocation group size */
2375 int error;
2376 int flags; /* XFS_ALLOC_FLAG_... locking flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 xfs_extlen_t minleft;/* minimum left value, temp copy */
2378 xfs_mount_t *mp; /* mount structure pointer */
2379 xfs_agnumber_t sagno; /* starting allocation group number */
2380 xfs_alloctype_t type; /* input allocation type */
2381 int bump_rotor = 0;
2382 int no_min = 0;
2383 xfs_agnumber_t rotorstep = xfs_rotorstep; /* inode32 agf stepper */
2384
2385 mp = args->mp;
2386 type = args->otype = args->type;
2387 args->agbno = NULLAGBLOCK;
2388 /*
2389 * Just fix this up, for the case where the last a.g. is shorter
2390 * (or there's only one a.g.) and the caller couldn't easily figure
2391 * that out (xfs_bmap_alloc).
2392 */
2393 agsize = mp->m_sb.sb_agblocks;
2394 if (args->maxlen > agsize)
2395 args->maxlen = agsize;
2396 if (args->alignment == 0)
2397 args->alignment = 1;
2398 ASSERT(XFS_FSB_TO_AGNO(mp, args->fsbno) < mp->m_sb.sb_agcount);
2399 ASSERT(XFS_FSB_TO_AGBNO(mp, args->fsbno) < agsize);
2400 ASSERT(args->minlen <= args->maxlen);
2401 ASSERT(args->minlen <= agsize);
2402 ASSERT(args->mod < args->prod);
2403 if (XFS_FSB_TO_AGNO(mp, args->fsbno) >= mp->m_sb.sb_agcount ||
2404 XFS_FSB_TO_AGBNO(mp, args->fsbno) >= agsize ||
2405 args->minlen > args->maxlen || args->minlen > agsize ||
2406 args->mod >= args->prod) {
2407 args->fsbno = NULLFSBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002408 trace_xfs_alloc_vextent_badargs(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 return 0;
2410 }
2411 minleft = args->minleft;
2412
2413 switch (type) {
2414 case XFS_ALLOCTYPE_THIS_AG:
2415 case XFS_ALLOCTYPE_NEAR_BNO:
2416 case XFS_ALLOCTYPE_THIS_BNO:
2417 /*
2418 * These three force us into a single a.g.
2419 */
2420 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002421 args->pag = xfs_perag_get(mp, args->agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 args->minleft = 0;
2423 error = xfs_alloc_fix_freelist(args, 0);
2424 args->minleft = minleft;
2425 if (error) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002426 trace_xfs_alloc_vextent_nofix(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 goto error0;
2428 }
2429 if (!args->agbp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002430 trace_xfs_alloc_vextent_noagbp(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 break;
2432 }
2433 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2434 if ((error = xfs_alloc_ag_vextent(args)))
2435 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 break;
2437 case XFS_ALLOCTYPE_START_BNO:
2438 /*
2439 * Try near allocation first, then anywhere-in-ag after
2440 * the first a.g. fails.
2441 */
2442 if ((args->userdata == XFS_ALLOC_INITIAL_USER_DATA) &&
2443 (mp->m_flags & XFS_MOUNT_32BITINODES)) {
2444 args->fsbno = XFS_AGB_TO_FSB(mp,
2445 ((mp->m_agfrotor / rotorstep) %
2446 mp->m_sb.sb_agcount), 0);
2447 bump_rotor = 1;
2448 }
2449 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2450 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2451 /* FALLTHROUGH */
2452 case XFS_ALLOCTYPE_ANY_AG:
2453 case XFS_ALLOCTYPE_START_AG:
2454 case XFS_ALLOCTYPE_FIRST_AG:
2455 /*
2456 * Rotate through the allocation groups looking for a winner.
2457 */
2458 if (type == XFS_ALLOCTYPE_ANY_AG) {
2459 /*
2460 * Start with the last place we left off.
2461 */
2462 args->agno = sagno = (mp->m_agfrotor / rotorstep) %
2463 mp->m_sb.sb_agcount;
2464 args->type = XFS_ALLOCTYPE_THIS_AG;
2465 flags = XFS_ALLOC_FLAG_TRYLOCK;
2466 } else if (type == XFS_ALLOCTYPE_FIRST_AG) {
2467 /*
2468 * Start with allocation group given by bno.
2469 */
2470 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2471 args->type = XFS_ALLOCTYPE_THIS_AG;
2472 sagno = 0;
2473 flags = 0;
2474 } else {
2475 if (type == XFS_ALLOCTYPE_START_AG)
2476 args->type = XFS_ALLOCTYPE_THIS_AG;
2477 /*
2478 * Start with the given allocation group.
2479 */
2480 args->agno = sagno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2481 flags = XFS_ALLOC_FLAG_TRYLOCK;
2482 }
2483 /*
2484 * Loop over allocation groups twice; first time with
2485 * trylock set, second time without.
2486 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 for (;;) {
Dave Chinnera862e0f2010-01-11 11:47:41 +00002488 args->pag = xfs_perag_get(mp, args->agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 if (no_min) args->minleft = 0;
2490 error = xfs_alloc_fix_freelist(args, flags);
2491 args->minleft = minleft;
2492 if (error) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002493 trace_xfs_alloc_vextent_nofix(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 goto error0;
2495 }
2496 /*
2497 * If we get a buffer back then the allocation will fly.
2498 */
2499 if (args->agbp) {
2500 if ((error = xfs_alloc_ag_vextent(args)))
2501 goto error0;
2502 break;
2503 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002504
2505 trace_xfs_alloc_vextent_loopfailed(args);
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 /*
2508 * Didn't work, figure out the next iteration.
2509 */
2510 if (args->agno == sagno &&
2511 type == XFS_ALLOCTYPE_START_BNO)
2512 args->type = XFS_ALLOCTYPE_THIS_AG;
Yingping Lud210a282006-06-09 14:55:18 +10002513 /*
2514 * For the first allocation, we can try any AG to get
2515 * space. However, if we already have allocated a
2516 * block, we don't want to try AGs whose number is below
2517 * sagno. Otherwise, we may end up with out-of-order
2518 * locking of AGF, which might cause deadlock.
2519 */
2520 if (++(args->agno) == mp->m_sb.sb_agcount) {
2521 if (args->firstblock != NULLFSBLOCK)
2522 args->agno = sagno;
2523 else
2524 args->agno = 0;
2525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 /*
2527 * Reached the starting a.g., must either be done
2528 * or switch to non-trylock mode.
2529 */
2530 if (args->agno == sagno) {
2531 if (no_min == 1) {
2532 args->agbno = NULLAGBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002533 trace_xfs_alloc_vextent_allfailed(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 break;
2535 }
2536 if (flags == 0) {
2537 no_min = 1;
2538 } else {
2539 flags = 0;
2540 if (type == XFS_ALLOCTYPE_START_BNO) {
2541 args->agbno = XFS_FSB_TO_AGBNO(mp,
2542 args->fsbno);
2543 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2544 }
2545 }
2546 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002547 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 if (bump_rotor || (type == XFS_ALLOCTYPE_ANY_AG)) {
2550 if (args->agno == sagno)
2551 mp->m_agfrotor = (mp->m_agfrotor + 1) %
2552 (mp->m_sb.sb_agcount * rotorstep);
2553 else
2554 mp->m_agfrotor = (args->agno * rotorstep + 1) %
2555 (mp->m_sb.sb_agcount * rotorstep);
2556 }
2557 break;
2558 default:
2559 ASSERT(0);
2560 /* NOTREACHED */
2561 }
2562 if (args->agbno == NULLAGBLOCK)
2563 args->fsbno = NULLFSBLOCK;
2564 else {
2565 args->fsbno = XFS_AGB_TO_FSB(mp, args->agno, args->agbno);
2566#ifdef DEBUG
2567 ASSERT(args->len >= args->minlen);
2568 ASSERT(args->len <= args->maxlen);
2569 ASSERT(args->agbno % args->alignment == 0);
2570 XFS_AG_CHECK_DADDR(mp, XFS_FSB_TO_DADDR(mp, args->fsbno),
2571 args->len);
2572#endif
2573 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002574 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 return 0;
2576error0:
Dave Chinnera862e0f2010-01-11 11:47:41 +00002577 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 return error;
2579}
2580
2581/*
2582 * Free an extent.
2583 * Just break up the extent address and hand off to xfs_free_ag_extent
2584 * after fixing up the freelist.
2585 */
2586int /* error */
2587xfs_free_extent(
2588 xfs_trans_t *tp, /* transaction pointer */
2589 xfs_fsblock_t bno, /* starting block number of extent */
2590 xfs_extlen_t len) /* length of extent */
2591{
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002592 xfs_alloc_arg_t args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 int error;
2594
2595 ASSERT(len != 0);
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002596 memset(&args, 0, sizeof(xfs_alloc_arg_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 args.tp = tp;
2598 args.mp = tp->t_mountp;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002599
2600 /*
2601 * validate that the block number is legal - the enables us to detect
2602 * and handle a silent filesystem corruption rather than crashing.
2603 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 args.agno = XFS_FSB_TO_AGNO(args.mp, bno);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002605 if (args.agno >= args.mp->m_sb.sb_agcount)
Dave Chinner24513372014-06-25 14:58:08 +10002606 return -EFSCORRUPTED;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002607
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 args.agbno = XFS_FSB_TO_AGBNO(args.mp, bno);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002609 if (args.agbno >= args.mp->m_sb.sb_agblocks)
Dave Chinner24513372014-06-25 14:58:08 +10002610 return -EFSCORRUPTED;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002611
Dave Chinnera862e0f2010-01-11 11:47:41 +00002612 args.pag = xfs_perag_get(args.mp, args.agno);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002613 ASSERT(args.pag);
2614
2615 error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
2616 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 goto error0;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002618
2619 /* validate the extent size is legal now we have the agf locked */
2620 if (args.agbno + len >
2621 be32_to_cpu(XFS_BUF_TO_AGF(args.agbp)->agf_length)) {
Dave Chinner24513372014-06-25 14:58:08 +10002622 error = -EFSCORRUPTED;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002623 goto error0;
2624 }
2625
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002626 error = xfs_free_ag_extent(tp, args.agbp, args.agno, args.agbno, len, 0);
Christoph Hellwiga870acd2011-04-24 19:06:14 +00002627 if (!error)
Dave Chinner4ecbfe62012-04-29 10:41:10 +00002628 xfs_extent_busy_insert(tp, args.agno, args.agbno, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629error0:
Dave Chinnera862e0f2010-01-11 11:47:41 +00002630 xfs_perag_put(args.pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 return error;
2632}