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