Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com |
| 3 | * Written by Alex Tomas <alex@clusterfs.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will 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. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public Licens |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111- |
| 17 | */ |
| 18 | |
| 19 | |
| 20 | /* |
| 21 | * mballoc.c contains the multiblocks allocation routines |
| 22 | */ |
| 23 | |
Mingming Cao | 8f6e39a | 2008-04-29 22:01:31 -0400 | [diff] [blame] | 24 | #include "mballoc.h" |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 25 | /* |
| 26 | * MUSTDO: |
| 27 | * - test ext4_ext_search_left() and ext4_ext_search_right() |
| 28 | * - search for metadata in few groups |
| 29 | * |
| 30 | * TODO v4: |
| 31 | * - normalization should take into account whether file is still open |
| 32 | * - discard preallocations if no free space left (policy?) |
| 33 | * - don't normalize tails |
| 34 | * - quota |
| 35 | * - reservation for superuser |
| 36 | * |
| 37 | * TODO v3: |
| 38 | * - bitmap read-ahead (proposed by Oleg Drokin aka green) |
| 39 | * - track min/max extents in each group for better group selection |
| 40 | * - mb_mark_used() may allocate chunk right after splitting buddy |
| 41 | * - tree of groups sorted by number of free blocks |
| 42 | * - error handling |
| 43 | */ |
| 44 | |
| 45 | /* |
| 46 | * The allocation request involve request for multiple number of blocks |
| 47 | * near to the goal(block) value specified. |
| 48 | * |
| 49 | * During initialization phase of the allocator we decide to use the group |
| 50 | * preallocation or inode preallocation depending on the size file. The |
| 51 | * size of the file could be the resulting file size we would have after |
| 52 | * allocation or the current file size which ever is larger. If the size is |
| 53 | * less that sbi->s_mb_stream_request we select the group |
| 54 | * preallocation. The default value of s_mb_stream_request is 16 |
| 55 | * blocks. This can also be tuned via |
| 56 | * /proc/fs/ext4/<partition>/stream_req. The value is represented in terms |
| 57 | * of number of blocks. |
| 58 | * |
| 59 | * The main motivation for having small file use group preallocation is to |
| 60 | * ensure that we have small file closer in the disk. |
| 61 | * |
| 62 | * First stage the allocator looks at the inode prealloc list |
| 63 | * ext4_inode_info->i_prealloc_list contain list of prealloc spaces for |
| 64 | * this particular inode. The inode prealloc space is represented as: |
| 65 | * |
| 66 | * pa_lstart -> the logical start block for this prealloc space |
| 67 | * pa_pstart -> the physical start block for this prealloc space |
| 68 | * pa_len -> lenght for this prealloc space |
| 69 | * pa_free -> free space available in this prealloc space |
| 70 | * |
| 71 | * The inode preallocation space is used looking at the _logical_ start |
| 72 | * block. If only the logical file block falls within the range of prealloc |
| 73 | * space we will consume the particular prealloc space. This make sure that |
| 74 | * that the we have contiguous physical blocks representing the file blocks |
| 75 | * |
| 76 | * The important thing to be noted in case of inode prealloc space is that |
| 77 | * we don't modify the values associated to inode prealloc space except |
| 78 | * pa_free. |
| 79 | * |
| 80 | * If we are not able to find blocks in the inode prealloc space and if we |
| 81 | * have the group allocation flag set then we look at the locality group |
| 82 | * prealloc space. These are per CPU prealloc list repreasented as |
| 83 | * |
| 84 | * ext4_sb_info.s_locality_groups[smp_processor_id()] |
| 85 | * |
| 86 | * The reason for having a per cpu locality group is to reduce the contention |
| 87 | * between CPUs. It is possible to get scheduled at this point. |
| 88 | * |
| 89 | * The locality group prealloc space is used looking at whether we have |
| 90 | * enough free space (pa_free) withing the prealloc space. |
| 91 | * |
| 92 | * If we can't allocate blocks via inode prealloc or/and locality group |
| 93 | * prealloc then we look at the buddy cache. The buddy cache is represented |
| 94 | * by ext4_sb_info.s_buddy_cache (struct inode) whose file offset gets |
| 95 | * mapped to the buddy and bitmap information regarding different |
| 96 | * groups. The buddy information is attached to buddy cache inode so that |
| 97 | * we can access them through the page cache. The information regarding |
| 98 | * each group is loaded via ext4_mb_load_buddy. The information involve |
| 99 | * block bitmap and buddy information. The information are stored in the |
| 100 | * inode as: |
| 101 | * |
| 102 | * { page } |
| 103 | * [ group 0 buddy][ group 0 bitmap] [group 1][ group 1]... |
| 104 | * |
| 105 | * |
| 106 | * one block each for bitmap and buddy information. So for each group we |
| 107 | * take up 2 blocks. A page can contain blocks_per_page (PAGE_CACHE_SIZE / |
| 108 | * blocksize) blocks. So it can have information regarding groups_per_page |
| 109 | * which is blocks_per_page/2 |
| 110 | * |
| 111 | * The buddy cache inode is not stored on disk. The inode is thrown |
| 112 | * away when the filesystem is unmounted. |
| 113 | * |
| 114 | * We look for count number of blocks in the buddy cache. If we were able |
| 115 | * to locate that many free blocks we return with additional information |
| 116 | * regarding rest of the contiguous physical block available |
| 117 | * |
| 118 | * Before allocating blocks via buddy cache we normalize the request |
| 119 | * blocks. This ensure we ask for more blocks that we needed. The extra |
| 120 | * blocks that we get after allocation is added to the respective prealloc |
| 121 | * list. In case of inode preallocation we follow a list of heuristics |
| 122 | * based on file size. This can be found in ext4_mb_normalize_request. If |
| 123 | * we are doing a group prealloc we try to normalize the request to |
| 124 | * sbi->s_mb_group_prealloc. Default value of s_mb_group_prealloc is set to |
| 125 | * 512 blocks. This can be tuned via |
| 126 | * /proc/fs/ext4/<partition/group_prealloc. The value is represented in |
| 127 | * terms of number of blocks. If we have mounted the file system with -O |
| 128 | * stripe=<value> option the group prealloc request is normalized to the |
| 129 | * stripe value (sbi->s_stripe) |
| 130 | * |
| 131 | * The regular allocator(using the buddy cache) support few tunables. |
| 132 | * |
| 133 | * /proc/fs/ext4/<partition>/min_to_scan |
| 134 | * /proc/fs/ext4/<partition>/max_to_scan |
| 135 | * /proc/fs/ext4/<partition>/order2_req |
| 136 | * |
| 137 | * The regular allocator use buddy scan only if the request len is power of |
| 138 | * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The |
| 139 | * value of s_mb_order2_reqs can be tuned via |
| 140 | * /proc/fs/ext4/<partition>/order2_req. If the request len is equal to |
| 141 | * stripe size (sbi->s_stripe), we try to search for contigous block in |
| 142 | * stripe size. This should result in better allocation on RAID setup. If |
| 143 | * not we search in the specific group using bitmap for best extents. The |
| 144 | * tunable min_to_scan and max_to_scan controll the behaviour here. |
| 145 | * min_to_scan indicate how long the mballoc __must__ look for a best |
| 146 | * extent and max_to_scanindicate how long the mballoc __can__ look for a |
| 147 | * best extent in the found extents. Searching for the blocks starts with |
| 148 | * the group specified as the goal value in allocation context via |
| 149 | * ac_g_ex. Each group is first checked based on the criteria whether it |
| 150 | * can used for allocation. ext4_mb_good_group explains how the groups are |
| 151 | * checked. |
| 152 | * |
| 153 | * Both the prealloc space are getting populated as above. So for the first |
| 154 | * request we will hit the buddy cache which will result in this prealloc |
| 155 | * space getting filled. The prealloc space is then later used for the |
| 156 | * subsequent request. |
| 157 | */ |
| 158 | |
| 159 | /* |
| 160 | * mballoc operates on the following data: |
| 161 | * - on-disk bitmap |
| 162 | * - in-core buddy (actually includes buddy and bitmap) |
| 163 | * - preallocation descriptors (PAs) |
| 164 | * |
| 165 | * there are two types of preallocations: |
| 166 | * - inode |
| 167 | * assiged to specific inode and can be used for this inode only. |
| 168 | * it describes part of inode's space preallocated to specific |
| 169 | * physical blocks. any block from that preallocated can be used |
| 170 | * independent. the descriptor just tracks number of blocks left |
| 171 | * unused. so, before taking some block from descriptor, one must |
| 172 | * make sure corresponded logical block isn't allocated yet. this |
| 173 | * also means that freeing any block within descriptor's range |
| 174 | * must discard all preallocated blocks. |
| 175 | * - locality group |
| 176 | * assigned to specific locality group which does not translate to |
| 177 | * permanent set of inodes: inode can join and leave group. space |
| 178 | * from this type of preallocation can be used for any inode. thus |
| 179 | * it's consumed from the beginning to the end. |
| 180 | * |
| 181 | * relation between them can be expressed as: |
| 182 | * in-core buddy = on-disk bitmap + preallocation descriptors |
| 183 | * |
| 184 | * this mean blocks mballoc considers used are: |
| 185 | * - allocated blocks (persistent) |
| 186 | * - preallocated blocks (non-persistent) |
| 187 | * |
| 188 | * consistency in mballoc world means that at any time a block is either |
| 189 | * free or used in ALL structures. notice: "any time" should not be read |
| 190 | * literally -- time is discrete and delimited by locks. |
| 191 | * |
| 192 | * to keep it simple, we don't use block numbers, instead we count number of |
| 193 | * blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA. |
| 194 | * |
| 195 | * all operations can be expressed as: |
| 196 | * - init buddy: buddy = on-disk + PAs |
| 197 | * - new PA: buddy += N; PA = N |
| 198 | * - use inode PA: on-disk += N; PA -= N |
| 199 | * - discard inode PA buddy -= on-disk - PA; PA = 0 |
| 200 | * - use locality group PA on-disk += N; PA -= N |
| 201 | * - discard locality group PA buddy -= PA; PA = 0 |
| 202 | * note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap |
| 203 | * is used in real operation because we can't know actual used |
| 204 | * bits from PA, only from on-disk bitmap |
| 205 | * |
| 206 | * if we follow this strict logic, then all operations above should be atomic. |
| 207 | * given some of them can block, we'd have to use something like semaphores |
| 208 | * killing performance on high-end SMP hardware. let's try to relax it using |
| 209 | * the following knowledge: |
| 210 | * 1) if buddy is referenced, it's already initialized |
| 211 | * 2) while block is used in buddy and the buddy is referenced, |
| 212 | * nobody can re-allocate that block |
| 213 | * 3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has |
| 214 | * bit set and PA claims same block, it's OK. IOW, one can set bit in |
| 215 | * on-disk bitmap if buddy has same bit set or/and PA covers corresponded |
| 216 | * block |
| 217 | * |
| 218 | * so, now we're building a concurrency table: |
| 219 | * - init buddy vs. |
| 220 | * - new PA |
| 221 | * blocks for PA are allocated in the buddy, buddy must be referenced |
| 222 | * until PA is linked to allocation group to avoid concurrent buddy init |
| 223 | * - use inode PA |
| 224 | * we need to make sure that either on-disk bitmap or PA has uptodate data |
| 225 | * given (3) we care that PA-=N operation doesn't interfere with init |
| 226 | * - discard inode PA |
| 227 | * the simplest way would be to have buddy initialized by the discard |
| 228 | * - use locality group PA |
| 229 | * again PA-=N must be serialized with init |
| 230 | * - discard locality group PA |
| 231 | * the simplest way would be to have buddy initialized by the discard |
| 232 | * - new PA vs. |
| 233 | * - use inode PA |
| 234 | * i_data_sem serializes them |
| 235 | * - discard inode PA |
| 236 | * discard process must wait until PA isn't used by another process |
| 237 | * - use locality group PA |
| 238 | * some mutex should serialize them |
| 239 | * - discard locality group PA |
| 240 | * discard process must wait until PA isn't used by another process |
| 241 | * - use inode PA |
| 242 | * - use inode PA |
| 243 | * i_data_sem or another mutex should serializes them |
| 244 | * - discard inode PA |
| 245 | * discard process must wait until PA isn't used by another process |
| 246 | * - use locality group PA |
| 247 | * nothing wrong here -- they're different PAs covering different blocks |
| 248 | * - discard locality group PA |
| 249 | * discard process must wait until PA isn't used by another process |
| 250 | * |
| 251 | * now we're ready to make few consequences: |
| 252 | * - PA is referenced and while it is no discard is possible |
| 253 | * - PA is referenced until block isn't marked in on-disk bitmap |
| 254 | * - PA changes only after on-disk bitmap |
| 255 | * - discard must not compete with init. either init is done before |
| 256 | * any discard or they're serialized somehow |
| 257 | * - buddy init as sum of on-disk bitmap and PAs is done atomically |
| 258 | * |
| 259 | * a special case when we've used PA to emptiness. no need to modify buddy |
| 260 | * in this case, but we should care about concurrent init |
| 261 | * |
| 262 | */ |
| 263 | |
| 264 | /* |
| 265 | * Logic in few words: |
| 266 | * |
| 267 | * - allocation: |
| 268 | * load group |
| 269 | * find blocks |
| 270 | * mark bits in on-disk bitmap |
| 271 | * release group |
| 272 | * |
| 273 | * - use preallocation: |
| 274 | * find proper PA (per-inode or group) |
| 275 | * load group |
| 276 | * mark bits in on-disk bitmap |
| 277 | * release group |
| 278 | * release PA |
| 279 | * |
| 280 | * - free: |
| 281 | * load group |
| 282 | * mark bits in on-disk bitmap |
| 283 | * release group |
| 284 | * |
| 285 | * - discard preallocations in group: |
| 286 | * mark PAs deleted |
| 287 | * move them onto local list |
| 288 | * load on-disk bitmap |
| 289 | * load group |
| 290 | * remove PA from object (inode or locality group) |
| 291 | * mark free blocks in-core |
| 292 | * |
| 293 | * - discard inode's preallocations: |
| 294 | */ |
| 295 | |
| 296 | /* |
| 297 | * Locking rules |
| 298 | * |
| 299 | * Locks: |
| 300 | * - bitlock on a group (group) |
| 301 | * - object (inode/locality) (object) |
| 302 | * - per-pa lock (pa) |
| 303 | * |
| 304 | * Paths: |
| 305 | * - new pa |
| 306 | * object |
| 307 | * group |
| 308 | * |
| 309 | * - find and use pa: |
| 310 | * pa |
| 311 | * |
| 312 | * - release consumed pa: |
| 313 | * pa |
| 314 | * group |
| 315 | * object |
| 316 | * |
| 317 | * - generate in-core bitmap: |
| 318 | * group |
| 319 | * pa |
| 320 | * |
| 321 | * - discard all for given object (inode, locality group): |
| 322 | * object |
| 323 | * pa |
| 324 | * group |
| 325 | * |
| 326 | * - discard all for given group: |
| 327 | * group |
| 328 | * pa |
| 329 | * group |
| 330 | * object |
| 331 | * |
| 332 | */ |
| 333 | |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 334 | static inline void *mb_correct_addr_and_bit(int *bit, void *addr) |
| 335 | { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 336 | #if BITS_PER_LONG == 64 |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 337 | *bit += ((unsigned long) addr & 7UL) << 3; |
| 338 | addr = (void *) ((unsigned long) addr & ~7UL); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 339 | #elif BITS_PER_LONG == 32 |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 340 | *bit += ((unsigned long) addr & 3UL) << 3; |
| 341 | addr = (void *) ((unsigned long) addr & ~3UL); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 342 | #else |
| 343 | #error "how many bits you are?!" |
| 344 | #endif |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 345 | return addr; |
| 346 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 347 | |
| 348 | static inline int mb_test_bit(int bit, void *addr) |
| 349 | { |
| 350 | /* |
| 351 | * ext4_test_bit on architecture like powerpc |
| 352 | * needs unsigned long aligned address |
| 353 | */ |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 354 | addr = mb_correct_addr_and_bit(&bit, addr); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 355 | return ext4_test_bit(bit, addr); |
| 356 | } |
| 357 | |
| 358 | static inline void mb_set_bit(int bit, void *addr) |
| 359 | { |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 360 | addr = mb_correct_addr_and_bit(&bit, addr); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 361 | ext4_set_bit(bit, addr); |
| 362 | } |
| 363 | |
| 364 | static inline void mb_set_bit_atomic(spinlock_t *lock, int bit, void *addr) |
| 365 | { |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 366 | addr = mb_correct_addr_and_bit(&bit, addr); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 367 | ext4_set_bit_atomic(lock, bit, addr); |
| 368 | } |
| 369 | |
| 370 | static inline void mb_clear_bit(int bit, void *addr) |
| 371 | { |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 372 | addr = mb_correct_addr_and_bit(&bit, addr); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 373 | ext4_clear_bit(bit, addr); |
| 374 | } |
| 375 | |
| 376 | static inline void mb_clear_bit_atomic(spinlock_t *lock, int bit, void *addr) |
| 377 | { |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 378 | addr = mb_correct_addr_and_bit(&bit, addr); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 379 | ext4_clear_bit_atomic(lock, bit, addr); |
| 380 | } |
| 381 | |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 382 | static inline int mb_find_next_zero_bit(void *addr, int max, int start) |
| 383 | { |
| 384 | int fix = 0; |
| 385 | addr = mb_correct_addr_and_bit(&fix, addr); |
| 386 | max += fix; |
| 387 | start += fix; |
| 388 | |
| 389 | return ext4_find_next_zero_bit(addr, max, start) - fix; |
| 390 | } |
| 391 | |
| 392 | static inline int mb_find_next_bit(void *addr, int max, int start) |
| 393 | { |
| 394 | int fix = 0; |
| 395 | addr = mb_correct_addr_and_bit(&fix, addr); |
| 396 | max += fix; |
| 397 | start += fix; |
| 398 | |
| 399 | return ext4_find_next_bit(addr, max, start) - fix; |
| 400 | } |
| 401 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 402 | static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max) |
| 403 | { |
| 404 | char *bb; |
| 405 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 406 | BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b)); |
| 407 | BUG_ON(max == NULL); |
| 408 | |
| 409 | if (order > e4b->bd_blkbits + 1) { |
| 410 | *max = 0; |
| 411 | return NULL; |
| 412 | } |
| 413 | |
| 414 | /* at order 0 we see each particular block */ |
| 415 | *max = 1 << (e4b->bd_blkbits + 3); |
| 416 | if (order == 0) |
| 417 | return EXT4_MB_BITMAP(e4b); |
| 418 | |
| 419 | bb = EXT4_MB_BUDDY(e4b) + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order]; |
| 420 | *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order]; |
| 421 | |
| 422 | return bb; |
| 423 | } |
| 424 | |
| 425 | #ifdef DOUBLE_CHECK |
| 426 | static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b, |
| 427 | int first, int count) |
| 428 | { |
| 429 | int i; |
| 430 | struct super_block *sb = e4b->bd_sb; |
| 431 | |
| 432 | if (unlikely(e4b->bd_info->bb_bitmap == NULL)) |
| 433 | return; |
| 434 | BUG_ON(!ext4_is_group_locked(sb, e4b->bd_group)); |
| 435 | for (i = 0; i < count; i++) { |
| 436 | if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) { |
| 437 | ext4_fsblk_t blocknr; |
| 438 | blocknr = e4b->bd_group * EXT4_BLOCKS_PER_GROUP(sb); |
| 439 | blocknr += first + i; |
| 440 | blocknr += |
| 441 | le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block); |
| 442 | |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 443 | ext4_error(sb, __func__, "double-free of inode" |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 444 | " %lu's block %llu(bit %u in group %lu)\n", |
| 445 | inode ? inode->i_ino : 0, blocknr, |
| 446 | first + i, e4b->bd_group); |
| 447 | } |
| 448 | mb_clear_bit(first + i, e4b->bd_info->bb_bitmap); |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count) |
| 453 | { |
| 454 | int i; |
| 455 | |
| 456 | if (unlikely(e4b->bd_info->bb_bitmap == NULL)) |
| 457 | return; |
| 458 | BUG_ON(!ext4_is_group_locked(e4b->bd_sb, e4b->bd_group)); |
| 459 | for (i = 0; i < count; i++) { |
| 460 | BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap)); |
| 461 | mb_set_bit(first + i, e4b->bd_info->bb_bitmap); |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap) |
| 466 | { |
| 467 | if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) { |
| 468 | unsigned char *b1, *b2; |
| 469 | int i; |
| 470 | b1 = (unsigned char *) e4b->bd_info->bb_bitmap; |
| 471 | b2 = (unsigned char *) bitmap; |
| 472 | for (i = 0; i < e4b->bd_sb->s_blocksize; i++) { |
| 473 | if (b1[i] != b2[i]) { |
| 474 | printk("corruption in group %lu at byte %u(%u):" |
| 475 | " %x in copy != %x on disk/prealloc\n", |
| 476 | e4b->bd_group, i, i * 8, b1[i], b2[i]); |
| 477 | BUG(); |
| 478 | } |
| 479 | } |
| 480 | } |
| 481 | } |
| 482 | |
| 483 | #else |
| 484 | static inline void mb_free_blocks_double(struct inode *inode, |
| 485 | struct ext4_buddy *e4b, int first, int count) |
| 486 | { |
| 487 | return; |
| 488 | } |
| 489 | static inline void mb_mark_used_double(struct ext4_buddy *e4b, |
| 490 | int first, int count) |
| 491 | { |
| 492 | return; |
| 493 | } |
| 494 | static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap) |
| 495 | { |
| 496 | return; |
| 497 | } |
| 498 | #endif |
| 499 | |
| 500 | #ifdef AGGRESSIVE_CHECK |
| 501 | |
| 502 | #define MB_CHECK_ASSERT(assert) \ |
| 503 | do { \ |
| 504 | if (!(assert)) { \ |
| 505 | printk(KERN_EMERG \ |
| 506 | "Assertion failure in %s() at %s:%d: \"%s\"\n", \ |
| 507 | function, file, line, # assert); \ |
| 508 | BUG(); \ |
| 509 | } \ |
| 510 | } while (0) |
| 511 | |
| 512 | static int __mb_check_buddy(struct ext4_buddy *e4b, char *file, |
| 513 | const char *function, int line) |
| 514 | { |
| 515 | struct super_block *sb = e4b->bd_sb; |
| 516 | int order = e4b->bd_blkbits + 1; |
| 517 | int max; |
| 518 | int max2; |
| 519 | int i; |
| 520 | int j; |
| 521 | int k; |
| 522 | int count; |
| 523 | struct ext4_group_info *grp; |
| 524 | int fragments = 0; |
| 525 | int fstart; |
| 526 | struct list_head *cur; |
| 527 | void *buddy; |
| 528 | void *buddy2; |
| 529 | |
| 530 | if (!test_opt(sb, MBALLOC)) |
| 531 | return 0; |
| 532 | |
| 533 | { |
| 534 | static int mb_check_counter; |
| 535 | if (mb_check_counter++ % 100 != 0) |
| 536 | return 0; |
| 537 | } |
| 538 | |
| 539 | while (order > 1) { |
| 540 | buddy = mb_find_buddy(e4b, order, &max); |
| 541 | MB_CHECK_ASSERT(buddy); |
| 542 | buddy2 = mb_find_buddy(e4b, order - 1, &max2); |
| 543 | MB_CHECK_ASSERT(buddy2); |
| 544 | MB_CHECK_ASSERT(buddy != buddy2); |
| 545 | MB_CHECK_ASSERT(max * 2 == max2); |
| 546 | |
| 547 | count = 0; |
| 548 | for (i = 0; i < max; i++) { |
| 549 | |
| 550 | if (mb_test_bit(i, buddy)) { |
| 551 | /* only single bit in buddy2 may be 1 */ |
| 552 | if (!mb_test_bit(i << 1, buddy2)) { |
| 553 | MB_CHECK_ASSERT( |
| 554 | mb_test_bit((i<<1)+1, buddy2)); |
| 555 | } else if (!mb_test_bit((i << 1) + 1, buddy2)) { |
| 556 | MB_CHECK_ASSERT( |
| 557 | mb_test_bit(i << 1, buddy2)); |
| 558 | } |
| 559 | continue; |
| 560 | } |
| 561 | |
| 562 | /* both bits in buddy2 must be 0 */ |
| 563 | MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2)); |
| 564 | MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2)); |
| 565 | |
| 566 | for (j = 0; j < (1 << order); j++) { |
| 567 | k = (i * (1 << order)) + j; |
| 568 | MB_CHECK_ASSERT( |
| 569 | !mb_test_bit(k, EXT4_MB_BITMAP(e4b))); |
| 570 | } |
| 571 | count++; |
| 572 | } |
| 573 | MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count); |
| 574 | order--; |
| 575 | } |
| 576 | |
| 577 | fstart = -1; |
| 578 | buddy = mb_find_buddy(e4b, 0, &max); |
| 579 | for (i = 0; i < max; i++) { |
| 580 | if (!mb_test_bit(i, buddy)) { |
| 581 | MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free); |
| 582 | if (fstart == -1) { |
| 583 | fragments++; |
| 584 | fstart = i; |
| 585 | } |
| 586 | continue; |
| 587 | } |
| 588 | fstart = -1; |
| 589 | /* check used bits only */ |
| 590 | for (j = 0; j < e4b->bd_blkbits + 1; j++) { |
| 591 | buddy2 = mb_find_buddy(e4b, j, &max2); |
| 592 | k = i >> j; |
| 593 | MB_CHECK_ASSERT(k < max2); |
| 594 | MB_CHECK_ASSERT(mb_test_bit(k, buddy2)); |
| 595 | } |
| 596 | } |
| 597 | MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info)); |
| 598 | MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments); |
| 599 | |
| 600 | grp = ext4_get_group_info(sb, e4b->bd_group); |
| 601 | buddy = mb_find_buddy(e4b, 0, &max); |
| 602 | list_for_each(cur, &grp->bb_prealloc_list) { |
| 603 | ext4_group_t groupnr; |
| 604 | struct ext4_prealloc_space *pa; |
Solofo Ramangalahy | 60bd63d | 2008-04-29 21:59:59 -0400 | [diff] [blame] | 605 | pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list); |
| 606 | ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 607 | MB_CHECK_ASSERT(groupnr == e4b->bd_group); |
Solofo Ramangalahy | 60bd63d | 2008-04-29 21:59:59 -0400 | [diff] [blame] | 608 | for (i = 0; i < pa->pa_len; i++) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 609 | MB_CHECK_ASSERT(mb_test_bit(k + i, buddy)); |
| 610 | } |
| 611 | return 0; |
| 612 | } |
| 613 | #undef MB_CHECK_ASSERT |
| 614 | #define mb_check_buddy(e4b) __mb_check_buddy(e4b, \ |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 615 | __FILE__, __func__, __LINE__) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 616 | #else |
| 617 | #define mb_check_buddy(e4b) |
| 618 | #endif |
| 619 | |
| 620 | /* FIXME!! need more doc */ |
| 621 | static void ext4_mb_mark_free_simple(struct super_block *sb, |
| 622 | void *buddy, unsigned first, int len, |
| 623 | struct ext4_group_info *grp) |
| 624 | { |
| 625 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 626 | unsigned short min; |
| 627 | unsigned short max; |
| 628 | unsigned short chunk; |
| 629 | unsigned short border; |
| 630 | |
Valerie Clement | b73fce6 | 2008-02-15 13:48:51 -0500 | [diff] [blame] | 631 | BUG_ON(len > EXT4_BLOCKS_PER_GROUP(sb)); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 632 | |
| 633 | border = 2 << sb->s_blocksize_bits; |
| 634 | |
| 635 | while (len > 0) { |
| 636 | /* find how many blocks can be covered since this position */ |
| 637 | max = ffs(first | border) - 1; |
| 638 | |
| 639 | /* find how many blocks of power 2 we need to mark */ |
| 640 | min = fls(len) - 1; |
| 641 | |
| 642 | if (max < min) |
| 643 | min = max; |
| 644 | chunk = 1 << min; |
| 645 | |
| 646 | /* mark multiblock chunks only */ |
| 647 | grp->bb_counters[min]++; |
| 648 | if (min > 0) |
| 649 | mb_clear_bit(first >> min, |
| 650 | buddy + sbi->s_mb_offsets[min]); |
| 651 | |
| 652 | len -= chunk; |
| 653 | first += chunk; |
| 654 | } |
| 655 | } |
| 656 | |
| 657 | static void ext4_mb_generate_buddy(struct super_block *sb, |
| 658 | void *buddy, void *bitmap, ext4_group_t group) |
| 659 | { |
| 660 | struct ext4_group_info *grp = ext4_get_group_info(sb, group); |
| 661 | unsigned short max = EXT4_BLOCKS_PER_GROUP(sb); |
| 662 | unsigned short i = 0; |
| 663 | unsigned short first; |
| 664 | unsigned short len; |
| 665 | unsigned free = 0; |
| 666 | unsigned fragments = 0; |
| 667 | unsigned long long period = get_cycles(); |
| 668 | |
| 669 | /* initialize buddy from bitmap which is aggregation |
| 670 | * of on-disk bitmap and preallocations */ |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 671 | i = mb_find_next_zero_bit(bitmap, max, 0); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 672 | grp->bb_first_free = i; |
| 673 | while (i < max) { |
| 674 | fragments++; |
| 675 | first = i; |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 676 | i = mb_find_next_bit(bitmap, max, i); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 677 | len = i - first; |
| 678 | free += len; |
| 679 | if (len > 1) |
| 680 | ext4_mb_mark_free_simple(sb, buddy, first, len, grp); |
| 681 | else |
| 682 | grp->bb_counters[0]++; |
| 683 | if (i < max) |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 684 | i = mb_find_next_zero_bit(bitmap, max, i); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 685 | } |
| 686 | grp->bb_fragments = fragments; |
| 687 | |
| 688 | if (free != grp->bb_free) { |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 689 | ext4_error(sb, __func__, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 690 | "EXT4-fs: group %lu: %u blocks in bitmap, %u in gd\n", |
| 691 | group, free, grp->bb_free); |
Aneesh Kumar K.V | e56eb65 | 2008-02-15 13:48:21 -0500 | [diff] [blame] | 692 | /* |
| 693 | * If we intent to continue, we consider group descritor |
| 694 | * corrupt and update bb_free using bitmap value |
| 695 | */ |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 696 | grp->bb_free = free; |
| 697 | } |
| 698 | |
| 699 | clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state)); |
| 700 | |
| 701 | period = get_cycles() - period; |
| 702 | spin_lock(&EXT4_SB(sb)->s_bal_lock); |
| 703 | EXT4_SB(sb)->s_mb_buddies_generated++; |
| 704 | EXT4_SB(sb)->s_mb_generation_time += period; |
| 705 | spin_unlock(&EXT4_SB(sb)->s_bal_lock); |
| 706 | } |
| 707 | |
| 708 | /* The buddy information is attached the buddy cache inode |
| 709 | * for convenience. The information regarding each group |
| 710 | * is loaded via ext4_mb_load_buddy. The information involve |
| 711 | * block bitmap and buddy information. The information are |
| 712 | * stored in the inode as |
| 713 | * |
| 714 | * { page } |
| 715 | * [ group 0 buddy][ group 0 bitmap] [group 1][ group 1]... |
| 716 | * |
| 717 | * |
| 718 | * one block each for bitmap and buddy information. |
| 719 | * So for each group we take up 2 blocks. A page can |
| 720 | * contain blocks_per_page (PAGE_CACHE_SIZE / blocksize) blocks. |
| 721 | * So it can have information regarding groups_per_page which |
| 722 | * is blocks_per_page/2 |
| 723 | */ |
| 724 | |
| 725 | static int ext4_mb_init_cache(struct page *page, char *incore) |
| 726 | { |
| 727 | int blocksize; |
| 728 | int blocks_per_page; |
| 729 | int groups_per_page; |
| 730 | int err = 0; |
| 731 | int i; |
| 732 | ext4_group_t first_group; |
| 733 | int first_block; |
| 734 | struct super_block *sb; |
| 735 | struct buffer_head *bhs; |
| 736 | struct buffer_head **bh; |
| 737 | struct inode *inode; |
| 738 | char *data; |
| 739 | char *bitmap; |
| 740 | |
| 741 | mb_debug("init page %lu\n", page->index); |
| 742 | |
| 743 | inode = page->mapping->host; |
| 744 | sb = inode->i_sb; |
| 745 | blocksize = 1 << inode->i_blkbits; |
| 746 | blocks_per_page = PAGE_CACHE_SIZE / blocksize; |
| 747 | |
| 748 | groups_per_page = blocks_per_page >> 1; |
| 749 | if (groups_per_page == 0) |
| 750 | groups_per_page = 1; |
| 751 | |
| 752 | /* allocate buffer_heads to read bitmaps */ |
| 753 | if (groups_per_page > 1) { |
| 754 | err = -ENOMEM; |
| 755 | i = sizeof(struct buffer_head *) * groups_per_page; |
| 756 | bh = kzalloc(i, GFP_NOFS); |
| 757 | if (bh == NULL) |
| 758 | goto out; |
| 759 | } else |
| 760 | bh = &bhs; |
| 761 | |
| 762 | first_group = page->index * blocks_per_page / 2; |
| 763 | |
| 764 | /* read all groups the page covers into the cache */ |
| 765 | for (i = 0; i < groups_per_page; i++) { |
| 766 | struct ext4_group_desc *desc; |
| 767 | |
| 768 | if (first_group + i >= EXT4_SB(sb)->s_groups_count) |
| 769 | break; |
| 770 | |
| 771 | err = -EIO; |
| 772 | desc = ext4_get_group_desc(sb, first_group + i, NULL); |
| 773 | if (desc == NULL) |
| 774 | goto out; |
| 775 | |
| 776 | err = -ENOMEM; |
| 777 | bh[i] = sb_getblk(sb, ext4_block_bitmap(sb, desc)); |
| 778 | if (bh[i] == NULL) |
| 779 | goto out; |
| 780 | |
| 781 | if (bh_uptodate_or_lock(bh[i])) |
| 782 | continue; |
| 783 | |
| 784 | if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) { |
| 785 | ext4_init_block_bitmap(sb, bh[i], |
| 786 | first_group + i, desc); |
| 787 | set_buffer_uptodate(bh[i]); |
| 788 | unlock_buffer(bh[i]); |
| 789 | continue; |
| 790 | } |
| 791 | get_bh(bh[i]); |
| 792 | bh[i]->b_end_io = end_buffer_read_sync; |
| 793 | submit_bh(READ, bh[i]); |
| 794 | mb_debug("read bitmap for group %lu\n", first_group + i); |
| 795 | } |
| 796 | |
| 797 | /* wait for I/O completion */ |
| 798 | for (i = 0; i < groups_per_page && bh[i]; i++) |
| 799 | wait_on_buffer(bh[i]); |
| 800 | |
| 801 | err = -EIO; |
| 802 | for (i = 0; i < groups_per_page && bh[i]; i++) |
| 803 | if (!buffer_uptodate(bh[i])) |
| 804 | goto out; |
| 805 | |
| 806 | first_block = page->index * blocks_per_page; |
| 807 | for (i = 0; i < blocks_per_page; i++) { |
| 808 | int group; |
| 809 | struct ext4_group_info *grinfo; |
| 810 | |
| 811 | group = (first_block + i) >> 1; |
| 812 | if (group >= EXT4_SB(sb)->s_groups_count) |
| 813 | break; |
| 814 | |
| 815 | /* |
| 816 | * data carry information regarding this |
| 817 | * particular group in the format specified |
| 818 | * above |
| 819 | * |
| 820 | */ |
| 821 | data = page_address(page) + (i * blocksize); |
| 822 | bitmap = bh[group - first_group]->b_data; |
| 823 | |
| 824 | /* |
| 825 | * We place the buddy block and bitmap block |
| 826 | * close together |
| 827 | */ |
| 828 | if ((first_block + i) & 1) { |
| 829 | /* this is block of buddy */ |
| 830 | BUG_ON(incore == NULL); |
| 831 | mb_debug("put buddy for group %u in page %lu/%x\n", |
| 832 | group, page->index, i * blocksize); |
| 833 | memset(data, 0xff, blocksize); |
| 834 | grinfo = ext4_get_group_info(sb, group); |
| 835 | grinfo->bb_fragments = 0; |
| 836 | memset(grinfo->bb_counters, 0, |
| 837 | sizeof(unsigned short)*(sb->s_blocksize_bits+2)); |
| 838 | /* |
| 839 | * incore got set to the group block bitmap below |
| 840 | */ |
| 841 | ext4_mb_generate_buddy(sb, data, incore, group); |
| 842 | incore = NULL; |
| 843 | } else { |
| 844 | /* this is block of bitmap */ |
| 845 | BUG_ON(incore != NULL); |
| 846 | mb_debug("put bitmap for group %u in page %lu/%x\n", |
| 847 | group, page->index, i * blocksize); |
| 848 | |
| 849 | /* see comments in ext4_mb_put_pa() */ |
| 850 | ext4_lock_group(sb, group); |
| 851 | memcpy(data, bitmap, blocksize); |
| 852 | |
| 853 | /* mark all preallocated blks used in in-core bitmap */ |
| 854 | ext4_mb_generate_from_pa(sb, data, group); |
| 855 | ext4_unlock_group(sb, group); |
| 856 | |
| 857 | /* set incore so that the buddy information can be |
| 858 | * generated using this |
| 859 | */ |
| 860 | incore = data; |
| 861 | } |
| 862 | } |
| 863 | SetPageUptodate(page); |
| 864 | |
| 865 | out: |
| 866 | if (bh) { |
| 867 | for (i = 0; i < groups_per_page && bh[i]; i++) |
| 868 | brelse(bh[i]); |
| 869 | if (bh != &bhs) |
| 870 | kfree(bh); |
| 871 | } |
| 872 | return err; |
| 873 | } |
| 874 | |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 875 | static noinline_for_stack int |
| 876 | ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group, |
| 877 | struct ext4_buddy *e4b) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 878 | { |
| 879 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 880 | struct inode *inode = sbi->s_buddy_cache; |
| 881 | int blocks_per_page; |
| 882 | int block; |
| 883 | int pnum; |
| 884 | int poff; |
| 885 | struct page *page; |
| 886 | |
| 887 | mb_debug("load group %lu\n", group); |
| 888 | |
| 889 | blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize; |
| 890 | |
| 891 | e4b->bd_blkbits = sb->s_blocksize_bits; |
| 892 | e4b->bd_info = ext4_get_group_info(sb, group); |
| 893 | e4b->bd_sb = sb; |
| 894 | e4b->bd_group = group; |
| 895 | e4b->bd_buddy_page = NULL; |
| 896 | e4b->bd_bitmap_page = NULL; |
| 897 | |
| 898 | /* |
| 899 | * the buddy cache inode stores the block bitmap |
| 900 | * and buddy information in consecutive blocks. |
| 901 | * So for each group we need two blocks. |
| 902 | */ |
| 903 | block = group * 2; |
| 904 | pnum = block / blocks_per_page; |
| 905 | poff = block % blocks_per_page; |
| 906 | |
| 907 | /* we could use find_or_create_page(), but it locks page |
| 908 | * what we'd like to avoid in fast path ... */ |
| 909 | page = find_get_page(inode->i_mapping, pnum); |
| 910 | if (page == NULL || !PageUptodate(page)) { |
| 911 | if (page) |
| 912 | page_cache_release(page); |
| 913 | page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS); |
| 914 | if (page) { |
| 915 | BUG_ON(page->mapping != inode->i_mapping); |
| 916 | if (!PageUptodate(page)) { |
| 917 | ext4_mb_init_cache(page, NULL); |
| 918 | mb_cmp_bitmaps(e4b, page_address(page) + |
| 919 | (poff * sb->s_blocksize)); |
| 920 | } |
| 921 | unlock_page(page); |
| 922 | } |
| 923 | } |
| 924 | if (page == NULL || !PageUptodate(page)) |
| 925 | goto err; |
| 926 | e4b->bd_bitmap_page = page; |
| 927 | e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize); |
| 928 | mark_page_accessed(page); |
| 929 | |
| 930 | block++; |
| 931 | pnum = block / blocks_per_page; |
| 932 | poff = block % blocks_per_page; |
| 933 | |
| 934 | page = find_get_page(inode->i_mapping, pnum); |
| 935 | if (page == NULL || !PageUptodate(page)) { |
| 936 | if (page) |
| 937 | page_cache_release(page); |
| 938 | page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS); |
| 939 | if (page) { |
| 940 | BUG_ON(page->mapping != inode->i_mapping); |
| 941 | if (!PageUptodate(page)) |
| 942 | ext4_mb_init_cache(page, e4b->bd_bitmap); |
| 943 | |
| 944 | unlock_page(page); |
| 945 | } |
| 946 | } |
| 947 | if (page == NULL || !PageUptodate(page)) |
| 948 | goto err; |
| 949 | e4b->bd_buddy_page = page; |
| 950 | e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize); |
| 951 | mark_page_accessed(page); |
| 952 | |
| 953 | BUG_ON(e4b->bd_bitmap_page == NULL); |
| 954 | BUG_ON(e4b->bd_buddy_page == NULL); |
| 955 | |
| 956 | return 0; |
| 957 | |
| 958 | err: |
| 959 | if (e4b->bd_bitmap_page) |
| 960 | page_cache_release(e4b->bd_bitmap_page); |
| 961 | if (e4b->bd_buddy_page) |
| 962 | page_cache_release(e4b->bd_buddy_page); |
| 963 | e4b->bd_buddy = NULL; |
| 964 | e4b->bd_bitmap = NULL; |
| 965 | return -EIO; |
| 966 | } |
| 967 | |
| 968 | static void ext4_mb_release_desc(struct ext4_buddy *e4b) |
| 969 | { |
| 970 | if (e4b->bd_bitmap_page) |
| 971 | page_cache_release(e4b->bd_bitmap_page); |
| 972 | if (e4b->bd_buddy_page) |
| 973 | page_cache_release(e4b->bd_buddy_page); |
| 974 | } |
| 975 | |
| 976 | |
| 977 | static int mb_find_order_for_block(struct ext4_buddy *e4b, int block) |
| 978 | { |
| 979 | int order = 1; |
| 980 | void *bb; |
| 981 | |
| 982 | BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b)); |
| 983 | BUG_ON(block >= (1 << (e4b->bd_blkbits + 3))); |
| 984 | |
| 985 | bb = EXT4_MB_BUDDY(e4b); |
| 986 | while (order <= e4b->bd_blkbits + 1) { |
| 987 | block = block >> 1; |
| 988 | if (!mb_test_bit(block, bb)) { |
| 989 | /* this block is part of buddy of order 'order' */ |
| 990 | return order; |
| 991 | } |
| 992 | bb += 1 << (e4b->bd_blkbits - order); |
| 993 | order++; |
| 994 | } |
| 995 | return 0; |
| 996 | } |
| 997 | |
| 998 | static void mb_clear_bits(spinlock_t *lock, void *bm, int cur, int len) |
| 999 | { |
| 1000 | __u32 *addr; |
| 1001 | |
| 1002 | len = cur + len; |
| 1003 | while (cur < len) { |
| 1004 | if ((cur & 31) == 0 && (len - cur) >= 32) { |
| 1005 | /* fast path: clear whole word at once */ |
| 1006 | addr = bm + (cur >> 3); |
| 1007 | *addr = 0; |
| 1008 | cur += 32; |
| 1009 | continue; |
| 1010 | } |
| 1011 | mb_clear_bit_atomic(lock, cur, bm); |
| 1012 | cur++; |
| 1013 | } |
| 1014 | } |
| 1015 | |
| 1016 | static void mb_set_bits(spinlock_t *lock, void *bm, int cur, int len) |
| 1017 | { |
| 1018 | __u32 *addr; |
| 1019 | |
| 1020 | len = cur + len; |
| 1021 | while (cur < len) { |
| 1022 | if ((cur & 31) == 0 && (len - cur) >= 32) { |
| 1023 | /* fast path: set whole word at once */ |
| 1024 | addr = bm + (cur >> 3); |
| 1025 | *addr = 0xffffffff; |
| 1026 | cur += 32; |
| 1027 | continue; |
| 1028 | } |
| 1029 | mb_set_bit_atomic(lock, cur, bm); |
| 1030 | cur++; |
| 1031 | } |
| 1032 | } |
| 1033 | |
| 1034 | static int mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b, |
| 1035 | int first, int count) |
| 1036 | { |
| 1037 | int block = 0; |
| 1038 | int max = 0; |
| 1039 | int order; |
| 1040 | void *buddy; |
| 1041 | void *buddy2; |
| 1042 | struct super_block *sb = e4b->bd_sb; |
| 1043 | |
| 1044 | BUG_ON(first + count > (sb->s_blocksize << 3)); |
| 1045 | BUG_ON(!ext4_is_group_locked(sb, e4b->bd_group)); |
| 1046 | mb_check_buddy(e4b); |
| 1047 | mb_free_blocks_double(inode, e4b, first, count); |
| 1048 | |
| 1049 | e4b->bd_info->bb_free += count; |
| 1050 | if (first < e4b->bd_info->bb_first_free) |
| 1051 | e4b->bd_info->bb_first_free = first; |
| 1052 | |
| 1053 | /* let's maintain fragments counter */ |
| 1054 | if (first != 0) |
| 1055 | block = !mb_test_bit(first - 1, EXT4_MB_BITMAP(e4b)); |
| 1056 | if (first + count < EXT4_SB(sb)->s_mb_maxs[0]) |
| 1057 | max = !mb_test_bit(first + count, EXT4_MB_BITMAP(e4b)); |
| 1058 | if (block && max) |
| 1059 | e4b->bd_info->bb_fragments--; |
| 1060 | else if (!block && !max) |
| 1061 | e4b->bd_info->bb_fragments++; |
| 1062 | |
| 1063 | /* let's maintain buddy itself */ |
| 1064 | while (count-- > 0) { |
| 1065 | block = first++; |
| 1066 | order = 0; |
| 1067 | |
| 1068 | if (!mb_test_bit(block, EXT4_MB_BITMAP(e4b))) { |
| 1069 | ext4_fsblk_t blocknr; |
| 1070 | blocknr = e4b->bd_group * EXT4_BLOCKS_PER_GROUP(sb); |
| 1071 | blocknr += block; |
| 1072 | blocknr += |
| 1073 | le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block); |
| 1074 | |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1075 | ext4_error(sb, __func__, "double-free of inode" |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 1076 | " %lu's block %llu(bit %u in group %lu)\n", |
| 1077 | inode ? inode->i_ino : 0, blocknr, block, |
| 1078 | e4b->bd_group); |
| 1079 | } |
| 1080 | mb_clear_bit(block, EXT4_MB_BITMAP(e4b)); |
| 1081 | e4b->bd_info->bb_counters[order]++; |
| 1082 | |
| 1083 | /* start of the buddy */ |
| 1084 | buddy = mb_find_buddy(e4b, order, &max); |
| 1085 | |
| 1086 | do { |
| 1087 | block &= ~1UL; |
| 1088 | if (mb_test_bit(block, buddy) || |
| 1089 | mb_test_bit(block + 1, buddy)) |
| 1090 | break; |
| 1091 | |
| 1092 | /* both the buddies are free, try to coalesce them */ |
| 1093 | buddy2 = mb_find_buddy(e4b, order + 1, &max); |
| 1094 | |
| 1095 | if (!buddy2) |
| 1096 | break; |
| 1097 | |
| 1098 | if (order > 0) { |
| 1099 | /* for special purposes, we don't set |
| 1100 | * free bits in bitmap */ |
| 1101 | mb_set_bit(block, buddy); |
| 1102 | mb_set_bit(block + 1, buddy); |
| 1103 | } |
| 1104 | e4b->bd_info->bb_counters[order]--; |
| 1105 | e4b->bd_info->bb_counters[order]--; |
| 1106 | |
| 1107 | block = block >> 1; |
| 1108 | order++; |
| 1109 | e4b->bd_info->bb_counters[order]++; |
| 1110 | |
| 1111 | mb_clear_bit(block, buddy2); |
| 1112 | buddy = buddy2; |
| 1113 | } while (1); |
| 1114 | } |
| 1115 | mb_check_buddy(e4b); |
| 1116 | |
| 1117 | return 0; |
| 1118 | } |
| 1119 | |
| 1120 | static int mb_find_extent(struct ext4_buddy *e4b, int order, int block, |
| 1121 | int needed, struct ext4_free_extent *ex) |
| 1122 | { |
| 1123 | int next = block; |
| 1124 | int max; |
| 1125 | int ord; |
| 1126 | void *buddy; |
| 1127 | |
| 1128 | BUG_ON(!ext4_is_group_locked(e4b->bd_sb, e4b->bd_group)); |
| 1129 | BUG_ON(ex == NULL); |
| 1130 | |
| 1131 | buddy = mb_find_buddy(e4b, order, &max); |
| 1132 | BUG_ON(buddy == NULL); |
| 1133 | BUG_ON(block >= max); |
| 1134 | if (mb_test_bit(block, buddy)) { |
| 1135 | ex->fe_len = 0; |
| 1136 | ex->fe_start = 0; |
| 1137 | ex->fe_group = 0; |
| 1138 | return 0; |
| 1139 | } |
| 1140 | |
| 1141 | /* FIXME dorp order completely ? */ |
| 1142 | if (likely(order == 0)) { |
| 1143 | /* find actual order */ |
| 1144 | order = mb_find_order_for_block(e4b, block); |
| 1145 | block = block >> order; |
| 1146 | } |
| 1147 | |
| 1148 | ex->fe_len = 1 << order; |
| 1149 | ex->fe_start = block << order; |
| 1150 | ex->fe_group = e4b->bd_group; |
| 1151 | |
| 1152 | /* calc difference from given start */ |
| 1153 | next = next - ex->fe_start; |
| 1154 | ex->fe_len -= next; |
| 1155 | ex->fe_start += next; |
| 1156 | |
| 1157 | while (needed > ex->fe_len && |
| 1158 | (buddy = mb_find_buddy(e4b, order, &max))) { |
| 1159 | |
| 1160 | if (block + 1 >= max) |
| 1161 | break; |
| 1162 | |
| 1163 | next = (block + 1) * (1 << order); |
| 1164 | if (mb_test_bit(next, EXT4_MB_BITMAP(e4b))) |
| 1165 | break; |
| 1166 | |
| 1167 | ord = mb_find_order_for_block(e4b, next); |
| 1168 | |
| 1169 | order = ord; |
| 1170 | block = next >> order; |
| 1171 | ex->fe_len += 1 << order; |
| 1172 | } |
| 1173 | |
| 1174 | BUG_ON(ex->fe_start + ex->fe_len > (1 << (e4b->bd_blkbits + 3))); |
| 1175 | return ex->fe_len; |
| 1176 | } |
| 1177 | |
| 1178 | static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex) |
| 1179 | { |
| 1180 | int ord; |
| 1181 | int mlen = 0; |
| 1182 | int max = 0; |
| 1183 | int cur; |
| 1184 | int start = ex->fe_start; |
| 1185 | int len = ex->fe_len; |
| 1186 | unsigned ret = 0; |
| 1187 | int len0 = len; |
| 1188 | void *buddy; |
| 1189 | |
| 1190 | BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3)); |
| 1191 | BUG_ON(e4b->bd_group != ex->fe_group); |
| 1192 | BUG_ON(!ext4_is_group_locked(e4b->bd_sb, e4b->bd_group)); |
| 1193 | mb_check_buddy(e4b); |
| 1194 | mb_mark_used_double(e4b, start, len); |
| 1195 | |
| 1196 | e4b->bd_info->bb_free -= len; |
| 1197 | if (e4b->bd_info->bb_first_free == start) |
| 1198 | e4b->bd_info->bb_first_free += len; |
| 1199 | |
| 1200 | /* let's maintain fragments counter */ |
| 1201 | if (start != 0) |
| 1202 | mlen = !mb_test_bit(start - 1, EXT4_MB_BITMAP(e4b)); |
| 1203 | if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0]) |
| 1204 | max = !mb_test_bit(start + len, EXT4_MB_BITMAP(e4b)); |
| 1205 | if (mlen && max) |
| 1206 | e4b->bd_info->bb_fragments++; |
| 1207 | else if (!mlen && !max) |
| 1208 | e4b->bd_info->bb_fragments--; |
| 1209 | |
| 1210 | /* let's maintain buddy itself */ |
| 1211 | while (len) { |
| 1212 | ord = mb_find_order_for_block(e4b, start); |
| 1213 | |
| 1214 | if (((start >> ord) << ord) == start && len >= (1 << ord)) { |
| 1215 | /* the whole chunk may be allocated at once! */ |
| 1216 | mlen = 1 << ord; |
| 1217 | buddy = mb_find_buddy(e4b, ord, &max); |
| 1218 | BUG_ON((start >> ord) >= max); |
| 1219 | mb_set_bit(start >> ord, buddy); |
| 1220 | e4b->bd_info->bb_counters[ord]--; |
| 1221 | start += mlen; |
| 1222 | len -= mlen; |
| 1223 | BUG_ON(len < 0); |
| 1224 | continue; |
| 1225 | } |
| 1226 | |
| 1227 | /* store for history */ |
| 1228 | if (ret == 0) |
| 1229 | ret = len | (ord << 16); |
| 1230 | |
| 1231 | /* we have to split large buddy */ |
| 1232 | BUG_ON(ord <= 0); |
| 1233 | buddy = mb_find_buddy(e4b, ord, &max); |
| 1234 | mb_set_bit(start >> ord, buddy); |
| 1235 | e4b->bd_info->bb_counters[ord]--; |
| 1236 | |
| 1237 | ord--; |
| 1238 | cur = (start >> ord) & ~1U; |
| 1239 | buddy = mb_find_buddy(e4b, ord, &max); |
| 1240 | mb_clear_bit(cur, buddy); |
| 1241 | mb_clear_bit(cur + 1, buddy); |
| 1242 | e4b->bd_info->bb_counters[ord]++; |
| 1243 | e4b->bd_info->bb_counters[ord]++; |
| 1244 | } |
| 1245 | |
| 1246 | mb_set_bits(sb_bgl_lock(EXT4_SB(e4b->bd_sb), ex->fe_group), |
| 1247 | EXT4_MB_BITMAP(e4b), ex->fe_start, len0); |
| 1248 | mb_check_buddy(e4b); |
| 1249 | |
| 1250 | return ret; |
| 1251 | } |
| 1252 | |
| 1253 | /* |
| 1254 | * Must be called under group lock! |
| 1255 | */ |
| 1256 | static void ext4_mb_use_best_found(struct ext4_allocation_context *ac, |
| 1257 | struct ext4_buddy *e4b) |
| 1258 | { |
| 1259 | struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); |
| 1260 | int ret; |
| 1261 | |
| 1262 | BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group); |
| 1263 | BUG_ON(ac->ac_status == AC_STATUS_FOUND); |
| 1264 | |
| 1265 | ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len); |
| 1266 | ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical; |
| 1267 | ret = mb_mark_used(e4b, &ac->ac_b_ex); |
| 1268 | |
| 1269 | /* preallocation can change ac_b_ex, thus we store actually |
| 1270 | * allocated blocks for history */ |
| 1271 | ac->ac_f_ex = ac->ac_b_ex; |
| 1272 | |
| 1273 | ac->ac_status = AC_STATUS_FOUND; |
| 1274 | ac->ac_tail = ret & 0xffff; |
| 1275 | ac->ac_buddy = ret >> 16; |
| 1276 | |
| 1277 | /* XXXXXXX: SUCH A HORRIBLE **CK */ |
| 1278 | /*FIXME!! Why ? */ |
| 1279 | ac->ac_bitmap_page = e4b->bd_bitmap_page; |
| 1280 | get_page(ac->ac_bitmap_page); |
| 1281 | ac->ac_buddy_page = e4b->bd_buddy_page; |
| 1282 | get_page(ac->ac_buddy_page); |
| 1283 | |
| 1284 | /* store last allocated for subsequent stream allocation */ |
| 1285 | if ((ac->ac_flags & EXT4_MB_HINT_DATA)) { |
| 1286 | spin_lock(&sbi->s_md_lock); |
| 1287 | sbi->s_mb_last_group = ac->ac_f_ex.fe_group; |
| 1288 | sbi->s_mb_last_start = ac->ac_f_ex.fe_start; |
| 1289 | spin_unlock(&sbi->s_md_lock); |
| 1290 | } |
| 1291 | } |
| 1292 | |
| 1293 | /* |
| 1294 | * regular allocator, for general purposes allocation |
| 1295 | */ |
| 1296 | |
| 1297 | static void ext4_mb_check_limits(struct ext4_allocation_context *ac, |
| 1298 | struct ext4_buddy *e4b, |
| 1299 | int finish_group) |
| 1300 | { |
| 1301 | struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); |
| 1302 | struct ext4_free_extent *bex = &ac->ac_b_ex; |
| 1303 | struct ext4_free_extent *gex = &ac->ac_g_ex; |
| 1304 | struct ext4_free_extent ex; |
| 1305 | int max; |
| 1306 | |
| 1307 | /* |
| 1308 | * We don't want to scan for a whole year |
| 1309 | */ |
| 1310 | if (ac->ac_found > sbi->s_mb_max_to_scan && |
| 1311 | !(ac->ac_flags & EXT4_MB_HINT_FIRST)) { |
| 1312 | ac->ac_status = AC_STATUS_BREAK; |
| 1313 | return; |
| 1314 | } |
| 1315 | |
| 1316 | /* |
| 1317 | * Haven't found good chunk so far, let's continue |
| 1318 | */ |
| 1319 | if (bex->fe_len < gex->fe_len) |
| 1320 | return; |
| 1321 | |
| 1322 | if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan) |
| 1323 | && bex->fe_group == e4b->bd_group) { |
| 1324 | /* recheck chunk's availability - we don't know |
| 1325 | * when it was found (within this lock-unlock |
| 1326 | * period or not) */ |
| 1327 | max = mb_find_extent(e4b, 0, bex->fe_start, gex->fe_len, &ex); |
| 1328 | if (max >= gex->fe_len) { |
| 1329 | ext4_mb_use_best_found(ac, e4b); |
| 1330 | return; |
| 1331 | } |
| 1332 | } |
| 1333 | } |
| 1334 | |
| 1335 | /* |
| 1336 | * The routine checks whether found extent is good enough. If it is, |
| 1337 | * then the extent gets marked used and flag is set to the context |
| 1338 | * to stop scanning. Otherwise, the extent is compared with the |
| 1339 | * previous found extent and if new one is better, then it's stored |
| 1340 | * in the context. Later, the best found extent will be used, if |
| 1341 | * mballoc can't find good enough extent. |
| 1342 | * |
| 1343 | * FIXME: real allocation policy is to be designed yet! |
| 1344 | */ |
| 1345 | static void ext4_mb_measure_extent(struct ext4_allocation_context *ac, |
| 1346 | struct ext4_free_extent *ex, |
| 1347 | struct ext4_buddy *e4b) |
| 1348 | { |
| 1349 | struct ext4_free_extent *bex = &ac->ac_b_ex; |
| 1350 | struct ext4_free_extent *gex = &ac->ac_g_ex; |
| 1351 | |
| 1352 | BUG_ON(ex->fe_len <= 0); |
| 1353 | BUG_ON(ex->fe_len >= EXT4_BLOCKS_PER_GROUP(ac->ac_sb)); |
| 1354 | BUG_ON(ex->fe_start >= EXT4_BLOCKS_PER_GROUP(ac->ac_sb)); |
| 1355 | BUG_ON(ac->ac_status != AC_STATUS_CONTINUE); |
| 1356 | |
| 1357 | ac->ac_found++; |
| 1358 | |
| 1359 | /* |
| 1360 | * The special case - take what you catch first |
| 1361 | */ |
| 1362 | if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) { |
| 1363 | *bex = *ex; |
| 1364 | ext4_mb_use_best_found(ac, e4b); |
| 1365 | return; |
| 1366 | } |
| 1367 | |
| 1368 | /* |
| 1369 | * Let's check whether the chuck is good enough |
| 1370 | */ |
| 1371 | if (ex->fe_len == gex->fe_len) { |
| 1372 | *bex = *ex; |
| 1373 | ext4_mb_use_best_found(ac, e4b); |
| 1374 | return; |
| 1375 | } |
| 1376 | |
| 1377 | /* |
| 1378 | * If this is first found extent, just store it in the context |
| 1379 | */ |
| 1380 | if (bex->fe_len == 0) { |
| 1381 | *bex = *ex; |
| 1382 | return; |
| 1383 | } |
| 1384 | |
| 1385 | /* |
| 1386 | * If new found extent is better, store it in the context |
| 1387 | */ |
| 1388 | if (bex->fe_len < gex->fe_len) { |
| 1389 | /* if the request isn't satisfied, any found extent |
| 1390 | * larger than previous best one is better */ |
| 1391 | if (ex->fe_len > bex->fe_len) |
| 1392 | *bex = *ex; |
| 1393 | } else if (ex->fe_len > gex->fe_len) { |
| 1394 | /* if the request is satisfied, then we try to find |
| 1395 | * an extent that still satisfy the request, but is |
| 1396 | * smaller than previous one */ |
| 1397 | if (ex->fe_len < bex->fe_len) |
| 1398 | *bex = *ex; |
| 1399 | } |
| 1400 | |
| 1401 | ext4_mb_check_limits(ac, e4b, 0); |
| 1402 | } |
| 1403 | |
| 1404 | static int ext4_mb_try_best_found(struct ext4_allocation_context *ac, |
| 1405 | struct ext4_buddy *e4b) |
| 1406 | { |
| 1407 | struct ext4_free_extent ex = ac->ac_b_ex; |
| 1408 | ext4_group_t group = ex.fe_group; |
| 1409 | int max; |
| 1410 | int err; |
| 1411 | |
| 1412 | BUG_ON(ex.fe_len <= 0); |
| 1413 | err = ext4_mb_load_buddy(ac->ac_sb, group, e4b); |
| 1414 | if (err) |
| 1415 | return err; |
| 1416 | |
| 1417 | ext4_lock_group(ac->ac_sb, group); |
| 1418 | max = mb_find_extent(e4b, 0, ex.fe_start, ex.fe_len, &ex); |
| 1419 | |
| 1420 | if (max > 0) { |
| 1421 | ac->ac_b_ex = ex; |
| 1422 | ext4_mb_use_best_found(ac, e4b); |
| 1423 | } |
| 1424 | |
| 1425 | ext4_unlock_group(ac->ac_sb, group); |
| 1426 | ext4_mb_release_desc(e4b); |
| 1427 | |
| 1428 | return 0; |
| 1429 | } |
| 1430 | |
| 1431 | static int ext4_mb_find_by_goal(struct ext4_allocation_context *ac, |
| 1432 | struct ext4_buddy *e4b) |
| 1433 | { |
| 1434 | ext4_group_t group = ac->ac_g_ex.fe_group; |
| 1435 | int max; |
| 1436 | int err; |
| 1437 | struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); |
| 1438 | struct ext4_super_block *es = sbi->s_es; |
| 1439 | struct ext4_free_extent ex; |
| 1440 | |
| 1441 | if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL)) |
| 1442 | return 0; |
| 1443 | |
| 1444 | err = ext4_mb_load_buddy(ac->ac_sb, group, e4b); |
| 1445 | if (err) |
| 1446 | return err; |
| 1447 | |
| 1448 | ext4_lock_group(ac->ac_sb, group); |
| 1449 | max = mb_find_extent(e4b, 0, ac->ac_g_ex.fe_start, |
| 1450 | ac->ac_g_ex.fe_len, &ex); |
| 1451 | |
| 1452 | if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) { |
| 1453 | ext4_fsblk_t start; |
| 1454 | |
| 1455 | start = (e4b->bd_group * EXT4_BLOCKS_PER_GROUP(ac->ac_sb)) + |
| 1456 | ex.fe_start + le32_to_cpu(es->s_first_data_block); |
| 1457 | /* use do_div to get remainder (would be 64-bit modulo) */ |
| 1458 | if (do_div(start, sbi->s_stripe) == 0) { |
| 1459 | ac->ac_found++; |
| 1460 | ac->ac_b_ex = ex; |
| 1461 | ext4_mb_use_best_found(ac, e4b); |
| 1462 | } |
| 1463 | } else if (max >= ac->ac_g_ex.fe_len) { |
| 1464 | BUG_ON(ex.fe_len <= 0); |
| 1465 | BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group); |
| 1466 | BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start); |
| 1467 | ac->ac_found++; |
| 1468 | ac->ac_b_ex = ex; |
| 1469 | ext4_mb_use_best_found(ac, e4b); |
| 1470 | } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) { |
| 1471 | /* Sometimes, caller may want to merge even small |
| 1472 | * number of blocks to an existing extent */ |
| 1473 | BUG_ON(ex.fe_len <= 0); |
| 1474 | BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group); |
| 1475 | BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start); |
| 1476 | ac->ac_found++; |
| 1477 | ac->ac_b_ex = ex; |
| 1478 | ext4_mb_use_best_found(ac, e4b); |
| 1479 | } |
| 1480 | ext4_unlock_group(ac->ac_sb, group); |
| 1481 | ext4_mb_release_desc(e4b); |
| 1482 | |
| 1483 | return 0; |
| 1484 | } |
| 1485 | |
| 1486 | /* |
| 1487 | * The routine scans buddy structures (not bitmap!) from given order |
| 1488 | * to max order and tries to find big enough chunk to satisfy the req |
| 1489 | */ |
| 1490 | static void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac, |
| 1491 | struct ext4_buddy *e4b) |
| 1492 | { |
| 1493 | struct super_block *sb = ac->ac_sb; |
| 1494 | struct ext4_group_info *grp = e4b->bd_info; |
| 1495 | void *buddy; |
| 1496 | int i; |
| 1497 | int k; |
| 1498 | int max; |
| 1499 | |
| 1500 | BUG_ON(ac->ac_2order <= 0); |
| 1501 | for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) { |
| 1502 | if (grp->bb_counters[i] == 0) |
| 1503 | continue; |
| 1504 | |
| 1505 | buddy = mb_find_buddy(e4b, i, &max); |
| 1506 | BUG_ON(buddy == NULL); |
| 1507 | |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 1508 | k = mb_find_next_zero_bit(buddy, max, 0); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 1509 | BUG_ON(k >= max); |
| 1510 | |
| 1511 | ac->ac_found++; |
| 1512 | |
| 1513 | ac->ac_b_ex.fe_len = 1 << i; |
| 1514 | ac->ac_b_ex.fe_start = k << i; |
| 1515 | ac->ac_b_ex.fe_group = e4b->bd_group; |
| 1516 | |
| 1517 | ext4_mb_use_best_found(ac, e4b); |
| 1518 | |
| 1519 | BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len); |
| 1520 | |
| 1521 | if (EXT4_SB(sb)->s_mb_stats) |
| 1522 | atomic_inc(&EXT4_SB(sb)->s_bal_2orders); |
| 1523 | |
| 1524 | break; |
| 1525 | } |
| 1526 | } |
| 1527 | |
| 1528 | /* |
| 1529 | * The routine scans the group and measures all found extents. |
| 1530 | * In order to optimize scanning, caller must pass number of |
| 1531 | * free blocks in the group, so the routine can know upper limit. |
| 1532 | */ |
| 1533 | static void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac, |
| 1534 | struct ext4_buddy *e4b) |
| 1535 | { |
| 1536 | struct super_block *sb = ac->ac_sb; |
| 1537 | void *bitmap = EXT4_MB_BITMAP(e4b); |
| 1538 | struct ext4_free_extent ex; |
| 1539 | int i; |
| 1540 | int free; |
| 1541 | |
| 1542 | free = e4b->bd_info->bb_free; |
| 1543 | BUG_ON(free <= 0); |
| 1544 | |
| 1545 | i = e4b->bd_info->bb_first_free; |
| 1546 | |
| 1547 | while (free && ac->ac_status == AC_STATUS_CONTINUE) { |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 1548 | i = mb_find_next_zero_bit(bitmap, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 1549 | EXT4_BLOCKS_PER_GROUP(sb), i); |
| 1550 | if (i >= EXT4_BLOCKS_PER_GROUP(sb)) { |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 1551 | /* |
Aneesh Kumar K.V | e56eb65 | 2008-02-15 13:48:21 -0500 | [diff] [blame] | 1552 | * IF we have corrupt bitmap, we won't find any |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 1553 | * free blocks even though group info says we |
| 1554 | * we have free blocks |
| 1555 | */ |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1556 | ext4_error(sb, __func__, "%d free blocks as per " |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 1557 | "group info. But bitmap says 0\n", |
| 1558 | free); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 1559 | break; |
| 1560 | } |
| 1561 | |
| 1562 | mb_find_extent(e4b, 0, i, ac->ac_g_ex.fe_len, &ex); |
| 1563 | BUG_ON(ex.fe_len <= 0); |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 1564 | if (free < ex.fe_len) { |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 1565 | ext4_error(sb, __func__, "%d free blocks as per " |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 1566 | "group info. But got %d blocks\n", |
| 1567 | free, ex.fe_len); |
Aneesh Kumar K.V | e56eb65 | 2008-02-15 13:48:21 -0500 | [diff] [blame] | 1568 | /* |
| 1569 | * The number of free blocks differs. This mostly |
| 1570 | * indicate that the bitmap is corrupt. So exit |
| 1571 | * without claiming the space. |
| 1572 | */ |
| 1573 | break; |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 1574 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 1575 | |
| 1576 | ext4_mb_measure_extent(ac, &ex, e4b); |
| 1577 | |
| 1578 | i += ex.fe_len; |
| 1579 | free -= ex.fe_len; |
| 1580 | } |
| 1581 | |
| 1582 | ext4_mb_check_limits(ac, e4b, 1); |
| 1583 | } |
| 1584 | |
| 1585 | /* |
| 1586 | * This is a special case for storages like raid5 |
| 1587 | * we try to find stripe-aligned chunks for stripe-size requests |
| 1588 | * XXX should do so at least for multiples of stripe size as well |
| 1589 | */ |
| 1590 | static void ext4_mb_scan_aligned(struct ext4_allocation_context *ac, |
| 1591 | struct ext4_buddy *e4b) |
| 1592 | { |
| 1593 | struct super_block *sb = ac->ac_sb; |
| 1594 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 1595 | void *bitmap = EXT4_MB_BITMAP(e4b); |
| 1596 | struct ext4_free_extent ex; |
| 1597 | ext4_fsblk_t first_group_block; |
| 1598 | ext4_fsblk_t a; |
| 1599 | ext4_grpblk_t i; |
| 1600 | int max; |
| 1601 | |
| 1602 | BUG_ON(sbi->s_stripe == 0); |
| 1603 | |
| 1604 | /* find first stripe-aligned block in group */ |
| 1605 | first_group_block = e4b->bd_group * EXT4_BLOCKS_PER_GROUP(sb) |
| 1606 | + le32_to_cpu(sbi->s_es->s_first_data_block); |
| 1607 | a = first_group_block + sbi->s_stripe - 1; |
| 1608 | do_div(a, sbi->s_stripe); |
| 1609 | i = (a * sbi->s_stripe) - first_group_block; |
| 1610 | |
| 1611 | while (i < EXT4_BLOCKS_PER_GROUP(sb)) { |
| 1612 | if (!mb_test_bit(i, bitmap)) { |
| 1613 | max = mb_find_extent(e4b, 0, i, sbi->s_stripe, &ex); |
| 1614 | if (max >= sbi->s_stripe) { |
| 1615 | ac->ac_found++; |
| 1616 | ac->ac_b_ex = ex; |
| 1617 | ext4_mb_use_best_found(ac, e4b); |
| 1618 | break; |
| 1619 | } |
| 1620 | } |
| 1621 | i += sbi->s_stripe; |
| 1622 | } |
| 1623 | } |
| 1624 | |
| 1625 | static int ext4_mb_good_group(struct ext4_allocation_context *ac, |
| 1626 | ext4_group_t group, int cr) |
| 1627 | { |
| 1628 | unsigned free, fragments; |
| 1629 | unsigned i, bits; |
| 1630 | struct ext4_group_desc *desc; |
| 1631 | struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group); |
| 1632 | |
| 1633 | BUG_ON(cr < 0 || cr >= 4); |
| 1634 | BUG_ON(EXT4_MB_GRP_NEED_INIT(grp)); |
| 1635 | |
| 1636 | free = grp->bb_free; |
| 1637 | fragments = grp->bb_fragments; |
| 1638 | if (free == 0) |
| 1639 | return 0; |
| 1640 | if (fragments == 0) |
| 1641 | return 0; |
| 1642 | |
| 1643 | switch (cr) { |
| 1644 | case 0: |
| 1645 | BUG_ON(ac->ac_2order == 0); |
| 1646 | /* If this group is uninitialized, skip it initially */ |
| 1647 | desc = ext4_get_group_desc(ac->ac_sb, group, NULL); |
| 1648 | if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) |
| 1649 | return 0; |
| 1650 | |
| 1651 | bits = ac->ac_sb->s_blocksize_bits + 1; |
| 1652 | for (i = ac->ac_2order; i <= bits; i++) |
| 1653 | if (grp->bb_counters[i] > 0) |
| 1654 | return 1; |
| 1655 | break; |
| 1656 | case 1: |
| 1657 | if ((free / fragments) >= ac->ac_g_ex.fe_len) |
| 1658 | return 1; |
| 1659 | break; |
| 1660 | case 2: |
| 1661 | if (free >= ac->ac_g_ex.fe_len) |
| 1662 | return 1; |
| 1663 | break; |
| 1664 | case 3: |
| 1665 | return 1; |
| 1666 | default: |
| 1667 | BUG(); |
| 1668 | } |
| 1669 | |
| 1670 | return 0; |
| 1671 | } |
| 1672 | |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 1673 | static noinline_for_stack int |
| 1674 | ext4_mb_regular_allocator(struct ext4_allocation_context *ac) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 1675 | { |
| 1676 | ext4_group_t group; |
| 1677 | ext4_group_t i; |
| 1678 | int cr; |
| 1679 | int err = 0; |
| 1680 | int bsbits; |
| 1681 | struct ext4_sb_info *sbi; |
| 1682 | struct super_block *sb; |
| 1683 | struct ext4_buddy e4b; |
| 1684 | loff_t size, isize; |
| 1685 | |
| 1686 | sb = ac->ac_sb; |
| 1687 | sbi = EXT4_SB(sb); |
| 1688 | BUG_ON(ac->ac_status == AC_STATUS_FOUND); |
| 1689 | |
| 1690 | /* first, try the goal */ |
| 1691 | err = ext4_mb_find_by_goal(ac, &e4b); |
| 1692 | if (err || ac->ac_status == AC_STATUS_FOUND) |
| 1693 | goto out; |
| 1694 | |
| 1695 | if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY)) |
| 1696 | goto out; |
| 1697 | |
| 1698 | /* |
| 1699 | * ac->ac2_order is set only if the fe_len is a power of 2 |
| 1700 | * if ac2_order is set we also set criteria to 0 so that we |
| 1701 | * try exact allocation using buddy. |
| 1702 | */ |
| 1703 | i = fls(ac->ac_g_ex.fe_len); |
| 1704 | ac->ac_2order = 0; |
| 1705 | /* |
| 1706 | * We search using buddy data only if the order of the request |
| 1707 | * is greater than equal to the sbi_s_mb_order2_reqs |
| 1708 | * You can tune it via /proc/fs/ext4/<partition>/order2_req |
| 1709 | */ |
| 1710 | if (i >= sbi->s_mb_order2_reqs) { |
| 1711 | /* |
| 1712 | * This should tell if fe_len is exactly power of 2 |
| 1713 | */ |
| 1714 | if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0) |
| 1715 | ac->ac_2order = i - 1; |
| 1716 | } |
| 1717 | |
| 1718 | bsbits = ac->ac_sb->s_blocksize_bits; |
| 1719 | /* if stream allocation is enabled, use global goal */ |
| 1720 | size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len; |
| 1721 | isize = i_size_read(ac->ac_inode) >> bsbits; |
| 1722 | if (size < isize) |
| 1723 | size = isize; |
| 1724 | |
| 1725 | if (size < sbi->s_mb_stream_request && |
| 1726 | (ac->ac_flags & EXT4_MB_HINT_DATA)) { |
| 1727 | /* TBD: may be hot point */ |
| 1728 | spin_lock(&sbi->s_md_lock); |
| 1729 | ac->ac_g_ex.fe_group = sbi->s_mb_last_group; |
| 1730 | ac->ac_g_ex.fe_start = sbi->s_mb_last_start; |
| 1731 | spin_unlock(&sbi->s_md_lock); |
| 1732 | } |
| 1733 | |
| 1734 | /* searching for the right group start from the goal value specified */ |
| 1735 | group = ac->ac_g_ex.fe_group; |
| 1736 | |
| 1737 | /* Let's just scan groups to find more-less suitable blocks */ |
| 1738 | cr = ac->ac_2order ? 0 : 1; |
| 1739 | /* |
| 1740 | * cr == 0 try to get exact allocation, |
| 1741 | * cr == 3 try to get anything |
| 1742 | */ |
| 1743 | repeat: |
| 1744 | for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) { |
| 1745 | ac->ac_criteria = cr; |
| 1746 | for (i = 0; i < EXT4_SB(sb)->s_groups_count; group++, i++) { |
| 1747 | struct ext4_group_info *grp; |
| 1748 | struct ext4_group_desc *desc; |
| 1749 | |
| 1750 | if (group == EXT4_SB(sb)->s_groups_count) |
| 1751 | group = 0; |
| 1752 | |
| 1753 | /* quick check to skip empty groups */ |
| 1754 | grp = ext4_get_group_info(ac->ac_sb, group); |
| 1755 | if (grp->bb_free == 0) |
| 1756 | continue; |
| 1757 | |
| 1758 | /* |
| 1759 | * if the group is already init we check whether it is |
| 1760 | * a good group and if not we don't load the buddy |
| 1761 | */ |
| 1762 | if (EXT4_MB_GRP_NEED_INIT(grp)) { |
| 1763 | /* |
| 1764 | * we need full data about the group |
| 1765 | * to make a good selection |
| 1766 | */ |
| 1767 | err = ext4_mb_load_buddy(sb, group, &e4b); |
| 1768 | if (err) |
| 1769 | goto out; |
| 1770 | ext4_mb_release_desc(&e4b); |
| 1771 | } |
| 1772 | |
| 1773 | /* |
| 1774 | * If the particular group doesn't satisfy our |
| 1775 | * criteria we continue with the next group |
| 1776 | */ |
| 1777 | if (!ext4_mb_good_group(ac, group, cr)) |
| 1778 | continue; |
| 1779 | |
| 1780 | err = ext4_mb_load_buddy(sb, group, &e4b); |
| 1781 | if (err) |
| 1782 | goto out; |
| 1783 | |
| 1784 | ext4_lock_group(sb, group); |
| 1785 | if (!ext4_mb_good_group(ac, group, cr)) { |
| 1786 | /* someone did allocation from this group */ |
| 1787 | ext4_unlock_group(sb, group); |
| 1788 | ext4_mb_release_desc(&e4b); |
| 1789 | continue; |
| 1790 | } |
| 1791 | |
| 1792 | ac->ac_groups_scanned++; |
| 1793 | desc = ext4_get_group_desc(sb, group, NULL); |
| 1794 | if (cr == 0 || (desc->bg_flags & |
| 1795 | cpu_to_le16(EXT4_BG_BLOCK_UNINIT) && |
| 1796 | ac->ac_2order != 0)) |
| 1797 | ext4_mb_simple_scan_group(ac, &e4b); |
| 1798 | else if (cr == 1 && |
| 1799 | ac->ac_g_ex.fe_len == sbi->s_stripe) |
| 1800 | ext4_mb_scan_aligned(ac, &e4b); |
| 1801 | else |
| 1802 | ext4_mb_complex_scan_group(ac, &e4b); |
| 1803 | |
| 1804 | ext4_unlock_group(sb, group); |
| 1805 | ext4_mb_release_desc(&e4b); |
| 1806 | |
| 1807 | if (ac->ac_status != AC_STATUS_CONTINUE) |
| 1808 | break; |
| 1809 | } |
| 1810 | } |
| 1811 | |
| 1812 | if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND && |
| 1813 | !(ac->ac_flags & EXT4_MB_HINT_FIRST)) { |
| 1814 | /* |
| 1815 | * We've been searching too long. Let's try to allocate |
| 1816 | * the best chunk we've found so far |
| 1817 | */ |
| 1818 | |
| 1819 | ext4_mb_try_best_found(ac, &e4b); |
| 1820 | if (ac->ac_status != AC_STATUS_FOUND) { |
| 1821 | /* |
| 1822 | * Someone more lucky has already allocated it. |
| 1823 | * The only thing we can do is just take first |
| 1824 | * found block(s) |
| 1825 | printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n"); |
| 1826 | */ |
| 1827 | ac->ac_b_ex.fe_group = 0; |
| 1828 | ac->ac_b_ex.fe_start = 0; |
| 1829 | ac->ac_b_ex.fe_len = 0; |
| 1830 | ac->ac_status = AC_STATUS_CONTINUE; |
| 1831 | ac->ac_flags |= EXT4_MB_HINT_FIRST; |
| 1832 | cr = 3; |
| 1833 | atomic_inc(&sbi->s_mb_lost_chunks); |
| 1834 | goto repeat; |
| 1835 | } |
| 1836 | } |
| 1837 | out: |
| 1838 | return err; |
| 1839 | } |
| 1840 | |
| 1841 | #ifdef EXT4_MB_HISTORY |
| 1842 | struct ext4_mb_proc_session { |
| 1843 | struct ext4_mb_history *history; |
| 1844 | struct super_block *sb; |
| 1845 | int start; |
| 1846 | int max; |
| 1847 | }; |
| 1848 | |
| 1849 | static void *ext4_mb_history_skip_empty(struct ext4_mb_proc_session *s, |
| 1850 | struct ext4_mb_history *hs, |
| 1851 | int first) |
| 1852 | { |
| 1853 | if (hs == s->history + s->max) |
| 1854 | hs = s->history; |
| 1855 | if (!first && hs == s->history + s->start) |
| 1856 | return NULL; |
| 1857 | while (hs->orig.fe_len == 0) { |
| 1858 | hs++; |
| 1859 | if (hs == s->history + s->max) |
| 1860 | hs = s->history; |
| 1861 | if (hs == s->history + s->start) |
| 1862 | return NULL; |
| 1863 | } |
| 1864 | return hs; |
| 1865 | } |
| 1866 | |
| 1867 | static void *ext4_mb_seq_history_start(struct seq_file *seq, loff_t *pos) |
| 1868 | { |
| 1869 | struct ext4_mb_proc_session *s = seq->private; |
| 1870 | struct ext4_mb_history *hs; |
| 1871 | int l = *pos; |
| 1872 | |
| 1873 | if (l == 0) |
| 1874 | return SEQ_START_TOKEN; |
| 1875 | hs = ext4_mb_history_skip_empty(s, s->history + s->start, 1); |
| 1876 | if (!hs) |
| 1877 | return NULL; |
| 1878 | while (--l && (hs = ext4_mb_history_skip_empty(s, ++hs, 0)) != NULL); |
| 1879 | return hs; |
| 1880 | } |
| 1881 | |
| 1882 | static void *ext4_mb_seq_history_next(struct seq_file *seq, void *v, |
| 1883 | loff_t *pos) |
| 1884 | { |
| 1885 | struct ext4_mb_proc_session *s = seq->private; |
| 1886 | struct ext4_mb_history *hs = v; |
| 1887 | |
| 1888 | ++*pos; |
| 1889 | if (v == SEQ_START_TOKEN) |
| 1890 | return ext4_mb_history_skip_empty(s, s->history + s->start, 1); |
| 1891 | else |
| 1892 | return ext4_mb_history_skip_empty(s, ++hs, 0); |
| 1893 | } |
| 1894 | |
| 1895 | static int ext4_mb_seq_history_show(struct seq_file *seq, void *v) |
| 1896 | { |
| 1897 | char buf[25], buf2[25], buf3[25], *fmt; |
| 1898 | struct ext4_mb_history *hs = v; |
| 1899 | |
| 1900 | if (v == SEQ_START_TOKEN) { |
| 1901 | seq_printf(seq, "%-5s %-8s %-23s %-23s %-23s %-5s " |
| 1902 | "%-5s %-2s %-5s %-5s %-5s %-6s\n", |
| 1903 | "pid", "inode", "original", "goal", "result", "found", |
| 1904 | "grps", "cr", "flags", "merge", "tail", "broken"); |
| 1905 | return 0; |
| 1906 | } |
| 1907 | |
| 1908 | if (hs->op == EXT4_MB_HISTORY_ALLOC) { |
| 1909 | fmt = "%-5u %-8u %-23s %-23s %-23s %-5u %-5u %-2u " |
| 1910 | "%-5u %-5s %-5u %-6u\n"; |
| 1911 | sprintf(buf2, "%lu/%d/%u@%u", hs->result.fe_group, |
| 1912 | hs->result.fe_start, hs->result.fe_len, |
| 1913 | hs->result.fe_logical); |
| 1914 | sprintf(buf, "%lu/%d/%u@%u", hs->orig.fe_group, |
| 1915 | hs->orig.fe_start, hs->orig.fe_len, |
| 1916 | hs->orig.fe_logical); |
| 1917 | sprintf(buf3, "%lu/%d/%u@%u", hs->goal.fe_group, |
| 1918 | hs->goal.fe_start, hs->goal.fe_len, |
| 1919 | hs->goal.fe_logical); |
| 1920 | seq_printf(seq, fmt, hs->pid, hs->ino, buf, buf3, buf2, |
| 1921 | hs->found, hs->groups, hs->cr, hs->flags, |
| 1922 | hs->merged ? "M" : "", hs->tail, |
| 1923 | hs->buddy ? 1 << hs->buddy : 0); |
| 1924 | } else if (hs->op == EXT4_MB_HISTORY_PREALLOC) { |
| 1925 | fmt = "%-5u %-8u %-23s %-23s %-23s\n"; |
| 1926 | sprintf(buf2, "%lu/%d/%u@%u", hs->result.fe_group, |
| 1927 | hs->result.fe_start, hs->result.fe_len, |
| 1928 | hs->result.fe_logical); |
| 1929 | sprintf(buf, "%lu/%d/%u@%u", hs->orig.fe_group, |
| 1930 | hs->orig.fe_start, hs->orig.fe_len, |
| 1931 | hs->orig.fe_logical); |
| 1932 | seq_printf(seq, fmt, hs->pid, hs->ino, buf, "", buf2); |
| 1933 | } else if (hs->op == EXT4_MB_HISTORY_DISCARD) { |
| 1934 | sprintf(buf2, "%lu/%d/%u", hs->result.fe_group, |
| 1935 | hs->result.fe_start, hs->result.fe_len); |
| 1936 | seq_printf(seq, "%-5u %-8u %-23s discard\n", |
| 1937 | hs->pid, hs->ino, buf2); |
| 1938 | } else if (hs->op == EXT4_MB_HISTORY_FREE) { |
| 1939 | sprintf(buf2, "%lu/%d/%u", hs->result.fe_group, |
| 1940 | hs->result.fe_start, hs->result.fe_len); |
| 1941 | seq_printf(seq, "%-5u %-8u %-23s free\n", |
| 1942 | hs->pid, hs->ino, buf2); |
| 1943 | } |
| 1944 | return 0; |
| 1945 | } |
| 1946 | |
| 1947 | static void ext4_mb_seq_history_stop(struct seq_file *seq, void *v) |
| 1948 | { |
| 1949 | } |
| 1950 | |
| 1951 | static struct seq_operations ext4_mb_seq_history_ops = { |
| 1952 | .start = ext4_mb_seq_history_start, |
| 1953 | .next = ext4_mb_seq_history_next, |
| 1954 | .stop = ext4_mb_seq_history_stop, |
| 1955 | .show = ext4_mb_seq_history_show, |
| 1956 | }; |
| 1957 | |
| 1958 | static int ext4_mb_seq_history_open(struct inode *inode, struct file *file) |
| 1959 | { |
| 1960 | struct super_block *sb = PDE(inode)->data; |
| 1961 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 1962 | struct ext4_mb_proc_session *s; |
| 1963 | int rc; |
| 1964 | int size; |
| 1965 | |
| 1966 | s = kmalloc(sizeof(*s), GFP_KERNEL); |
| 1967 | if (s == NULL) |
| 1968 | return -ENOMEM; |
| 1969 | s->sb = sb; |
| 1970 | size = sizeof(struct ext4_mb_history) * sbi->s_mb_history_max; |
| 1971 | s->history = kmalloc(size, GFP_KERNEL); |
| 1972 | if (s->history == NULL) { |
| 1973 | kfree(s); |
| 1974 | return -ENOMEM; |
| 1975 | } |
| 1976 | |
| 1977 | spin_lock(&sbi->s_mb_history_lock); |
| 1978 | memcpy(s->history, sbi->s_mb_history, size); |
| 1979 | s->max = sbi->s_mb_history_max; |
| 1980 | s->start = sbi->s_mb_history_cur % s->max; |
| 1981 | spin_unlock(&sbi->s_mb_history_lock); |
| 1982 | |
| 1983 | rc = seq_open(file, &ext4_mb_seq_history_ops); |
| 1984 | if (rc == 0) { |
| 1985 | struct seq_file *m = (struct seq_file *)file->private_data; |
| 1986 | m->private = s; |
| 1987 | } else { |
| 1988 | kfree(s->history); |
| 1989 | kfree(s); |
| 1990 | } |
| 1991 | return rc; |
| 1992 | |
| 1993 | } |
| 1994 | |
| 1995 | static int ext4_mb_seq_history_release(struct inode *inode, struct file *file) |
| 1996 | { |
| 1997 | struct seq_file *seq = (struct seq_file *)file->private_data; |
| 1998 | struct ext4_mb_proc_session *s = seq->private; |
| 1999 | kfree(s->history); |
| 2000 | kfree(s); |
| 2001 | return seq_release(inode, file); |
| 2002 | } |
| 2003 | |
| 2004 | static ssize_t ext4_mb_seq_history_write(struct file *file, |
| 2005 | const char __user *buffer, |
| 2006 | size_t count, loff_t *ppos) |
| 2007 | { |
| 2008 | struct seq_file *seq = (struct seq_file *)file->private_data; |
| 2009 | struct ext4_mb_proc_session *s = seq->private; |
| 2010 | struct super_block *sb = s->sb; |
| 2011 | char str[32]; |
| 2012 | int value; |
| 2013 | |
| 2014 | if (count >= sizeof(str)) { |
| 2015 | printk(KERN_ERR "EXT4-fs: %s string too long, max %u bytes\n", |
| 2016 | "mb_history", (int)sizeof(str)); |
| 2017 | return -EOVERFLOW; |
| 2018 | } |
| 2019 | |
| 2020 | if (copy_from_user(str, buffer, count)) |
| 2021 | return -EFAULT; |
| 2022 | |
| 2023 | value = simple_strtol(str, NULL, 0); |
| 2024 | if (value < 0) |
| 2025 | return -ERANGE; |
| 2026 | EXT4_SB(sb)->s_mb_history_filter = value; |
| 2027 | |
| 2028 | return count; |
| 2029 | } |
| 2030 | |
| 2031 | static struct file_operations ext4_mb_seq_history_fops = { |
| 2032 | .owner = THIS_MODULE, |
| 2033 | .open = ext4_mb_seq_history_open, |
| 2034 | .read = seq_read, |
| 2035 | .write = ext4_mb_seq_history_write, |
| 2036 | .llseek = seq_lseek, |
| 2037 | .release = ext4_mb_seq_history_release, |
| 2038 | }; |
| 2039 | |
| 2040 | static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos) |
| 2041 | { |
| 2042 | struct super_block *sb = seq->private; |
| 2043 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2044 | ext4_group_t group; |
| 2045 | |
| 2046 | if (*pos < 0 || *pos >= sbi->s_groups_count) |
| 2047 | return NULL; |
| 2048 | |
| 2049 | group = *pos + 1; |
| 2050 | return (void *) group; |
| 2051 | } |
| 2052 | |
| 2053 | static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos) |
| 2054 | { |
| 2055 | struct super_block *sb = seq->private; |
| 2056 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2057 | ext4_group_t group; |
| 2058 | |
| 2059 | ++*pos; |
| 2060 | if (*pos < 0 || *pos >= sbi->s_groups_count) |
| 2061 | return NULL; |
| 2062 | group = *pos + 1; |
| 2063 | return (void *) group;; |
| 2064 | } |
| 2065 | |
| 2066 | static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v) |
| 2067 | { |
| 2068 | struct super_block *sb = seq->private; |
| 2069 | long group = (long) v; |
| 2070 | int i; |
| 2071 | int err; |
| 2072 | struct ext4_buddy e4b; |
| 2073 | struct sg { |
| 2074 | struct ext4_group_info info; |
| 2075 | unsigned short counters[16]; |
| 2076 | } sg; |
| 2077 | |
| 2078 | group--; |
| 2079 | if (group == 0) |
| 2080 | seq_printf(seq, "#%-5s: %-5s %-5s %-5s " |
| 2081 | "[ %-5s %-5s %-5s %-5s %-5s %-5s %-5s " |
| 2082 | "%-5s %-5s %-5s %-5s %-5s %-5s %-5s ]\n", |
| 2083 | "group", "free", "frags", "first", |
| 2084 | "2^0", "2^1", "2^2", "2^3", "2^4", "2^5", "2^6", |
| 2085 | "2^7", "2^8", "2^9", "2^10", "2^11", "2^12", "2^13"); |
| 2086 | |
| 2087 | i = (sb->s_blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) + |
| 2088 | sizeof(struct ext4_group_info); |
| 2089 | err = ext4_mb_load_buddy(sb, group, &e4b); |
| 2090 | if (err) { |
| 2091 | seq_printf(seq, "#%-5lu: I/O error\n", group); |
| 2092 | return 0; |
| 2093 | } |
| 2094 | ext4_lock_group(sb, group); |
| 2095 | memcpy(&sg, ext4_get_group_info(sb, group), i); |
| 2096 | ext4_unlock_group(sb, group); |
| 2097 | ext4_mb_release_desc(&e4b); |
| 2098 | |
| 2099 | seq_printf(seq, "#%-5lu: %-5u %-5u %-5u [", group, sg.info.bb_free, |
| 2100 | sg.info.bb_fragments, sg.info.bb_first_free); |
| 2101 | for (i = 0; i <= 13; i++) |
| 2102 | seq_printf(seq, " %-5u", i <= sb->s_blocksize_bits + 1 ? |
| 2103 | sg.info.bb_counters[i] : 0); |
| 2104 | seq_printf(seq, " ]\n"); |
| 2105 | |
| 2106 | return 0; |
| 2107 | } |
| 2108 | |
| 2109 | static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v) |
| 2110 | { |
| 2111 | } |
| 2112 | |
| 2113 | static struct seq_operations ext4_mb_seq_groups_ops = { |
| 2114 | .start = ext4_mb_seq_groups_start, |
| 2115 | .next = ext4_mb_seq_groups_next, |
| 2116 | .stop = ext4_mb_seq_groups_stop, |
| 2117 | .show = ext4_mb_seq_groups_show, |
| 2118 | }; |
| 2119 | |
| 2120 | static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file) |
| 2121 | { |
| 2122 | struct super_block *sb = PDE(inode)->data; |
| 2123 | int rc; |
| 2124 | |
| 2125 | rc = seq_open(file, &ext4_mb_seq_groups_ops); |
| 2126 | if (rc == 0) { |
| 2127 | struct seq_file *m = (struct seq_file *)file->private_data; |
| 2128 | m->private = sb; |
| 2129 | } |
| 2130 | return rc; |
| 2131 | |
| 2132 | } |
| 2133 | |
| 2134 | static struct file_operations ext4_mb_seq_groups_fops = { |
| 2135 | .owner = THIS_MODULE, |
| 2136 | .open = ext4_mb_seq_groups_open, |
| 2137 | .read = seq_read, |
| 2138 | .llseek = seq_lseek, |
| 2139 | .release = seq_release, |
| 2140 | }; |
| 2141 | |
| 2142 | static void ext4_mb_history_release(struct super_block *sb) |
| 2143 | { |
| 2144 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2145 | |
| 2146 | remove_proc_entry("mb_groups", sbi->s_mb_proc); |
| 2147 | remove_proc_entry("mb_history", sbi->s_mb_proc); |
| 2148 | |
| 2149 | kfree(sbi->s_mb_history); |
| 2150 | } |
| 2151 | |
| 2152 | static void ext4_mb_history_init(struct super_block *sb) |
| 2153 | { |
| 2154 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2155 | int i; |
| 2156 | |
| 2157 | if (sbi->s_mb_proc != NULL) { |
Denis V. Lunev | 46fe74f | 2008-04-29 01:02:08 -0700 | [diff] [blame] | 2158 | proc_create_data("mb_history", S_IRUGO, sbi->s_mb_proc, |
| 2159 | &ext4_mb_seq_history_fops, sb); |
| 2160 | proc_create_data("mb_groups", S_IRUGO, sbi->s_mb_proc, |
| 2161 | &ext4_mb_seq_groups_fops, sb); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2162 | } |
| 2163 | |
| 2164 | sbi->s_mb_history_max = 1000; |
| 2165 | sbi->s_mb_history_cur = 0; |
| 2166 | spin_lock_init(&sbi->s_mb_history_lock); |
| 2167 | i = sbi->s_mb_history_max * sizeof(struct ext4_mb_history); |
| 2168 | sbi->s_mb_history = kmalloc(i, GFP_KERNEL); |
| 2169 | if (likely(sbi->s_mb_history != NULL)) |
| 2170 | memset(sbi->s_mb_history, 0, i); |
| 2171 | /* if we can't allocate history, then we simple won't use it */ |
| 2172 | } |
| 2173 | |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2174 | static noinline_for_stack void |
| 2175 | ext4_mb_store_history(struct ext4_allocation_context *ac) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2176 | { |
| 2177 | struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); |
| 2178 | struct ext4_mb_history h; |
| 2179 | |
| 2180 | if (unlikely(sbi->s_mb_history == NULL)) |
| 2181 | return; |
| 2182 | |
| 2183 | if (!(ac->ac_op & sbi->s_mb_history_filter)) |
| 2184 | return; |
| 2185 | |
| 2186 | h.op = ac->ac_op; |
| 2187 | h.pid = current->pid; |
| 2188 | h.ino = ac->ac_inode ? ac->ac_inode->i_ino : 0; |
| 2189 | h.orig = ac->ac_o_ex; |
| 2190 | h.result = ac->ac_b_ex; |
| 2191 | h.flags = ac->ac_flags; |
| 2192 | h.found = ac->ac_found; |
| 2193 | h.groups = ac->ac_groups_scanned; |
| 2194 | h.cr = ac->ac_criteria; |
| 2195 | h.tail = ac->ac_tail; |
| 2196 | h.buddy = ac->ac_buddy; |
| 2197 | h.merged = 0; |
| 2198 | if (ac->ac_op == EXT4_MB_HISTORY_ALLOC) { |
| 2199 | if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start && |
| 2200 | ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group) |
| 2201 | h.merged = 1; |
| 2202 | h.goal = ac->ac_g_ex; |
| 2203 | h.result = ac->ac_f_ex; |
| 2204 | } |
| 2205 | |
| 2206 | spin_lock(&sbi->s_mb_history_lock); |
| 2207 | memcpy(sbi->s_mb_history + sbi->s_mb_history_cur, &h, sizeof(h)); |
| 2208 | if (++sbi->s_mb_history_cur >= sbi->s_mb_history_max) |
| 2209 | sbi->s_mb_history_cur = 0; |
| 2210 | spin_unlock(&sbi->s_mb_history_lock); |
| 2211 | } |
| 2212 | |
| 2213 | #else |
| 2214 | #define ext4_mb_history_release(sb) |
| 2215 | #define ext4_mb_history_init(sb) |
| 2216 | #endif |
| 2217 | |
| 2218 | static int ext4_mb_init_backend(struct super_block *sb) |
| 2219 | { |
| 2220 | ext4_group_t i; |
| 2221 | int j, len, metalen; |
| 2222 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2223 | int num_meta_group_infos = |
| 2224 | (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) >> |
| 2225 | EXT4_DESC_PER_BLOCK_BITS(sb); |
| 2226 | struct ext4_group_info **meta_group_info; |
| 2227 | |
| 2228 | /* An 8TB filesystem with 64-bit pointers requires a 4096 byte |
| 2229 | * kmalloc. A 128kb malloc should suffice for a 256TB filesystem. |
| 2230 | * So a two level scheme suffices for now. */ |
| 2231 | sbi->s_group_info = kmalloc(sizeof(*sbi->s_group_info) * |
| 2232 | num_meta_group_infos, GFP_KERNEL); |
| 2233 | if (sbi->s_group_info == NULL) { |
| 2234 | printk(KERN_ERR "EXT4-fs: can't allocate buddy meta group\n"); |
| 2235 | return -ENOMEM; |
| 2236 | } |
| 2237 | sbi->s_buddy_cache = new_inode(sb); |
| 2238 | if (sbi->s_buddy_cache == NULL) { |
| 2239 | printk(KERN_ERR "EXT4-fs: can't get new inode\n"); |
| 2240 | goto err_freesgi; |
| 2241 | } |
| 2242 | EXT4_I(sbi->s_buddy_cache)->i_disksize = 0; |
| 2243 | |
| 2244 | metalen = sizeof(*meta_group_info) << EXT4_DESC_PER_BLOCK_BITS(sb); |
| 2245 | for (i = 0; i < num_meta_group_infos; i++) { |
| 2246 | if ((i + 1) == num_meta_group_infos) |
| 2247 | metalen = sizeof(*meta_group_info) * |
| 2248 | (sbi->s_groups_count - |
| 2249 | (i << EXT4_DESC_PER_BLOCK_BITS(sb))); |
| 2250 | meta_group_info = kmalloc(metalen, GFP_KERNEL); |
| 2251 | if (meta_group_info == NULL) { |
| 2252 | printk(KERN_ERR "EXT4-fs: can't allocate mem for a " |
| 2253 | "buddy group\n"); |
| 2254 | goto err_freemeta; |
| 2255 | } |
| 2256 | sbi->s_group_info[i] = meta_group_info; |
| 2257 | } |
| 2258 | |
| 2259 | /* |
| 2260 | * calculate needed size. if change bb_counters size, |
| 2261 | * don't forget about ext4_mb_generate_buddy() |
| 2262 | */ |
| 2263 | len = sizeof(struct ext4_group_info); |
| 2264 | len += sizeof(unsigned short) * (sb->s_blocksize_bits + 2); |
| 2265 | for (i = 0; i < sbi->s_groups_count; i++) { |
| 2266 | struct ext4_group_desc *desc; |
| 2267 | |
| 2268 | meta_group_info = |
| 2269 | sbi->s_group_info[i >> EXT4_DESC_PER_BLOCK_BITS(sb)]; |
| 2270 | j = i & (EXT4_DESC_PER_BLOCK(sb) - 1); |
| 2271 | |
| 2272 | meta_group_info[j] = kzalloc(len, GFP_KERNEL); |
| 2273 | if (meta_group_info[j] == NULL) { |
| 2274 | printk(KERN_ERR "EXT4-fs: can't allocate buddy mem\n"); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2275 | goto err_freebuddy; |
| 2276 | } |
| 2277 | desc = ext4_get_group_desc(sb, i, NULL); |
| 2278 | if (desc == NULL) { |
| 2279 | printk(KERN_ERR |
| 2280 | "EXT4-fs: can't read descriptor %lu\n", i); |
Roel Kluin | f1fa334 | 2008-04-29 22:01:15 -0400 | [diff] [blame] | 2281 | i++; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2282 | goto err_freebuddy; |
| 2283 | } |
| 2284 | memset(meta_group_info[j], 0, len); |
| 2285 | set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, |
| 2286 | &(meta_group_info[j]->bb_state)); |
| 2287 | |
| 2288 | /* |
| 2289 | * initialize bb_free to be able to skip |
| 2290 | * empty groups without initialization |
| 2291 | */ |
| 2292 | if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) { |
| 2293 | meta_group_info[j]->bb_free = |
| 2294 | ext4_free_blocks_after_init(sb, i, desc); |
| 2295 | } else { |
| 2296 | meta_group_info[j]->bb_free = |
| 2297 | le16_to_cpu(desc->bg_free_blocks_count); |
| 2298 | } |
| 2299 | |
| 2300 | INIT_LIST_HEAD(&meta_group_info[j]->bb_prealloc_list); |
| 2301 | |
| 2302 | #ifdef DOUBLE_CHECK |
| 2303 | { |
| 2304 | struct buffer_head *bh; |
| 2305 | meta_group_info[j]->bb_bitmap = |
| 2306 | kmalloc(sb->s_blocksize, GFP_KERNEL); |
| 2307 | BUG_ON(meta_group_info[j]->bb_bitmap == NULL); |
| 2308 | bh = read_block_bitmap(sb, i); |
| 2309 | BUG_ON(bh == NULL); |
| 2310 | memcpy(meta_group_info[j]->bb_bitmap, bh->b_data, |
| 2311 | sb->s_blocksize); |
| 2312 | put_bh(bh); |
| 2313 | } |
| 2314 | #endif |
| 2315 | |
| 2316 | } |
| 2317 | |
| 2318 | return 0; |
| 2319 | |
| 2320 | err_freebuddy: |
Roel Kluin | f1fa334 | 2008-04-29 22:01:15 -0400 | [diff] [blame] | 2321 | while (i-- > 0) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2322 | kfree(ext4_get_group_info(sb, i)); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2323 | i = num_meta_group_infos; |
| 2324 | err_freemeta: |
Roel Kluin | f1fa334 | 2008-04-29 22:01:15 -0400 | [diff] [blame] | 2325 | while (i-- > 0) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2326 | kfree(sbi->s_group_info[i]); |
| 2327 | iput(sbi->s_buddy_cache); |
| 2328 | err_freesgi: |
| 2329 | kfree(sbi->s_group_info); |
| 2330 | return -ENOMEM; |
| 2331 | } |
| 2332 | |
| 2333 | int ext4_mb_init(struct super_block *sb, int needs_recovery) |
| 2334 | { |
| 2335 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2336 | unsigned i; |
| 2337 | unsigned offset; |
| 2338 | unsigned max; |
| 2339 | |
| 2340 | if (!test_opt(sb, MBALLOC)) |
| 2341 | return 0; |
| 2342 | |
| 2343 | i = (sb->s_blocksize_bits + 2) * sizeof(unsigned short); |
| 2344 | |
| 2345 | sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL); |
| 2346 | if (sbi->s_mb_offsets == NULL) { |
| 2347 | clear_opt(sbi->s_mount_opt, MBALLOC); |
| 2348 | return -ENOMEM; |
| 2349 | } |
| 2350 | sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL); |
| 2351 | if (sbi->s_mb_maxs == NULL) { |
| 2352 | clear_opt(sbi->s_mount_opt, MBALLOC); |
| 2353 | kfree(sbi->s_mb_maxs); |
| 2354 | return -ENOMEM; |
| 2355 | } |
| 2356 | |
| 2357 | /* order 0 is regular bitmap */ |
| 2358 | sbi->s_mb_maxs[0] = sb->s_blocksize << 3; |
| 2359 | sbi->s_mb_offsets[0] = 0; |
| 2360 | |
| 2361 | i = 1; |
| 2362 | offset = 0; |
| 2363 | max = sb->s_blocksize << 2; |
| 2364 | do { |
| 2365 | sbi->s_mb_offsets[i] = offset; |
| 2366 | sbi->s_mb_maxs[i] = max; |
| 2367 | offset += 1 << (sb->s_blocksize_bits - i); |
| 2368 | max = max >> 1; |
| 2369 | i++; |
| 2370 | } while (i <= sb->s_blocksize_bits + 1); |
| 2371 | |
| 2372 | /* init file for buddy data */ |
| 2373 | i = ext4_mb_init_backend(sb); |
| 2374 | if (i) { |
| 2375 | clear_opt(sbi->s_mount_opt, MBALLOC); |
| 2376 | kfree(sbi->s_mb_offsets); |
| 2377 | kfree(sbi->s_mb_maxs); |
| 2378 | return i; |
| 2379 | } |
| 2380 | |
| 2381 | spin_lock_init(&sbi->s_md_lock); |
| 2382 | INIT_LIST_HEAD(&sbi->s_active_transaction); |
| 2383 | INIT_LIST_HEAD(&sbi->s_closed_transaction); |
| 2384 | INIT_LIST_HEAD(&sbi->s_committed_transaction); |
| 2385 | spin_lock_init(&sbi->s_bal_lock); |
| 2386 | |
| 2387 | sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN; |
| 2388 | sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN; |
| 2389 | sbi->s_mb_stats = MB_DEFAULT_STATS; |
| 2390 | sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD; |
| 2391 | sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS; |
| 2392 | sbi->s_mb_history_filter = EXT4_MB_HISTORY_DEFAULT; |
| 2393 | sbi->s_mb_group_prealloc = MB_DEFAULT_GROUP_PREALLOC; |
| 2394 | |
| 2395 | i = sizeof(struct ext4_locality_group) * NR_CPUS; |
| 2396 | sbi->s_locality_groups = kmalloc(i, GFP_KERNEL); |
| 2397 | if (sbi->s_locality_groups == NULL) { |
| 2398 | clear_opt(sbi->s_mount_opt, MBALLOC); |
| 2399 | kfree(sbi->s_mb_offsets); |
| 2400 | kfree(sbi->s_mb_maxs); |
| 2401 | return -ENOMEM; |
| 2402 | } |
| 2403 | for (i = 0; i < NR_CPUS; i++) { |
| 2404 | struct ext4_locality_group *lg; |
| 2405 | lg = &sbi->s_locality_groups[i]; |
| 2406 | mutex_init(&lg->lg_mutex); |
| 2407 | INIT_LIST_HEAD(&lg->lg_prealloc_list); |
| 2408 | spin_lock_init(&lg->lg_prealloc_lock); |
| 2409 | } |
| 2410 | |
| 2411 | ext4_mb_init_per_dev_proc(sb); |
| 2412 | ext4_mb_history_init(sb); |
| 2413 | |
| 2414 | printk("EXT4-fs: mballoc enabled\n"); |
| 2415 | return 0; |
| 2416 | } |
| 2417 | |
| 2418 | /* need to called with ext4 group lock (ext4_lock_group) */ |
| 2419 | static void ext4_mb_cleanup_pa(struct ext4_group_info *grp) |
| 2420 | { |
| 2421 | struct ext4_prealloc_space *pa; |
| 2422 | struct list_head *cur, *tmp; |
| 2423 | int count = 0; |
| 2424 | |
| 2425 | list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) { |
| 2426 | pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list); |
| 2427 | list_del(&pa->pa_group_list); |
| 2428 | count++; |
| 2429 | kfree(pa); |
| 2430 | } |
| 2431 | if (count) |
| 2432 | mb_debug("mballoc: %u PAs left\n", count); |
| 2433 | |
| 2434 | } |
| 2435 | |
| 2436 | int ext4_mb_release(struct super_block *sb) |
| 2437 | { |
| 2438 | ext4_group_t i; |
| 2439 | int num_meta_group_infos; |
| 2440 | struct ext4_group_info *grinfo; |
| 2441 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2442 | |
| 2443 | if (!test_opt(sb, MBALLOC)) |
| 2444 | return 0; |
| 2445 | |
| 2446 | /* release freed, non-committed blocks */ |
| 2447 | spin_lock(&sbi->s_md_lock); |
| 2448 | list_splice_init(&sbi->s_closed_transaction, |
| 2449 | &sbi->s_committed_transaction); |
| 2450 | list_splice_init(&sbi->s_active_transaction, |
| 2451 | &sbi->s_committed_transaction); |
| 2452 | spin_unlock(&sbi->s_md_lock); |
| 2453 | ext4_mb_free_committed_blocks(sb); |
| 2454 | |
| 2455 | if (sbi->s_group_info) { |
| 2456 | for (i = 0; i < sbi->s_groups_count; i++) { |
| 2457 | grinfo = ext4_get_group_info(sb, i); |
| 2458 | #ifdef DOUBLE_CHECK |
| 2459 | kfree(grinfo->bb_bitmap); |
| 2460 | #endif |
| 2461 | ext4_lock_group(sb, i); |
| 2462 | ext4_mb_cleanup_pa(grinfo); |
| 2463 | ext4_unlock_group(sb, i); |
| 2464 | kfree(grinfo); |
| 2465 | } |
| 2466 | num_meta_group_infos = (sbi->s_groups_count + |
| 2467 | EXT4_DESC_PER_BLOCK(sb) - 1) >> |
| 2468 | EXT4_DESC_PER_BLOCK_BITS(sb); |
| 2469 | for (i = 0; i < num_meta_group_infos; i++) |
| 2470 | kfree(sbi->s_group_info[i]); |
| 2471 | kfree(sbi->s_group_info); |
| 2472 | } |
| 2473 | kfree(sbi->s_mb_offsets); |
| 2474 | kfree(sbi->s_mb_maxs); |
| 2475 | if (sbi->s_buddy_cache) |
| 2476 | iput(sbi->s_buddy_cache); |
| 2477 | if (sbi->s_mb_stats) { |
| 2478 | printk(KERN_INFO |
| 2479 | "EXT4-fs: mballoc: %u blocks %u reqs (%u success)\n", |
| 2480 | atomic_read(&sbi->s_bal_allocated), |
| 2481 | atomic_read(&sbi->s_bal_reqs), |
| 2482 | atomic_read(&sbi->s_bal_success)); |
| 2483 | printk(KERN_INFO |
| 2484 | "EXT4-fs: mballoc: %u extents scanned, %u goal hits, " |
| 2485 | "%u 2^N hits, %u breaks, %u lost\n", |
| 2486 | atomic_read(&sbi->s_bal_ex_scanned), |
| 2487 | atomic_read(&sbi->s_bal_goals), |
| 2488 | atomic_read(&sbi->s_bal_2orders), |
| 2489 | atomic_read(&sbi->s_bal_breaks), |
| 2490 | atomic_read(&sbi->s_mb_lost_chunks)); |
| 2491 | printk(KERN_INFO |
| 2492 | "EXT4-fs: mballoc: %lu generated and it took %Lu\n", |
| 2493 | sbi->s_mb_buddies_generated++, |
| 2494 | sbi->s_mb_generation_time); |
| 2495 | printk(KERN_INFO |
| 2496 | "EXT4-fs: mballoc: %u preallocated, %u discarded\n", |
| 2497 | atomic_read(&sbi->s_mb_preallocated), |
| 2498 | atomic_read(&sbi->s_mb_discarded)); |
| 2499 | } |
| 2500 | |
| 2501 | kfree(sbi->s_locality_groups); |
| 2502 | |
| 2503 | ext4_mb_history_release(sb); |
| 2504 | ext4_mb_destroy_per_dev_proc(sb); |
| 2505 | |
| 2506 | return 0; |
| 2507 | } |
| 2508 | |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2509 | static noinline_for_stack void |
| 2510 | ext4_mb_free_committed_blocks(struct super_block *sb) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2511 | { |
| 2512 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2513 | int err; |
| 2514 | int i; |
| 2515 | int count = 0; |
| 2516 | int count2 = 0; |
| 2517 | struct ext4_free_metadata *md; |
| 2518 | struct ext4_buddy e4b; |
| 2519 | |
| 2520 | if (list_empty(&sbi->s_committed_transaction)) |
| 2521 | return; |
| 2522 | |
| 2523 | /* there is committed blocks to be freed yet */ |
| 2524 | do { |
| 2525 | /* get next array of blocks */ |
| 2526 | md = NULL; |
| 2527 | spin_lock(&sbi->s_md_lock); |
| 2528 | if (!list_empty(&sbi->s_committed_transaction)) { |
| 2529 | md = list_entry(sbi->s_committed_transaction.next, |
| 2530 | struct ext4_free_metadata, list); |
| 2531 | list_del(&md->list); |
| 2532 | } |
| 2533 | spin_unlock(&sbi->s_md_lock); |
| 2534 | |
| 2535 | if (md == NULL) |
| 2536 | break; |
| 2537 | |
| 2538 | mb_debug("gonna free %u blocks in group %lu (0x%p):", |
| 2539 | md->num, md->group, md); |
| 2540 | |
| 2541 | err = ext4_mb_load_buddy(sb, md->group, &e4b); |
| 2542 | /* we expect to find existing buddy because it's pinned */ |
| 2543 | BUG_ON(err != 0); |
| 2544 | |
| 2545 | /* there are blocks to put in buddy to make them really free */ |
| 2546 | count += md->num; |
| 2547 | count2++; |
| 2548 | ext4_lock_group(sb, md->group); |
| 2549 | for (i = 0; i < md->num; i++) { |
| 2550 | mb_debug(" %u", md->blocks[i]); |
| 2551 | err = mb_free_blocks(NULL, &e4b, md->blocks[i], 1); |
| 2552 | BUG_ON(err != 0); |
| 2553 | } |
| 2554 | mb_debug("\n"); |
| 2555 | ext4_unlock_group(sb, md->group); |
| 2556 | |
| 2557 | /* balance refcounts from ext4_mb_free_metadata() */ |
| 2558 | page_cache_release(e4b.bd_buddy_page); |
| 2559 | page_cache_release(e4b.bd_bitmap_page); |
| 2560 | |
| 2561 | kfree(md); |
| 2562 | ext4_mb_release_desc(&e4b); |
| 2563 | |
| 2564 | } while (md); |
| 2565 | |
| 2566 | mb_debug("freed %u blocks in %u structures\n", count, count2); |
| 2567 | } |
| 2568 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2569 | #define EXT4_MB_STATS_NAME "stats" |
| 2570 | #define EXT4_MB_MAX_TO_SCAN_NAME "max_to_scan" |
| 2571 | #define EXT4_MB_MIN_TO_SCAN_NAME "min_to_scan" |
| 2572 | #define EXT4_MB_ORDER2_REQ "order2_req" |
| 2573 | #define EXT4_MB_STREAM_REQ "stream_req" |
| 2574 | #define EXT4_MB_GROUP_PREALLOC "group_prealloc" |
| 2575 | |
| 2576 | |
| 2577 | |
| 2578 | #define MB_PROC_VALUE_READ(name) \ |
| 2579 | static int ext4_mb_read_##name(char *page, char **start, \ |
| 2580 | off_t off, int count, int *eof, void *data) \ |
| 2581 | { \ |
| 2582 | struct ext4_sb_info *sbi = data; \ |
| 2583 | int len; \ |
| 2584 | *eof = 1; \ |
| 2585 | if (off != 0) \ |
| 2586 | return 0; \ |
| 2587 | len = sprintf(page, "%ld\n", sbi->s_mb_##name); \ |
| 2588 | *start = page; \ |
| 2589 | return len; \ |
| 2590 | } |
| 2591 | |
| 2592 | #define MB_PROC_VALUE_WRITE(name) \ |
| 2593 | static int ext4_mb_write_##name(struct file *file, \ |
| 2594 | const char __user *buf, unsigned long cnt, void *data) \ |
| 2595 | { \ |
| 2596 | struct ext4_sb_info *sbi = data; \ |
| 2597 | char str[32]; \ |
| 2598 | long value; \ |
| 2599 | if (cnt >= sizeof(str)) \ |
| 2600 | return -EINVAL; \ |
| 2601 | if (copy_from_user(str, buf, cnt)) \ |
| 2602 | return -EFAULT; \ |
| 2603 | value = simple_strtol(str, NULL, 0); \ |
| 2604 | if (value <= 0) \ |
| 2605 | return -ERANGE; \ |
| 2606 | sbi->s_mb_##name = value; \ |
| 2607 | return cnt; \ |
| 2608 | } |
| 2609 | |
| 2610 | MB_PROC_VALUE_READ(stats); |
| 2611 | MB_PROC_VALUE_WRITE(stats); |
| 2612 | MB_PROC_VALUE_READ(max_to_scan); |
| 2613 | MB_PROC_VALUE_WRITE(max_to_scan); |
| 2614 | MB_PROC_VALUE_READ(min_to_scan); |
| 2615 | MB_PROC_VALUE_WRITE(min_to_scan); |
| 2616 | MB_PROC_VALUE_READ(order2_reqs); |
| 2617 | MB_PROC_VALUE_WRITE(order2_reqs); |
| 2618 | MB_PROC_VALUE_READ(stream_request); |
| 2619 | MB_PROC_VALUE_WRITE(stream_request); |
| 2620 | MB_PROC_VALUE_READ(group_prealloc); |
| 2621 | MB_PROC_VALUE_WRITE(group_prealloc); |
| 2622 | |
| 2623 | #define MB_PROC_HANDLER(name, var) \ |
| 2624 | do { \ |
| 2625 | proc = create_proc_entry(name, mode, sbi->s_mb_proc); \ |
| 2626 | if (proc == NULL) { \ |
| 2627 | printk(KERN_ERR "EXT4-fs: can't to create %s\n", name); \ |
| 2628 | goto err_out; \ |
| 2629 | } \ |
| 2630 | proc->data = sbi; \ |
| 2631 | proc->read_proc = ext4_mb_read_##var ; \ |
| 2632 | proc->write_proc = ext4_mb_write_##var; \ |
| 2633 | } while (0) |
| 2634 | |
| 2635 | static int ext4_mb_init_per_dev_proc(struct super_block *sb) |
| 2636 | { |
| 2637 | mode_t mode = S_IFREG | S_IRUGO | S_IWUSR; |
| 2638 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2639 | struct proc_dir_entry *proc; |
| 2640 | char devname[64]; |
| 2641 | |
Jean Delvare | f36f21e | 2008-05-12 14:02:33 -0700 | [diff] [blame] | 2642 | bdevname(sb->s_bdev, devname); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2643 | sbi->s_mb_proc = proc_mkdir(devname, proc_root_ext4); |
| 2644 | |
| 2645 | MB_PROC_HANDLER(EXT4_MB_STATS_NAME, stats); |
| 2646 | MB_PROC_HANDLER(EXT4_MB_MAX_TO_SCAN_NAME, max_to_scan); |
| 2647 | MB_PROC_HANDLER(EXT4_MB_MIN_TO_SCAN_NAME, min_to_scan); |
| 2648 | MB_PROC_HANDLER(EXT4_MB_ORDER2_REQ, order2_reqs); |
| 2649 | MB_PROC_HANDLER(EXT4_MB_STREAM_REQ, stream_request); |
| 2650 | MB_PROC_HANDLER(EXT4_MB_GROUP_PREALLOC, group_prealloc); |
| 2651 | |
| 2652 | return 0; |
| 2653 | |
| 2654 | err_out: |
| 2655 | printk(KERN_ERR "EXT4-fs: Unable to create %s\n", devname); |
| 2656 | remove_proc_entry(EXT4_MB_GROUP_PREALLOC, sbi->s_mb_proc); |
| 2657 | remove_proc_entry(EXT4_MB_STREAM_REQ, sbi->s_mb_proc); |
| 2658 | remove_proc_entry(EXT4_MB_ORDER2_REQ, sbi->s_mb_proc); |
| 2659 | remove_proc_entry(EXT4_MB_MIN_TO_SCAN_NAME, sbi->s_mb_proc); |
| 2660 | remove_proc_entry(EXT4_MB_MAX_TO_SCAN_NAME, sbi->s_mb_proc); |
| 2661 | remove_proc_entry(EXT4_MB_STATS_NAME, sbi->s_mb_proc); |
| 2662 | remove_proc_entry(devname, proc_root_ext4); |
| 2663 | sbi->s_mb_proc = NULL; |
| 2664 | |
| 2665 | return -ENOMEM; |
| 2666 | } |
| 2667 | |
| 2668 | static int ext4_mb_destroy_per_dev_proc(struct super_block *sb) |
| 2669 | { |
| 2670 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 2671 | char devname[64]; |
| 2672 | |
| 2673 | if (sbi->s_mb_proc == NULL) |
| 2674 | return -EINVAL; |
| 2675 | |
Jean Delvare | f36f21e | 2008-05-12 14:02:33 -0700 | [diff] [blame] | 2676 | bdevname(sb->s_bdev, devname); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2677 | remove_proc_entry(EXT4_MB_GROUP_PREALLOC, sbi->s_mb_proc); |
| 2678 | remove_proc_entry(EXT4_MB_STREAM_REQ, sbi->s_mb_proc); |
| 2679 | remove_proc_entry(EXT4_MB_ORDER2_REQ, sbi->s_mb_proc); |
| 2680 | remove_proc_entry(EXT4_MB_MIN_TO_SCAN_NAME, sbi->s_mb_proc); |
| 2681 | remove_proc_entry(EXT4_MB_MAX_TO_SCAN_NAME, sbi->s_mb_proc); |
| 2682 | remove_proc_entry(EXT4_MB_STATS_NAME, sbi->s_mb_proc); |
| 2683 | remove_proc_entry(devname, proc_root_ext4); |
| 2684 | |
| 2685 | return 0; |
| 2686 | } |
| 2687 | |
| 2688 | int __init init_ext4_mballoc(void) |
| 2689 | { |
| 2690 | ext4_pspace_cachep = |
| 2691 | kmem_cache_create("ext4_prealloc_space", |
| 2692 | sizeof(struct ext4_prealloc_space), |
| 2693 | 0, SLAB_RECLAIM_ACCOUNT, NULL); |
| 2694 | if (ext4_pspace_cachep == NULL) |
| 2695 | return -ENOMEM; |
| 2696 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 2697 | ext4_ac_cachep = |
| 2698 | kmem_cache_create("ext4_alloc_context", |
| 2699 | sizeof(struct ext4_allocation_context), |
| 2700 | 0, SLAB_RECLAIM_ACCOUNT, NULL); |
| 2701 | if (ext4_ac_cachep == NULL) { |
| 2702 | kmem_cache_destroy(ext4_pspace_cachep); |
| 2703 | return -ENOMEM; |
| 2704 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2705 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 2706 | proc_root_ext4 = proc_mkdir("fs/ext4", NULL); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2707 | if (proc_root_ext4 == NULL) |
Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 2708 | printk(KERN_ERR "EXT4-fs: Unable to create fs/ext4\n"); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2709 | #endif |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2710 | return 0; |
| 2711 | } |
| 2712 | |
| 2713 | void exit_ext4_mballoc(void) |
| 2714 | { |
| 2715 | /* XXX: synchronize_rcu(); */ |
| 2716 | kmem_cache_destroy(ext4_pspace_cachep); |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 2717 | kmem_cache_destroy(ext4_ac_cachep); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2718 | #ifdef CONFIG_PROC_FS |
Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 2719 | remove_proc_entry("fs/ext4", NULL); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2720 | #endif |
| 2721 | } |
| 2722 | |
| 2723 | |
| 2724 | /* |
| 2725 | * Check quota and mark choosed space (ac->ac_b_ex) non-free in bitmaps |
| 2726 | * Returns 0 if success or error code |
| 2727 | */ |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2728 | static noinline_for_stack int |
| 2729 | ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2730 | handle_t *handle) |
| 2731 | { |
| 2732 | struct buffer_head *bitmap_bh = NULL; |
| 2733 | struct ext4_super_block *es; |
| 2734 | struct ext4_group_desc *gdp; |
| 2735 | struct buffer_head *gdp_bh; |
| 2736 | struct ext4_sb_info *sbi; |
| 2737 | struct super_block *sb; |
| 2738 | ext4_fsblk_t block; |
Aneesh Kumar K.V | 519deca0 | 2008-05-15 14:43:20 -0400 | [diff] [blame] | 2739 | int err, len; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2740 | |
| 2741 | BUG_ON(ac->ac_status != AC_STATUS_FOUND); |
| 2742 | BUG_ON(ac->ac_b_ex.fe_len <= 0); |
| 2743 | |
| 2744 | sb = ac->ac_sb; |
| 2745 | sbi = EXT4_SB(sb); |
| 2746 | es = sbi->s_es; |
| 2747 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2748 | |
| 2749 | err = -EIO; |
| 2750 | bitmap_bh = read_block_bitmap(sb, ac->ac_b_ex.fe_group); |
| 2751 | if (!bitmap_bh) |
| 2752 | goto out_err; |
| 2753 | |
| 2754 | err = ext4_journal_get_write_access(handle, bitmap_bh); |
| 2755 | if (err) |
| 2756 | goto out_err; |
| 2757 | |
| 2758 | err = -EIO; |
| 2759 | gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh); |
| 2760 | if (!gdp) |
| 2761 | goto out_err; |
| 2762 | |
Aneesh Kumar K.V | 03cddb8 | 2008-06-05 20:59:29 -0400 | [diff] [blame^] | 2763 | ext4_debug("using block group %lu(%d)\n", ac->ac_b_ex.fe_group, |
| 2764 | gdp->bg_free_blocks_count); |
| 2765 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2766 | err = ext4_journal_get_write_access(handle, gdp_bh); |
| 2767 | if (err) |
| 2768 | goto out_err; |
| 2769 | |
| 2770 | block = ac->ac_b_ex.fe_group * EXT4_BLOCKS_PER_GROUP(sb) |
| 2771 | + ac->ac_b_ex.fe_start |
| 2772 | + le32_to_cpu(es->s_first_data_block); |
| 2773 | |
Aneesh Kumar K.V | 519deca0 | 2008-05-15 14:43:20 -0400 | [diff] [blame] | 2774 | len = ac->ac_b_ex.fe_len; |
| 2775 | if (in_range(ext4_block_bitmap(sb, gdp), block, len) || |
| 2776 | in_range(ext4_inode_bitmap(sb, gdp), block, len) || |
| 2777 | in_range(block, ext4_inode_table(sb, gdp), |
| 2778 | EXT4_SB(sb)->s_itb_per_group) || |
| 2779 | in_range(block + len - 1, ext4_inode_table(sb, gdp), |
| 2780 | EXT4_SB(sb)->s_itb_per_group)) { |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2781 | ext4_error(sb, __func__, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2782 | "Allocating block in system zone - block = %llu", |
| 2783 | block); |
Aneesh Kumar K.V | 519deca0 | 2008-05-15 14:43:20 -0400 | [diff] [blame] | 2784 | /* File system mounted not to panic on error |
| 2785 | * Fix the bitmap and repeat the block allocation |
| 2786 | * We leak some of the blocks here. |
| 2787 | */ |
| 2788 | mb_set_bits(sb_bgl_lock(sbi, ac->ac_b_ex.fe_group), |
| 2789 | bitmap_bh->b_data, ac->ac_b_ex.fe_start, |
| 2790 | ac->ac_b_ex.fe_len); |
| 2791 | err = ext4_journal_dirty_metadata(handle, bitmap_bh); |
| 2792 | if (!err) |
| 2793 | err = -EAGAIN; |
| 2794 | goto out_err; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2795 | } |
| 2796 | #ifdef AGGRESSIVE_CHECK |
| 2797 | { |
| 2798 | int i; |
| 2799 | for (i = 0; i < ac->ac_b_ex.fe_len; i++) { |
| 2800 | BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i, |
| 2801 | bitmap_bh->b_data)); |
| 2802 | } |
| 2803 | } |
| 2804 | #endif |
| 2805 | mb_set_bits(sb_bgl_lock(sbi, ac->ac_b_ex.fe_group), bitmap_bh->b_data, |
| 2806 | ac->ac_b_ex.fe_start, ac->ac_b_ex.fe_len); |
| 2807 | |
| 2808 | spin_lock(sb_bgl_lock(sbi, ac->ac_b_ex.fe_group)); |
| 2809 | if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) { |
| 2810 | gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT); |
| 2811 | gdp->bg_free_blocks_count = |
| 2812 | cpu_to_le16(ext4_free_blocks_after_init(sb, |
| 2813 | ac->ac_b_ex.fe_group, |
| 2814 | gdp)); |
| 2815 | } |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2816 | le16_add_cpu(&gdp->bg_free_blocks_count, -ac->ac_b_ex.fe_len); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2817 | gdp->bg_checksum = ext4_group_desc_csum(sbi, ac->ac_b_ex.fe_group, gdp); |
| 2818 | spin_unlock(sb_bgl_lock(sbi, ac->ac_b_ex.fe_group)); |
| 2819 | percpu_counter_sub(&sbi->s_freeblocks_counter, ac->ac_b_ex.fe_len); |
| 2820 | |
| 2821 | err = ext4_journal_dirty_metadata(handle, bitmap_bh); |
| 2822 | if (err) |
| 2823 | goto out_err; |
| 2824 | err = ext4_journal_dirty_metadata(handle, gdp_bh); |
| 2825 | |
| 2826 | out_err: |
| 2827 | sb->s_dirt = 1; |
Aneesh Kumar K.V | 42a10ad | 2008-02-10 01:07:28 -0500 | [diff] [blame] | 2828 | brelse(bitmap_bh); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2829 | return err; |
| 2830 | } |
| 2831 | |
| 2832 | /* |
| 2833 | * here we normalize request for locality group |
| 2834 | * Group request are normalized to s_strip size if we set the same via mount |
| 2835 | * option. If not we set it to s_mb_group_prealloc which can be configured via |
| 2836 | * /proc/fs/ext4/<partition>/group_prealloc |
| 2837 | * |
| 2838 | * XXX: should we try to preallocate more than the group has now? |
| 2839 | */ |
| 2840 | static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac) |
| 2841 | { |
| 2842 | struct super_block *sb = ac->ac_sb; |
| 2843 | struct ext4_locality_group *lg = ac->ac_lg; |
| 2844 | |
| 2845 | BUG_ON(lg == NULL); |
| 2846 | if (EXT4_SB(sb)->s_stripe) |
| 2847 | ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_stripe; |
| 2848 | else |
| 2849 | ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc; |
Solofo Ramangalahy | 60bd63d | 2008-04-29 21:59:59 -0400 | [diff] [blame] | 2850 | mb_debug("#%u: goal %u blocks for locality group\n", |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2851 | current->pid, ac->ac_g_ex.fe_len); |
| 2852 | } |
| 2853 | |
| 2854 | /* |
| 2855 | * Normalization means making request better in terms of |
| 2856 | * size and alignment |
| 2857 | */ |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 2858 | static noinline_for_stack void |
| 2859 | ext4_mb_normalize_request(struct ext4_allocation_context *ac, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2860 | struct ext4_allocation_request *ar) |
| 2861 | { |
| 2862 | int bsbits, max; |
| 2863 | ext4_lblk_t end; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2864 | loff_t size, orig_size, start_off; |
| 2865 | ext4_lblk_t start, orig_start; |
| 2866 | struct ext4_inode_info *ei = EXT4_I(ac->ac_inode); |
Aneesh Kumar K.V | 9a0762c | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2867 | struct ext4_prealloc_space *pa; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2868 | |
| 2869 | /* do normalize only data requests, metadata requests |
| 2870 | do not need preallocation */ |
| 2871 | if (!(ac->ac_flags & EXT4_MB_HINT_DATA)) |
| 2872 | return; |
| 2873 | |
| 2874 | /* sometime caller may want exact blocks */ |
| 2875 | if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY)) |
| 2876 | return; |
| 2877 | |
| 2878 | /* caller may indicate that preallocation isn't |
| 2879 | * required (it's a tail, for example) */ |
| 2880 | if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC) |
| 2881 | return; |
| 2882 | |
| 2883 | if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) { |
| 2884 | ext4_mb_normalize_group_request(ac); |
| 2885 | return ; |
| 2886 | } |
| 2887 | |
| 2888 | bsbits = ac->ac_sb->s_blocksize_bits; |
| 2889 | |
| 2890 | /* first, let's learn actual file size |
| 2891 | * given current request is allocated */ |
| 2892 | size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len; |
| 2893 | size = size << bsbits; |
| 2894 | if (size < i_size_read(ac->ac_inode)) |
| 2895 | size = i_size_read(ac->ac_inode); |
| 2896 | |
Valerie Clement | 1930479 | 2008-05-13 19:31:14 -0400 | [diff] [blame] | 2897 | /* max size of free chunks */ |
| 2898 | max = 2 << bsbits; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2899 | |
Valerie Clement | 1930479 | 2008-05-13 19:31:14 -0400 | [diff] [blame] | 2900 | #define NRL_CHECK_SIZE(req, size, max, chunk_size) \ |
| 2901 | (req <= (size) || max <= (chunk_size)) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2902 | |
| 2903 | /* first, try to predict filesize */ |
| 2904 | /* XXX: should this table be tunable? */ |
| 2905 | start_off = 0; |
| 2906 | if (size <= 16 * 1024) { |
| 2907 | size = 16 * 1024; |
| 2908 | } else if (size <= 32 * 1024) { |
| 2909 | size = 32 * 1024; |
| 2910 | } else if (size <= 64 * 1024) { |
| 2911 | size = 64 * 1024; |
| 2912 | } else if (size <= 128 * 1024) { |
| 2913 | size = 128 * 1024; |
| 2914 | } else if (size <= 256 * 1024) { |
| 2915 | size = 256 * 1024; |
| 2916 | } else if (size <= 512 * 1024) { |
| 2917 | size = 512 * 1024; |
| 2918 | } else if (size <= 1024 * 1024) { |
| 2919 | size = 1024 * 1024; |
Valerie Clement | 1930479 | 2008-05-13 19:31:14 -0400 | [diff] [blame] | 2920 | } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2921 | start_off = ((loff_t)ac->ac_o_ex.fe_logical >> |
Valerie Clement | 1930479 | 2008-05-13 19:31:14 -0400 | [diff] [blame] | 2922 | (21 - bsbits)) << 21; |
| 2923 | size = 2 * 1024 * 1024; |
| 2924 | } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2925 | start_off = ((loff_t)ac->ac_o_ex.fe_logical >> |
| 2926 | (22 - bsbits)) << 22; |
| 2927 | size = 4 * 1024 * 1024; |
| 2928 | } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len, |
Valerie Clement | 1930479 | 2008-05-13 19:31:14 -0400 | [diff] [blame] | 2929 | (8<<20)>>bsbits, max, 8 * 1024)) { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2930 | start_off = ((loff_t)ac->ac_o_ex.fe_logical >> |
| 2931 | (23 - bsbits)) << 23; |
| 2932 | size = 8 * 1024 * 1024; |
| 2933 | } else { |
| 2934 | start_off = (loff_t)ac->ac_o_ex.fe_logical << bsbits; |
| 2935 | size = ac->ac_o_ex.fe_len << bsbits; |
| 2936 | } |
| 2937 | orig_size = size = size >> bsbits; |
| 2938 | orig_start = start = start_off >> bsbits; |
| 2939 | |
| 2940 | /* don't cover already allocated blocks in selected range */ |
| 2941 | if (ar->pleft && start <= ar->lleft) { |
| 2942 | size -= ar->lleft + 1 - start; |
| 2943 | start = ar->lleft + 1; |
| 2944 | } |
| 2945 | if (ar->pright && start + size - 1 >= ar->lright) |
| 2946 | size -= start + size - ar->lright; |
| 2947 | |
| 2948 | end = start + size; |
| 2949 | |
| 2950 | /* check we don't cross already preallocated blocks */ |
| 2951 | rcu_read_lock(); |
Aneesh Kumar K.V | 9a0762c | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2952 | list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2953 | unsigned long pa_end; |
| 2954 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2955 | if (pa->pa_deleted) |
| 2956 | continue; |
| 2957 | spin_lock(&pa->pa_lock); |
| 2958 | if (pa->pa_deleted) { |
| 2959 | spin_unlock(&pa->pa_lock); |
| 2960 | continue; |
| 2961 | } |
| 2962 | |
| 2963 | pa_end = pa->pa_lstart + pa->pa_len; |
| 2964 | |
| 2965 | /* PA must not overlap original request */ |
| 2966 | BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end || |
| 2967 | ac->ac_o_ex.fe_logical < pa->pa_lstart)); |
| 2968 | |
| 2969 | /* skip PA normalized request doesn't overlap with */ |
| 2970 | if (pa->pa_lstart >= end) { |
| 2971 | spin_unlock(&pa->pa_lock); |
| 2972 | continue; |
| 2973 | } |
| 2974 | if (pa_end <= start) { |
| 2975 | spin_unlock(&pa->pa_lock); |
| 2976 | continue; |
| 2977 | } |
| 2978 | BUG_ON(pa->pa_lstart <= start && pa_end >= end); |
| 2979 | |
| 2980 | if (pa_end <= ac->ac_o_ex.fe_logical) { |
| 2981 | BUG_ON(pa_end < start); |
| 2982 | start = pa_end; |
| 2983 | } |
| 2984 | |
| 2985 | if (pa->pa_lstart > ac->ac_o_ex.fe_logical) { |
| 2986 | BUG_ON(pa->pa_lstart > end); |
| 2987 | end = pa->pa_lstart; |
| 2988 | } |
| 2989 | spin_unlock(&pa->pa_lock); |
| 2990 | } |
| 2991 | rcu_read_unlock(); |
| 2992 | size = end - start; |
| 2993 | |
| 2994 | /* XXX: extra loop to check we really don't overlap preallocations */ |
| 2995 | rcu_read_lock(); |
Aneesh Kumar K.V | 9a0762c | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 2996 | list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2997 | unsigned long pa_end; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 2998 | spin_lock(&pa->pa_lock); |
| 2999 | if (pa->pa_deleted == 0) { |
| 3000 | pa_end = pa->pa_lstart + pa->pa_len; |
| 3001 | BUG_ON(!(start >= pa_end || end <= pa->pa_lstart)); |
| 3002 | } |
| 3003 | spin_unlock(&pa->pa_lock); |
| 3004 | } |
| 3005 | rcu_read_unlock(); |
| 3006 | |
| 3007 | if (start + size <= ac->ac_o_ex.fe_logical && |
| 3008 | start > ac->ac_o_ex.fe_logical) { |
| 3009 | printk(KERN_ERR "start %lu, size %lu, fe_logical %lu\n", |
| 3010 | (unsigned long) start, (unsigned long) size, |
| 3011 | (unsigned long) ac->ac_o_ex.fe_logical); |
| 3012 | } |
| 3013 | BUG_ON(start + size <= ac->ac_o_ex.fe_logical && |
| 3014 | start > ac->ac_o_ex.fe_logical); |
| 3015 | BUG_ON(size <= 0 || size >= EXT4_BLOCKS_PER_GROUP(ac->ac_sb)); |
| 3016 | |
| 3017 | /* now prepare goal request */ |
| 3018 | |
| 3019 | /* XXX: is it better to align blocks WRT to logical |
| 3020 | * placement or satisfy big request as is */ |
| 3021 | ac->ac_g_ex.fe_logical = start; |
| 3022 | ac->ac_g_ex.fe_len = size; |
| 3023 | |
| 3024 | /* define goal start in order to merge */ |
| 3025 | if (ar->pright && (ar->lright == (start + size))) { |
| 3026 | /* merge to the right */ |
| 3027 | ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size, |
| 3028 | &ac->ac_f_ex.fe_group, |
| 3029 | &ac->ac_f_ex.fe_start); |
| 3030 | ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL; |
| 3031 | } |
| 3032 | if (ar->pleft && (ar->lleft + 1 == start)) { |
| 3033 | /* merge to the left */ |
| 3034 | ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1, |
| 3035 | &ac->ac_f_ex.fe_group, |
| 3036 | &ac->ac_f_ex.fe_start); |
| 3037 | ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL; |
| 3038 | } |
| 3039 | |
| 3040 | mb_debug("goal: %u(was %u) blocks at %u\n", (unsigned) size, |
| 3041 | (unsigned) orig_size, (unsigned) start); |
| 3042 | } |
| 3043 | |
| 3044 | static void ext4_mb_collect_stats(struct ext4_allocation_context *ac) |
| 3045 | { |
| 3046 | struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); |
| 3047 | |
| 3048 | if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) { |
| 3049 | atomic_inc(&sbi->s_bal_reqs); |
| 3050 | atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated); |
| 3051 | if (ac->ac_o_ex.fe_len >= ac->ac_g_ex.fe_len) |
| 3052 | atomic_inc(&sbi->s_bal_success); |
| 3053 | atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned); |
| 3054 | if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start && |
| 3055 | ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group) |
| 3056 | atomic_inc(&sbi->s_bal_goals); |
| 3057 | if (ac->ac_found > sbi->s_mb_max_to_scan) |
| 3058 | atomic_inc(&sbi->s_bal_breaks); |
| 3059 | } |
| 3060 | |
| 3061 | ext4_mb_store_history(ac); |
| 3062 | } |
| 3063 | |
| 3064 | /* |
| 3065 | * use blocks preallocated to inode |
| 3066 | */ |
| 3067 | static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac, |
| 3068 | struct ext4_prealloc_space *pa) |
| 3069 | { |
| 3070 | ext4_fsblk_t start; |
| 3071 | ext4_fsblk_t end; |
| 3072 | int len; |
| 3073 | |
| 3074 | /* found preallocated blocks, use them */ |
| 3075 | start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart); |
| 3076 | end = min(pa->pa_pstart + pa->pa_len, start + ac->ac_o_ex.fe_len); |
| 3077 | len = end - start; |
| 3078 | ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group, |
| 3079 | &ac->ac_b_ex.fe_start); |
| 3080 | ac->ac_b_ex.fe_len = len; |
| 3081 | ac->ac_status = AC_STATUS_FOUND; |
| 3082 | ac->ac_pa = pa; |
| 3083 | |
| 3084 | BUG_ON(start < pa->pa_pstart); |
| 3085 | BUG_ON(start + len > pa->pa_pstart + pa->pa_len); |
| 3086 | BUG_ON(pa->pa_free < len); |
| 3087 | pa->pa_free -= len; |
| 3088 | |
Solofo Ramangalahy | 60bd63d | 2008-04-29 21:59:59 -0400 | [diff] [blame] | 3089 | mb_debug("use %llu/%u from inode pa %p\n", start, len, pa); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3090 | } |
| 3091 | |
| 3092 | /* |
| 3093 | * use blocks preallocated to locality group |
| 3094 | */ |
| 3095 | static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac, |
| 3096 | struct ext4_prealloc_space *pa) |
| 3097 | { |
Aneesh Kumar K.V | 03cddb8 | 2008-06-05 20:59:29 -0400 | [diff] [blame^] | 3098 | unsigned int len = ac->ac_o_ex.fe_len; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3099 | ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart, |
| 3100 | &ac->ac_b_ex.fe_group, |
| 3101 | &ac->ac_b_ex.fe_start); |
| 3102 | ac->ac_b_ex.fe_len = len; |
| 3103 | ac->ac_status = AC_STATUS_FOUND; |
| 3104 | ac->ac_pa = pa; |
| 3105 | |
| 3106 | /* we don't correct pa_pstart or pa_plen here to avoid |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 3107 | * possible race when the group is being loaded concurrently |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3108 | * instead we correct pa later, after blocks are marked |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 3109 | * in on-disk bitmap -- see ext4_mb_release_context() |
| 3110 | * Other CPUs are prevented from allocating from this pa by lg_mutex |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3111 | */ |
| 3112 | mb_debug("use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa); |
| 3113 | } |
| 3114 | |
| 3115 | /* |
| 3116 | * search goal blocks in preallocated space |
| 3117 | */ |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3118 | static noinline_for_stack int |
| 3119 | ext4_mb_use_preallocated(struct ext4_allocation_context *ac) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3120 | { |
| 3121 | struct ext4_inode_info *ei = EXT4_I(ac->ac_inode); |
| 3122 | struct ext4_locality_group *lg; |
| 3123 | struct ext4_prealloc_space *pa; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3124 | |
| 3125 | /* only data can be preallocated */ |
| 3126 | if (!(ac->ac_flags & EXT4_MB_HINT_DATA)) |
| 3127 | return 0; |
| 3128 | |
| 3129 | /* first, try per-file preallocation */ |
| 3130 | rcu_read_lock(); |
Aneesh Kumar K.V | 9a0762c | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 3131 | list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3132 | |
| 3133 | /* all fields in this condition don't change, |
| 3134 | * so we can skip locking for them */ |
| 3135 | if (ac->ac_o_ex.fe_logical < pa->pa_lstart || |
| 3136 | ac->ac_o_ex.fe_logical >= pa->pa_lstart + pa->pa_len) |
| 3137 | continue; |
| 3138 | |
| 3139 | /* found preallocated blocks, use them */ |
| 3140 | spin_lock(&pa->pa_lock); |
| 3141 | if (pa->pa_deleted == 0 && pa->pa_free) { |
| 3142 | atomic_inc(&pa->pa_count); |
| 3143 | ext4_mb_use_inode_pa(ac, pa); |
| 3144 | spin_unlock(&pa->pa_lock); |
| 3145 | ac->ac_criteria = 10; |
| 3146 | rcu_read_unlock(); |
| 3147 | return 1; |
| 3148 | } |
| 3149 | spin_unlock(&pa->pa_lock); |
| 3150 | } |
| 3151 | rcu_read_unlock(); |
| 3152 | |
| 3153 | /* can we use group allocation? */ |
| 3154 | if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)) |
| 3155 | return 0; |
| 3156 | |
| 3157 | /* inode may have no locality group for some reason */ |
| 3158 | lg = ac->ac_lg; |
| 3159 | if (lg == NULL) |
| 3160 | return 0; |
| 3161 | |
| 3162 | rcu_read_lock(); |
Aneesh Kumar K.V | 9a0762c | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 3163 | list_for_each_entry_rcu(pa, &lg->lg_prealloc_list, pa_inode_list) { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3164 | spin_lock(&pa->pa_lock); |
| 3165 | if (pa->pa_deleted == 0 && pa->pa_free >= ac->ac_o_ex.fe_len) { |
| 3166 | atomic_inc(&pa->pa_count); |
| 3167 | ext4_mb_use_group_pa(ac, pa); |
| 3168 | spin_unlock(&pa->pa_lock); |
| 3169 | ac->ac_criteria = 20; |
| 3170 | rcu_read_unlock(); |
| 3171 | return 1; |
| 3172 | } |
| 3173 | spin_unlock(&pa->pa_lock); |
| 3174 | } |
| 3175 | rcu_read_unlock(); |
| 3176 | |
| 3177 | return 0; |
| 3178 | } |
| 3179 | |
| 3180 | /* |
| 3181 | * the function goes through all preallocation in this group and marks them |
| 3182 | * used in in-core bitmap. buddy must be generated from this bitmap |
| 3183 | * Need to be called with ext4 group lock (ext4_lock_group) |
| 3184 | */ |
| 3185 | static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap, |
| 3186 | ext4_group_t group) |
| 3187 | { |
| 3188 | struct ext4_group_info *grp = ext4_get_group_info(sb, group); |
| 3189 | struct ext4_prealloc_space *pa; |
| 3190 | struct list_head *cur; |
| 3191 | ext4_group_t groupnr; |
| 3192 | ext4_grpblk_t start; |
| 3193 | int preallocated = 0; |
| 3194 | int count = 0; |
| 3195 | int len; |
| 3196 | |
| 3197 | /* all form of preallocation discards first load group, |
| 3198 | * so the only competing code is preallocation use. |
| 3199 | * we don't need any locking here |
| 3200 | * notice we do NOT ignore preallocations with pa_deleted |
| 3201 | * otherwise we could leave used blocks available for |
| 3202 | * allocation in buddy when concurrent ext4_mb_put_pa() |
| 3203 | * is dropping preallocation |
| 3204 | */ |
| 3205 | list_for_each(cur, &grp->bb_prealloc_list) { |
| 3206 | pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list); |
| 3207 | spin_lock(&pa->pa_lock); |
| 3208 | ext4_get_group_no_and_offset(sb, pa->pa_pstart, |
| 3209 | &groupnr, &start); |
| 3210 | len = pa->pa_len; |
| 3211 | spin_unlock(&pa->pa_lock); |
| 3212 | if (unlikely(len == 0)) |
| 3213 | continue; |
| 3214 | BUG_ON(groupnr != group); |
| 3215 | mb_set_bits(sb_bgl_lock(EXT4_SB(sb), group), |
| 3216 | bitmap, start, len); |
| 3217 | preallocated += len; |
| 3218 | count++; |
| 3219 | } |
| 3220 | mb_debug("prellocated %u for group %lu\n", preallocated, group); |
| 3221 | } |
| 3222 | |
| 3223 | static void ext4_mb_pa_callback(struct rcu_head *head) |
| 3224 | { |
| 3225 | struct ext4_prealloc_space *pa; |
| 3226 | pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu); |
| 3227 | kmem_cache_free(ext4_pspace_cachep, pa); |
| 3228 | } |
| 3229 | |
| 3230 | /* |
| 3231 | * drops a reference to preallocated space descriptor |
| 3232 | * if this was the last reference and the space is consumed |
| 3233 | */ |
| 3234 | static void ext4_mb_put_pa(struct ext4_allocation_context *ac, |
| 3235 | struct super_block *sb, struct ext4_prealloc_space *pa) |
| 3236 | { |
| 3237 | unsigned long grp; |
| 3238 | |
| 3239 | if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0) |
| 3240 | return; |
| 3241 | |
| 3242 | /* in this short window concurrent discard can set pa_deleted */ |
| 3243 | spin_lock(&pa->pa_lock); |
| 3244 | if (pa->pa_deleted == 1) { |
| 3245 | spin_unlock(&pa->pa_lock); |
| 3246 | return; |
| 3247 | } |
| 3248 | |
| 3249 | pa->pa_deleted = 1; |
| 3250 | spin_unlock(&pa->pa_lock); |
| 3251 | |
| 3252 | /* -1 is to protect from crossing allocation group */ |
| 3253 | ext4_get_group_no_and_offset(sb, pa->pa_pstart - 1, &grp, NULL); |
| 3254 | |
| 3255 | /* |
| 3256 | * possible race: |
| 3257 | * |
| 3258 | * P1 (buddy init) P2 (regular allocation) |
| 3259 | * find block B in PA |
| 3260 | * copy on-disk bitmap to buddy |
| 3261 | * mark B in on-disk bitmap |
| 3262 | * drop PA from group |
| 3263 | * mark all PAs in buddy |
| 3264 | * |
| 3265 | * thus, P1 initializes buddy with B available. to prevent this |
| 3266 | * we make "copy" and "mark all PAs" atomic and serialize "drop PA" |
| 3267 | * against that pair |
| 3268 | */ |
| 3269 | ext4_lock_group(sb, grp); |
| 3270 | list_del(&pa->pa_group_list); |
| 3271 | ext4_unlock_group(sb, grp); |
| 3272 | |
| 3273 | spin_lock(pa->pa_obj_lock); |
| 3274 | list_del_rcu(&pa->pa_inode_list); |
| 3275 | spin_unlock(pa->pa_obj_lock); |
| 3276 | |
| 3277 | call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback); |
| 3278 | } |
| 3279 | |
| 3280 | /* |
| 3281 | * creates new preallocated space for given inode |
| 3282 | */ |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3283 | static noinline_for_stack int |
| 3284 | ext4_mb_new_inode_pa(struct ext4_allocation_context *ac) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3285 | { |
| 3286 | struct super_block *sb = ac->ac_sb; |
| 3287 | struct ext4_prealloc_space *pa; |
| 3288 | struct ext4_group_info *grp; |
| 3289 | struct ext4_inode_info *ei; |
| 3290 | |
| 3291 | /* preallocate only when found space is larger then requested */ |
| 3292 | BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len); |
| 3293 | BUG_ON(ac->ac_status != AC_STATUS_FOUND); |
| 3294 | BUG_ON(!S_ISREG(ac->ac_inode->i_mode)); |
| 3295 | |
| 3296 | pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS); |
| 3297 | if (pa == NULL) |
| 3298 | return -ENOMEM; |
| 3299 | |
| 3300 | if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) { |
| 3301 | int winl; |
| 3302 | int wins; |
| 3303 | int win; |
| 3304 | int offs; |
| 3305 | |
| 3306 | /* we can't allocate as much as normalizer wants. |
| 3307 | * so, found space must get proper lstart |
| 3308 | * to cover original request */ |
| 3309 | BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical); |
| 3310 | BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len); |
| 3311 | |
| 3312 | /* we're limited by original request in that |
| 3313 | * logical block must be covered any way |
| 3314 | * winl is window we can move our chunk within */ |
| 3315 | winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical; |
| 3316 | |
| 3317 | /* also, we should cover whole original request */ |
| 3318 | wins = ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len; |
| 3319 | |
| 3320 | /* the smallest one defines real window */ |
| 3321 | win = min(winl, wins); |
| 3322 | |
| 3323 | offs = ac->ac_o_ex.fe_logical % ac->ac_b_ex.fe_len; |
| 3324 | if (offs && offs < win) |
| 3325 | win = offs; |
| 3326 | |
| 3327 | ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical - win; |
| 3328 | BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical); |
| 3329 | BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len); |
| 3330 | } |
| 3331 | |
| 3332 | /* preallocation can change ac_b_ex, thus we store actually |
| 3333 | * allocated blocks for history */ |
| 3334 | ac->ac_f_ex = ac->ac_b_ex; |
| 3335 | |
| 3336 | pa->pa_lstart = ac->ac_b_ex.fe_logical; |
| 3337 | pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex); |
| 3338 | pa->pa_len = ac->ac_b_ex.fe_len; |
| 3339 | pa->pa_free = pa->pa_len; |
| 3340 | atomic_set(&pa->pa_count, 1); |
| 3341 | spin_lock_init(&pa->pa_lock); |
| 3342 | pa->pa_deleted = 0; |
| 3343 | pa->pa_linear = 0; |
| 3344 | |
| 3345 | mb_debug("new inode pa %p: %llu/%u for %u\n", pa, |
| 3346 | pa->pa_pstart, pa->pa_len, pa->pa_lstart); |
| 3347 | |
| 3348 | ext4_mb_use_inode_pa(ac, pa); |
| 3349 | atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated); |
| 3350 | |
| 3351 | ei = EXT4_I(ac->ac_inode); |
| 3352 | grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group); |
| 3353 | |
| 3354 | pa->pa_obj_lock = &ei->i_prealloc_lock; |
| 3355 | pa->pa_inode = ac->ac_inode; |
| 3356 | |
| 3357 | ext4_lock_group(sb, ac->ac_b_ex.fe_group); |
| 3358 | list_add(&pa->pa_group_list, &grp->bb_prealloc_list); |
| 3359 | ext4_unlock_group(sb, ac->ac_b_ex.fe_group); |
| 3360 | |
| 3361 | spin_lock(pa->pa_obj_lock); |
| 3362 | list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list); |
| 3363 | spin_unlock(pa->pa_obj_lock); |
| 3364 | |
| 3365 | return 0; |
| 3366 | } |
| 3367 | |
| 3368 | /* |
| 3369 | * creates new preallocated space for locality group inodes belongs to |
| 3370 | */ |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3371 | static noinline_for_stack int |
| 3372 | ext4_mb_new_group_pa(struct ext4_allocation_context *ac) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3373 | { |
| 3374 | struct super_block *sb = ac->ac_sb; |
| 3375 | struct ext4_locality_group *lg; |
| 3376 | struct ext4_prealloc_space *pa; |
| 3377 | struct ext4_group_info *grp; |
| 3378 | |
| 3379 | /* preallocate only when found space is larger then requested */ |
| 3380 | BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len); |
| 3381 | BUG_ON(ac->ac_status != AC_STATUS_FOUND); |
| 3382 | BUG_ON(!S_ISREG(ac->ac_inode->i_mode)); |
| 3383 | |
| 3384 | BUG_ON(ext4_pspace_cachep == NULL); |
| 3385 | pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS); |
| 3386 | if (pa == NULL) |
| 3387 | return -ENOMEM; |
| 3388 | |
| 3389 | /* preallocation can change ac_b_ex, thus we store actually |
| 3390 | * allocated blocks for history */ |
| 3391 | ac->ac_f_ex = ac->ac_b_ex; |
| 3392 | |
| 3393 | pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex); |
| 3394 | pa->pa_lstart = pa->pa_pstart; |
| 3395 | pa->pa_len = ac->ac_b_ex.fe_len; |
| 3396 | pa->pa_free = pa->pa_len; |
| 3397 | atomic_set(&pa->pa_count, 1); |
| 3398 | spin_lock_init(&pa->pa_lock); |
| 3399 | pa->pa_deleted = 0; |
| 3400 | pa->pa_linear = 1; |
| 3401 | |
| 3402 | mb_debug("new group pa %p: %llu/%u for %u\n", pa, |
| 3403 | pa->pa_pstart, pa->pa_len, pa->pa_lstart); |
| 3404 | |
| 3405 | ext4_mb_use_group_pa(ac, pa); |
| 3406 | atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated); |
| 3407 | |
| 3408 | grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group); |
| 3409 | lg = ac->ac_lg; |
| 3410 | BUG_ON(lg == NULL); |
| 3411 | |
| 3412 | pa->pa_obj_lock = &lg->lg_prealloc_lock; |
| 3413 | pa->pa_inode = NULL; |
| 3414 | |
| 3415 | ext4_lock_group(sb, ac->ac_b_ex.fe_group); |
| 3416 | list_add(&pa->pa_group_list, &grp->bb_prealloc_list); |
| 3417 | ext4_unlock_group(sb, ac->ac_b_ex.fe_group); |
| 3418 | |
| 3419 | spin_lock(pa->pa_obj_lock); |
| 3420 | list_add_tail_rcu(&pa->pa_inode_list, &lg->lg_prealloc_list); |
| 3421 | spin_unlock(pa->pa_obj_lock); |
| 3422 | |
| 3423 | return 0; |
| 3424 | } |
| 3425 | |
| 3426 | static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac) |
| 3427 | { |
| 3428 | int err; |
| 3429 | |
| 3430 | if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) |
| 3431 | err = ext4_mb_new_group_pa(ac); |
| 3432 | else |
| 3433 | err = ext4_mb_new_inode_pa(ac); |
| 3434 | return err; |
| 3435 | } |
| 3436 | |
| 3437 | /* |
| 3438 | * finds all unused blocks in on-disk bitmap, frees them in |
| 3439 | * in-core bitmap and buddy. |
| 3440 | * @pa must be unlinked from inode and group lists, so that |
| 3441 | * nobody else can find/use it. |
| 3442 | * the caller MUST hold group/inode locks. |
| 3443 | * TODO: optimize the case when there are no in-core structures yet |
| 3444 | */ |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3445 | static noinline_for_stack int |
| 3446 | ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh, |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3447 | struct ext4_prealloc_space *pa, |
| 3448 | struct ext4_allocation_context *ac) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3449 | { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3450 | struct super_block *sb = e4b->bd_sb; |
| 3451 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 3452 | unsigned long end; |
| 3453 | unsigned long next; |
| 3454 | ext4_group_t group; |
| 3455 | ext4_grpblk_t bit; |
| 3456 | sector_t start; |
| 3457 | int err = 0; |
| 3458 | int free = 0; |
| 3459 | |
| 3460 | BUG_ON(pa->pa_deleted == 0); |
| 3461 | ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit); |
| 3462 | BUG_ON(group != e4b->bd_group && pa->pa_len != 0); |
| 3463 | end = bit + pa->pa_len; |
| 3464 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 3465 | if (ac) { |
| 3466 | ac->ac_sb = sb; |
| 3467 | ac->ac_inode = pa->pa_inode; |
| 3468 | ac->ac_op = EXT4_MB_HISTORY_DISCARD; |
| 3469 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3470 | |
| 3471 | while (bit < end) { |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 3472 | bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3473 | if (bit >= end) |
| 3474 | break; |
Aneesh Kumar K.V | ffad0a4 | 2008-02-23 01:38:34 -0500 | [diff] [blame] | 3475 | next = mb_find_next_bit(bitmap_bh->b_data, end, bit); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3476 | if (next > end) |
| 3477 | next = end; |
| 3478 | start = group * EXT4_BLOCKS_PER_GROUP(sb) + bit + |
| 3479 | le32_to_cpu(sbi->s_es->s_first_data_block); |
| 3480 | mb_debug(" free preallocated %u/%u in group %u\n", |
| 3481 | (unsigned) start, (unsigned) next - bit, |
| 3482 | (unsigned) group); |
| 3483 | free += next - bit; |
| 3484 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 3485 | if (ac) { |
| 3486 | ac->ac_b_ex.fe_group = group; |
| 3487 | ac->ac_b_ex.fe_start = bit; |
| 3488 | ac->ac_b_ex.fe_len = next - bit; |
| 3489 | ac->ac_b_ex.fe_logical = 0; |
| 3490 | ext4_mb_store_history(ac); |
| 3491 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3492 | |
| 3493 | mb_free_blocks(pa->pa_inode, e4b, bit, next - bit); |
| 3494 | bit = next + 1; |
| 3495 | } |
| 3496 | if (free != pa->pa_free) { |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 3497 | printk(KERN_CRIT "pa %p: logic %lu, phys. %lu, len %lu\n", |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3498 | pa, (unsigned long) pa->pa_lstart, |
| 3499 | (unsigned long) pa->pa_pstart, |
| 3500 | (unsigned long) pa->pa_len); |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 3501 | ext4_error(sb, __func__, "free %u, pa_free %u\n", |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 3502 | free, pa->pa_free); |
Aneesh Kumar K.V | e56eb65 | 2008-02-15 13:48:21 -0500 | [diff] [blame] | 3503 | /* |
| 3504 | * pa is already deleted so we use the value obtained |
| 3505 | * from the bitmap and continue. |
| 3506 | */ |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3507 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3508 | atomic_add(free, &sbi->s_mb_discarded); |
| 3509 | |
| 3510 | return err; |
| 3511 | } |
| 3512 | |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3513 | static noinline_for_stack int |
| 3514 | ext4_mb_release_group_pa(struct ext4_buddy *e4b, |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3515 | struct ext4_prealloc_space *pa, |
| 3516 | struct ext4_allocation_context *ac) |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3517 | { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3518 | struct super_block *sb = e4b->bd_sb; |
| 3519 | ext4_group_t group; |
| 3520 | ext4_grpblk_t bit; |
| 3521 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 3522 | if (ac) |
| 3523 | ac->ac_op = EXT4_MB_HISTORY_DISCARD; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3524 | |
| 3525 | BUG_ON(pa->pa_deleted == 0); |
| 3526 | ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit); |
| 3527 | BUG_ON(group != e4b->bd_group && pa->pa_len != 0); |
| 3528 | mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len); |
| 3529 | atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded); |
| 3530 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 3531 | if (ac) { |
| 3532 | ac->ac_sb = sb; |
| 3533 | ac->ac_inode = NULL; |
| 3534 | ac->ac_b_ex.fe_group = group; |
| 3535 | ac->ac_b_ex.fe_start = bit; |
| 3536 | ac->ac_b_ex.fe_len = pa->pa_len; |
| 3537 | ac->ac_b_ex.fe_logical = 0; |
| 3538 | ext4_mb_store_history(ac); |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 3539 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3540 | |
| 3541 | return 0; |
| 3542 | } |
| 3543 | |
| 3544 | /* |
| 3545 | * releases all preallocations in given group |
| 3546 | * |
| 3547 | * first, we need to decide discard policy: |
| 3548 | * - when do we discard |
| 3549 | * 1) ENOSPC |
| 3550 | * - how many do we discard |
| 3551 | * 1) how many requested |
| 3552 | */ |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3553 | static noinline_for_stack int |
| 3554 | ext4_mb_discard_group_preallocations(struct super_block *sb, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3555 | ext4_group_t group, int needed) |
| 3556 | { |
| 3557 | struct ext4_group_info *grp = ext4_get_group_info(sb, group); |
| 3558 | struct buffer_head *bitmap_bh = NULL; |
| 3559 | struct ext4_prealloc_space *pa, *tmp; |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3560 | struct ext4_allocation_context *ac; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3561 | struct list_head list; |
| 3562 | struct ext4_buddy e4b; |
| 3563 | int err; |
| 3564 | int busy = 0; |
| 3565 | int free = 0; |
| 3566 | |
| 3567 | mb_debug("discard preallocation for group %lu\n", group); |
| 3568 | |
| 3569 | if (list_empty(&grp->bb_prealloc_list)) |
| 3570 | return 0; |
| 3571 | |
| 3572 | bitmap_bh = read_block_bitmap(sb, group); |
| 3573 | if (bitmap_bh == NULL) { |
| 3574 | /* error handling here */ |
| 3575 | ext4_mb_release_desc(&e4b); |
| 3576 | BUG_ON(bitmap_bh == NULL); |
| 3577 | } |
| 3578 | |
| 3579 | err = ext4_mb_load_buddy(sb, group, &e4b); |
| 3580 | BUG_ON(err != 0); /* error handling here */ |
| 3581 | |
| 3582 | if (needed == 0) |
| 3583 | needed = EXT4_BLOCKS_PER_GROUP(sb) + 1; |
| 3584 | |
| 3585 | grp = ext4_get_group_info(sb, group); |
| 3586 | INIT_LIST_HEAD(&list); |
| 3587 | |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3588 | ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3589 | repeat: |
| 3590 | ext4_lock_group(sb, group); |
| 3591 | list_for_each_entry_safe(pa, tmp, |
| 3592 | &grp->bb_prealloc_list, pa_group_list) { |
| 3593 | spin_lock(&pa->pa_lock); |
| 3594 | if (atomic_read(&pa->pa_count)) { |
| 3595 | spin_unlock(&pa->pa_lock); |
| 3596 | busy = 1; |
| 3597 | continue; |
| 3598 | } |
| 3599 | if (pa->pa_deleted) { |
| 3600 | spin_unlock(&pa->pa_lock); |
| 3601 | continue; |
| 3602 | } |
| 3603 | |
| 3604 | /* seems this one can be freed ... */ |
| 3605 | pa->pa_deleted = 1; |
| 3606 | |
| 3607 | /* we can trust pa_free ... */ |
| 3608 | free += pa->pa_free; |
| 3609 | |
| 3610 | spin_unlock(&pa->pa_lock); |
| 3611 | |
| 3612 | list_del(&pa->pa_group_list); |
| 3613 | list_add(&pa->u.pa_tmp_list, &list); |
| 3614 | } |
| 3615 | |
| 3616 | /* if we still need more blocks and some PAs were used, try again */ |
| 3617 | if (free < needed && busy) { |
| 3618 | busy = 0; |
| 3619 | ext4_unlock_group(sb, group); |
| 3620 | /* |
| 3621 | * Yield the CPU here so that we don't get soft lockup |
| 3622 | * in non preempt case. |
| 3623 | */ |
| 3624 | yield(); |
| 3625 | goto repeat; |
| 3626 | } |
| 3627 | |
| 3628 | /* found anything to free? */ |
| 3629 | if (list_empty(&list)) { |
| 3630 | BUG_ON(free != 0); |
| 3631 | goto out; |
| 3632 | } |
| 3633 | |
| 3634 | /* now free all selected PAs */ |
| 3635 | list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) { |
| 3636 | |
| 3637 | /* remove from object (inode or locality group) */ |
| 3638 | spin_lock(pa->pa_obj_lock); |
| 3639 | list_del_rcu(&pa->pa_inode_list); |
| 3640 | spin_unlock(pa->pa_obj_lock); |
| 3641 | |
| 3642 | if (pa->pa_linear) |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3643 | ext4_mb_release_group_pa(&e4b, pa, ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3644 | else |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3645 | ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa, ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3646 | |
| 3647 | list_del(&pa->u.pa_tmp_list); |
| 3648 | call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback); |
| 3649 | } |
| 3650 | |
| 3651 | out: |
| 3652 | ext4_unlock_group(sb, group); |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3653 | if (ac) |
| 3654 | kmem_cache_free(ext4_ac_cachep, ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3655 | ext4_mb_release_desc(&e4b); |
| 3656 | put_bh(bitmap_bh); |
| 3657 | return free; |
| 3658 | } |
| 3659 | |
| 3660 | /* |
| 3661 | * releases all non-used preallocated blocks for given inode |
| 3662 | * |
| 3663 | * It's important to discard preallocations under i_data_sem |
| 3664 | * We don't want another block to be served from the prealloc |
| 3665 | * space when we are discarding the inode prealloc space. |
| 3666 | * |
| 3667 | * FIXME!! Make sure it is valid at all the call sites |
| 3668 | */ |
| 3669 | void ext4_mb_discard_inode_preallocations(struct inode *inode) |
| 3670 | { |
| 3671 | struct ext4_inode_info *ei = EXT4_I(inode); |
| 3672 | struct super_block *sb = inode->i_sb; |
| 3673 | struct buffer_head *bitmap_bh = NULL; |
| 3674 | struct ext4_prealloc_space *pa, *tmp; |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3675 | struct ext4_allocation_context *ac; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3676 | ext4_group_t group = 0; |
| 3677 | struct list_head list; |
| 3678 | struct ext4_buddy e4b; |
| 3679 | int err; |
| 3680 | |
| 3681 | if (!test_opt(sb, MBALLOC) || !S_ISREG(inode->i_mode)) { |
| 3682 | /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/ |
| 3683 | return; |
| 3684 | } |
| 3685 | |
| 3686 | mb_debug("discard preallocation for inode %lu\n", inode->i_ino); |
| 3687 | |
| 3688 | INIT_LIST_HEAD(&list); |
| 3689 | |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3690 | ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3691 | repeat: |
| 3692 | /* first, collect all pa's in the inode */ |
| 3693 | spin_lock(&ei->i_prealloc_lock); |
| 3694 | while (!list_empty(&ei->i_prealloc_list)) { |
| 3695 | pa = list_entry(ei->i_prealloc_list.next, |
| 3696 | struct ext4_prealloc_space, pa_inode_list); |
| 3697 | BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock); |
| 3698 | spin_lock(&pa->pa_lock); |
| 3699 | if (atomic_read(&pa->pa_count)) { |
| 3700 | /* this shouldn't happen often - nobody should |
| 3701 | * use preallocation while we're discarding it */ |
| 3702 | spin_unlock(&pa->pa_lock); |
| 3703 | spin_unlock(&ei->i_prealloc_lock); |
| 3704 | printk(KERN_ERR "uh-oh! used pa while discarding\n"); |
| 3705 | WARN_ON(1); |
| 3706 | schedule_timeout_uninterruptible(HZ); |
| 3707 | goto repeat; |
| 3708 | |
| 3709 | } |
| 3710 | if (pa->pa_deleted == 0) { |
| 3711 | pa->pa_deleted = 1; |
| 3712 | spin_unlock(&pa->pa_lock); |
| 3713 | list_del_rcu(&pa->pa_inode_list); |
| 3714 | list_add(&pa->u.pa_tmp_list, &list); |
| 3715 | continue; |
| 3716 | } |
| 3717 | |
| 3718 | /* someone is deleting pa right now */ |
| 3719 | spin_unlock(&pa->pa_lock); |
| 3720 | spin_unlock(&ei->i_prealloc_lock); |
| 3721 | |
| 3722 | /* we have to wait here because pa_deleted |
| 3723 | * doesn't mean pa is already unlinked from |
| 3724 | * the list. as we might be called from |
| 3725 | * ->clear_inode() the inode will get freed |
| 3726 | * and concurrent thread which is unlinking |
| 3727 | * pa from inode's list may access already |
| 3728 | * freed memory, bad-bad-bad */ |
| 3729 | |
| 3730 | /* XXX: if this happens too often, we can |
| 3731 | * add a flag to force wait only in case |
| 3732 | * of ->clear_inode(), but not in case of |
| 3733 | * regular truncate */ |
| 3734 | schedule_timeout_uninterruptible(HZ); |
| 3735 | goto repeat; |
| 3736 | } |
| 3737 | spin_unlock(&ei->i_prealloc_lock); |
| 3738 | |
| 3739 | list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) { |
| 3740 | BUG_ON(pa->pa_linear != 0); |
| 3741 | ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL); |
| 3742 | |
| 3743 | err = ext4_mb_load_buddy(sb, group, &e4b); |
| 3744 | BUG_ON(err != 0); /* error handling here */ |
| 3745 | |
| 3746 | bitmap_bh = read_block_bitmap(sb, group); |
| 3747 | if (bitmap_bh == NULL) { |
| 3748 | /* error handling here */ |
| 3749 | ext4_mb_release_desc(&e4b); |
| 3750 | BUG_ON(bitmap_bh == NULL); |
| 3751 | } |
| 3752 | |
| 3753 | ext4_lock_group(sb, group); |
| 3754 | list_del(&pa->pa_group_list); |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3755 | ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa, ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3756 | ext4_unlock_group(sb, group); |
| 3757 | |
| 3758 | ext4_mb_release_desc(&e4b); |
| 3759 | put_bh(bitmap_bh); |
| 3760 | |
| 3761 | list_del(&pa->u.pa_tmp_list); |
| 3762 | call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback); |
| 3763 | } |
Aneesh Kumar K.V | c83617d | 2008-04-29 22:00:47 -0400 | [diff] [blame] | 3764 | if (ac) |
| 3765 | kmem_cache_free(ext4_ac_cachep, ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3766 | } |
| 3767 | |
| 3768 | /* |
| 3769 | * finds all preallocated spaces and return blocks being freed to them |
| 3770 | * if preallocated space becomes full (no block is used from the space) |
| 3771 | * then the function frees space in buddy |
| 3772 | * XXX: at the moment, truncate (which is the only way to free blocks) |
| 3773 | * discards all preallocations |
| 3774 | */ |
| 3775 | static void ext4_mb_return_to_preallocation(struct inode *inode, |
| 3776 | struct ext4_buddy *e4b, |
| 3777 | sector_t block, int count) |
| 3778 | { |
| 3779 | BUG_ON(!list_empty(&EXT4_I(inode)->i_prealloc_list)); |
| 3780 | } |
| 3781 | #ifdef MB_DEBUG |
| 3782 | static void ext4_mb_show_ac(struct ext4_allocation_context *ac) |
| 3783 | { |
| 3784 | struct super_block *sb = ac->ac_sb; |
| 3785 | ext4_group_t i; |
| 3786 | |
| 3787 | printk(KERN_ERR "EXT4-fs: Can't allocate:" |
| 3788 | " Allocation context details:\n"); |
| 3789 | printk(KERN_ERR "EXT4-fs: status %d flags %d\n", |
| 3790 | ac->ac_status, ac->ac_flags); |
| 3791 | printk(KERN_ERR "EXT4-fs: orig %lu/%lu/%lu@%lu, goal %lu/%lu/%lu@%lu, " |
| 3792 | "best %lu/%lu/%lu@%lu cr %d\n", |
| 3793 | (unsigned long)ac->ac_o_ex.fe_group, |
| 3794 | (unsigned long)ac->ac_o_ex.fe_start, |
| 3795 | (unsigned long)ac->ac_o_ex.fe_len, |
| 3796 | (unsigned long)ac->ac_o_ex.fe_logical, |
| 3797 | (unsigned long)ac->ac_g_ex.fe_group, |
| 3798 | (unsigned long)ac->ac_g_ex.fe_start, |
| 3799 | (unsigned long)ac->ac_g_ex.fe_len, |
| 3800 | (unsigned long)ac->ac_g_ex.fe_logical, |
| 3801 | (unsigned long)ac->ac_b_ex.fe_group, |
| 3802 | (unsigned long)ac->ac_b_ex.fe_start, |
| 3803 | (unsigned long)ac->ac_b_ex.fe_len, |
| 3804 | (unsigned long)ac->ac_b_ex.fe_logical, |
| 3805 | (int)ac->ac_criteria); |
| 3806 | printk(KERN_ERR "EXT4-fs: %lu scanned, %d found\n", ac->ac_ex_scanned, |
| 3807 | ac->ac_found); |
| 3808 | printk(KERN_ERR "EXT4-fs: groups: \n"); |
| 3809 | for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) { |
| 3810 | struct ext4_group_info *grp = ext4_get_group_info(sb, i); |
| 3811 | struct ext4_prealloc_space *pa; |
| 3812 | ext4_grpblk_t start; |
| 3813 | struct list_head *cur; |
| 3814 | ext4_lock_group(sb, i); |
| 3815 | list_for_each(cur, &grp->bb_prealloc_list) { |
| 3816 | pa = list_entry(cur, struct ext4_prealloc_space, |
| 3817 | pa_group_list); |
| 3818 | spin_lock(&pa->pa_lock); |
| 3819 | ext4_get_group_no_and_offset(sb, pa->pa_pstart, |
| 3820 | NULL, &start); |
| 3821 | spin_unlock(&pa->pa_lock); |
| 3822 | printk(KERN_ERR "PA:%lu:%d:%u \n", i, |
| 3823 | start, pa->pa_len); |
| 3824 | } |
Solofo Ramangalahy | 60bd63d | 2008-04-29 21:59:59 -0400 | [diff] [blame] | 3825 | ext4_unlock_group(sb, i); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3826 | |
| 3827 | if (grp->bb_free == 0) |
| 3828 | continue; |
| 3829 | printk(KERN_ERR "%lu: %d/%d \n", |
| 3830 | i, grp->bb_free, grp->bb_fragments); |
| 3831 | } |
| 3832 | printk(KERN_ERR "\n"); |
| 3833 | } |
| 3834 | #else |
| 3835 | static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac) |
| 3836 | { |
| 3837 | return; |
| 3838 | } |
| 3839 | #endif |
| 3840 | |
| 3841 | /* |
| 3842 | * We use locality group preallocation for small size file. The size of the |
| 3843 | * file is determined by the current size or the resulting size after |
| 3844 | * allocation which ever is larger |
| 3845 | * |
| 3846 | * One can tune this size via /proc/fs/ext4/<partition>/stream_req |
| 3847 | */ |
| 3848 | static void ext4_mb_group_or_file(struct ext4_allocation_context *ac) |
| 3849 | { |
| 3850 | struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); |
| 3851 | int bsbits = ac->ac_sb->s_blocksize_bits; |
| 3852 | loff_t size, isize; |
| 3853 | |
| 3854 | if (!(ac->ac_flags & EXT4_MB_HINT_DATA)) |
| 3855 | return; |
| 3856 | |
| 3857 | size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len; |
| 3858 | isize = i_size_read(ac->ac_inode) >> bsbits; |
| 3859 | size = max(size, isize); |
| 3860 | |
| 3861 | /* don't use group allocation for large files */ |
| 3862 | if (size >= sbi->s_mb_stream_request) |
| 3863 | return; |
| 3864 | |
| 3865 | if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY)) |
| 3866 | return; |
| 3867 | |
| 3868 | BUG_ON(ac->ac_lg != NULL); |
| 3869 | /* |
| 3870 | * locality group prealloc space are per cpu. The reason for having |
| 3871 | * per cpu locality group is to reduce the contention between block |
| 3872 | * request from multiple CPUs. |
| 3873 | */ |
| 3874 | ac->ac_lg = &sbi->s_locality_groups[get_cpu()]; |
| 3875 | put_cpu(); |
| 3876 | |
| 3877 | /* we're going to use group allocation */ |
| 3878 | ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC; |
| 3879 | |
| 3880 | /* serialize all allocations in the group */ |
| 3881 | mutex_lock(&ac->ac_lg->lg_mutex); |
| 3882 | } |
| 3883 | |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 3884 | static noinline_for_stack int |
| 3885 | ext4_mb_initialize_context(struct ext4_allocation_context *ac, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 3886 | struct ext4_allocation_request *ar) |
| 3887 | { |
| 3888 | struct super_block *sb = ar->inode->i_sb; |
| 3889 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 3890 | struct ext4_super_block *es = sbi->s_es; |
| 3891 | ext4_group_t group; |
| 3892 | unsigned long len; |
| 3893 | unsigned long goal; |
| 3894 | ext4_grpblk_t block; |
| 3895 | |
| 3896 | /* we can't allocate > group size */ |
| 3897 | len = ar->len; |
| 3898 | |
| 3899 | /* just a dirty hack to filter too big requests */ |
| 3900 | if (len >= EXT4_BLOCKS_PER_GROUP(sb) - 10) |
| 3901 | len = EXT4_BLOCKS_PER_GROUP(sb) - 10; |
| 3902 | |
| 3903 | /* start searching from the goal */ |
| 3904 | goal = ar->goal; |
| 3905 | if (goal < le32_to_cpu(es->s_first_data_block) || |
| 3906 | goal >= ext4_blocks_count(es)) |
| 3907 | goal = le32_to_cpu(es->s_first_data_block); |
| 3908 | ext4_get_group_no_and_offset(sb, goal, &group, &block); |
| 3909 | |
| 3910 | /* set up allocation goals */ |
| 3911 | ac->ac_b_ex.fe_logical = ar->logical; |
| 3912 | ac->ac_b_ex.fe_group = 0; |
| 3913 | ac->ac_b_ex.fe_start = 0; |
| 3914 | ac->ac_b_ex.fe_len = 0; |
| 3915 | ac->ac_status = AC_STATUS_CONTINUE; |
| 3916 | ac->ac_groups_scanned = 0; |
| 3917 | ac->ac_ex_scanned = 0; |
| 3918 | ac->ac_found = 0; |
| 3919 | ac->ac_sb = sb; |
| 3920 | ac->ac_inode = ar->inode; |
| 3921 | ac->ac_o_ex.fe_logical = ar->logical; |
| 3922 | ac->ac_o_ex.fe_group = group; |
| 3923 | ac->ac_o_ex.fe_start = block; |
| 3924 | ac->ac_o_ex.fe_len = len; |
| 3925 | ac->ac_g_ex.fe_logical = ar->logical; |
| 3926 | ac->ac_g_ex.fe_group = group; |
| 3927 | ac->ac_g_ex.fe_start = block; |
| 3928 | ac->ac_g_ex.fe_len = len; |
| 3929 | ac->ac_f_ex.fe_len = 0; |
| 3930 | ac->ac_flags = ar->flags; |
| 3931 | ac->ac_2order = 0; |
| 3932 | ac->ac_criteria = 0; |
| 3933 | ac->ac_pa = NULL; |
| 3934 | ac->ac_bitmap_page = NULL; |
| 3935 | ac->ac_buddy_page = NULL; |
| 3936 | ac->ac_lg = NULL; |
| 3937 | |
| 3938 | /* we have to define context: we'll we work with a file or |
| 3939 | * locality group. this is a policy, actually */ |
| 3940 | ext4_mb_group_or_file(ac); |
| 3941 | |
| 3942 | mb_debug("init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, " |
| 3943 | "left: %u/%u, right %u/%u to %swritable\n", |
| 3944 | (unsigned) ar->len, (unsigned) ar->logical, |
| 3945 | (unsigned) ar->goal, ac->ac_flags, ac->ac_2order, |
| 3946 | (unsigned) ar->lleft, (unsigned) ar->pleft, |
| 3947 | (unsigned) ar->lright, (unsigned) ar->pright, |
| 3948 | atomic_read(&ar->inode->i_writecount) ? "" : "non-"); |
| 3949 | return 0; |
| 3950 | |
| 3951 | } |
| 3952 | |
| 3953 | /* |
| 3954 | * release all resource we used in allocation |
| 3955 | */ |
| 3956 | static int ext4_mb_release_context(struct ext4_allocation_context *ac) |
| 3957 | { |
| 3958 | if (ac->ac_pa) { |
| 3959 | if (ac->ac_pa->pa_linear) { |
| 3960 | /* see comment in ext4_mb_use_group_pa() */ |
| 3961 | spin_lock(&ac->ac_pa->pa_lock); |
| 3962 | ac->ac_pa->pa_pstart += ac->ac_b_ex.fe_len; |
| 3963 | ac->ac_pa->pa_lstart += ac->ac_b_ex.fe_len; |
| 3964 | ac->ac_pa->pa_free -= ac->ac_b_ex.fe_len; |
| 3965 | ac->ac_pa->pa_len -= ac->ac_b_ex.fe_len; |
| 3966 | spin_unlock(&ac->ac_pa->pa_lock); |
| 3967 | } |
| 3968 | ext4_mb_put_pa(ac, ac->ac_sb, ac->ac_pa); |
| 3969 | } |
| 3970 | if (ac->ac_bitmap_page) |
| 3971 | page_cache_release(ac->ac_bitmap_page); |
| 3972 | if (ac->ac_buddy_page) |
| 3973 | page_cache_release(ac->ac_buddy_page); |
| 3974 | if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) |
| 3975 | mutex_unlock(&ac->ac_lg->lg_mutex); |
| 3976 | ext4_mb_collect_stats(ac); |
| 3977 | return 0; |
| 3978 | } |
| 3979 | |
| 3980 | static int ext4_mb_discard_preallocations(struct super_block *sb, int needed) |
| 3981 | { |
| 3982 | ext4_group_t i; |
| 3983 | int ret; |
| 3984 | int freed = 0; |
| 3985 | |
| 3986 | for (i = 0; i < EXT4_SB(sb)->s_groups_count && needed > 0; i++) { |
| 3987 | ret = ext4_mb_discard_group_preallocations(sb, i, needed); |
| 3988 | freed += ret; |
| 3989 | needed -= ret; |
| 3990 | } |
| 3991 | |
| 3992 | return freed; |
| 3993 | } |
| 3994 | |
| 3995 | /* |
| 3996 | * Main entry point into mballoc to allocate blocks |
| 3997 | * it tries to use preallocation first, then falls back |
| 3998 | * to usual allocation |
| 3999 | */ |
| 4000 | ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle, |
| 4001 | struct ext4_allocation_request *ar, int *errp) |
| 4002 | { |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4003 | struct ext4_allocation_context *ac = NULL; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4004 | struct ext4_sb_info *sbi; |
| 4005 | struct super_block *sb; |
| 4006 | ext4_fsblk_t block = 0; |
| 4007 | int freed; |
| 4008 | int inquota; |
| 4009 | |
| 4010 | sb = ar->inode->i_sb; |
| 4011 | sbi = EXT4_SB(sb); |
| 4012 | |
| 4013 | if (!test_opt(sb, MBALLOC)) { |
| 4014 | block = ext4_new_blocks_old(handle, ar->inode, ar->goal, |
| 4015 | &(ar->len), errp); |
| 4016 | return block; |
| 4017 | } |
| 4018 | |
| 4019 | while (ar->len && DQUOT_ALLOC_BLOCK(ar->inode, ar->len)) { |
| 4020 | ar->flags |= EXT4_MB_HINT_NOPREALLOC; |
| 4021 | ar->len--; |
| 4022 | } |
| 4023 | if (ar->len == 0) { |
| 4024 | *errp = -EDQUOT; |
| 4025 | return 0; |
| 4026 | } |
| 4027 | inquota = ar->len; |
| 4028 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4029 | ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS); |
| 4030 | if (!ac) { |
| 4031 | *errp = -ENOMEM; |
| 4032 | return 0; |
| 4033 | } |
| 4034 | |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4035 | ext4_mb_poll_new_transaction(sb, handle); |
| 4036 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4037 | *errp = ext4_mb_initialize_context(ac, ar); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4038 | if (*errp) { |
| 4039 | ar->len = 0; |
| 4040 | goto out; |
| 4041 | } |
| 4042 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4043 | ac->ac_op = EXT4_MB_HISTORY_PREALLOC; |
| 4044 | if (!ext4_mb_use_preallocated(ac)) { |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4045 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4046 | ac->ac_op = EXT4_MB_HISTORY_ALLOC; |
| 4047 | ext4_mb_normalize_request(ac, ar); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4048 | repeat: |
| 4049 | /* allocate space in core */ |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4050 | ext4_mb_regular_allocator(ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4051 | |
| 4052 | /* as we've just preallocated more space than |
| 4053 | * user requested orinally, we store allocated |
| 4054 | * space in a special descriptor */ |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4055 | if (ac->ac_status == AC_STATUS_FOUND && |
| 4056 | ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len) |
| 4057 | ext4_mb_new_preallocation(ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4058 | } |
| 4059 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4060 | if (likely(ac->ac_status == AC_STATUS_FOUND)) { |
Aneesh Kumar K.V | 519deca0 | 2008-05-15 14:43:20 -0400 | [diff] [blame] | 4061 | *errp = ext4_mb_mark_diskspace_used(ac, handle); |
| 4062 | if (*errp == -EAGAIN) { |
| 4063 | ac->ac_b_ex.fe_group = 0; |
| 4064 | ac->ac_b_ex.fe_start = 0; |
| 4065 | ac->ac_b_ex.fe_len = 0; |
| 4066 | ac->ac_status = AC_STATUS_CONTINUE; |
| 4067 | goto repeat; |
| 4068 | } else if (*errp) { |
| 4069 | ac->ac_b_ex.fe_len = 0; |
| 4070 | ar->len = 0; |
| 4071 | ext4_mb_show_ac(ac); |
| 4072 | } else { |
| 4073 | block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex); |
| 4074 | ar->len = ac->ac_b_ex.fe_len; |
| 4075 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4076 | } else { |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4077 | freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4078 | if (freed) |
| 4079 | goto repeat; |
| 4080 | *errp = -ENOSPC; |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4081 | ac->ac_b_ex.fe_len = 0; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4082 | ar->len = 0; |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4083 | ext4_mb_show_ac(ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4084 | } |
| 4085 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4086 | ext4_mb_release_context(ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4087 | |
| 4088 | out: |
| 4089 | if (ar->len < inquota) |
| 4090 | DQUOT_FREE_BLOCK(ar->inode, inquota - ar->len); |
| 4091 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4092 | kmem_cache_free(ext4_ac_cachep, ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4093 | return block; |
| 4094 | } |
| 4095 | static void ext4_mb_poll_new_transaction(struct super_block *sb, |
| 4096 | handle_t *handle) |
| 4097 | { |
| 4098 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 4099 | |
| 4100 | if (sbi->s_last_transaction == handle->h_transaction->t_tid) |
| 4101 | return; |
| 4102 | |
| 4103 | /* new transaction! time to close last one and free blocks for |
| 4104 | * committed transaction. we know that only transaction can be |
| 4105 | * active, so previos transaction can be being logged and we |
| 4106 | * know that transaction before previous is known to be already |
| 4107 | * logged. this means that now we may free blocks freed in all |
| 4108 | * transactions before previous one. hope I'm clear enough ... */ |
| 4109 | |
| 4110 | spin_lock(&sbi->s_md_lock); |
| 4111 | if (sbi->s_last_transaction != handle->h_transaction->t_tid) { |
| 4112 | mb_debug("new transaction %lu, old %lu\n", |
| 4113 | (unsigned long) handle->h_transaction->t_tid, |
| 4114 | (unsigned long) sbi->s_last_transaction); |
| 4115 | list_splice_init(&sbi->s_closed_transaction, |
| 4116 | &sbi->s_committed_transaction); |
| 4117 | list_splice_init(&sbi->s_active_transaction, |
| 4118 | &sbi->s_closed_transaction); |
| 4119 | sbi->s_last_transaction = handle->h_transaction->t_tid; |
| 4120 | } |
| 4121 | spin_unlock(&sbi->s_md_lock); |
| 4122 | |
| 4123 | ext4_mb_free_committed_blocks(sb); |
| 4124 | } |
| 4125 | |
Eric Sandeen | 4ddfef7 | 2008-04-29 08:11:12 -0400 | [diff] [blame] | 4126 | static noinline_for_stack int |
| 4127 | ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4128 | ext4_group_t group, ext4_grpblk_t block, int count) |
| 4129 | { |
| 4130 | struct ext4_group_info *db = e4b->bd_info; |
| 4131 | struct super_block *sb = e4b->bd_sb; |
| 4132 | struct ext4_sb_info *sbi = EXT4_SB(sb); |
| 4133 | struct ext4_free_metadata *md; |
| 4134 | int i; |
| 4135 | |
| 4136 | BUG_ON(e4b->bd_bitmap_page == NULL); |
| 4137 | BUG_ON(e4b->bd_buddy_page == NULL); |
| 4138 | |
| 4139 | ext4_lock_group(sb, group); |
| 4140 | for (i = 0; i < count; i++) { |
| 4141 | md = db->bb_md_cur; |
| 4142 | if (md && db->bb_tid != handle->h_transaction->t_tid) { |
| 4143 | db->bb_md_cur = NULL; |
| 4144 | md = NULL; |
| 4145 | } |
| 4146 | |
| 4147 | if (md == NULL) { |
| 4148 | ext4_unlock_group(sb, group); |
| 4149 | md = kmalloc(sizeof(*md), GFP_NOFS); |
| 4150 | if (md == NULL) |
| 4151 | return -ENOMEM; |
| 4152 | md->num = 0; |
| 4153 | md->group = group; |
| 4154 | |
| 4155 | ext4_lock_group(sb, group); |
| 4156 | if (db->bb_md_cur == NULL) { |
| 4157 | spin_lock(&sbi->s_md_lock); |
| 4158 | list_add(&md->list, &sbi->s_active_transaction); |
| 4159 | spin_unlock(&sbi->s_md_lock); |
| 4160 | /* protect buddy cache from being freed, |
| 4161 | * otherwise we'll refresh it from |
| 4162 | * on-disk bitmap and lose not-yet-available |
| 4163 | * blocks */ |
| 4164 | page_cache_get(e4b->bd_buddy_page); |
| 4165 | page_cache_get(e4b->bd_bitmap_page); |
| 4166 | db->bb_md_cur = md; |
| 4167 | db->bb_tid = handle->h_transaction->t_tid; |
| 4168 | mb_debug("new md 0x%p for group %lu\n", |
| 4169 | md, md->group); |
| 4170 | } else { |
| 4171 | kfree(md); |
| 4172 | md = db->bb_md_cur; |
| 4173 | } |
| 4174 | } |
| 4175 | |
| 4176 | BUG_ON(md->num >= EXT4_BB_MAX_BLOCKS); |
| 4177 | md->blocks[md->num] = block + i; |
| 4178 | md->num++; |
| 4179 | if (md->num == EXT4_BB_MAX_BLOCKS) { |
| 4180 | /* no more space, put full container on a sb's list */ |
| 4181 | db->bb_md_cur = NULL; |
| 4182 | } |
| 4183 | } |
| 4184 | ext4_unlock_group(sb, group); |
| 4185 | return 0; |
| 4186 | } |
| 4187 | |
| 4188 | /* |
| 4189 | * Main entry point into mballoc to free blocks |
| 4190 | */ |
| 4191 | void ext4_mb_free_blocks(handle_t *handle, struct inode *inode, |
| 4192 | unsigned long block, unsigned long count, |
| 4193 | int metadata, unsigned long *freed) |
| 4194 | { |
Aneesh Kumar K.V | 26346ff | 2008-02-10 01:10:04 -0500 | [diff] [blame] | 4195 | struct buffer_head *bitmap_bh = NULL; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4196 | struct super_block *sb = inode->i_sb; |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4197 | struct ext4_allocation_context *ac = NULL; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4198 | struct ext4_group_desc *gdp; |
| 4199 | struct ext4_super_block *es; |
| 4200 | unsigned long overflow; |
| 4201 | ext4_grpblk_t bit; |
| 4202 | struct buffer_head *gd_bh; |
| 4203 | ext4_group_t block_group; |
| 4204 | struct ext4_sb_info *sbi; |
| 4205 | struct ext4_buddy e4b; |
| 4206 | int err = 0; |
| 4207 | int ret; |
| 4208 | |
| 4209 | *freed = 0; |
| 4210 | |
| 4211 | ext4_mb_poll_new_transaction(sb, handle); |
| 4212 | |
| 4213 | sbi = EXT4_SB(sb); |
| 4214 | es = EXT4_SB(sb)->s_es; |
| 4215 | if (block < le32_to_cpu(es->s_first_data_block) || |
| 4216 | block + count < block || |
| 4217 | block + count > ext4_blocks_count(es)) { |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 4218 | ext4_error(sb, __func__, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4219 | "Freeing blocks not in datazone - " |
| 4220 | "block = %lu, count = %lu", block, count); |
| 4221 | goto error_return; |
| 4222 | } |
| 4223 | |
| 4224 | ext4_debug("freeing block %lu\n", block); |
| 4225 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4226 | ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS); |
| 4227 | if (ac) { |
| 4228 | ac->ac_op = EXT4_MB_HISTORY_FREE; |
| 4229 | ac->ac_inode = inode; |
| 4230 | ac->ac_sb = sb; |
| 4231 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4232 | |
| 4233 | do_more: |
| 4234 | overflow = 0; |
| 4235 | ext4_get_group_no_and_offset(sb, block, &block_group, &bit); |
| 4236 | |
| 4237 | /* |
| 4238 | * Check to see if we are freeing blocks across a group |
| 4239 | * boundary. |
| 4240 | */ |
| 4241 | if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) { |
| 4242 | overflow = bit + count - EXT4_BLOCKS_PER_GROUP(sb); |
| 4243 | count -= overflow; |
| 4244 | } |
| 4245 | bitmap_bh = read_block_bitmap(sb, block_group); |
| 4246 | if (!bitmap_bh) |
| 4247 | goto error_return; |
| 4248 | gdp = ext4_get_group_desc(sb, block_group, &gd_bh); |
| 4249 | if (!gdp) |
| 4250 | goto error_return; |
| 4251 | |
| 4252 | if (in_range(ext4_block_bitmap(sb, gdp), block, count) || |
| 4253 | in_range(ext4_inode_bitmap(sb, gdp), block, count) || |
| 4254 | in_range(block, ext4_inode_table(sb, gdp), |
| 4255 | EXT4_SB(sb)->s_itb_per_group) || |
| 4256 | in_range(block + count - 1, ext4_inode_table(sb, gdp), |
| 4257 | EXT4_SB(sb)->s_itb_per_group)) { |
| 4258 | |
Harvey Harrison | 46e665e | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 4259 | ext4_error(sb, __func__, |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4260 | "Freeing blocks in system zone - " |
| 4261 | "Block = %lu, count = %lu", block, count); |
Aneesh Kumar K.V | 519deca0 | 2008-05-15 14:43:20 -0400 | [diff] [blame] | 4262 | /* err = 0. ext4_std_error should be a no op */ |
| 4263 | goto error_return; |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4264 | } |
| 4265 | |
| 4266 | BUFFER_TRACE(bitmap_bh, "getting write access"); |
| 4267 | err = ext4_journal_get_write_access(handle, bitmap_bh); |
| 4268 | if (err) |
| 4269 | goto error_return; |
| 4270 | |
| 4271 | /* |
| 4272 | * We are about to modify some metadata. Call the journal APIs |
| 4273 | * to unshare ->b_data if a currently-committing transaction is |
| 4274 | * using it |
| 4275 | */ |
| 4276 | BUFFER_TRACE(gd_bh, "get_write_access"); |
| 4277 | err = ext4_journal_get_write_access(handle, gd_bh); |
| 4278 | if (err) |
| 4279 | goto error_return; |
| 4280 | |
| 4281 | err = ext4_mb_load_buddy(sb, block_group, &e4b); |
| 4282 | if (err) |
| 4283 | goto error_return; |
| 4284 | |
| 4285 | #ifdef AGGRESSIVE_CHECK |
| 4286 | { |
| 4287 | int i; |
| 4288 | for (i = 0; i < count; i++) |
| 4289 | BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data)); |
| 4290 | } |
| 4291 | #endif |
| 4292 | mb_clear_bits(sb_bgl_lock(sbi, block_group), bitmap_bh->b_data, |
| 4293 | bit, count); |
| 4294 | |
| 4295 | /* We dirtied the bitmap block */ |
| 4296 | BUFFER_TRACE(bitmap_bh, "dirtied bitmap block"); |
| 4297 | err = ext4_journal_dirty_metadata(handle, bitmap_bh); |
| 4298 | |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4299 | if (ac) { |
| 4300 | ac->ac_b_ex.fe_group = block_group; |
| 4301 | ac->ac_b_ex.fe_start = bit; |
| 4302 | ac->ac_b_ex.fe_len = count; |
| 4303 | ext4_mb_store_history(ac); |
| 4304 | } |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4305 | |
| 4306 | if (metadata) { |
| 4307 | /* blocks being freed are metadata. these blocks shouldn't |
| 4308 | * be used until this transaction is committed */ |
| 4309 | ext4_mb_free_metadata(handle, &e4b, block_group, bit, count); |
| 4310 | } else { |
| 4311 | ext4_lock_group(sb, block_group); |
| 4312 | err = mb_free_blocks(inode, &e4b, bit, count); |
| 4313 | ext4_mb_return_to_preallocation(inode, &e4b, block, count); |
| 4314 | ext4_unlock_group(sb, block_group); |
| 4315 | BUG_ON(err != 0); |
| 4316 | } |
| 4317 | |
| 4318 | spin_lock(sb_bgl_lock(sbi, block_group)); |
Marcin Slusarz | e8546d0 | 2008-04-17 10:38:59 -0400 | [diff] [blame] | 4319 | le16_add_cpu(&gdp->bg_free_blocks_count, count); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4320 | gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp); |
| 4321 | spin_unlock(sb_bgl_lock(sbi, block_group)); |
| 4322 | percpu_counter_add(&sbi->s_freeblocks_counter, count); |
| 4323 | |
| 4324 | ext4_mb_release_desc(&e4b); |
| 4325 | |
| 4326 | *freed += count; |
| 4327 | |
| 4328 | /* And the group descriptor block */ |
| 4329 | BUFFER_TRACE(gd_bh, "dirtied group descriptor block"); |
| 4330 | ret = ext4_journal_dirty_metadata(handle, gd_bh); |
| 4331 | if (!err) |
| 4332 | err = ret; |
| 4333 | |
| 4334 | if (overflow && !err) { |
| 4335 | block += count; |
| 4336 | count = overflow; |
| 4337 | put_bh(bitmap_bh); |
| 4338 | goto do_more; |
| 4339 | } |
| 4340 | sb->s_dirt = 1; |
| 4341 | error_return: |
| 4342 | brelse(bitmap_bh); |
| 4343 | ext4_std_error(sb, err); |
Eric Sandeen | 256bdb4 | 2008-02-10 01:13:33 -0500 | [diff] [blame] | 4344 | if (ac) |
| 4345 | kmem_cache_free(ext4_ac_cachep, ac); |
Alex Tomas | c9de560 | 2008-01-29 00:19:52 -0500 | [diff] [blame] | 4346 | return; |
| 4347 | } |