GNU Linux-libre 5.4.257-gnu1
[releases.git] / fs / ext4 / mballoc.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
4  * Written by Alex Tomas <alex@clusterfs.com>
5  */
6
7
8 /*
9  * mballoc.c contains the multiblocks allocation routines
10  */
11
12 #include "ext4_jbd2.h"
13 #include "mballoc.h"
14 #include <linux/log2.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <linux/nospec.h>
18 #include <linux/backing-dev.h>
19 #include <trace/events/ext4.h>
20
21 #ifdef CONFIG_EXT4_DEBUG
22 ushort ext4_mballoc_debug __read_mostly;
23
24 module_param_named(mballoc_debug, ext4_mballoc_debug, ushort, 0644);
25 MODULE_PARM_DESC(mballoc_debug, "Debugging level for ext4's mballoc");
26 #endif
27
28 /*
29  * MUSTDO:
30  *   - test ext4_ext_search_left() and ext4_ext_search_right()
31  *   - search for metadata in few groups
32  *
33  * TODO v4:
34  *   - normalization should take into account whether file is still open
35  *   - discard preallocations if no free space left (policy?)
36  *   - don't normalize tails
37  *   - quota
38  *   - reservation for superuser
39  *
40  * TODO v3:
41  *   - bitmap read-ahead (proposed by Oleg Drokin aka green)
42  *   - track min/max extents in each group for better group selection
43  *   - mb_mark_used() may allocate chunk right after splitting buddy
44  *   - tree of groups sorted by number of free blocks
45  *   - error handling
46  */
47
48 /*
49  * The allocation request involve request for multiple number of blocks
50  * near to the goal(block) value specified.
51  *
52  * During initialization phase of the allocator we decide to use the
53  * group preallocation or inode preallocation depending on the size of
54  * the file. The size of the file could be the resulting file size we
55  * would have after allocation, or the current file size, which ever
56  * is larger. If the size is less than sbi->s_mb_stream_request we
57  * select to use the group preallocation. The default value of
58  * s_mb_stream_request is 16 blocks. This can also be tuned via
59  * /sys/fs/ext4/<partition>/mb_stream_req. The value is represented in
60  * terms of number of blocks.
61  *
62  * The main motivation for having small file use group preallocation is to
63  * ensure that we have small files closer together on the disk.
64  *
65  * First stage the allocator looks at the inode prealloc list,
66  * ext4_inode_info->i_prealloc_list, which contains list of prealloc
67  * spaces for this particular inode. The inode prealloc space is
68  * represented as:
69  *
70  * pa_lstart -> the logical start block for this prealloc space
71  * pa_pstart -> the physical start block for this prealloc space
72  * pa_len    -> length for this prealloc space (in clusters)
73  * pa_free   ->  free space available in this prealloc space (in clusters)
74  *
75  * The inode preallocation space is used looking at the _logical_ start
76  * block. If only the logical file block falls within the range of prealloc
77  * space we will consume the particular prealloc space. This makes sure that
78  * we have contiguous physical blocks representing the file blocks
79  *
80  * The important thing to be noted in case of inode prealloc space is that
81  * we don't modify the values associated to inode prealloc space except
82  * pa_free.
83  *
84  * If we are not able to find blocks in the inode prealloc space and if we
85  * have the group allocation flag set then we look at the locality group
86  * prealloc space. These are per CPU prealloc list represented as
87  *
88  * ext4_sb_info.s_locality_groups[smp_processor_id()]
89  *
90  * The reason for having a per cpu locality group is to reduce the contention
91  * between CPUs. It is possible to get scheduled at this point.
92  *
93  * The locality group prealloc space is used looking at whether we have
94  * enough free space (pa_free) within the prealloc space.
95  *
96  * If we can't allocate blocks via inode prealloc or/and locality group
97  * prealloc then we look at the buddy cache. The buddy cache is represented
98  * by ext4_sb_info.s_buddy_cache (struct inode) whose file offset gets
99  * mapped to the buddy and bitmap information regarding different
100  * groups. The buddy information is attached to buddy cache inode so that
101  * we can access them through the page cache. The information regarding
102  * each group is loaded via ext4_mb_load_buddy.  The information involve
103  * block bitmap and buddy information. The information are stored in the
104  * inode as:
105  *
106  *  {                        page                        }
107  *  [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
108  *
109  *
110  * one block each for bitmap and buddy information.  So for each group we
111  * take up 2 blocks. A page can contain blocks_per_page (PAGE_SIZE /
112  * blocksize) blocks.  So it can have information regarding groups_per_page
113  * which is blocks_per_page/2
114  *
115  * The buddy cache inode is not stored on disk. The inode is thrown
116  * away when the filesystem is unmounted.
117  *
118  * We look for count number of blocks in the buddy cache. If we were able
119  * to locate that many free blocks we return with additional information
120  * regarding rest of the contiguous physical block available
121  *
122  * Before allocating blocks via buddy cache we normalize the request
123  * blocks. This ensure we ask for more blocks that we needed. The extra
124  * blocks that we get after allocation is added to the respective prealloc
125  * list. In case of inode preallocation we follow a list of heuristics
126  * based on file size. This can be found in ext4_mb_normalize_request. If
127  * we are doing a group prealloc we try to normalize the request to
128  * sbi->s_mb_group_prealloc.  The default value of s_mb_group_prealloc is
129  * dependent on the cluster size; for non-bigalloc file systems, it is
130  * 512 blocks. This can be tuned via
131  * /sys/fs/ext4/<partition>/mb_group_prealloc. The value is represented in
132  * terms of number of blocks. If we have mounted the file system with -O
133  * stripe=<value> option the group prealloc request is normalized to the
134  * the smallest multiple of the stripe value (sbi->s_stripe) which is
135  * greater than the default mb_group_prealloc.
136  *
137  * The regular allocator (using the buddy cache) supports a few tunables.
138  *
139  * /sys/fs/ext4/<partition>/mb_min_to_scan
140  * /sys/fs/ext4/<partition>/mb_max_to_scan
141  * /sys/fs/ext4/<partition>/mb_order2_req
142  *
143  * The regular allocator uses buddy scan only if the request len is power of
144  * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The
145  * value of s_mb_order2_reqs can be tuned via
146  * /sys/fs/ext4/<partition>/mb_order2_req.  If the request len is equal to
147  * stripe size (sbi->s_stripe), we try to search for contiguous block in
148  * stripe size. This should result in better allocation on RAID setups. If
149  * not, we search in the specific group using bitmap for best extents. The
150  * tunable min_to_scan and max_to_scan control the behaviour here.
151  * min_to_scan indicate how long the mballoc __must__ look for a best
152  * extent and max_to_scan indicates how long the mballoc __can__ look for a
153  * best extent in the found extents. Searching for the blocks starts with
154  * the group specified as the goal value in allocation context via
155  * ac_g_ex. Each group is first checked based on the criteria whether it
156  * can be used for allocation. ext4_mb_good_group explains how the groups are
157  * checked.
158  *
159  * Both the prealloc space are getting populated as above. So for the first
160  * request we will hit the buddy cache which will result in this prealloc
161  * space getting filled. The prealloc space is then later used for the
162  * subsequent request.
163  */
164
165 /*
166  * mballoc operates on the following data:
167  *  - on-disk bitmap
168  *  - in-core buddy (actually includes buddy and bitmap)
169  *  - preallocation descriptors (PAs)
170  *
171  * there are two types of preallocations:
172  *  - inode
173  *    assiged to specific inode and can be used for this inode only.
174  *    it describes part of inode's space preallocated to specific
175  *    physical blocks. any block from that preallocated can be used
176  *    independent. the descriptor just tracks number of blocks left
177  *    unused. so, before taking some block from descriptor, one must
178  *    make sure corresponded logical block isn't allocated yet. this
179  *    also means that freeing any block within descriptor's range
180  *    must discard all preallocated blocks.
181  *  - locality group
182  *    assigned to specific locality group which does not translate to
183  *    permanent set of inodes: inode can join and leave group. space
184  *    from this type of preallocation can be used for any inode. thus
185  *    it's consumed from the beginning to the end.
186  *
187  * relation between them can be expressed as:
188  *    in-core buddy = on-disk bitmap + preallocation descriptors
189  *
190  * this mean blocks mballoc considers used are:
191  *  - allocated blocks (persistent)
192  *  - preallocated blocks (non-persistent)
193  *
194  * consistency in mballoc world means that at any time a block is either
195  * free or used in ALL structures. notice: "any time" should not be read
196  * literally -- time is discrete and delimited by locks.
197  *
198  *  to keep it simple, we don't use block numbers, instead we count number of
199  *  blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA.
200  *
201  * all operations can be expressed as:
202  *  - init buddy:                       buddy = on-disk + PAs
203  *  - new PA:                           buddy += N; PA = N
204  *  - use inode PA:                     on-disk += N; PA -= N
205  *  - discard inode PA                  buddy -= on-disk - PA; PA = 0
206  *  - use locality group PA             on-disk += N; PA -= N
207  *  - discard locality group PA         buddy -= PA; PA = 0
208  *  note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap
209  *        is used in real operation because we can't know actual used
210  *        bits from PA, only from on-disk bitmap
211  *
212  * if we follow this strict logic, then all operations above should be atomic.
213  * given some of them can block, we'd have to use something like semaphores
214  * killing performance on high-end SMP hardware. let's try to relax it using
215  * the following knowledge:
216  *  1) if buddy is referenced, it's already initialized
217  *  2) while block is used in buddy and the buddy is referenced,
218  *     nobody can re-allocate that block
219  *  3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has
220  *     bit set and PA claims same block, it's OK. IOW, one can set bit in
221  *     on-disk bitmap if buddy has same bit set or/and PA covers corresponded
222  *     block
223  *
224  * so, now we're building a concurrency table:
225  *  - init buddy vs.
226  *    - new PA
227  *      blocks for PA are allocated in the buddy, buddy must be referenced
228  *      until PA is linked to allocation group to avoid concurrent buddy init
229  *    - use inode PA
230  *      we need to make sure that either on-disk bitmap or PA has uptodate data
231  *      given (3) we care that PA-=N operation doesn't interfere with init
232  *    - discard inode PA
233  *      the simplest way would be to have buddy initialized by the discard
234  *    - use locality group PA
235  *      again PA-=N must be serialized with init
236  *    - discard locality group PA
237  *      the simplest way would be to have buddy initialized by the discard
238  *  - new PA vs.
239  *    - use inode PA
240  *      i_data_sem serializes them
241  *    - discard inode PA
242  *      discard process must wait until PA isn't used by another process
243  *    - use locality group PA
244  *      some mutex should serialize them
245  *    - discard locality group PA
246  *      discard process must wait until PA isn't used by another process
247  *  - use inode PA
248  *    - use inode PA
249  *      i_data_sem or another mutex should serializes them
250  *    - discard inode PA
251  *      discard process must wait until PA isn't used by another process
252  *    - use locality group PA
253  *      nothing wrong here -- they're different PAs covering different blocks
254  *    - discard locality group PA
255  *      discard process must wait until PA isn't used by another process
256  *
257  * now we're ready to make few consequences:
258  *  - PA is referenced and while it is no discard is possible
259  *  - PA is referenced until block isn't marked in on-disk bitmap
260  *  - PA changes only after on-disk bitmap
261  *  - discard must not compete with init. either init is done before
262  *    any discard or they're serialized somehow
263  *  - buddy init as sum of on-disk bitmap and PAs is done atomically
264  *
265  * a special case when we've used PA to emptiness. no need to modify buddy
266  * in this case, but we should care about concurrent init
267  *
268  */
269
270  /*
271  * Logic in few words:
272  *
273  *  - allocation:
274  *    load group
275  *    find blocks
276  *    mark bits in on-disk bitmap
277  *    release group
278  *
279  *  - use preallocation:
280  *    find proper PA (per-inode or group)
281  *    load group
282  *    mark bits in on-disk bitmap
283  *    release group
284  *    release PA
285  *
286  *  - free:
287  *    load group
288  *    mark bits in on-disk bitmap
289  *    release group
290  *
291  *  - discard preallocations in group:
292  *    mark PAs deleted
293  *    move them onto local list
294  *    load on-disk bitmap
295  *    load group
296  *    remove PA from object (inode or locality group)
297  *    mark free blocks in-core
298  *
299  *  - discard inode's preallocations:
300  */
301
302 /*
303  * Locking rules
304  *
305  * Locks:
306  *  - bitlock on a group        (group)
307  *  - object (inode/locality)   (object)
308  *  - per-pa lock               (pa)
309  *
310  * Paths:
311  *  - new pa
312  *    object
313  *    group
314  *
315  *  - find and use pa:
316  *    pa
317  *
318  *  - release consumed pa:
319  *    pa
320  *    group
321  *    object
322  *
323  *  - generate in-core bitmap:
324  *    group
325  *        pa
326  *
327  *  - discard all for given object (inode, locality group):
328  *    object
329  *        pa
330  *    group
331  *
332  *  - discard all for given group:
333  *    group
334  *        pa
335  *    group
336  *        object
337  *
338  */
339 static struct kmem_cache *ext4_pspace_cachep;
340 static struct kmem_cache *ext4_ac_cachep;
341 static struct kmem_cache *ext4_free_data_cachep;
342
343 /* We create slab caches for groupinfo data structures based on the
344  * superblock block size.  There will be one per mounted filesystem for
345  * each unique s_blocksize_bits */
346 #define NR_GRPINFO_CACHES 8
347 static struct kmem_cache *ext4_groupinfo_caches[NR_GRPINFO_CACHES];
348
349 static const char * const ext4_groupinfo_slab_names[NR_GRPINFO_CACHES] = {
350         "ext4_groupinfo_1k", "ext4_groupinfo_2k", "ext4_groupinfo_4k",
351         "ext4_groupinfo_8k", "ext4_groupinfo_16k", "ext4_groupinfo_32k",
352         "ext4_groupinfo_64k", "ext4_groupinfo_128k"
353 };
354
355 static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
356                                         ext4_group_t group);
357 static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
358                                                 ext4_group_t group);
359
360 static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
361 {
362 #if BITS_PER_LONG == 64
363         *bit += ((unsigned long) addr & 7UL) << 3;
364         addr = (void *) ((unsigned long) addr & ~7UL);
365 #elif BITS_PER_LONG == 32
366         *bit += ((unsigned long) addr & 3UL) << 3;
367         addr = (void *) ((unsigned long) addr & ~3UL);
368 #else
369 #error "how many bits you are?!"
370 #endif
371         return addr;
372 }
373
374 static inline int mb_test_bit(int bit, void *addr)
375 {
376         /*
377          * ext4_test_bit on architecture like powerpc
378          * needs unsigned long aligned address
379          */
380         addr = mb_correct_addr_and_bit(&bit, addr);
381         return ext4_test_bit(bit, addr);
382 }
383
384 static inline void mb_set_bit(int bit, void *addr)
385 {
386         addr = mb_correct_addr_and_bit(&bit, addr);
387         ext4_set_bit(bit, addr);
388 }
389
390 static inline void mb_clear_bit(int bit, void *addr)
391 {
392         addr = mb_correct_addr_and_bit(&bit, addr);
393         ext4_clear_bit(bit, addr);
394 }
395
396 static inline int mb_test_and_clear_bit(int bit, void *addr)
397 {
398         addr = mb_correct_addr_and_bit(&bit, addr);
399         return ext4_test_and_clear_bit(bit, addr);
400 }
401
402 static inline int mb_find_next_zero_bit(void *addr, int max, int start)
403 {
404         int fix = 0, ret, tmpmax;
405         addr = mb_correct_addr_and_bit(&fix, addr);
406         tmpmax = max + fix;
407         start += fix;
408
409         ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix;
410         if (ret > max)
411                 return max;
412         return ret;
413 }
414
415 static inline int mb_find_next_bit(void *addr, int max, int start)
416 {
417         int fix = 0, ret, tmpmax;
418         addr = mb_correct_addr_and_bit(&fix, addr);
419         tmpmax = max + fix;
420         start += fix;
421
422         ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
423         if (ret > max)
424                 return max;
425         return ret;
426 }
427
428 static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
429 {
430         char *bb;
431
432         BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
433         BUG_ON(max == NULL);
434
435         if (order > e4b->bd_blkbits + 1) {
436                 *max = 0;
437                 return NULL;
438         }
439
440         /* at order 0 we see each particular block */
441         if (order == 0) {
442                 *max = 1 << (e4b->bd_blkbits + 3);
443                 return e4b->bd_bitmap;
444         }
445
446         bb = e4b->bd_buddy + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
447         *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
448
449         return bb;
450 }
451
452 #ifdef DOUBLE_CHECK
453 static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
454                            int first, int count)
455 {
456         int i;
457         struct super_block *sb = e4b->bd_sb;
458
459         if (unlikely(e4b->bd_info->bb_bitmap == NULL))
460                 return;
461         assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
462         for (i = 0; i < count; i++) {
463                 if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
464                         ext4_fsblk_t blocknr;
465
466                         blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
467                         blocknr += EXT4_C2B(EXT4_SB(sb), first + i);
468                         ext4_grp_locked_error(sb, e4b->bd_group,
469                                               inode ? inode->i_ino : 0,
470                                               blocknr,
471                                               "freeing block already freed "
472                                               "(bit %u)",
473                                               first + i);
474                         ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
475                                         EXT4_GROUP_INFO_BBITMAP_CORRUPT);
476                 }
477                 mb_clear_bit(first + i, e4b->bd_info->bb_bitmap);
478         }
479 }
480
481 static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count)
482 {
483         int i;
484
485         if (unlikely(e4b->bd_info->bb_bitmap == NULL))
486                 return;
487         assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
488         for (i = 0; i < count; i++) {
489                 BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap));
490                 mb_set_bit(first + i, e4b->bd_info->bb_bitmap);
491         }
492 }
493
494 static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
495 {
496         if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) {
497                 unsigned char *b1, *b2;
498                 int i;
499                 b1 = (unsigned char *) e4b->bd_info->bb_bitmap;
500                 b2 = (unsigned char *) bitmap;
501                 for (i = 0; i < e4b->bd_sb->s_blocksize; i++) {
502                         if (b1[i] != b2[i]) {
503                                 ext4_msg(e4b->bd_sb, KERN_ERR,
504                                          "corruption in group %u "
505                                          "at byte %u(%u): %x in copy != %x "
506                                          "on disk/prealloc",
507                                          e4b->bd_group, i, i * 8, b1[i], b2[i]);
508                                 BUG();
509                         }
510                 }
511         }
512 }
513
514 #else
515 static inline void mb_free_blocks_double(struct inode *inode,
516                                 struct ext4_buddy *e4b, int first, int count)
517 {
518         return;
519 }
520 static inline void mb_mark_used_double(struct ext4_buddy *e4b,
521                                                 int first, int count)
522 {
523         return;
524 }
525 static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
526 {
527         return;
528 }
529 #endif
530
531 #ifdef AGGRESSIVE_CHECK
532
533 #define MB_CHECK_ASSERT(assert)                                         \
534 do {                                                                    \
535         if (!(assert)) {                                                \
536                 printk(KERN_EMERG                                       \
537                         "Assertion failure in %s() at %s:%d: \"%s\"\n", \
538                         function, file, line, # assert);                \
539                 BUG();                                                  \
540         }                                                               \
541 } while (0)
542
543 static int __mb_check_buddy(struct ext4_buddy *e4b, char *file,
544                                 const char *function, int line)
545 {
546         struct super_block *sb = e4b->bd_sb;
547         int order = e4b->bd_blkbits + 1;
548         int max;
549         int max2;
550         int i;
551         int j;
552         int k;
553         int count;
554         struct ext4_group_info *grp;
555         int fragments = 0;
556         int fstart;
557         struct list_head *cur;
558         void *buddy;
559         void *buddy2;
560
561         {
562                 static int mb_check_counter;
563                 if (mb_check_counter++ % 100 != 0)
564                         return 0;
565         }
566
567         while (order > 1) {
568                 buddy = mb_find_buddy(e4b, order, &max);
569                 MB_CHECK_ASSERT(buddy);
570                 buddy2 = mb_find_buddy(e4b, order - 1, &max2);
571                 MB_CHECK_ASSERT(buddy2);
572                 MB_CHECK_ASSERT(buddy != buddy2);
573                 MB_CHECK_ASSERT(max * 2 == max2);
574
575                 count = 0;
576                 for (i = 0; i < max; i++) {
577
578                         if (mb_test_bit(i, buddy)) {
579                                 /* only single bit in buddy2 may be 1 */
580                                 if (!mb_test_bit(i << 1, buddy2)) {
581                                         MB_CHECK_ASSERT(
582                                                 mb_test_bit((i<<1)+1, buddy2));
583                                 } else if (!mb_test_bit((i << 1) + 1, buddy2)) {
584                                         MB_CHECK_ASSERT(
585                                                 mb_test_bit(i << 1, buddy2));
586                                 }
587                                 continue;
588                         }
589
590                         /* both bits in buddy2 must be 1 */
591                         MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2));
592                         MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2));
593
594                         for (j = 0; j < (1 << order); j++) {
595                                 k = (i * (1 << order)) + j;
596                                 MB_CHECK_ASSERT(
597                                         !mb_test_bit(k, e4b->bd_bitmap));
598                         }
599                         count++;
600                 }
601                 MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count);
602                 order--;
603         }
604
605         fstart = -1;
606         buddy = mb_find_buddy(e4b, 0, &max);
607         for (i = 0; i < max; i++) {
608                 if (!mb_test_bit(i, buddy)) {
609                         MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free);
610                         if (fstart == -1) {
611                                 fragments++;
612                                 fstart = i;
613                         }
614                         continue;
615                 }
616                 fstart = -1;
617                 /* check used bits only */
618                 for (j = 0; j < e4b->bd_blkbits + 1; j++) {
619                         buddy2 = mb_find_buddy(e4b, j, &max2);
620                         k = i >> j;
621                         MB_CHECK_ASSERT(k < max2);
622                         MB_CHECK_ASSERT(mb_test_bit(k, buddy2));
623                 }
624         }
625         MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info));
626         MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments);
627
628         grp = ext4_get_group_info(sb, e4b->bd_group);
629         list_for_each(cur, &grp->bb_prealloc_list) {
630                 ext4_group_t groupnr;
631                 struct ext4_prealloc_space *pa;
632                 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
633                 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k);
634                 MB_CHECK_ASSERT(groupnr == e4b->bd_group);
635                 for (i = 0; i < pa->pa_len; i++)
636                         MB_CHECK_ASSERT(mb_test_bit(k + i, buddy));
637         }
638         return 0;
639 }
640 #undef MB_CHECK_ASSERT
641 #define mb_check_buddy(e4b) __mb_check_buddy(e4b,       \
642                                         __FILE__, __func__, __LINE__)
643 #else
644 #define mb_check_buddy(e4b)
645 #endif
646
647 /*
648  * Divide blocks started from @first with length @len into
649  * smaller chunks with power of 2 blocks.
650  * Clear the bits in bitmap which the blocks of the chunk(s) covered,
651  * then increase bb_counters[] for corresponded chunk size.
652  */
653 static void ext4_mb_mark_free_simple(struct super_block *sb,
654                                 void *buddy, ext4_grpblk_t first, ext4_grpblk_t len,
655                                         struct ext4_group_info *grp)
656 {
657         struct ext4_sb_info *sbi = EXT4_SB(sb);
658         ext4_grpblk_t min;
659         ext4_grpblk_t max;
660         ext4_grpblk_t chunk;
661         unsigned int border;
662
663         BUG_ON(len > EXT4_CLUSTERS_PER_GROUP(sb));
664
665         border = 2 << sb->s_blocksize_bits;
666
667         while (len > 0) {
668                 /* find how many blocks can be covered since this position */
669                 max = ffs(first | border) - 1;
670
671                 /* find how many blocks of power 2 we need to mark */
672                 min = fls(len) - 1;
673
674                 if (max < min)
675                         min = max;
676                 chunk = 1 << min;
677
678                 /* mark multiblock chunks only */
679                 grp->bb_counters[min]++;
680                 if (min > 0)
681                         mb_clear_bit(first >> min,
682                                      buddy + sbi->s_mb_offsets[min]);
683
684                 len -= chunk;
685                 first += chunk;
686         }
687 }
688
689 /*
690  * Cache the order of the largest free extent we have available in this block
691  * group.
692  */
693 static void
694 mb_set_largest_free_order(struct super_block *sb, struct ext4_group_info *grp)
695 {
696         int i;
697         int bits;
698
699         grp->bb_largest_free_order = -1; /* uninit */
700
701         bits = sb->s_blocksize_bits + 1;
702         for (i = bits; i >= 0; i--) {
703                 if (grp->bb_counters[i] > 0) {
704                         grp->bb_largest_free_order = i;
705                         break;
706                 }
707         }
708 }
709
710 static noinline_for_stack
711 void ext4_mb_generate_buddy(struct super_block *sb,
712                                 void *buddy, void *bitmap, ext4_group_t group)
713 {
714         struct ext4_group_info *grp = ext4_get_group_info(sb, group);
715         struct ext4_sb_info *sbi = EXT4_SB(sb);
716         ext4_grpblk_t max = EXT4_CLUSTERS_PER_GROUP(sb);
717         ext4_grpblk_t i = 0;
718         ext4_grpblk_t first;
719         ext4_grpblk_t len;
720         unsigned free = 0;
721         unsigned fragments = 0;
722         unsigned long long period = get_cycles();
723
724         /* initialize buddy from bitmap which is aggregation
725          * of on-disk bitmap and preallocations */
726         i = mb_find_next_zero_bit(bitmap, max, 0);
727         grp->bb_first_free = i;
728         while (i < max) {
729                 fragments++;
730                 first = i;
731                 i = mb_find_next_bit(bitmap, max, i);
732                 len = i - first;
733                 free += len;
734                 if (len > 1)
735                         ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
736                 else
737                         grp->bb_counters[0]++;
738                 if (i < max)
739                         i = mb_find_next_zero_bit(bitmap, max, i);
740         }
741         grp->bb_fragments = fragments;
742
743         if (free != grp->bb_free) {
744                 ext4_grp_locked_error(sb, group, 0, 0,
745                                       "block bitmap and bg descriptor "
746                                       "inconsistent: %u vs %u free clusters",
747                                       free, grp->bb_free);
748                 /*
749                  * If we intend to continue, we consider group descriptor
750                  * corrupt and update bb_free using bitmap value
751                  */
752                 grp->bb_free = free;
753                 ext4_mark_group_bitmap_corrupted(sb, group,
754                                         EXT4_GROUP_INFO_BBITMAP_CORRUPT);
755         }
756         mb_set_largest_free_order(sb, grp);
757
758         clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
759
760         period = get_cycles() - period;
761         spin_lock(&sbi->s_bal_lock);
762         sbi->s_mb_buddies_generated++;
763         sbi->s_mb_generation_time += period;
764         spin_unlock(&sbi->s_bal_lock);
765 }
766
767 static void mb_regenerate_buddy(struct ext4_buddy *e4b)
768 {
769         int count;
770         int order = 1;
771         void *buddy;
772
773         while ((buddy = mb_find_buddy(e4b, order++, &count))) {
774                 ext4_set_bits(buddy, 0, count);
775         }
776         e4b->bd_info->bb_fragments = 0;
777         memset(e4b->bd_info->bb_counters, 0,
778                 sizeof(*e4b->bd_info->bb_counters) *
779                 (e4b->bd_sb->s_blocksize_bits + 2));
780
781         ext4_mb_generate_buddy(e4b->bd_sb, e4b->bd_buddy,
782                 e4b->bd_bitmap, e4b->bd_group);
783 }
784
785 /* The buddy information is attached the buddy cache inode
786  * for convenience. The information regarding each group
787  * is loaded via ext4_mb_load_buddy. The information involve
788  * block bitmap and buddy information. The information are
789  * stored in the inode as
790  *
791  * {                        page                        }
792  * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
793  *
794  *
795  * one block each for bitmap and buddy information.
796  * So for each group we take up 2 blocks. A page can
797  * contain blocks_per_page (PAGE_SIZE / blocksize)  blocks.
798  * So it can have information regarding groups_per_page which
799  * is blocks_per_page/2
800  *
801  * Locking note:  This routine takes the block group lock of all groups
802  * for this page; do not hold this lock when calling this routine!
803  */
804
805 static int ext4_mb_init_cache(struct page *page, char *incore, gfp_t gfp)
806 {
807         ext4_group_t ngroups;
808         int blocksize;
809         int blocks_per_page;
810         int groups_per_page;
811         int err = 0;
812         int i;
813         ext4_group_t first_group, group;
814         int first_block;
815         struct super_block *sb;
816         struct buffer_head *bhs;
817         struct buffer_head **bh = NULL;
818         struct inode *inode;
819         char *data;
820         char *bitmap;
821         struct ext4_group_info *grinfo;
822
823         mb_debug(1, "init page %lu\n", page->index);
824
825         inode = page->mapping->host;
826         sb = inode->i_sb;
827         ngroups = ext4_get_groups_count(sb);
828         blocksize = i_blocksize(inode);
829         blocks_per_page = PAGE_SIZE / blocksize;
830
831         groups_per_page = blocks_per_page >> 1;
832         if (groups_per_page == 0)
833                 groups_per_page = 1;
834
835         /* allocate buffer_heads to read bitmaps */
836         if (groups_per_page > 1) {
837                 i = sizeof(struct buffer_head *) * groups_per_page;
838                 bh = kzalloc(i, gfp);
839                 if (bh == NULL) {
840                         err = -ENOMEM;
841                         goto out;
842                 }
843         } else
844                 bh = &bhs;
845
846         first_group = page->index * blocks_per_page / 2;
847
848         /* read all groups the page covers into the cache */
849         for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
850                 if (group >= ngroups)
851                         break;
852
853                 grinfo = ext4_get_group_info(sb, group);
854                 /*
855                  * If page is uptodate then we came here after online resize
856                  * which added some new uninitialized group info structs, so
857                  * we must skip all initialized uptodate buddies on the page,
858                  * which may be currently in use by an allocating task.
859                  */
860                 if (PageUptodate(page) && !EXT4_MB_GRP_NEED_INIT(grinfo)) {
861                         bh[i] = NULL;
862                         continue;
863                 }
864                 bh[i] = ext4_read_block_bitmap_nowait(sb, group);
865                 if (IS_ERR(bh[i])) {
866                         err = PTR_ERR(bh[i]);
867                         bh[i] = NULL;
868                         goto out;
869                 }
870                 mb_debug(1, "read bitmap for group %u\n", group);
871         }
872
873         /* wait for I/O completion */
874         for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
875                 int err2;
876
877                 if (!bh[i])
878                         continue;
879                 err2 = ext4_wait_block_bitmap(sb, group, bh[i]);
880                 if (!err)
881                         err = err2;
882         }
883
884         first_block = page->index * blocks_per_page;
885         for (i = 0; i < blocks_per_page; i++) {
886                 group = (first_block + i) >> 1;
887                 if (group >= ngroups)
888                         break;
889
890                 if (!bh[group - first_group])
891                         /* skip initialized uptodate buddy */
892                         continue;
893
894                 if (!buffer_verified(bh[group - first_group]))
895                         /* Skip faulty bitmaps */
896                         continue;
897                 err = 0;
898
899                 /*
900                  * data carry information regarding this
901                  * particular group in the format specified
902                  * above
903                  *
904                  */
905                 data = page_address(page) + (i * blocksize);
906                 bitmap = bh[group - first_group]->b_data;
907
908                 /*
909                  * We place the buddy block and bitmap block
910                  * close together
911                  */
912                 if ((first_block + i) & 1) {
913                         /* this is block of buddy */
914                         BUG_ON(incore == NULL);
915                         mb_debug(1, "put buddy for group %u in page %lu/%x\n",
916                                 group, page->index, i * blocksize);
917                         trace_ext4_mb_buddy_bitmap_load(sb, group);
918                         grinfo = ext4_get_group_info(sb, group);
919                         grinfo->bb_fragments = 0;
920                         memset(grinfo->bb_counters, 0,
921                                sizeof(*grinfo->bb_counters) *
922                                 (sb->s_blocksize_bits+2));
923                         /*
924                          * incore got set to the group block bitmap below
925                          */
926                         ext4_lock_group(sb, group);
927                         /* init the buddy */
928                         memset(data, 0xff, blocksize);
929                         ext4_mb_generate_buddy(sb, data, incore, group);
930                         ext4_unlock_group(sb, group);
931                         incore = NULL;
932                 } else {
933                         /* this is block of bitmap */
934                         BUG_ON(incore != NULL);
935                         mb_debug(1, "put bitmap for group %u in page %lu/%x\n",
936                                 group, page->index, i * blocksize);
937                         trace_ext4_mb_bitmap_load(sb, group);
938
939                         /* see comments in ext4_mb_put_pa() */
940                         ext4_lock_group(sb, group);
941                         memcpy(data, bitmap, blocksize);
942
943                         /* mark all preallocated blks used in in-core bitmap */
944                         ext4_mb_generate_from_pa(sb, data, group);
945                         ext4_mb_generate_from_freelist(sb, data, group);
946                         ext4_unlock_group(sb, group);
947
948                         /* set incore so that the buddy information can be
949                          * generated using this
950                          */
951                         incore = data;
952                 }
953         }
954         SetPageUptodate(page);
955
956 out:
957         if (bh) {
958                 for (i = 0; i < groups_per_page; i++)
959                         brelse(bh[i]);
960                 if (bh != &bhs)
961                         kfree(bh);
962         }
963         return err;
964 }
965
966 /*
967  * Lock the buddy and bitmap pages. This make sure other parallel init_group
968  * on the same buddy page doesn't happen whild holding the buddy page lock.
969  * Return locked buddy and bitmap pages on e4b struct. If buddy and bitmap
970  * are on the same page e4b->bd_buddy_page is NULL and return value is 0.
971  */
972 static int ext4_mb_get_buddy_page_lock(struct super_block *sb,
973                 ext4_group_t group, struct ext4_buddy *e4b, gfp_t gfp)
974 {
975         struct inode *inode = EXT4_SB(sb)->s_buddy_cache;
976         int block, pnum, poff;
977         int blocks_per_page;
978         struct page *page;
979
980         e4b->bd_buddy_page = NULL;
981         e4b->bd_bitmap_page = NULL;
982
983         blocks_per_page = PAGE_SIZE / sb->s_blocksize;
984         /*
985          * the buddy cache inode stores the block bitmap
986          * and buddy information in consecutive blocks.
987          * So for each group we need two blocks.
988          */
989         block = group * 2;
990         pnum = block / blocks_per_page;
991         poff = block % blocks_per_page;
992         page = find_or_create_page(inode->i_mapping, pnum, gfp);
993         if (!page)
994                 return -ENOMEM;
995         BUG_ON(page->mapping != inode->i_mapping);
996         e4b->bd_bitmap_page = page;
997         e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
998
999         if (blocks_per_page >= 2) {
1000                 /* buddy and bitmap are on the same page */
1001                 return 0;
1002         }
1003
1004         block++;
1005         pnum = block / blocks_per_page;
1006         page = find_or_create_page(inode->i_mapping, pnum, gfp);
1007         if (!page)
1008                 return -ENOMEM;
1009         BUG_ON(page->mapping != inode->i_mapping);
1010         e4b->bd_buddy_page = page;
1011         return 0;
1012 }
1013
1014 static void ext4_mb_put_buddy_page_lock(struct ext4_buddy *e4b)
1015 {
1016         if (e4b->bd_bitmap_page) {
1017                 unlock_page(e4b->bd_bitmap_page);
1018                 put_page(e4b->bd_bitmap_page);
1019         }
1020         if (e4b->bd_buddy_page) {
1021                 unlock_page(e4b->bd_buddy_page);
1022                 put_page(e4b->bd_buddy_page);
1023         }
1024 }
1025
1026 /*
1027  * Locking note:  This routine calls ext4_mb_init_cache(), which takes the
1028  * block group lock of all groups for this page; do not hold the BG lock when
1029  * calling this routine!
1030  */
1031 static noinline_for_stack
1032 int ext4_mb_init_group(struct super_block *sb, ext4_group_t group, gfp_t gfp)
1033 {
1034
1035         struct ext4_group_info *this_grp;
1036         struct ext4_buddy e4b;
1037         struct page *page;
1038         int ret = 0;
1039
1040         might_sleep();
1041         mb_debug(1, "init group %u\n", group);
1042         this_grp = ext4_get_group_info(sb, group);
1043         /*
1044          * This ensures that we don't reinit the buddy cache
1045          * page which map to the group from which we are already
1046          * allocating. If we are looking at the buddy cache we would
1047          * have taken a reference using ext4_mb_load_buddy and that
1048          * would have pinned buddy page to page cache.
1049          * The call to ext4_mb_get_buddy_page_lock will mark the
1050          * page accessed.
1051          */
1052         ret = ext4_mb_get_buddy_page_lock(sb, group, &e4b, gfp);
1053         if (ret || !EXT4_MB_GRP_NEED_INIT(this_grp)) {
1054                 /*
1055                  * somebody initialized the group
1056                  * return without doing anything
1057                  */
1058                 goto err;
1059         }
1060
1061         page = e4b.bd_bitmap_page;
1062         ret = ext4_mb_init_cache(page, NULL, gfp);
1063         if (ret)
1064                 goto err;
1065         if (!PageUptodate(page)) {
1066                 ret = -EIO;
1067                 goto err;
1068         }
1069
1070         if (e4b.bd_buddy_page == NULL) {
1071                 /*
1072                  * If both the bitmap and buddy are in
1073                  * the same page we don't need to force
1074                  * init the buddy
1075                  */
1076                 ret = 0;
1077                 goto err;
1078         }
1079         /* init buddy cache */
1080         page = e4b.bd_buddy_page;
1081         ret = ext4_mb_init_cache(page, e4b.bd_bitmap, gfp);
1082         if (ret)
1083                 goto err;
1084         if (!PageUptodate(page)) {
1085                 ret = -EIO;
1086                 goto err;
1087         }
1088 err:
1089         ext4_mb_put_buddy_page_lock(&e4b);
1090         return ret;
1091 }
1092
1093 /*
1094  * Locking note:  This routine calls ext4_mb_init_cache(), which takes the
1095  * block group lock of all groups for this page; do not hold the BG lock when
1096  * calling this routine!
1097  */
1098 static noinline_for_stack int
1099 ext4_mb_load_buddy_gfp(struct super_block *sb, ext4_group_t group,
1100                        struct ext4_buddy *e4b, gfp_t gfp)
1101 {
1102         int blocks_per_page;
1103         int block;
1104         int pnum;
1105         int poff;
1106         struct page *page;
1107         int ret;
1108         struct ext4_group_info *grp;
1109         struct ext4_sb_info *sbi = EXT4_SB(sb);
1110         struct inode *inode = sbi->s_buddy_cache;
1111
1112         might_sleep();
1113         mb_debug(1, "load group %u\n", group);
1114
1115         blocks_per_page = PAGE_SIZE / sb->s_blocksize;
1116         grp = ext4_get_group_info(sb, group);
1117
1118         e4b->bd_blkbits = sb->s_blocksize_bits;
1119         e4b->bd_info = grp;
1120         e4b->bd_sb = sb;
1121         e4b->bd_group = group;
1122         e4b->bd_buddy_page = NULL;
1123         e4b->bd_bitmap_page = NULL;
1124
1125         if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
1126                 /*
1127                  * we need full data about the group
1128                  * to make a good selection
1129                  */
1130                 ret = ext4_mb_init_group(sb, group, gfp);
1131                 if (ret)
1132                         return ret;
1133         }
1134
1135         /*
1136          * the buddy cache inode stores the block bitmap
1137          * and buddy information in consecutive blocks.
1138          * So for each group we need two blocks.
1139          */
1140         block = group * 2;
1141         pnum = block / blocks_per_page;
1142         poff = block % blocks_per_page;
1143
1144         /* we could use find_or_create_page(), but it locks page
1145          * what we'd like to avoid in fast path ... */
1146         page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
1147         if (page == NULL || !PageUptodate(page)) {
1148                 if (page)
1149                         /*
1150                          * drop the page reference and try
1151                          * to get the page with lock. If we
1152                          * are not uptodate that implies
1153                          * somebody just created the page but
1154                          * is yet to initialize the same. So
1155                          * wait for it to initialize.
1156                          */
1157                         put_page(page);
1158                 page = find_or_create_page(inode->i_mapping, pnum, gfp);
1159                 if (page) {
1160                         BUG_ON(page->mapping != inode->i_mapping);
1161                         if (!PageUptodate(page)) {
1162                                 ret = ext4_mb_init_cache(page, NULL, gfp);
1163                                 if (ret) {
1164                                         unlock_page(page);
1165                                         goto err;
1166                                 }
1167                                 mb_cmp_bitmaps(e4b, page_address(page) +
1168                                                (poff * sb->s_blocksize));
1169                         }
1170                         unlock_page(page);
1171                 }
1172         }
1173         if (page == NULL) {
1174                 ret = -ENOMEM;
1175                 goto err;
1176         }
1177         if (!PageUptodate(page)) {
1178                 ret = -EIO;
1179                 goto err;
1180         }
1181
1182         /* Pages marked accessed already */
1183         e4b->bd_bitmap_page = page;
1184         e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
1185
1186         block++;
1187         pnum = block / blocks_per_page;
1188         poff = block % blocks_per_page;
1189
1190         page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
1191         if (page == NULL || !PageUptodate(page)) {
1192                 if (page)
1193                         put_page(page);
1194                 page = find_or_create_page(inode->i_mapping, pnum, gfp);
1195                 if (page) {
1196                         BUG_ON(page->mapping != inode->i_mapping);
1197                         if (!PageUptodate(page)) {
1198                                 ret = ext4_mb_init_cache(page, e4b->bd_bitmap,
1199                                                          gfp);
1200                                 if (ret) {
1201                                         unlock_page(page);
1202                                         goto err;
1203                                 }
1204                         }
1205                         unlock_page(page);
1206                 }
1207         }
1208         if (page == NULL) {
1209                 ret = -ENOMEM;
1210                 goto err;
1211         }
1212         if (!PageUptodate(page)) {
1213                 ret = -EIO;
1214                 goto err;
1215         }
1216
1217         /* Pages marked accessed already */
1218         e4b->bd_buddy_page = page;
1219         e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
1220
1221         BUG_ON(e4b->bd_bitmap_page == NULL);
1222         BUG_ON(e4b->bd_buddy_page == NULL);
1223
1224         return 0;
1225
1226 err:
1227         if (page)
1228                 put_page(page);
1229         if (e4b->bd_bitmap_page)
1230                 put_page(e4b->bd_bitmap_page);
1231         if (e4b->bd_buddy_page)
1232                 put_page(e4b->bd_buddy_page);
1233         e4b->bd_buddy = NULL;
1234         e4b->bd_bitmap = NULL;
1235         return ret;
1236 }
1237
1238 static int ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
1239                               struct ext4_buddy *e4b)
1240 {
1241         return ext4_mb_load_buddy_gfp(sb, group, e4b, GFP_NOFS);
1242 }
1243
1244 static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
1245 {
1246         if (e4b->bd_bitmap_page)
1247                 put_page(e4b->bd_bitmap_page);
1248         if (e4b->bd_buddy_page)
1249                 put_page(e4b->bd_buddy_page);
1250 }
1251
1252
1253 static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1254 {
1255         int order = 1;
1256         int bb_incr = 1 << (e4b->bd_blkbits - 1);
1257         void *bb;
1258
1259         BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
1260         BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1261
1262         bb = e4b->bd_buddy;
1263         while (order <= e4b->bd_blkbits + 1) {
1264                 block = block >> 1;
1265                 if (!mb_test_bit(block, bb)) {
1266                         /* this block is part of buddy of order 'order' */
1267                         return order;
1268                 }
1269                 bb += bb_incr;
1270                 bb_incr >>= 1;
1271                 order++;
1272         }
1273         return 0;
1274 }
1275
1276 static void mb_clear_bits(void *bm, int cur, int len)
1277 {
1278         __u32 *addr;
1279
1280         len = cur + len;
1281         while (cur < len) {
1282                 if ((cur & 31) == 0 && (len - cur) >= 32) {
1283                         /* fast path: clear whole word at once */
1284                         addr = bm + (cur >> 3);
1285                         *addr = 0;
1286                         cur += 32;
1287                         continue;
1288                 }
1289                 mb_clear_bit(cur, bm);
1290                 cur++;
1291         }
1292 }
1293
1294 /* clear bits in given range
1295  * will return first found zero bit if any, -1 otherwise
1296  */
1297 static int mb_test_and_clear_bits(void *bm, int cur, int len)
1298 {
1299         __u32 *addr;
1300         int zero_bit = -1;
1301
1302         len = cur + len;
1303         while (cur < len) {
1304                 if ((cur & 31) == 0 && (len - cur) >= 32) {
1305                         /* fast path: clear whole word at once */
1306                         addr = bm + (cur >> 3);
1307                         if (*addr != (__u32)(-1) && zero_bit == -1)
1308                                 zero_bit = cur + mb_find_next_zero_bit(addr, 32, 0);
1309                         *addr = 0;
1310                         cur += 32;
1311                         continue;
1312                 }
1313                 if (!mb_test_and_clear_bit(cur, bm) && zero_bit == -1)
1314                         zero_bit = cur;
1315                 cur++;
1316         }
1317
1318         return zero_bit;
1319 }
1320
1321 void ext4_set_bits(void *bm, int cur, int len)
1322 {
1323         __u32 *addr;
1324
1325         len = cur + len;
1326         while (cur < len) {
1327                 if ((cur & 31) == 0 && (len - cur) >= 32) {
1328                         /* fast path: set whole word at once */
1329                         addr = bm + (cur >> 3);
1330                         *addr = 0xffffffff;
1331                         cur += 32;
1332                         continue;
1333                 }
1334                 mb_set_bit(cur, bm);
1335                 cur++;
1336         }
1337 }
1338
1339 /*
1340  * _________________________________________________________________ */
1341
1342 static inline int mb_buddy_adjust_border(int* bit, void* bitmap, int side)
1343 {
1344         if (mb_test_bit(*bit + side, bitmap)) {
1345                 mb_clear_bit(*bit, bitmap);
1346                 (*bit) -= side;
1347                 return 1;
1348         }
1349         else {
1350                 (*bit) += side;
1351                 mb_set_bit(*bit, bitmap);
1352                 return -1;
1353         }
1354 }
1355
1356 static void mb_buddy_mark_free(struct ext4_buddy *e4b, int first, int last)
1357 {
1358         int max;
1359         int order = 1;
1360         void *buddy = mb_find_buddy(e4b, order, &max);
1361
1362         while (buddy) {
1363                 void *buddy2;
1364
1365                 /* Bits in range [first; last] are known to be set since
1366                  * corresponding blocks were allocated. Bits in range
1367                  * (first; last) will stay set because they form buddies on
1368                  * upper layer. We just deal with borders if they don't
1369                  * align with upper layer and then go up.
1370                  * Releasing entire group is all about clearing
1371                  * single bit of highest order buddy.
1372                  */
1373
1374                 /* Example:
1375                  * ---------------------------------
1376                  * |   1   |   1   |   1   |   1   |
1377                  * ---------------------------------
1378                  * | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
1379                  * ---------------------------------
1380                  *   0   1   2   3   4   5   6   7
1381                  *      \_____________________/
1382                  *
1383                  * Neither [1] nor [6] is aligned to above layer.
1384                  * Left neighbour [0] is free, so mark it busy,
1385                  * decrease bb_counters and extend range to
1386                  * [0; 6]
1387                  * Right neighbour [7] is busy. It can't be coaleasced with [6], so
1388                  * mark [6] free, increase bb_counters and shrink range to
1389                  * [0; 5].
1390                  * Then shift range to [0; 2], go up and do the same.
1391                  */
1392
1393
1394                 if (first & 1)
1395                         e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&first, buddy, -1);
1396                 if (!(last & 1))
1397                         e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&last, buddy, 1);
1398                 if (first > last)
1399                         break;
1400                 order++;
1401
1402                 if (first == last || !(buddy2 = mb_find_buddy(e4b, order, &max))) {
1403                         mb_clear_bits(buddy, first, last - first + 1);
1404                         e4b->bd_info->bb_counters[order - 1] += last - first + 1;
1405                         break;
1406                 }
1407                 first >>= 1;
1408                 last >>= 1;
1409                 buddy = buddy2;
1410         }
1411 }
1412
1413 static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
1414                            int first, int count)
1415 {
1416         int left_is_free = 0;
1417         int right_is_free = 0;
1418         int block;
1419         int last = first + count - 1;
1420         struct super_block *sb = e4b->bd_sb;
1421
1422         if (WARN_ON(count == 0))
1423                 return;
1424         BUG_ON(last >= (sb->s_blocksize << 3));
1425         assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
1426         /* Don't bother if the block group is corrupt. */
1427         if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info)))
1428                 return;
1429
1430         mb_check_buddy(e4b);
1431         mb_free_blocks_double(inode, e4b, first, count);
1432
1433         e4b->bd_info->bb_free += count;
1434         if (first < e4b->bd_info->bb_first_free)
1435                 e4b->bd_info->bb_first_free = first;
1436
1437         /* access memory sequentially: check left neighbour,
1438          * clear range and then check right neighbour
1439          */
1440         if (first != 0)
1441                 left_is_free = !mb_test_bit(first - 1, e4b->bd_bitmap);
1442         block = mb_test_and_clear_bits(e4b->bd_bitmap, first, count);
1443         if (last + 1 < EXT4_SB(sb)->s_mb_maxs[0])
1444                 right_is_free = !mb_test_bit(last + 1, e4b->bd_bitmap);
1445
1446         if (unlikely(block != -1)) {
1447                 struct ext4_sb_info *sbi = EXT4_SB(sb);
1448                 ext4_fsblk_t blocknr;
1449
1450                 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
1451                 blocknr += EXT4_C2B(sbi, block);
1452                 ext4_grp_locked_error(sb, e4b->bd_group,
1453                                       inode ? inode->i_ino : 0,
1454                                       blocknr,
1455                                       "freeing already freed block "
1456                                       "(bit %u); block bitmap corrupt.",
1457                                       block);
1458                 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
1459                                 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
1460                 mb_regenerate_buddy(e4b);
1461                 goto done;
1462         }
1463
1464         /* let's maintain fragments counter */
1465         if (left_is_free && right_is_free)
1466                 e4b->bd_info->bb_fragments--;
1467         else if (!left_is_free && !right_is_free)
1468                 e4b->bd_info->bb_fragments++;
1469
1470         /* buddy[0] == bd_bitmap is a special case, so handle
1471          * it right away and let mb_buddy_mark_free stay free of
1472          * zero order checks.
1473          * Check if neighbours are to be coaleasced,
1474          * adjust bitmap bb_counters and borders appropriately.
1475          */
1476         if (first & 1) {
1477                 first += !left_is_free;
1478                 e4b->bd_info->bb_counters[0] += left_is_free ? -1 : 1;
1479         }
1480         if (!(last & 1)) {
1481                 last -= !right_is_free;
1482                 e4b->bd_info->bb_counters[0] += right_is_free ? -1 : 1;
1483         }
1484
1485         if (first <= last)
1486                 mb_buddy_mark_free(e4b, first >> 1, last >> 1);
1487
1488 done:
1489         mb_set_largest_free_order(sb, e4b->bd_info);
1490         mb_check_buddy(e4b);
1491 }
1492
1493 static int mb_find_extent(struct ext4_buddy *e4b, int block,
1494                                 int needed, struct ext4_free_extent *ex)
1495 {
1496         int next = block;
1497         int max, order;
1498         void *buddy;
1499
1500         assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
1501         BUG_ON(ex == NULL);
1502
1503         buddy = mb_find_buddy(e4b, 0, &max);
1504         BUG_ON(buddy == NULL);
1505         BUG_ON(block >= max);
1506         if (mb_test_bit(block, buddy)) {
1507                 ex->fe_len = 0;
1508                 ex->fe_start = 0;
1509                 ex->fe_group = 0;
1510                 return 0;
1511         }
1512
1513         /* find actual order */
1514         order = mb_find_order_for_block(e4b, block);
1515         block = block >> order;
1516
1517         ex->fe_len = 1 << order;
1518         ex->fe_start = block << order;
1519         ex->fe_group = e4b->bd_group;
1520
1521         /* calc difference from given start */
1522         next = next - ex->fe_start;
1523         ex->fe_len -= next;
1524         ex->fe_start += next;
1525
1526         while (needed > ex->fe_len &&
1527                mb_find_buddy(e4b, order, &max)) {
1528
1529                 if (block + 1 >= max)
1530                         break;
1531
1532                 next = (block + 1) * (1 << order);
1533                 if (mb_test_bit(next, e4b->bd_bitmap))
1534                         break;
1535
1536                 order = mb_find_order_for_block(e4b, next);
1537
1538                 block = next >> order;
1539                 ex->fe_len += 1 << order;
1540         }
1541
1542         if (ex->fe_start + ex->fe_len > EXT4_CLUSTERS_PER_GROUP(e4b->bd_sb)) {
1543                 /* Should never happen! (but apparently sometimes does?!?) */
1544                 WARN_ON(1);
1545                 ext4_grp_locked_error(e4b->bd_sb, e4b->bd_group, 0, 0,
1546                         "corruption or bug in mb_find_extent "
1547                         "block=%d, order=%d needed=%d ex=%u/%d/%d@%u",
1548                         block, order, needed, ex->fe_group, ex->fe_start,
1549                         ex->fe_len, ex->fe_logical);
1550                 ex->fe_len = 0;
1551                 ex->fe_start = 0;
1552                 ex->fe_group = 0;
1553         }
1554         return ex->fe_len;
1555 }
1556
1557 static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1558 {
1559         int ord;
1560         int mlen = 0;
1561         int max = 0;
1562         int cur;
1563         int start = ex->fe_start;
1564         int len = ex->fe_len;
1565         unsigned ret = 0;
1566         int len0 = len;
1567         void *buddy;
1568
1569         BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1570         BUG_ON(e4b->bd_group != ex->fe_group);
1571         assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
1572         mb_check_buddy(e4b);
1573         mb_mark_used_double(e4b, start, len);
1574
1575         e4b->bd_info->bb_free -= len;
1576         if (e4b->bd_info->bb_first_free == start)
1577                 e4b->bd_info->bb_first_free += len;
1578
1579         /* let's maintain fragments counter */
1580         if (start != 0)
1581                 mlen = !mb_test_bit(start - 1, e4b->bd_bitmap);
1582         if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
1583                 max = !mb_test_bit(start + len, e4b->bd_bitmap);
1584         if (mlen && max)
1585                 e4b->bd_info->bb_fragments++;
1586         else if (!mlen && !max)
1587                 e4b->bd_info->bb_fragments--;
1588
1589         /* let's maintain buddy itself */
1590         while (len) {
1591                 ord = mb_find_order_for_block(e4b, start);
1592
1593                 if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1594                         /* the whole chunk may be allocated at once! */
1595                         mlen = 1 << ord;
1596                         buddy = mb_find_buddy(e4b, ord, &max);
1597                         BUG_ON((start >> ord) >= max);
1598                         mb_set_bit(start >> ord, buddy);
1599                         e4b->bd_info->bb_counters[ord]--;
1600                         start += mlen;
1601                         len -= mlen;
1602                         BUG_ON(len < 0);
1603                         continue;
1604                 }
1605
1606                 /* store for history */
1607                 if (ret == 0)
1608                         ret = len | (ord << 16);
1609
1610                 /* we have to split large buddy */
1611                 BUG_ON(ord <= 0);
1612                 buddy = mb_find_buddy(e4b, ord, &max);
1613                 mb_set_bit(start >> ord, buddy);
1614                 e4b->bd_info->bb_counters[ord]--;
1615
1616                 ord--;
1617                 cur = (start >> ord) & ~1U;
1618                 buddy = mb_find_buddy(e4b, ord, &max);
1619                 mb_clear_bit(cur, buddy);
1620                 mb_clear_bit(cur + 1, buddy);
1621                 e4b->bd_info->bb_counters[ord]++;
1622                 e4b->bd_info->bb_counters[ord]++;
1623         }
1624         mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
1625
1626         ext4_set_bits(e4b->bd_bitmap, ex->fe_start, len0);
1627         mb_check_buddy(e4b);
1628
1629         return ret;
1630 }
1631
1632 /*
1633  * Must be called under group lock!
1634  */
1635 static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
1636                                         struct ext4_buddy *e4b)
1637 {
1638         struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1639         int ret;
1640
1641         BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
1642         BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1643
1644         ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
1645         ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
1646         ret = mb_mark_used(e4b, &ac->ac_b_ex);
1647
1648         /* preallocation can change ac_b_ex, thus we store actually
1649          * allocated blocks for history */
1650         ac->ac_f_ex = ac->ac_b_ex;
1651
1652         ac->ac_status = AC_STATUS_FOUND;
1653         ac->ac_tail = ret & 0xffff;
1654         ac->ac_buddy = ret >> 16;
1655
1656         /*
1657          * take the page reference. We want the page to be pinned
1658          * so that we don't get a ext4_mb_init_cache_call for this
1659          * group until we update the bitmap. That would mean we
1660          * double allocate blocks. The reference is dropped
1661          * in ext4_mb_release_context
1662          */
1663         ac->ac_bitmap_page = e4b->bd_bitmap_page;
1664         get_page(ac->ac_bitmap_page);
1665         ac->ac_buddy_page = e4b->bd_buddy_page;
1666         get_page(ac->ac_buddy_page);
1667         /* store last allocated for subsequent stream allocation */
1668         if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
1669                 spin_lock(&sbi->s_md_lock);
1670                 sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
1671                 sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
1672                 spin_unlock(&sbi->s_md_lock);
1673         }
1674 }
1675
1676 /*
1677  * regular allocator, for general purposes allocation
1678  */
1679
1680 static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
1681                                         struct ext4_buddy *e4b,
1682                                         int finish_group)
1683 {
1684         struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1685         struct ext4_free_extent *bex = &ac->ac_b_ex;
1686         struct ext4_free_extent *gex = &ac->ac_g_ex;
1687         struct ext4_free_extent ex;
1688         int max;
1689
1690         if (ac->ac_status == AC_STATUS_FOUND)
1691                 return;
1692         /*
1693          * We don't want to scan for a whole year
1694          */
1695         if (ac->ac_found > sbi->s_mb_max_to_scan &&
1696                         !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1697                 ac->ac_status = AC_STATUS_BREAK;
1698                 return;
1699         }
1700
1701         /*
1702          * Haven't found good chunk so far, let's continue
1703          */
1704         if (bex->fe_len < gex->fe_len)
1705                 return;
1706
1707         if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
1708                         && bex->fe_group == e4b->bd_group) {
1709                 /* recheck chunk's availability - we don't know
1710                  * when it was found (within this lock-unlock
1711                  * period or not) */
1712                 max = mb_find_extent(e4b, bex->fe_start, gex->fe_len, &ex);
1713                 if (max >= gex->fe_len) {
1714                         ext4_mb_use_best_found(ac, e4b);
1715                         return;
1716                 }
1717         }
1718 }
1719
1720 /*
1721  * The routine checks whether found extent is good enough. If it is,
1722  * then the extent gets marked used and flag is set to the context
1723  * to stop scanning. Otherwise, the extent is compared with the
1724  * previous found extent and if new one is better, then it's stored
1725  * in the context. Later, the best found extent will be used, if
1726  * mballoc can't find good enough extent.
1727  *
1728  * FIXME: real allocation policy is to be designed yet!
1729  */
1730 static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
1731                                         struct ext4_free_extent *ex,
1732                                         struct ext4_buddy *e4b)
1733 {
1734         struct ext4_free_extent *bex = &ac->ac_b_ex;
1735         struct ext4_free_extent *gex = &ac->ac_g_ex;
1736
1737         BUG_ON(ex->fe_len <= 0);
1738         BUG_ON(ex->fe_len > EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
1739         BUG_ON(ex->fe_start >= EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
1740         BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
1741
1742         ac->ac_found++;
1743
1744         /*
1745          * The special case - take what you catch first
1746          */
1747         if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1748                 *bex = *ex;
1749                 ext4_mb_use_best_found(ac, e4b);
1750                 return;
1751         }
1752
1753         /*
1754          * Let's check whether the chuck is good enough
1755          */
1756         if (ex->fe_len == gex->fe_len) {
1757                 *bex = *ex;
1758                 ext4_mb_use_best_found(ac, e4b);
1759                 return;
1760         }
1761
1762         /*
1763          * If this is first found extent, just store it in the context
1764          */
1765         if (bex->fe_len == 0) {
1766                 *bex = *ex;
1767                 return;
1768         }
1769
1770         /*
1771          * If new found extent is better, store it in the context
1772          */
1773         if (bex->fe_len < gex->fe_len) {
1774                 /* if the request isn't satisfied, any found extent
1775                  * larger than previous best one is better */
1776                 if (ex->fe_len > bex->fe_len)
1777                         *bex = *ex;
1778         } else if (ex->fe_len > gex->fe_len) {
1779                 /* if the request is satisfied, then we try to find
1780                  * an extent that still satisfy the request, but is
1781                  * smaller than previous one */
1782                 if (ex->fe_len < bex->fe_len)
1783                         *bex = *ex;
1784         }
1785
1786         ext4_mb_check_limits(ac, e4b, 0);
1787 }
1788
1789 static noinline_for_stack
1790 int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
1791                                         struct ext4_buddy *e4b)
1792 {
1793         struct ext4_free_extent ex = ac->ac_b_ex;
1794         ext4_group_t group = ex.fe_group;
1795         int max;
1796         int err;
1797
1798         BUG_ON(ex.fe_len <= 0);
1799         err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1800         if (err)
1801                 return err;
1802
1803         ext4_lock_group(ac->ac_sb, group);
1804         max = mb_find_extent(e4b, ex.fe_start, ex.fe_len, &ex);
1805
1806         if (max > 0) {
1807                 ac->ac_b_ex = ex;
1808                 ext4_mb_use_best_found(ac, e4b);
1809         }
1810
1811         ext4_unlock_group(ac->ac_sb, group);
1812         ext4_mb_unload_buddy(e4b);
1813
1814         return 0;
1815 }
1816
1817 static noinline_for_stack
1818 int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
1819                                 struct ext4_buddy *e4b)
1820 {
1821         ext4_group_t group = ac->ac_g_ex.fe_group;
1822         int max;
1823         int err;
1824         struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1825         struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
1826         struct ext4_free_extent ex;
1827
1828         if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
1829                 return 0;
1830         if (grp->bb_free == 0)
1831                 return 0;
1832
1833         err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1834         if (err)
1835                 return err;
1836
1837         if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info))) {
1838                 ext4_mb_unload_buddy(e4b);
1839                 return 0;
1840         }
1841
1842         ext4_lock_group(ac->ac_sb, group);
1843         max = mb_find_extent(e4b, ac->ac_g_ex.fe_start,
1844                              ac->ac_g_ex.fe_len, &ex);
1845         ex.fe_logical = 0xDEADFA11; /* debug value */
1846
1847         if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
1848                 ext4_fsblk_t start;
1849
1850                 start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
1851                         ex.fe_start;
1852                 /* use do_div to get remainder (would be 64-bit modulo) */
1853                 if (do_div(start, sbi->s_stripe) == 0) {
1854                         ac->ac_found++;
1855                         ac->ac_b_ex = ex;
1856                         ext4_mb_use_best_found(ac, e4b);
1857                 }
1858         } else if (max >= ac->ac_g_ex.fe_len) {
1859                 BUG_ON(ex.fe_len <= 0);
1860                 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1861                 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1862                 ac->ac_found++;
1863                 ac->ac_b_ex = ex;
1864                 ext4_mb_use_best_found(ac, e4b);
1865         } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
1866                 /* Sometimes, caller may want to merge even small
1867                  * number of blocks to an existing extent */
1868                 BUG_ON(ex.fe_len <= 0);
1869                 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1870                 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1871                 ac->ac_found++;
1872                 ac->ac_b_ex = ex;
1873                 ext4_mb_use_best_found(ac, e4b);
1874         }
1875         ext4_unlock_group(ac->ac_sb, group);
1876         ext4_mb_unload_buddy(e4b);
1877
1878         return 0;
1879 }
1880
1881 /*
1882  * The routine scans buddy structures (not bitmap!) from given order
1883  * to max order and tries to find big enough chunk to satisfy the req
1884  */
1885 static noinline_for_stack
1886 void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
1887                                         struct ext4_buddy *e4b)
1888 {
1889         struct super_block *sb = ac->ac_sb;
1890         struct ext4_group_info *grp = e4b->bd_info;
1891         void *buddy;
1892         int i;
1893         int k;
1894         int max;
1895
1896         BUG_ON(ac->ac_2order <= 0);
1897         for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
1898                 if (grp->bb_counters[i] == 0)
1899                         continue;
1900
1901                 buddy = mb_find_buddy(e4b, i, &max);
1902                 BUG_ON(buddy == NULL);
1903
1904                 k = mb_find_next_zero_bit(buddy, max, 0);
1905                 if (k >= max) {
1906                         ext4_grp_locked_error(ac->ac_sb, e4b->bd_group, 0, 0,
1907                                 "%d free clusters of order %d. But found 0",
1908                                 grp->bb_counters[i], i);
1909                         ext4_mark_group_bitmap_corrupted(ac->ac_sb,
1910                                          e4b->bd_group,
1911                                         EXT4_GROUP_INFO_BBITMAP_CORRUPT);
1912                         break;
1913                 }
1914                 ac->ac_found++;
1915
1916                 ac->ac_b_ex.fe_len = 1 << i;
1917                 ac->ac_b_ex.fe_start = k << i;
1918                 ac->ac_b_ex.fe_group = e4b->bd_group;
1919
1920                 ext4_mb_use_best_found(ac, e4b);
1921
1922                 BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
1923
1924                 if (EXT4_SB(sb)->s_mb_stats)
1925                         atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
1926
1927                 break;
1928         }
1929 }
1930
1931 /*
1932  * The routine scans the group and measures all found extents.
1933  * In order to optimize scanning, caller must pass number of
1934  * free blocks in the group, so the routine can know upper limit.
1935  */
1936 static noinline_for_stack
1937 void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
1938                                         struct ext4_buddy *e4b)
1939 {
1940         struct super_block *sb = ac->ac_sb;
1941         void *bitmap = e4b->bd_bitmap;
1942         struct ext4_free_extent ex;
1943         int i;
1944         int free;
1945
1946         free = e4b->bd_info->bb_free;
1947         if (WARN_ON(free <= 0))
1948                 return;
1949
1950         i = e4b->bd_info->bb_first_free;
1951
1952         while (free && ac->ac_status == AC_STATUS_CONTINUE) {
1953                 i = mb_find_next_zero_bit(bitmap,
1954                                                 EXT4_CLUSTERS_PER_GROUP(sb), i);
1955                 if (i >= EXT4_CLUSTERS_PER_GROUP(sb)) {
1956                         /*
1957                          * IF we have corrupt bitmap, we won't find any
1958                          * free blocks even though group info says we
1959                          * we have free blocks
1960                          */
1961                         ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
1962                                         "%d free clusters as per "
1963                                         "group info. But bitmap says 0",
1964                                         free);
1965                         ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
1966                                         EXT4_GROUP_INFO_BBITMAP_CORRUPT);
1967                         break;
1968                 }
1969
1970                 mb_find_extent(e4b, i, ac->ac_g_ex.fe_len, &ex);
1971                 if (WARN_ON(ex.fe_len <= 0))
1972                         break;
1973                 if (free < ex.fe_len) {
1974                         ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
1975                                         "%d free clusters as per "
1976                                         "group info. But got %d blocks",
1977                                         free, ex.fe_len);
1978                         ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
1979                                         EXT4_GROUP_INFO_BBITMAP_CORRUPT);
1980                         /*
1981                          * The number of free blocks differs. This mostly
1982                          * indicate that the bitmap is corrupt. So exit
1983                          * without claiming the space.
1984                          */
1985                         break;
1986                 }
1987                 ex.fe_logical = 0xDEADC0DE; /* debug value */
1988                 ext4_mb_measure_extent(ac, &ex, e4b);
1989
1990                 i += ex.fe_len;
1991                 free -= ex.fe_len;
1992         }
1993
1994         ext4_mb_check_limits(ac, e4b, 1);
1995 }
1996
1997 /*
1998  * This is a special case for storages like raid5
1999  * we try to find stripe-aligned chunks for stripe-size-multiple requests
2000  */
2001 static noinline_for_stack
2002 void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
2003                                  struct ext4_buddy *e4b)
2004 {
2005         struct super_block *sb = ac->ac_sb;
2006         struct ext4_sb_info *sbi = EXT4_SB(sb);
2007         void *bitmap = e4b->bd_bitmap;
2008         struct ext4_free_extent ex;
2009         ext4_fsblk_t first_group_block;
2010         ext4_fsblk_t a;
2011         ext4_grpblk_t i;
2012         int max;
2013
2014         BUG_ON(sbi->s_stripe == 0);
2015
2016         /* find first stripe-aligned block in group */
2017         first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
2018
2019         a = first_group_block + sbi->s_stripe - 1;
2020         do_div(a, sbi->s_stripe);
2021         i = (a * sbi->s_stripe) - first_group_block;
2022
2023         while (i < EXT4_CLUSTERS_PER_GROUP(sb)) {
2024                 if (!mb_test_bit(i, bitmap)) {
2025                         max = mb_find_extent(e4b, i, sbi->s_stripe, &ex);
2026                         if (max >= sbi->s_stripe) {
2027                                 ac->ac_found++;
2028                                 ex.fe_logical = 0xDEADF00D; /* debug value */
2029                                 ac->ac_b_ex = ex;
2030                                 ext4_mb_use_best_found(ac, e4b);
2031                                 break;
2032                         }
2033                 }
2034                 i += sbi->s_stripe;
2035         }
2036 }
2037
2038 /*
2039  * This is now called BEFORE we load the buddy bitmap.
2040  * Returns either 1 or 0 indicating that the group is either suitable
2041  * for the allocation or not. In addition it can also return negative
2042  * error code when something goes wrong.
2043  */
2044 static int ext4_mb_good_group(struct ext4_allocation_context *ac,
2045                                 ext4_group_t group, int cr)
2046 {
2047         unsigned free, fragments;
2048         int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
2049         struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
2050
2051         BUG_ON(cr < 0 || cr >= 4);
2052
2053         free = grp->bb_free;
2054         if (free == 0)
2055                 return 0;
2056         if (cr <= 2 && free < ac->ac_g_ex.fe_len)
2057                 return 0;
2058
2059         if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(grp)))
2060                 return 0;
2061
2062         /* We only do this if the grp has never been initialized */
2063         if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
2064                 int ret = ext4_mb_init_group(ac->ac_sb, group, GFP_NOFS);
2065                 if (ret)
2066                         return ret;
2067         }
2068
2069         fragments = grp->bb_fragments;
2070         if (fragments == 0)
2071                 return 0;
2072
2073         switch (cr) {
2074         case 0:
2075                 BUG_ON(ac->ac_2order == 0);
2076
2077                 /* Avoid using the first bg of a flexgroup for data files */
2078                 if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
2079                     (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
2080                     ((group % flex_size) == 0))
2081                         return 0;
2082
2083                 if ((ac->ac_2order > ac->ac_sb->s_blocksize_bits+1) ||
2084                     (free / fragments) >= ac->ac_g_ex.fe_len)
2085                         return 1;
2086
2087                 if (grp->bb_largest_free_order < ac->ac_2order)
2088                         return 0;
2089
2090                 return 1;
2091         case 1:
2092                 if ((free / fragments) >= ac->ac_g_ex.fe_len)
2093                         return 1;
2094                 break;
2095         case 2:
2096                 if (free >= ac->ac_g_ex.fe_len)
2097                         return 1;
2098                 break;
2099         case 3:
2100                 return 1;
2101         default:
2102                 BUG();
2103         }
2104
2105         return 0;
2106 }
2107
2108 static noinline_for_stack int
2109 ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
2110 {
2111         ext4_group_t ngroups, group, i;
2112         int cr;
2113         int err = 0, first_err = 0;
2114         struct ext4_sb_info *sbi;
2115         struct super_block *sb;
2116         struct ext4_buddy e4b;
2117
2118         sb = ac->ac_sb;
2119         sbi = EXT4_SB(sb);
2120         ngroups = ext4_get_groups_count(sb);
2121         /* non-extent files are limited to low blocks/groups */
2122         if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
2123                 ngroups = sbi->s_blockfile_groups;
2124
2125         BUG_ON(ac->ac_status == AC_STATUS_FOUND);
2126
2127         /* first, try the goal */
2128         err = ext4_mb_find_by_goal(ac, &e4b);
2129         if (err || ac->ac_status == AC_STATUS_FOUND)
2130                 goto out;
2131
2132         if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2133                 goto out;
2134
2135         /*
2136          * ac->ac2_order is set only if the fe_len is a power of 2
2137          * if ac2_order is set we also set criteria to 0 so that we
2138          * try exact allocation using buddy.
2139          */
2140         i = fls(ac->ac_g_ex.fe_len);
2141         ac->ac_2order = 0;
2142         /*
2143          * We search using buddy data only if the order of the request
2144          * is greater than equal to the sbi_s_mb_order2_reqs
2145          * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
2146          * We also support searching for power-of-two requests only for
2147          * requests upto maximum buddy size we have constructed.
2148          */
2149         if (i >= sbi->s_mb_order2_reqs && i <= sb->s_blocksize_bits + 2) {
2150                 /*
2151                  * This should tell if fe_len is exactly power of 2
2152                  */
2153                 if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
2154                         ac->ac_2order = array_index_nospec(i - 1,
2155                                                            sb->s_blocksize_bits + 2);
2156         }
2157
2158         /* if stream allocation is enabled, use global goal */
2159         if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
2160                 /* TBD: may be hot point */
2161                 spin_lock(&sbi->s_md_lock);
2162                 ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
2163                 ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
2164                 spin_unlock(&sbi->s_md_lock);
2165         }
2166
2167         /* Let's just scan groups to find more-less suitable blocks */
2168         cr = ac->ac_2order ? 0 : 1;
2169         /*
2170          * cr == 0 try to get exact allocation,
2171          * cr == 3  try to get anything
2172          */
2173 repeat:
2174         for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
2175                 ac->ac_criteria = cr;
2176                 /*
2177                  * searching for the right group start
2178                  * from the goal value specified
2179                  */
2180                 group = ac->ac_g_ex.fe_group;
2181
2182                 for (i = 0; i < ngroups; group++, i++) {
2183                         int ret = 0;
2184                         cond_resched();
2185                         /*
2186                          * Artificially restricted ngroups for non-extent
2187                          * files makes group > ngroups possible on first loop.
2188                          */
2189                         if (group >= ngroups)
2190                                 group = 0;
2191
2192                         /* This now checks without needing the buddy page */
2193                         ret = ext4_mb_good_group(ac, group, cr);
2194                         if (ret <= 0) {
2195                                 if (!first_err)
2196                                         first_err = ret;
2197                                 continue;
2198                         }
2199
2200                         err = ext4_mb_load_buddy(sb, group, &e4b);
2201                         if (err)
2202                                 goto out;
2203
2204                         ext4_lock_group(sb, group);
2205
2206                         /*
2207                          * We need to check again after locking the
2208                          * block group
2209                          */
2210                         ret = ext4_mb_good_group(ac, group, cr);
2211                         if (ret <= 0) {
2212                                 ext4_unlock_group(sb, group);
2213                                 ext4_mb_unload_buddy(&e4b);
2214                                 if (!first_err)
2215                                         first_err = ret;
2216                                 continue;
2217                         }
2218
2219                         ac->ac_groups_scanned++;
2220                         if (cr == 0)
2221                                 ext4_mb_simple_scan_group(ac, &e4b);
2222                         else if (cr == 1 && sbi->s_stripe &&
2223                                         !(ac->ac_g_ex.fe_len % sbi->s_stripe))
2224                                 ext4_mb_scan_aligned(ac, &e4b);
2225                         else
2226                                 ext4_mb_complex_scan_group(ac, &e4b);
2227
2228                         ext4_unlock_group(sb, group);
2229                         ext4_mb_unload_buddy(&e4b);
2230
2231                         if (ac->ac_status != AC_STATUS_CONTINUE)
2232                                 break;
2233                 }
2234         }
2235
2236         if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
2237             !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2238                 /*
2239                  * We've been searching too long. Let's try to allocate
2240                  * the best chunk we've found so far
2241                  */
2242
2243                 ext4_mb_try_best_found(ac, &e4b);
2244                 if (ac->ac_status != AC_STATUS_FOUND) {
2245                         /*
2246                          * Someone more lucky has already allocated it.
2247                          * The only thing we can do is just take first
2248                          * found block(s)
2249                         printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n");
2250                          */
2251                         ac->ac_b_ex.fe_group = 0;
2252                         ac->ac_b_ex.fe_start = 0;
2253                         ac->ac_b_ex.fe_len = 0;
2254                         ac->ac_status = AC_STATUS_CONTINUE;
2255                         ac->ac_flags |= EXT4_MB_HINT_FIRST;
2256                         cr = 3;
2257                         atomic_inc(&sbi->s_mb_lost_chunks);
2258                         goto repeat;
2259                 }
2260         }
2261 out:
2262         if (!err && ac->ac_status != AC_STATUS_FOUND && first_err)
2263                 err = first_err;
2264         return err;
2265 }
2266
2267 static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2268 {
2269         struct super_block *sb = PDE_DATA(file_inode(seq->file));
2270         ext4_group_t group;
2271
2272         if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
2273                 return NULL;
2274         group = *pos + 1;
2275         return (void *) ((unsigned long) group);
2276 }
2277
2278 static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2279 {
2280         struct super_block *sb = PDE_DATA(file_inode(seq->file));
2281         ext4_group_t group;
2282
2283         ++*pos;
2284         if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
2285                 return NULL;
2286         group = *pos + 1;
2287         return (void *) ((unsigned long) group);
2288 }
2289
2290 static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2291 {
2292         struct super_block *sb = PDE_DATA(file_inode(seq->file));
2293         ext4_group_t group = (ext4_group_t) ((unsigned long) v);
2294         int i;
2295         int err, buddy_loaded = 0;
2296         struct ext4_buddy e4b;
2297         struct ext4_group_info *grinfo;
2298         unsigned char blocksize_bits = min_t(unsigned char,
2299                                              sb->s_blocksize_bits,
2300                                              EXT4_MAX_BLOCK_LOG_SIZE);
2301         struct sg {
2302                 struct ext4_group_info info;
2303                 ext4_grpblk_t counters[EXT4_MAX_BLOCK_LOG_SIZE + 2];
2304         } sg;
2305
2306         group--;
2307         if (group == 0)
2308                 seq_puts(seq, "#group: free  frags first ["
2309                               " 2^0   2^1   2^2   2^3   2^4   2^5   2^6  "
2310                               " 2^7   2^8   2^9   2^10  2^11  2^12  2^13  ]\n");
2311
2312         i = (blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2313                 sizeof(struct ext4_group_info);
2314
2315         grinfo = ext4_get_group_info(sb, group);
2316         /* Load the group info in memory only if not already loaded. */
2317         if (unlikely(EXT4_MB_GRP_NEED_INIT(grinfo))) {
2318                 err = ext4_mb_load_buddy(sb, group, &e4b);
2319                 if (err) {
2320                         seq_printf(seq, "#%-5u: I/O error\n", group);
2321                         return 0;
2322                 }
2323                 buddy_loaded = 1;
2324         }
2325
2326         memcpy(&sg, ext4_get_group_info(sb, group), i);
2327
2328         if (buddy_loaded)
2329                 ext4_mb_unload_buddy(&e4b);
2330
2331         seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
2332                         sg.info.bb_fragments, sg.info.bb_first_free);
2333         for (i = 0; i <= 13; i++)
2334                 seq_printf(seq, " %-5u", i <= blocksize_bits + 1 ?
2335                                 sg.info.bb_counters[i] : 0);
2336         seq_printf(seq, " ]\n");
2337
2338         return 0;
2339 }
2340
2341 static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2342 {
2343 }
2344
2345 const struct seq_operations ext4_mb_seq_groups_ops = {
2346         .start  = ext4_mb_seq_groups_start,
2347         .next   = ext4_mb_seq_groups_next,
2348         .stop   = ext4_mb_seq_groups_stop,
2349         .show   = ext4_mb_seq_groups_show,
2350 };
2351
2352 static struct kmem_cache *get_groupinfo_cache(int blocksize_bits)
2353 {
2354         int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2355         struct kmem_cache *cachep = ext4_groupinfo_caches[cache_index];
2356
2357         BUG_ON(!cachep);
2358         return cachep;
2359 }
2360
2361 /*
2362  * Allocate the top-level s_group_info array for the specified number
2363  * of groups
2364  */
2365 int ext4_mb_alloc_groupinfo(struct super_block *sb, ext4_group_t ngroups)
2366 {
2367         struct ext4_sb_info *sbi = EXT4_SB(sb);
2368         unsigned size;
2369         struct ext4_group_info ***old_groupinfo, ***new_groupinfo;
2370
2371         size = (ngroups + EXT4_DESC_PER_BLOCK(sb) - 1) >>
2372                 EXT4_DESC_PER_BLOCK_BITS(sb);
2373         if (size <= sbi->s_group_info_size)
2374                 return 0;
2375
2376         size = roundup_pow_of_two(sizeof(*sbi->s_group_info) * size);
2377         new_groupinfo = kvzalloc(size, GFP_KERNEL);
2378         if (!new_groupinfo) {
2379                 ext4_msg(sb, KERN_ERR, "can't allocate buddy meta group");
2380                 return -ENOMEM;
2381         }
2382         rcu_read_lock();
2383         old_groupinfo = rcu_dereference(sbi->s_group_info);
2384         if (old_groupinfo)
2385                 memcpy(new_groupinfo, old_groupinfo,
2386                        sbi->s_group_info_size * sizeof(*sbi->s_group_info));
2387         rcu_read_unlock();
2388         rcu_assign_pointer(sbi->s_group_info, new_groupinfo);
2389         sbi->s_group_info_size = size / sizeof(*sbi->s_group_info);
2390         if (old_groupinfo)
2391                 ext4_kvfree_array_rcu(old_groupinfo);
2392         ext4_debug("allocated s_groupinfo array for %d meta_bg's\n", 
2393                    sbi->s_group_info_size);
2394         return 0;
2395 }
2396
2397 /* Create and initialize ext4_group_info data for the given group. */
2398 int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
2399                           struct ext4_group_desc *desc)
2400 {
2401         int i;
2402         int metalen = 0;
2403         int idx = group >> EXT4_DESC_PER_BLOCK_BITS(sb);
2404         struct ext4_sb_info *sbi = EXT4_SB(sb);
2405         struct ext4_group_info **meta_group_info;
2406         struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
2407
2408         /*
2409          * First check if this group is the first of a reserved block.
2410          * If it's true, we have to allocate a new table of pointers
2411          * to ext4_group_info structures
2412          */
2413         if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
2414                 metalen = sizeof(*meta_group_info) <<
2415                         EXT4_DESC_PER_BLOCK_BITS(sb);
2416                 meta_group_info = kmalloc(metalen, GFP_NOFS);
2417                 if (meta_group_info == NULL) {
2418                         ext4_msg(sb, KERN_ERR, "can't allocate mem "
2419                                  "for a buddy group");
2420                         goto exit_meta_group_info;
2421                 }
2422                 rcu_read_lock();
2423                 rcu_dereference(sbi->s_group_info)[idx] = meta_group_info;
2424                 rcu_read_unlock();
2425         }
2426
2427         meta_group_info = sbi_array_rcu_deref(sbi, s_group_info, idx);
2428         i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
2429
2430         meta_group_info[i] = kmem_cache_zalloc(cachep, GFP_NOFS);
2431         if (meta_group_info[i] == NULL) {
2432                 ext4_msg(sb, KERN_ERR, "can't allocate buddy mem");
2433                 goto exit_group_info;
2434         }
2435         set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
2436                 &(meta_group_info[i]->bb_state));
2437
2438         /*
2439          * initialize bb_free to be able to skip
2440          * empty groups without initialization
2441          */
2442         if (ext4_has_group_desc_csum(sb) &&
2443             (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
2444                 meta_group_info[i]->bb_free =
2445                         ext4_free_clusters_after_init(sb, group, desc);
2446         } else {
2447                 meta_group_info[i]->bb_free =
2448                         ext4_free_group_clusters(sb, desc);
2449         }
2450
2451         INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
2452         init_rwsem(&meta_group_info[i]->alloc_sem);
2453         meta_group_info[i]->bb_free_root = RB_ROOT;
2454         meta_group_info[i]->bb_largest_free_order = -1;  /* uninit */
2455
2456 #ifdef DOUBLE_CHECK
2457         {
2458                 struct buffer_head *bh;
2459                 meta_group_info[i]->bb_bitmap =
2460                         kmalloc(sb->s_blocksize, GFP_NOFS);
2461                 BUG_ON(meta_group_info[i]->bb_bitmap == NULL);
2462                 bh = ext4_read_block_bitmap(sb, group);
2463                 BUG_ON(IS_ERR_OR_NULL(bh));
2464                 memcpy(meta_group_info[i]->bb_bitmap, bh->b_data,
2465                         sb->s_blocksize);
2466                 put_bh(bh);
2467         }
2468 #endif
2469
2470         return 0;
2471
2472 exit_group_info:
2473         /* If a meta_group_info table has been allocated, release it now */
2474         if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
2475                 struct ext4_group_info ***group_info;
2476
2477                 rcu_read_lock();
2478                 group_info = rcu_dereference(sbi->s_group_info);
2479                 kfree(group_info[idx]);
2480                 group_info[idx] = NULL;
2481                 rcu_read_unlock();
2482         }
2483 exit_meta_group_info:
2484         return -ENOMEM;
2485 } /* ext4_mb_add_groupinfo */
2486
2487 static int ext4_mb_init_backend(struct super_block *sb)
2488 {
2489         ext4_group_t ngroups = ext4_get_groups_count(sb);
2490         ext4_group_t i;
2491         struct ext4_sb_info *sbi = EXT4_SB(sb);
2492         int err;
2493         struct ext4_group_desc *desc;
2494         struct ext4_group_info ***group_info;
2495         struct kmem_cache *cachep;
2496
2497         err = ext4_mb_alloc_groupinfo(sb, ngroups);
2498         if (err)
2499                 return err;
2500
2501         sbi->s_buddy_cache = new_inode(sb);
2502         if (sbi->s_buddy_cache == NULL) {
2503                 ext4_msg(sb, KERN_ERR, "can't get new inode");
2504                 goto err_freesgi;
2505         }
2506         /* To avoid potentially colliding with an valid on-disk inode number,
2507          * use EXT4_BAD_INO for the buddy cache inode number.  This inode is
2508          * not in the inode hash, so it should never be found by iget(), but
2509          * this will avoid confusion if it ever shows up during debugging. */
2510         sbi->s_buddy_cache->i_ino = EXT4_BAD_INO;
2511         EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
2512         for (i = 0; i < ngroups; i++) {
2513                 cond_resched();
2514                 desc = ext4_get_group_desc(sb, i, NULL);
2515                 if (desc == NULL) {
2516                         ext4_msg(sb, KERN_ERR, "can't read descriptor %u", i);
2517                         goto err_freebuddy;
2518                 }
2519                 if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
2520                         goto err_freebuddy;
2521         }
2522
2523         return 0;
2524
2525 err_freebuddy:
2526         cachep = get_groupinfo_cache(sb->s_blocksize_bits);
2527         while (i-- > 0)
2528                 kmem_cache_free(cachep, ext4_get_group_info(sb, i));
2529         i = sbi->s_group_info_size;
2530         rcu_read_lock();
2531         group_info = rcu_dereference(sbi->s_group_info);
2532         while (i-- > 0)
2533                 kfree(group_info[i]);
2534         rcu_read_unlock();
2535         iput(sbi->s_buddy_cache);
2536 err_freesgi:
2537         rcu_read_lock();
2538         kvfree(rcu_dereference(sbi->s_group_info));
2539         rcu_read_unlock();
2540         return -ENOMEM;
2541 }
2542
2543 static void ext4_groupinfo_destroy_slabs(void)
2544 {
2545         int i;
2546
2547         for (i = 0; i < NR_GRPINFO_CACHES; i++) {
2548                 kmem_cache_destroy(ext4_groupinfo_caches[i]);
2549                 ext4_groupinfo_caches[i] = NULL;
2550         }
2551 }
2552
2553 static int ext4_groupinfo_create_slab(size_t size)
2554 {
2555         static DEFINE_MUTEX(ext4_grpinfo_slab_create_mutex);
2556         int slab_size;
2557         int blocksize_bits = order_base_2(size);
2558         int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2559         struct kmem_cache *cachep;
2560
2561         if (cache_index >= NR_GRPINFO_CACHES)
2562                 return -EINVAL;
2563
2564         if (unlikely(cache_index < 0))
2565                 cache_index = 0;
2566
2567         mutex_lock(&ext4_grpinfo_slab_create_mutex);
2568         if (ext4_groupinfo_caches[cache_index]) {
2569                 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2570                 return 0;       /* Already created */
2571         }
2572
2573         slab_size = offsetof(struct ext4_group_info,
2574                                 bb_counters[blocksize_bits + 2]);
2575
2576         cachep = kmem_cache_create(ext4_groupinfo_slab_names[cache_index],
2577                                         slab_size, 0, SLAB_RECLAIM_ACCOUNT,
2578                                         NULL);
2579
2580         ext4_groupinfo_caches[cache_index] = cachep;
2581
2582         mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2583         if (!cachep) {
2584                 printk(KERN_EMERG
2585                        "EXT4-fs: no memory for groupinfo slab cache\n");
2586                 return -ENOMEM;
2587         }
2588
2589         return 0;
2590 }
2591
2592 int ext4_mb_init(struct super_block *sb)
2593 {
2594         struct ext4_sb_info *sbi = EXT4_SB(sb);
2595         unsigned i, j;
2596         unsigned offset, offset_incr;
2597         unsigned max;
2598         int ret;
2599
2600         i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_offsets);
2601
2602         sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
2603         if (sbi->s_mb_offsets == NULL) {
2604                 ret = -ENOMEM;
2605                 goto out;
2606         }
2607
2608         i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_maxs);
2609         sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
2610         if (sbi->s_mb_maxs == NULL) {
2611                 ret = -ENOMEM;
2612                 goto out;
2613         }
2614
2615         ret = ext4_groupinfo_create_slab(sb->s_blocksize);
2616         if (ret < 0)
2617                 goto out;
2618
2619         /* order 0 is regular bitmap */
2620         sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
2621         sbi->s_mb_offsets[0] = 0;
2622
2623         i = 1;
2624         offset = 0;
2625         offset_incr = 1 << (sb->s_blocksize_bits - 1);
2626         max = sb->s_blocksize << 2;
2627         do {
2628                 sbi->s_mb_offsets[i] = offset;
2629                 sbi->s_mb_maxs[i] = max;
2630                 offset += offset_incr;
2631                 offset_incr = offset_incr >> 1;
2632                 max = max >> 1;
2633                 i++;
2634         } while (i <= sb->s_blocksize_bits + 1);
2635
2636         spin_lock_init(&sbi->s_md_lock);
2637         spin_lock_init(&sbi->s_bal_lock);
2638         sbi->s_mb_free_pending = 0;
2639         INIT_LIST_HEAD(&sbi->s_freed_data_list);
2640
2641         sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
2642         sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
2643         sbi->s_mb_stats = MB_DEFAULT_STATS;
2644         sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
2645         sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
2646         /*
2647          * The default group preallocation is 512, which for 4k block
2648          * sizes translates to 2 megabytes.  However for bigalloc file
2649          * systems, this is probably too big (i.e, if the cluster size
2650          * is 1 megabyte, then group preallocation size becomes half a
2651          * gigabyte!).  As a default, we will keep a two megabyte
2652          * group pralloc size for cluster sizes up to 64k, and after
2653          * that, we will force a minimum group preallocation size of
2654          * 32 clusters.  This translates to 8 megs when the cluster
2655          * size is 256k, and 32 megs when the cluster size is 1 meg,
2656          * which seems reasonable as a default.
2657          */
2658         sbi->s_mb_group_prealloc = max(MB_DEFAULT_GROUP_PREALLOC >>
2659                                        sbi->s_cluster_bits, 32);
2660         /*
2661          * If there is a s_stripe > 1, then we set the s_mb_group_prealloc
2662          * to the lowest multiple of s_stripe which is bigger than
2663          * the s_mb_group_prealloc as determined above. We want
2664          * the preallocation size to be an exact multiple of the
2665          * RAID stripe size so that preallocations don't fragment
2666          * the stripes.
2667          */
2668         if (sbi->s_stripe > 1) {
2669                 sbi->s_mb_group_prealloc = roundup(
2670                         sbi->s_mb_group_prealloc, sbi->s_stripe);
2671         }
2672
2673         sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
2674         if (sbi->s_locality_groups == NULL) {
2675                 ret = -ENOMEM;
2676                 goto out;
2677         }
2678         for_each_possible_cpu(i) {
2679                 struct ext4_locality_group *lg;
2680                 lg = per_cpu_ptr(sbi->s_locality_groups, i);
2681                 mutex_init(&lg->lg_mutex);
2682                 for (j = 0; j < PREALLOC_TB_SIZE; j++)
2683                         INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
2684                 spin_lock_init(&lg->lg_prealloc_lock);
2685         }
2686
2687         /* init file for buddy data */
2688         ret = ext4_mb_init_backend(sb);
2689         if (ret != 0)
2690                 goto out_free_locality_groups;
2691
2692         return 0;
2693
2694 out_free_locality_groups:
2695         free_percpu(sbi->s_locality_groups);
2696         sbi->s_locality_groups = NULL;
2697 out:
2698         kfree(sbi->s_mb_offsets);
2699         sbi->s_mb_offsets = NULL;
2700         kfree(sbi->s_mb_maxs);
2701         sbi->s_mb_maxs = NULL;
2702         return ret;
2703 }
2704
2705 /* need to called with the ext4 group lock held */
2706 static void ext4_mb_cleanup_pa(struct ext4_group_info *grp)
2707 {
2708         struct ext4_prealloc_space *pa;
2709         struct list_head *cur, *tmp;
2710         int count = 0;
2711
2712         list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
2713                 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
2714                 list_del(&pa->pa_group_list);
2715                 count++;
2716                 kmem_cache_free(ext4_pspace_cachep, pa);
2717         }
2718         if (count)
2719                 mb_debug(1, "mballoc: %u PAs left\n", count);
2720
2721 }
2722
2723 int ext4_mb_release(struct super_block *sb)
2724 {
2725         ext4_group_t ngroups = ext4_get_groups_count(sb);
2726         ext4_group_t i;
2727         int num_meta_group_infos;
2728         struct ext4_group_info *grinfo, ***group_info;
2729         struct ext4_sb_info *sbi = EXT4_SB(sb);
2730         struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
2731
2732         if (sbi->s_group_info) {
2733                 for (i = 0; i < ngroups; i++) {
2734                         cond_resched();
2735                         grinfo = ext4_get_group_info(sb, i);
2736 #ifdef DOUBLE_CHECK
2737                         kfree(grinfo->bb_bitmap);
2738 #endif
2739                         ext4_lock_group(sb, i);
2740                         ext4_mb_cleanup_pa(grinfo);
2741                         ext4_unlock_group(sb, i);
2742                         kmem_cache_free(cachep, grinfo);
2743                 }
2744                 num_meta_group_infos = (ngroups +
2745                                 EXT4_DESC_PER_BLOCK(sb) - 1) >>
2746                         EXT4_DESC_PER_BLOCK_BITS(sb);
2747                 rcu_read_lock();
2748                 group_info = rcu_dereference(sbi->s_group_info);
2749                 for (i = 0; i < num_meta_group_infos; i++)
2750                         kfree(group_info[i]);
2751                 kvfree(group_info);
2752                 rcu_read_unlock();
2753         }
2754         kfree(sbi->s_mb_offsets);
2755         kfree(sbi->s_mb_maxs);
2756         iput(sbi->s_buddy_cache);
2757         if (sbi->s_mb_stats) {
2758                 ext4_msg(sb, KERN_INFO,
2759                        "mballoc: %u blocks %u reqs (%u success)",
2760                                 atomic_read(&sbi->s_bal_allocated),
2761                                 atomic_read(&sbi->s_bal_reqs),
2762                                 atomic_read(&sbi->s_bal_success));
2763                 ext4_msg(sb, KERN_INFO,
2764                       "mballoc: %u extents scanned, %u goal hits, "
2765                                 "%u 2^N hits, %u breaks, %u lost",
2766                                 atomic_read(&sbi->s_bal_ex_scanned),
2767                                 atomic_read(&sbi->s_bal_goals),
2768                                 atomic_read(&sbi->s_bal_2orders),
2769                                 atomic_read(&sbi->s_bal_breaks),
2770                                 atomic_read(&sbi->s_mb_lost_chunks));
2771                 ext4_msg(sb, KERN_INFO,
2772                        "mballoc: %lu generated and it took %Lu",
2773                                 sbi->s_mb_buddies_generated,
2774                                 sbi->s_mb_generation_time);
2775                 ext4_msg(sb, KERN_INFO,
2776                        "mballoc: %u preallocated, %u discarded",
2777                                 atomic_read(&sbi->s_mb_preallocated),
2778                                 atomic_read(&sbi->s_mb_discarded));
2779         }
2780
2781         free_percpu(sbi->s_locality_groups);
2782
2783         return 0;
2784 }
2785
2786 static inline int ext4_issue_discard(struct super_block *sb,
2787                 ext4_group_t block_group, ext4_grpblk_t cluster, int count,
2788                 struct bio **biop)
2789 {
2790         ext4_fsblk_t discard_block;
2791
2792         discard_block = (EXT4_C2B(EXT4_SB(sb), cluster) +
2793                          ext4_group_first_block_no(sb, block_group));
2794         count = EXT4_C2B(EXT4_SB(sb), count);
2795         trace_ext4_discard_blocks(sb,
2796                         (unsigned long long) discard_block, count);
2797         if (biop) {
2798                 return __blkdev_issue_discard(sb->s_bdev,
2799                         (sector_t)discard_block << (sb->s_blocksize_bits - 9),
2800                         (sector_t)count << (sb->s_blocksize_bits - 9),
2801                         GFP_NOFS, 0, biop);
2802         } else
2803                 return sb_issue_discard(sb, discard_block, count, GFP_NOFS, 0);
2804 }
2805
2806 static void ext4_free_data_in_buddy(struct super_block *sb,
2807                                     struct ext4_free_data *entry)
2808 {
2809         struct ext4_buddy e4b;
2810         struct ext4_group_info *db;
2811         int err, count = 0, count2 = 0;
2812
2813         mb_debug(1, "gonna free %u blocks in group %u (0x%p):",
2814                  entry->efd_count, entry->efd_group, entry);
2815
2816         err = ext4_mb_load_buddy(sb, entry->efd_group, &e4b);
2817         /* we expect to find existing buddy because it's pinned */
2818         BUG_ON(err != 0);
2819
2820         spin_lock(&EXT4_SB(sb)->s_md_lock);
2821         EXT4_SB(sb)->s_mb_free_pending -= entry->efd_count;
2822         spin_unlock(&EXT4_SB(sb)->s_md_lock);
2823
2824         db = e4b.bd_info;
2825         /* there are blocks to put in buddy to make them really free */
2826         count += entry->efd_count;
2827         count2++;
2828         ext4_lock_group(sb, entry->efd_group);
2829         /* Take it out of per group rb tree */
2830         rb_erase(&entry->efd_node, &(db->bb_free_root));
2831         mb_free_blocks(NULL, &e4b, entry->efd_start_cluster, entry->efd_count);
2832
2833         /*
2834          * Clear the trimmed flag for the group so that the next
2835          * ext4_trim_fs can trim it.
2836          * If the volume is mounted with -o discard, online discard
2837          * is supported and the free blocks will be trimmed online.
2838          */
2839         if (!test_opt(sb, DISCARD))
2840                 EXT4_MB_GRP_CLEAR_TRIMMED(db);
2841
2842         if (!db->bb_free_root.rb_node) {
2843                 /* No more items in the per group rb tree
2844                  * balance refcounts from ext4_mb_free_metadata()
2845                  */
2846                 put_page(e4b.bd_buddy_page);
2847                 put_page(e4b.bd_bitmap_page);
2848         }
2849         ext4_unlock_group(sb, entry->efd_group);
2850         kmem_cache_free(ext4_free_data_cachep, entry);
2851         ext4_mb_unload_buddy(&e4b);
2852
2853         mb_debug(1, "freed %u blocks in %u structures\n", count, count2);
2854 }
2855
2856 /*
2857  * This function is called by the jbd2 layer once the commit has finished,
2858  * so we know we can free the blocks that were released with that commit.
2859  */
2860 void ext4_process_freed_data(struct super_block *sb, tid_t commit_tid)
2861 {
2862         struct ext4_sb_info *sbi = EXT4_SB(sb);
2863         struct ext4_free_data *entry, *tmp;
2864         struct bio *discard_bio = NULL;
2865         struct list_head freed_data_list;
2866         struct list_head *cut_pos = NULL;
2867         int err;
2868
2869         INIT_LIST_HEAD(&freed_data_list);
2870
2871         spin_lock(&sbi->s_md_lock);
2872         list_for_each_entry(entry, &sbi->s_freed_data_list, efd_list) {
2873                 if (entry->efd_tid != commit_tid)
2874                         break;
2875                 cut_pos = &entry->efd_list;
2876         }
2877         if (cut_pos)
2878                 list_cut_position(&freed_data_list, &sbi->s_freed_data_list,
2879                                   cut_pos);
2880         spin_unlock(&sbi->s_md_lock);
2881
2882         if (test_opt(sb, DISCARD)) {
2883                 list_for_each_entry(entry, &freed_data_list, efd_list) {
2884                         err = ext4_issue_discard(sb, entry->efd_group,
2885                                                  entry->efd_start_cluster,
2886                                                  entry->efd_count,
2887                                                  &discard_bio);
2888                         if (err && err != -EOPNOTSUPP) {
2889                                 ext4_msg(sb, KERN_WARNING, "discard request in"
2890                                          " group:%d block:%d count:%d failed"
2891                                          " with %d", entry->efd_group,
2892                                          entry->efd_start_cluster,
2893                                          entry->efd_count, err);
2894                         } else if (err == -EOPNOTSUPP)
2895                                 break;
2896                 }
2897
2898                 if (discard_bio) {
2899                         submit_bio_wait(discard_bio);
2900                         bio_put(discard_bio);
2901                 }
2902         }
2903
2904         list_for_each_entry_safe(entry, tmp, &freed_data_list, efd_list)
2905                 ext4_free_data_in_buddy(sb, entry);
2906 }
2907
2908 int __init ext4_init_mballoc(void)
2909 {
2910         ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space,
2911                                         SLAB_RECLAIM_ACCOUNT);
2912         if (ext4_pspace_cachep == NULL)
2913                 return -ENOMEM;
2914
2915         ext4_ac_cachep = KMEM_CACHE(ext4_allocation_context,
2916                                     SLAB_RECLAIM_ACCOUNT);
2917         if (ext4_ac_cachep == NULL) {
2918                 kmem_cache_destroy(ext4_pspace_cachep);
2919                 return -ENOMEM;
2920         }
2921
2922         ext4_free_data_cachep = KMEM_CACHE(ext4_free_data,
2923                                            SLAB_RECLAIM_ACCOUNT);
2924         if (ext4_free_data_cachep == NULL) {
2925                 kmem_cache_destroy(ext4_pspace_cachep);
2926                 kmem_cache_destroy(ext4_ac_cachep);
2927                 return -ENOMEM;
2928         }
2929         return 0;
2930 }
2931
2932 void ext4_exit_mballoc(void)
2933 {
2934         /*
2935          * Wait for completion of call_rcu()'s on ext4_pspace_cachep
2936          * before destroying the slab cache.
2937          */
2938         rcu_barrier();
2939         kmem_cache_destroy(ext4_pspace_cachep);
2940         kmem_cache_destroy(ext4_ac_cachep);
2941         kmem_cache_destroy(ext4_free_data_cachep);
2942         ext4_groupinfo_destroy_slabs();
2943 }
2944
2945
2946 /*
2947  * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
2948  * Returns 0 if success or error code
2949  */
2950 static noinline_for_stack int
2951 ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
2952                                 handle_t *handle, unsigned int reserv_clstrs)
2953 {
2954         struct buffer_head *bitmap_bh = NULL;
2955         struct ext4_group_desc *gdp;
2956         struct buffer_head *gdp_bh;
2957         struct ext4_sb_info *sbi;
2958         struct super_block *sb;
2959         ext4_fsblk_t block;
2960         int err, len;
2961
2962         BUG_ON(ac->ac_status != AC_STATUS_FOUND);
2963         BUG_ON(ac->ac_b_ex.fe_len <= 0);
2964
2965         sb = ac->ac_sb;
2966         sbi = EXT4_SB(sb);
2967
2968         bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
2969         if (IS_ERR(bitmap_bh)) {
2970                 err = PTR_ERR(bitmap_bh);
2971                 bitmap_bh = NULL;
2972                 goto out_err;
2973         }
2974
2975         BUFFER_TRACE(bitmap_bh, "getting write access");
2976         err = ext4_journal_get_write_access(handle, bitmap_bh);
2977         if (err)
2978                 goto out_err;
2979
2980         err = -EIO;
2981         gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
2982         if (!gdp)
2983                 goto out_err;
2984
2985         ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
2986                         ext4_free_group_clusters(sb, gdp));
2987
2988         BUFFER_TRACE(gdp_bh, "get_write_access");
2989         err = ext4_journal_get_write_access(handle, gdp_bh);
2990         if (err)
2991                 goto out_err;
2992
2993         block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
2994
2995         len = EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
2996         if (!ext4_data_block_valid(sbi, block, len)) {
2997                 ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
2998                            "fs metadata", block, block+len);
2999                 /* File system mounted not to panic on error
3000                  * Fix the bitmap and return EFSCORRUPTED
3001                  * We leak some of the blocks here.
3002                  */
3003                 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3004                 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
3005                               ac->ac_b_ex.fe_len);
3006                 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3007                 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
3008                 if (!err)
3009                         err = -EFSCORRUPTED;
3010                 goto out_err;
3011         }
3012
3013         ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3014 #ifdef AGGRESSIVE_CHECK
3015         {
3016                 int i;
3017                 for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
3018                         BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
3019                                                 bitmap_bh->b_data));
3020                 }
3021         }
3022 #endif
3023         ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
3024                       ac->ac_b_ex.fe_len);
3025         if (ext4_has_group_desc_csum(sb) &&
3026             (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
3027                 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
3028                 ext4_free_group_clusters_set(sb, gdp,
3029                                              ext4_free_clusters_after_init(sb,
3030                                                 ac->ac_b_ex.fe_group, gdp));
3031         }
3032         len = ext4_free_group_clusters(sb, gdp) - ac->ac_b_ex.fe_len;
3033         ext4_free_group_clusters_set(sb, gdp, len);
3034         ext4_block_bitmap_csum_set(sb, ac->ac_b_ex.fe_group, gdp, bitmap_bh);
3035         ext4_group_desc_csum_set(sb, ac->ac_b_ex.fe_group, gdp);
3036
3037         ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3038         percpu_counter_sub(&sbi->s_freeclusters_counter, ac->ac_b_ex.fe_len);
3039         /*
3040          * Now reduce the dirty block count also. Should not go negative
3041          */
3042         if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
3043                 /* release all the reserved blocks if non delalloc */
3044                 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
3045                                    reserv_clstrs);
3046
3047         if (sbi->s_log_groups_per_flex) {
3048                 ext4_group_t flex_group = ext4_flex_group(sbi,
3049                                                           ac->ac_b_ex.fe_group);
3050                 atomic64_sub(ac->ac_b_ex.fe_len,
3051                              &sbi_array_rcu_deref(sbi, s_flex_groups,
3052                                                   flex_group)->free_clusters);
3053         }
3054
3055         err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
3056         if (err)
3057                 goto out_err;
3058         err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
3059
3060 out_err:
3061         brelse(bitmap_bh);
3062         return err;
3063 }
3064
3065 /*
3066  * here we normalize request for locality group
3067  * Group request are normalized to s_mb_group_prealloc, which goes to
3068  * s_strip if we set the same via mount option.
3069  * s_mb_group_prealloc can be configured via
3070  * /sys/fs/ext4/<partition>/mb_group_prealloc
3071  *
3072  * XXX: should we try to preallocate more than the group has now?
3073  */
3074 static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
3075 {
3076         struct super_block *sb = ac->ac_sb;
3077         struct ext4_locality_group *lg = ac->ac_lg;
3078
3079         BUG_ON(lg == NULL);
3080         ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
3081         mb_debug(1, "#%u: goal %u blocks for locality group\n",
3082                 current->pid, ac->ac_g_ex.fe_len);
3083 }
3084
3085 /*
3086  * Normalization means making request better in terms of
3087  * size and alignment
3088  */
3089 static noinline_for_stack void
3090 ext4_mb_normalize_request(struct ext4_allocation_context *ac,
3091                                 struct ext4_allocation_request *ar)
3092 {
3093         struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3094         struct ext4_super_block *es = sbi->s_es;
3095         int bsbits, max;
3096         ext4_lblk_t end;
3097         loff_t size, start_off;
3098         loff_t orig_size __maybe_unused;
3099         ext4_lblk_t start;
3100         struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3101         struct ext4_prealloc_space *pa;
3102
3103         /* do normalize only data requests, metadata requests
3104            do not need preallocation */
3105         if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3106                 return;
3107
3108         /* sometime caller may want exact blocks */
3109         if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
3110                 return;
3111
3112         /* caller may indicate that preallocation isn't
3113          * required (it's a tail, for example) */
3114         if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
3115                 return;
3116
3117         if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
3118                 ext4_mb_normalize_group_request(ac);
3119                 return ;
3120         }
3121
3122         bsbits = ac->ac_sb->s_blocksize_bits;
3123
3124         /* first, let's learn actual file size
3125          * given current request is allocated */
3126         size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
3127         size = size << bsbits;
3128         if (size < i_size_read(ac->ac_inode))
3129                 size = i_size_read(ac->ac_inode);
3130         orig_size = size;
3131
3132         /* max size of free chunks */
3133         max = 2 << bsbits;
3134
3135 #define NRL_CHECK_SIZE(req, size, max, chunk_size)      \
3136                 (req <= (size) || max <= (chunk_size))
3137
3138         /* first, try to predict filesize */
3139         /* XXX: should this table be tunable? */
3140         start_off = 0;
3141         if (size <= 16 * 1024) {
3142                 size = 16 * 1024;
3143         } else if (size <= 32 * 1024) {
3144                 size = 32 * 1024;
3145         } else if (size <= 64 * 1024) {
3146                 size = 64 * 1024;
3147         } else if (size <= 128 * 1024) {
3148                 size = 128 * 1024;
3149         } else if (size <= 256 * 1024) {
3150                 size = 256 * 1024;
3151         } else if (size <= 512 * 1024) {
3152                 size = 512 * 1024;
3153         } else if (size <= 1024 * 1024) {
3154                 size = 1024 * 1024;
3155         } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
3156                 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3157                                                 (21 - bsbits)) << 21;
3158                 size = 2 * 1024 * 1024;
3159         } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
3160                 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3161                                                         (22 - bsbits)) << 22;
3162                 size = 4 * 1024 * 1024;
3163         } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
3164                                         (8<<20)>>bsbits, max, 8 * 1024)) {
3165                 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3166                                                         (23 - bsbits)) << 23;
3167                 size = 8 * 1024 * 1024;
3168         } else {
3169                 start_off = (loff_t) ac->ac_o_ex.fe_logical << bsbits;
3170                 size      = (loff_t) EXT4_C2B(EXT4_SB(ac->ac_sb),
3171                                               ac->ac_o_ex.fe_len) << bsbits;
3172         }
3173         size = size >> bsbits;
3174         start = start_off >> bsbits;
3175
3176         /*
3177          * For tiny groups (smaller than 8MB) the chosen allocation
3178          * alignment may be larger than group size. Make sure the
3179          * alignment does not move allocation to a different group which
3180          * makes mballoc fail assertions later.
3181          */
3182         start = max(start, rounddown(ac->ac_o_ex.fe_logical,
3183                         (ext4_lblk_t)EXT4_BLOCKS_PER_GROUP(ac->ac_sb)));
3184
3185         /* don't cover already allocated blocks in selected range */
3186         if (ar->pleft && start <= ar->lleft) {
3187                 size -= ar->lleft + 1 - start;
3188                 start = ar->lleft + 1;
3189         }
3190         if (ar->pright && start + size - 1 >= ar->lright)
3191                 size -= start + size - ar->lright;
3192
3193         /*
3194          * Trim allocation request for filesystems with artificially small
3195          * groups.
3196          */
3197         if (size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb))
3198                 size = EXT4_BLOCKS_PER_GROUP(ac->ac_sb);
3199
3200         end = start + size;
3201
3202         /* check we don't cross already preallocated blocks */
3203         rcu_read_lock();
3204         list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
3205                 ext4_lblk_t pa_end;
3206
3207                 if (pa->pa_deleted)
3208                         continue;
3209                 spin_lock(&pa->pa_lock);
3210                 if (pa->pa_deleted) {
3211                         spin_unlock(&pa->pa_lock);
3212                         continue;
3213                 }
3214
3215                 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3216                                                   pa->pa_len);
3217
3218                 /* PA must not overlap original request */
3219                 BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
3220                         ac->ac_o_ex.fe_logical < pa->pa_lstart));
3221
3222                 /* skip PAs this normalized request doesn't overlap with */
3223                 if (pa->pa_lstart >= end || pa_end <= start) {
3224                         spin_unlock(&pa->pa_lock);
3225                         continue;
3226                 }
3227                 BUG_ON(pa->pa_lstart <= start && pa_end >= end);
3228
3229                 /* adjust start or end to be adjacent to this pa */
3230                 if (pa_end <= ac->ac_o_ex.fe_logical) {
3231                         BUG_ON(pa_end < start);
3232                         start = pa_end;
3233                 } else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
3234                         BUG_ON(pa->pa_lstart > end);
3235                         end = pa->pa_lstart;
3236                 }
3237                 spin_unlock(&pa->pa_lock);
3238         }
3239         rcu_read_unlock();
3240         size = end - start;
3241
3242         /* XXX: extra loop to check we really don't overlap preallocations */
3243         rcu_read_lock();
3244         list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
3245                 ext4_lblk_t pa_end;
3246
3247                 spin_lock(&pa->pa_lock);
3248                 if (pa->pa_deleted == 0) {
3249                         pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3250                                                           pa->pa_len);
3251                         BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
3252                 }
3253                 spin_unlock(&pa->pa_lock);
3254         }
3255         rcu_read_unlock();
3256
3257         if (start + size <= ac->ac_o_ex.fe_logical &&
3258                         start > ac->ac_o_ex.fe_logical) {
3259                 ext4_msg(ac->ac_sb, KERN_ERR,
3260                          "start %lu, size %lu, fe_logical %lu",
3261                          (unsigned long) start, (unsigned long) size,
3262                          (unsigned long) ac->ac_o_ex.fe_logical);
3263                 BUG();
3264         }
3265         BUG_ON(size <= 0 || size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
3266
3267         /* now prepare goal request */
3268
3269         /* XXX: is it better to align blocks WRT to logical
3270          * placement or satisfy big request as is */
3271         ac->ac_g_ex.fe_logical = start;
3272         ac->ac_g_ex.fe_len = EXT4_NUM_B2C(sbi, size);
3273
3274         /* define goal start in order to merge */
3275         if (ar->pright && (ar->lright == (start + size)) &&
3276             ar->pright >= size &&
3277             ar->pright - size >= le32_to_cpu(es->s_first_data_block)) {
3278                 /* merge to the right */
3279                 ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
3280                                                 &ac->ac_g_ex.fe_group,
3281                                                 &ac->ac_g_ex.fe_start);
3282                 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3283         }
3284         if (ar->pleft && (ar->lleft + 1 == start) &&
3285             ar->pleft + 1 < ext4_blocks_count(es)) {
3286                 /* merge to the left */
3287                 ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
3288                                                 &ac->ac_g_ex.fe_group,
3289                                                 &ac->ac_g_ex.fe_start);
3290                 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3291         }
3292
3293         mb_debug(1, "goal: %u(was %u) blocks at %u\n", (unsigned) size,
3294                 (unsigned) orig_size, (unsigned) start);
3295 }
3296
3297 static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
3298 {
3299         struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3300
3301         if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
3302                 atomic_inc(&sbi->s_bal_reqs);
3303                 atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
3304                 if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
3305                         atomic_inc(&sbi->s_bal_success);
3306                 atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
3307                 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
3308                                 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
3309                         atomic_inc(&sbi->s_bal_goals);
3310                 if (ac->ac_found > sbi->s_mb_max_to_scan)
3311                         atomic_inc(&sbi->s_bal_breaks);
3312         }
3313
3314         if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
3315                 trace_ext4_mballoc_alloc(ac);
3316         else
3317                 trace_ext4_mballoc_prealloc(ac);
3318 }
3319
3320 /*
3321  * Called on failure; free up any blocks from the inode PA for this
3322  * context.  We don't need this for MB_GROUP_PA because we only change
3323  * pa_free in ext4_mb_release_context(), but on failure, we've already
3324  * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
3325  */
3326 static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
3327 {
3328         struct ext4_prealloc_space *pa = ac->ac_pa;
3329         struct ext4_buddy e4b;
3330         int err;
3331
3332         if (pa == NULL) {
3333                 if (ac->ac_f_ex.fe_len == 0)
3334                         return;
3335                 err = ext4_mb_load_buddy(ac->ac_sb, ac->ac_f_ex.fe_group, &e4b);
3336                 if (err) {
3337                         /*
3338                          * This should never happen since we pin the
3339                          * pages in the ext4_allocation_context so
3340                          * ext4_mb_load_buddy() should never fail.
3341                          */
3342                         WARN(1, "mb_load_buddy failed (%d)", err);
3343                         return;
3344                 }
3345                 ext4_lock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
3346                 mb_free_blocks(ac->ac_inode, &e4b, ac->ac_f_ex.fe_start,
3347                                ac->ac_f_ex.fe_len);
3348                 ext4_unlock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
3349                 ext4_mb_unload_buddy(&e4b);
3350                 return;
3351         }
3352         if (pa->pa_type == MB_INODE_PA)
3353                 pa->pa_free += ac->ac_b_ex.fe_len;
3354 }
3355
3356 /*
3357  * use blocks preallocated to inode
3358  */
3359 static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
3360                                 struct ext4_prealloc_space *pa)
3361 {
3362         struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3363         ext4_fsblk_t start;
3364         ext4_fsblk_t end;
3365         int len;
3366
3367         /* found preallocated blocks, use them */
3368         start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
3369         end = min(pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len),
3370                   start + EXT4_C2B(sbi, ac->ac_o_ex.fe_len));
3371         len = EXT4_NUM_B2C(sbi, end - start);
3372         ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
3373                                         &ac->ac_b_ex.fe_start);
3374         ac->ac_b_ex.fe_len = len;
3375         ac->ac_status = AC_STATUS_FOUND;
3376         ac->ac_pa = pa;
3377
3378         BUG_ON(start < pa->pa_pstart);
3379         BUG_ON(end > pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len));
3380         BUG_ON(pa->pa_free < len);
3381         BUG_ON(ac->ac_b_ex.fe_len <= 0);
3382         pa->pa_free -= len;
3383
3384         mb_debug(1, "use %llu/%u from inode pa %p\n", start, len, pa);
3385 }
3386
3387 /*
3388  * use blocks preallocated to locality group
3389  */
3390 static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
3391                                 struct ext4_prealloc_space *pa)
3392 {
3393         unsigned int len = ac->ac_o_ex.fe_len;
3394
3395         ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
3396                                         &ac->ac_b_ex.fe_group,
3397                                         &ac->ac_b_ex.fe_start);
3398         ac->ac_b_ex.fe_len = len;
3399         ac->ac_status = AC_STATUS_FOUND;
3400         ac->ac_pa = pa;
3401
3402         /* we don't correct pa_pstart or pa_plen here to avoid
3403          * possible race when the group is being loaded concurrently
3404          * instead we correct pa later, after blocks are marked
3405          * in on-disk bitmap -- see ext4_mb_release_context()
3406          * Other CPUs are prevented from allocating from this pa by lg_mutex
3407          */
3408         mb_debug(1, "use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa);
3409 }
3410
3411 /*
3412  * Return the prealloc space that have minimal distance
3413  * from the goal block. @cpa is the prealloc
3414  * space that is having currently known minimal distance
3415  * from the goal block.
3416  */
3417 static struct ext4_prealloc_space *
3418 ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
3419                         struct ext4_prealloc_space *pa,
3420                         struct ext4_prealloc_space *cpa)
3421 {
3422         ext4_fsblk_t cur_distance, new_distance;
3423
3424         if (cpa == NULL) {
3425                 atomic_inc(&pa->pa_count);
3426                 return pa;
3427         }
3428         cur_distance = abs(goal_block - cpa->pa_pstart);
3429         new_distance = abs(goal_block - pa->pa_pstart);
3430
3431         if (cur_distance <= new_distance)
3432                 return cpa;
3433
3434         /* drop the previous reference */
3435         atomic_dec(&cpa->pa_count);
3436         atomic_inc(&pa->pa_count);
3437         return pa;
3438 }
3439
3440 /*
3441  * search goal blocks in preallocated space
3442  */
3443 static noinline_for_stack int
3444 ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
3445 {
3446         struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3447         int order, i;
3448         struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3449         struct ext4_locality_group *lg;
3450         struct ext4_prealloc_space *pa, *cpa = NULL;
3451         ext4_fsblk_t goal_block;
3452
3453         /* only data can be preallocated */
3454         if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3455                 return 0;
3456
3457         /* first, try per-file preallocation */
3458         rcu_read_lock();
3459         list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
3460
3461                 /* all fields in this condition don't change,
3462                  * so we can skip locking for them */
3463                 if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
3464                     ac->ac_o_ex.fe_logical >= (pa->pa_lstart +
3465                                                EXT4_C2B(sbi, pa->pa_len)))
3466                         continue;
3467
3468                 /* non-extent files can't have physical blocks past 2^32 */
3469                 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
3470                     (pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len) >
3471                      EXT4_MAX_BLOCK_FILE_PHYS))
3472                         continue;
3473
3474                 /* found preallocated blocks, use them */
3475                 spin_lock(&pa->pa_lock);
3476                 if (pa->pa_deleted == 0 && pa->pa_free) {
3477                         atomic_inc(&pa->pa_count);
3478                         ext4_mb_use_inode_pa(ac, pa);
3479                         spin_unlock(&pa->pa_lock);
3480                         ac->ac_criteria = 10;
3481                         rcu_read_unlock();
3482                         return 1;
3483                 }
3484                 spin_unlock(&pa->pa_lock);
3485         }
3486         rcu_read_unlock();
3487
3488         /* can we use group allocation? */
3489         if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
3490                 return 0;
3491
3492         /* inode may have no locality group for some reason */
3493         lg = ac->ac_lg;
3494         if (lg == NULL)
3495                 return 0;
3496         order  = fls(ac->ac_o_ex.fe_len) - 1;
3497         if (order > PREALLOC_TB_SIZE - 1)
3498                 /* The max size of hash table is PREALLOC_TB_SIZE */
3499                 order = PREALLOC_TB_SIZE - 1;
3500
3501         goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
3502         /*
3503          * search for the prealloc space that is having
3504          * minimal distance from the goal block.
3505          */
3506         for (i = order; i < PREALLOC_TB_SIZE; i++) {
3507                 rcu_read_lock();
3508                 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
3509                                         pa_inode_list) {
3510                         spin_lock(&pa->pa_lock);
3511                         if (pa->pa_deleted == 0 &&
3512                                         pa->pa_free >= ac->ac_o_ex.fe_len) {
3513
3514                                 cpa = ext4_mb_check_group_pa(goal_block,
3515                                                                 pa, cpa);
3516                         }
3517                         spin_unlock(&pa->pa_lock);
3518                 }
3519                 rcu_read_unlock();
3520         }
3521         if (cpa) {
3522                 ext4_mb_use_group_pa(ac, cpa);
3523                 ac->ac_criteria = 20;
3524                 return 1;
3525         }
3526         return 0;
3527 }
3528
3529 /*
3530  * the function goes through all block freed in the group
3531  * but not yet committed and marks them used in in-core bitmap.
3532  * buddy must be generated from this bitmap
3533  * Need to be called with the ext4 group lock held
3534  */
3535 static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
3536                                                 ext4_group_t group)
3537 {
3538         struct rb_node *n;
3539         struct ext4_group_info *grp;
3540         struct ext4_free_data *entry;
3541
3542         grp = ext4_get_group_info(sb, group);
3543         n = rb_first(&(grp->bb_free_root));
3544
3545         while (n) {
3546                 entry = rb_entry(n, struct ext4_free_data, efd_node);
3547                 ext4_set_bits(bitmap, entry->efd_start_cluster, entry->efd_count);
3548                 n = rb_next(n);
3549         }
3550         return;
3551 }
3552
3553 /*
3554  * the function goes through all preallocation in this group and marks them
3555  * used in in-core bitmap. buddy must be generated from this bitmap
3556  * Need to be called with ext4 group lock held
3557  */
3558 static noinline_for_stack
3559 void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
3560                                         ext4_group_t group)
3561 {
3562         struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3563         struct ext4_prealloc_space *pa;
3564         struct list_head *cur;
3565         ext4_group_t groupnr;
3566         ext4_grpblk_t start;
3567         int preallocated = 0;
3568         int len;
3569
3570         /* all form of preallocation discards first load group,
3571          * so the only competing code is preallocation use.
3572          * we don't need any locking here
3573          * notice we do NOT ignore preallocations with pa_deleted
3574          * otherwise we could leave used blocks available for
3575          * allocation in buddy when concurrent ext4_mb_put_pa()
3576          * is dropping preallocation
3577          */
3578         list_for_each(cur, &grp->bb_prealloc_list) {
3579                 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3580                 spin_lock(&pa->pa_lock);
3581                 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3582                                              &groupnr, &start);
3583                 len = pa->pa_len;
3584                 spin_unlock(&pa->pa_lock);
3585                 if (unlikely(len == 0))
3586                         continue;
3587                 BUG_ON(groupnr != group);
3588                 ext4_set_bits(bitmap, start, len);
3589                 preallocated += len;
3590         }
3591         mb_debug(1, "preallocated %u for group %u\n", preallocated, group);
3592 }
3593
3594 static void ext4_mb_pa_callback(struct rcu_head *head)
3595 {
3596         struct ext4_prealloc_space *pa;
3597         pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
3598
3599         BUG_ON(atomic_read(&pa->pa_count));
3600         BUG_ON(pa->pa_deleted == 0);
3601         kmem_cache_free(ext4_pspace_cachep, pa);
3602 }
3603
3604 /*
3605  * drops a reference to preallocated space descriptor
3606  * if this was the last reference and the space is consumed
3607  */
3608 static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
3609                         struct super_block *sb, struct ext4_prealloc_space *pa)
3610 {
3611         ext4_group_t grp;
3612         ext4_fsblk_t grp_blk;
3613
3614         /* in this short window concurrent discard can set pa_deleted */
3615         spin_lock(&pa->pa_lock);
3616         if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0) {
3617                 spin_unlock(&pa->pa_lock);
3618                 return;
3619         }
3620
3621         if (pa->pa_deleted == 1) {
3622                 spin_unlock(&pa->pa_lock);
3623                 return;
3624         }
3625
3626         pa->pa_deleted = 1;
3627         spin_unlock(&pa->pa_lock);
3628
3629         grp_blk = pa->pa_pstart;
3630         /*
3631          * If doing group-based preallocation, pa_pstart may be in the
3632          * next group when pa is used up
3633          */
3634         if (pa->pa_type == MB_GROUP_PA)
3635                 grp_blk--;
3636
3637         grp = ext4_get_group_number(sb, grp_blk);
3638
3639         /*
3640          * possible race:
3641          *
3642          *  P1 (buddy init)                     P2 (regular allocation)
3643          *                                      find block B in PA
3644          *  copy on-disk bitmap to buddy
3645          *                                      mark B in on-disk bitmap
3646          *                                      drop PA from group
3647          *  mark all PAs in buddy
3648          *
3649          * thus, P1 initializes buddy with B available. to prevent this
3650          * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
3651          * against that pair
3652          */
3653         ext4_lock_group(sb, grp);
3654         list_del(&pa->pa_group_list);
3655         ext4_unlock_group(sb, grp);
3656
3657         spin_lock(pa->pa_obj_lock);
3658         list_del_rcu(&pa->pa_inode_list);
3659         spin_unlock(pa->pa_obj_lock);
3660
3661         call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3662 }
3663
3664 /*
3665  * creates new preallocated space for given inode
3666  */
3667 static noinline_for_stack int
3668 ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
3669 {
3670         struct super_block *sb = ac->ac_sb;
3671         struct ext4_sb_info *sbi = EXT4_SB(sb);
3672         struct ext4_prealloc_space *pa;
3673         struct ext4_group_info *grp;
3674         struct ext4_inode_info *ei;
3675
3676         /* preallocate only when found space is larger then requested */
3677         BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3678         BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3679         BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3680
3681         pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3682         if (pa == NULL)
3683                 return -ENOMEM;
3684
3685         if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
3686                 int new_bex_start;
3687                 int new_bex_end;
3688
3689                 /* we can't allocate as much as normalizer wants.
3690                  * so, found space must get proper lstart
3691                  * to cover original request */
3692                 BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
3693                 BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
3694
3695                 /*
3696                  * Use the below logic for adjusting best extent as it keeps
3697                  * fragmentation in check while ensuring logical range of best
3698                  * extent doesn't overflow out of goal extent:
3699                  *
3700                  * 1. Check if best ex can be kept at end of goal and still
3701                  *    cover original start
3702                  * 2. Else, check if best ex can be kept at start of goal and
3703                  *    still cover original start
3704                  * 3. Else, keep the best ex at start of original request.
3705                  */
3706                 new_bex_end = ac->ac_g_ex.fe_logical +
3707                         EXT4_C2B(sbi, ac->ac_g_ex.fe_len);
3708                 new_bex_start = new_bex_end - EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
3709                 if (ac->ac_o_ex.fe_logical >= new_bex_start)
3710                         goto adjust_bex;
3711
3712                 new_bex_start = ac->ac_g_ex.fe_logical;
3713                 new_bex_end =
3714                         new_bex_start + EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
3715                 if (ac->ac_o_ex.fe_logical < new_bex_end)
3716                         goto adjust_bex;
3717
3718                 new_bex_start = ac->ac_o_ex.fe_logical;
3719                 new_bex_end =
3720                         new_bex_start + EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
3721
3722 adjust_bex:
3723                 ac->ac_b_ex.fe_logical = new_bex_start;
3724
3725                 BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
3726                 BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
3727                 BUG_ON(new_bex_end > (ac->ac_g_ex.fe_logical +
3728                                       EXT4_C2B(sbi, ac->ac_g_ex.fe_len)));
3729         }
3730
3731         /* preallocation can change ac_b_ex, thus we store actually
3732          * allocated blocks for history */
3733         ac->ac_f_ex = ac->ac_b_ex;
3734
3735         pa->pa_lstart = ac->ac_b_ex.fe_logical;
3736         pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3737         pa->pa_len = ac->ac_b_ex.fe_len;
3738         pa->pa_free = pa->pa_len;
3739         atomic_set(&pa->pa_count, 1);
3740         spin_lock_init(&pa->pa_lock);
3741         INIT_LIST_HEAD(&pa->pa_inode_list);
3742         INIT_LIST_HEAD(&pa->pa_group_list);
3743         pa->pa_deleted = 0;
3744         pa->pa_type = MB_INODE_PA;
3745
3746         mb_debug(1, "new inode pa %p: %llu/%u for %u\n", pa,
3747                         pa->pa_pstart, pa->pa_len, pa->pa_lstart);
3748         trace_ext4_mb_new_inode_pa(ac, pa);
3749
3750         ext4_mb_use_inode_pa(ac, pa);
3751         atomic_add(pa->pa_free, &sbi->s_mb_preallocated);
3752
3753         ei = EXT4_I(ac->ac_inode);
3754         grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3755
3756         pa->pa_obj_lock = &ei->i_prealloc_lock;
3757         pa->pa_inode = ac->ac_inode;
3758
3759         ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3760         list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3761         ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3762
3763         spin_lock(pa->pa_obj_lock);
3764         list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
3765         spin_unlock(pa->pa_obj_lock);
3766
3767         return 0;
3768 }
3769
3770 /*
3771  * creates new preallocated space for locality group inodes belongs to
3772  */
3773 static noinline_for_stack int
3774 ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
3775 {
3776         struct super_block *sb = ac->ac_sb;
3777         struct ext4_locality_group *lg;
3778         struct ext4_prealloc_space *pa;
3779         struct ext4_group_info *grp;
3780
3781         /* preallocate only when found space is larger then requested */
3782         BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3783         BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3784         BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3785
3786         BUG_ON(ext4_pspace_cachep == NULL);
3787         pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3788         if (pa == NULL)
3789                 return -ENOMEM;
3790
3791         /* preallocation can change ac_b_ex, thus we store actually
3792          * allocated blocks for history */
3793         ac->ac_f_ex = ac->ac_b_ex;
3794
3795         pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3796         pa->pa_lstart = pa->pa_pstart;
3797         pa->pa_len = ac->ac_b_ex.fe_len;
3798         pa->pa_free = pa->pa_len;
3799         atomic_set(&pa->pa_count, 1);
3800         spin_lock_init(&pa->pa_lock);
3801         INIT_LIST_HEAD(&pa->pa_inode_list);
3802         INIT_LIST_HEAD(&pa->pa_group_list);
3803         pa->pa_deleted = 0;
3804         pa->pa_type = MB_GROUP_PA;
3805
3806         mb_debug(1, "new group pa %p: %llu/%u for %u\n", pa,
3807                         pa->pa_pstart, pa->pa_len, pa->pa_lstart);
3808         trace_ext4_mb_new_group_pa(ac, pa);
3809
3810         ext4_mb_use_group_pa(ac, pa);
3811         atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3812
3813         grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3814         lg = ac->ac_lg;
3815         BUG_ON(lg == NULL);
3816
3817         pa->pa_obj_lock = &lg->lg_prealloc_lock;
3818         pa->pa_inode = NULL;
3819
3820         ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3821         list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3822         ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3823
3824         /*
3825          * We will later add the new pa to the right bucket
3826          * after updating the pa_free in ext4_mb_release_context
3827          */
3828         return 0;
3829 }
3830
3831 static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
3832 {
3833         int err;
3834
3835         if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
3836                 err = ext4_mb_new_group_pa(ac);
3837         else
3838                 err = ext4_mb_new_inode_pa(ac);
3839         return err;
3840 }
3841
3842 /*
3843  * finds all unused blocks in on-disk bitmap, frees them in
3844  * in-core bitmap and buddy.
3845  * @pa must be unlinked from inode and group lists, so that
3846  * nobody else can find/use it.
3847  * the caller MUST hold group/inode locks.
3848  * TODO: optimize the case when there are no in-core structures yet
3849  */
3850 static noinline_for_stack int
3851 ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
3852                         struct ext4_prealloc_space *pa)
3853 {
3854         struct super_block *sb = e4b->bd_sb;
3855         struct ext4_sb_info *sbi = EXT4_SB(sb);
3856         unsigned int end;
3857         unsigned int next;
3858         ext4_group_t group;
3859         ext4_grpblk_t bit;
3860         unsigned long long grp_blk_start;
3861         int free = 0;
3862
3863         BUG_ON(pa->pa_deleted == 0);
3864         ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3865         grp_blk_start = pa->pa_pstart - EXT4_C2B(sbi, bit);
3866         BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3867         end = bit + pa->pa_len;
3868
3869         while (bit < end) {
3870                 bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
3871                 if (bit >= end)
3872                         break;
3873                 next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
3874                 mb_debug(1, "    free preallocated %u/%u in group %u\n",
3875                          (unsigned) ext4_group_first_block_no(sb, group) + bit,
3876                          (unsigned) next - bit, (unsigned) group);
3877                 free += next - bit;
3878
3879                 trace_ext4_mballoc_discard(sb, NULL, group, bit, next - bit);
3880                 trace_ext4_mb_release_inode_pa(pa, (grp_blk_start +
3881                                                     EXT4_C2B(sbi, bit)),
3882                                                next - bit);
3883                 mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
3884                 bit = next + 1;
3885         }
3886         if (free != pa->pa_free) {
3887                 ext4_msg(e4b->bd_sb, KERN_CRIT,
3888                          "pa %p: logic %lu, phys. %lu, len %lu",
3889                          pa, (unsigned long) pa->pa_lstart,
3890                          (unsigned long) pa->pa_pstart,
3891                          (unsigned long) pa->pa_len);
3892                 ext4_grp_locked_error(sb, group, 0, 0, "free %u, pa_free %u",
3893                                         free, pa->pa_free);
3894                 /*
3895                  * pa is already deleted so we use the value obtained
3896                  * from the bitmap and continue.
3897                  */
3898         }
3899         atomic_add(free, &sbi->s_mb_discarded);
3900
3901         return 0;
3902 }
3903
3904 static noinline_for_stack int
3905 ext4_mb_release_group_pa(struct ext4_buddy *e4b,
3906                                 struct ext4_prealloc_space *pa)
3907 {
3908         struct super_block *sb = e4b->bd_sb;
3909         ext4_group_t group;
3910         ext4_grpblk_t bit;
3911
3912         trace_ext4_mb_release_group_pa(sb, pa);
3913         BUG_ON(pa->pa_deleted == 0);
3914         ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3915         if (unlikely(group != e4b->bd_group && pa->pa_len != 0)) {
3916                 ext4_warning(sb, "bad group: expected %u, group %u, pa_start %llu",
3917                              e4b->bd_group, group, pa->pa_pstart);
3918                 return 0;
3919         }
3920         mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
3921         atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
3922         trace_ext4_mballoc_discard(sb, NULL, group, bit, pa->pa_len);
3923
3924         return 0;
3925 }
3926
3927 /*
3928  * releases all preallocations in given group
3929  *
3930  * first, we need to decide discard policy:
3931  * - when do we discard
3932  *   1) ENOSPC
3933  * - how many do we discard
3934  *   1) how many requested
3935  */
3936 static noinline_for_stack int
3937 ext4_mb_discard_group_preallocations(struct super_block *sb,
3938                                         ext4_group_t group, int needed)
3939 {
3940         struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3941         struct buffer_head *bitmap_bh = NULL;
3942         struct ext4_prealloc_space *pa, *tmp;
3943         struct list_head list;
3944         struct ext4_buddy e4b;
3945         int err;
3946         int busy = 0;
3947         int free = 0;
3948
3949         mb_debug(1, "discard preallocation for group %u\n", group);
3950
3951         if (list_empty(&grp->bb_prealloc_list))
3952                 return 0;
3953
3954         bitmap_bh = ext4_read_block_bitmap(sb, group);
3955         if (IS_ERR(bitmap_bh)) {
3956                 err = PTR_ERR(bitmap_bh);
3957                 ext4_error(sb, "Error %d reading block bitmap for %u",
3958                            err, group);
3959                 return 0;
3960         }
3961
3962         err = ext4_mb_load_buddy(sb, group, &e4b);
3963         if (err) {
3964                 ext4_warning(sb, "Error %d loading buddy information for %u",
3965                              err, group);
3966                 put_bh(bitmap_bh);
3967                 return 0;
3968         }
3969
3970         if (needed == 0)
3971                 needed = EXT4_CLUSTERS_PER_GROUP(sb) + 1;
3972
3973         INIT_LIST_HEAD(&list);
3974 repeat:
3975         ext4_lock_group(sb, group);
3976         list_for_each_entry_safe(pa, tmp,
3977                                 &grp->bb_prealloc_list, pa_group_list) {
3978                 spin_lock(&pa->pa_lock);
3979                 if (atomic_read(&pa->pa_count)) {
3980                         spin_unlock(&pa->pa_lock);
3981                         busy = 1;
3982                         continue;
3983                 }
3984                 if (pa->pa_deleted) {
3985                         spin_unlock(&pa->pa_lock);
3986                         continue;
3987                 }
3988
3989                 /* seems this one can be freed ... */
3990                 pa->pa_deleted = 1;
3991
3992                 /* we can trust pa_free ... */
3993                 free += pa->pa_free;
3994
3995                 spin_unlock(&pa->pa_lock);
3996
3997                 list_del(&pa->pa_group_list);
3998                 list_add(&pa->u.pa_tmp_list, &list);
3999         }
4000
4001         /* if we still need more blocks and some PAs were used, try again */
4002         if (free < needed && busy) {
4003                 busy = 0;
4004                 ext4_unlock_group(sb, group);
4005                 cond_resched();
4006                 goto repeat;
4007         }
4008
4009         /* found anything to free? */
4010         if (list_empty(&list)) {
4011                 BUG_ON(free != 0);
4012                 goto out;
4013         }
4014
4015         /* now free all selected PAs */
4016         list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
4017
4018                 /* remove from object (inode or locality group) */
4019                 spin_lock(pa->pa_obj_lock);
4020                 list_del_rcu(&pa->pa_inode_list);
4021                 spin_unlock(pa->pa_obj_lock);
4022
4023                 if (pa->pa_type == MB_GROUP_PA)
4024                         ext4_mb_release_group_pa(&e4b, pa);
4025                 else
4026                         ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
4027
4028                 list_del(&pa->u.pa_tmp_list);
4029                 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4030         }
4031
4032 out:
4033         ext4_unlock_group(sb, group);
4034         ext4_mb_unload_buddy(&e4b);
4035         put_bh(bitmap_bh);
4036         return free;
4037 }
4038
4039 /*
4040  * releases all non-used preallocated blocks for given inode
4041  *
4042  * It's important to discard preallocations under i_data_sem
4043  * We don't want another block to be served from the prealloc
4044  * space when we are discarding the inode prealloc space.
4045  *
4046  * FIXME!! Make sure it is valid at all the call sites
4047  */
4048 void ext4_discard_preallocations(struct inode *inode)
4049 {
4050         struct ext4_inode_info *ei = EXT4_I(inode);
4051         struct super_block *sb = inode->i_sb;
4052         struct buffer_head *bitmap_bh = NULL;
4053         struct ext4_prealloc_space *pa, *tmp;
4054         ext4_group_t group = 0;
4055         struct list_head list;
4056         struct ext4_buddy e4b;
4057         int err;
4058
4059         if (!S_ISREG(inode->i_mode)) {
4060                 /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
4061                 return;
4062         }
4063
4064         mb_debug(1, "discard preallocation for inode %lu\n", inode->i_ino);
4065         trace_ext4_discard_preallocations(inode);
4066
4067         INIT_LIST_HEAD(&list);
4068
4069 repeat:
4070         /* first, collect all pa's in the inode */
4071         spin_lock(&ei->i_prealloc_lock);
4072         while (!list_empty(&ei->i_prealloc_list)) {
4073                 pa = list_entry(ei->i_prealloc_list.next,
4074                                 struct ext4_prealloc_space, pa_inode_list);
4075                 BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
4076                 spin_lock(&pa->pa_lock);
4077                 if (atomic_read(&pa->pa_count)) {
4078                         /* this shouldn't happen often - nobody should
4079                          * use preallocation while we're discarding it */
4080                         spin_unlock(&pa->pa_lock);
4081                         spin_unlock(&ei->i_prealloc_lock);
4082                         ext4_msg(sb, KERN_ERR,
4083                                  "uh-oh! used pa while discarding");
4084                         WARN_ON(1);
4085                         schedule_timeout_uninterruptible(HZ);
4086                         goto repeat;
4087
4088                 }
4089                 if (pa->pa_deleted == 0) {
4090                         pa->pa_deleted = 1;
4091                         spin_unlock(&pa->pa_lock);
4092                         list_del_rcu(&pa->pa_inode_list);
4093                         list_add(&pa->u.pa_tmp_list, &list);
4094                         continue;
4095                 }
4096
4097                 /* someone is deleting pa right now */
4098                 spin_unlock(&pa->pa_lock);
4099                 spin_unlock(&ei->i_prealloc_lock);
4100
4101                 /* we have to wait here because pa_deleted
4102                  * doesn't mean pa is already unlinked from
4103                  * the list. as we might be called from
4104                  * ->clear_inode() the inode will get freed
4105                  * and concurrent thread which is unlinking
4106                  * pa from inode's list may access already
4107                  * freed memory, bad-bad-bad */
4108
4109                 /* XXX: if this happens too often, we can
4110                  * add a flag to force wait only in case
4111                  * of ->clear_inode(), but not in case of
4112                  * regular truncate */
4113                 schedule_timeout_uninterruptible(HZ);
4114                 goto repeat;
4115         }
4116         spin_unlock(&ei->i_prealloc_lock);
4117
4118         list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
4119                 BUG_ON(pa->pa_type != MB_INODE_PA);
4120                 group = ext4_get_group_number(sb, pa->pa_pstart);
4121
4122                 err = ext4_mb_load_buddy_gfp(sb, group, &e4b,
4123                                              GFP_NOFS|__GFP_NOFAIL);
4124                 if (err) {
4125                         ext4_error(sb, "Error %d loading buddy information for %u",
4126                                    err, group);
4127                         continue;
4128                 }
4129
4130                 bitmap_bh = ext4_read_block_bitmap(sb, group);
4131                 if (IS_ERR(bitmap_bh)) {
4132                         err = PTR_ERR(bitmap_bh);
4133                         ext4_error(sb, "Error %d reading block bitmap for %u",
4134                                         err, group);
4135                         ext4_mb_unload_buddy(&e4b);
4136                         continue;
4137                 }
4138
4139                 ext4_lock_group(sb, group);
4140                 list_del(&pa->pa_group_list);
4141                 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
4142                 ext4_unlock_group(sb, group);
4143
4144                 ext4_mb_unload_buddy(&e4b);
4145                 put_bh(bitmap_bh);
4146
4147                 list_del(&pa->u.pa_tmp_list);
4148                 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4149         }
4150 }
4151
4152 #ifdef CONFIG_EXT4_DEBUG
4153 static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
4154 {
4155         struct super_block *sb = ac->ac_sb;
4156         ext4_group_t ngroups, i;
4157
4158         if (!ext4_mballoc_debug ||
4159             (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED))
4160                 return;
4161
4162         ext4_msg(ac->ac_sb, KERN_ERR, "Can't allocate:"
4163                         " Allocation context details:");
4164         ext4_msg(ac->ac_sb, KERN_ERR, "status %d flags %d",
4165                         ac->ac_status, ac->ac_flags);
4166         ext4_msg(ac->ac_sb, KERN_ERR, "orig %lu/%lu/%lu@%lu, "
4167                         "goal %lu/%lu/%lu@%lu, "
4168                         "best %lu/%lu/%lu@%lu cr %d",
4169                         (unsigned long)ac->ac_o_ex.fe_group,
4170                         (unsigned long)ac->ac_o_ex.fe_start,
4171                         (unsigned long)ac->ac_o_ex.fe_len,
4172                         (unsigned long)ac->ac_o_ex.fe_logical,
4173                         (unsigned long)ac->ac_g_ex.fe_group,
4174                         (unsigned long)ac->ac_g_ex.fe_start,
4175                         (unsigned long)ac->ac_g_ex.fe_len,
4176                         (unsigned long)ac->ac_g_ex.fe_logical,
4177                         (unsigned long)ac->ac_b_ex.fe_group,
4178                         (unsigned long)ac->ac_b_ex.fe_start,
4179                         (unsigned long)ac->ac_b_ex.fe_len,
4180                         (unsigned long)ac->ac_b_ex.fe_logical,
4181                         (int)ac->ac_criteria);
4182         ext4_msg(ac->ac_sb, KERN_ERR, "%d found", ac->ac_found);
4183         ext4_msg(ac->ac_sb, KERN_ERR, "groups: ");
4184         ngroups = ext4_get_groups_count(sb);
4185         for (i = 0; i < ngroups; i++) {
4186                 struct ext4_group_info *grp = ext4_get_group_info(sb, i);
4187                 struct ext4_prealloc_space *pa;
4188                 ext4_grpblk_t start;
4189                 struct list_head *cur;
4190                 ext4_lock_group(sb, i);
4191                 list_for_each(cur, &grp->bb_prealloc_list) {
4192                         pa = list_entry(cur, struct ext4_prealloc_space,
4193                                         pa_group_list);
4194                         spin_lock(&pa->pa_lock);
4195                         ext4_get_group_no_and_offset(sb, pa->pa_pstart,
4196                                                      NULL, &start);
4197                         spin_unlock(&pa->pa_lock);
4198                         printk(KERN_ERR "PA:%u:%d:%u \n", i,
4199                                start, pa->pa_len);
4200                 }
4201                 ext4_unlock_group(sb, i);
4202
4203                 if (grp->bb_free == 0)
4204                         continue;
4205                 printk(KERN_ERR "%u: %d/%d \n",
4206                        i, grp->bb_free, grp->bb_fragments);
4207         }
4208         printk(KERN_ERR "\n");
4209 }
4210 #else
4211 static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
4212 {
4213         return;
4214 }
4215 #endif
4216
4217 /*
4218  * We use locality group preallocation for small size file. The size of the
4219  * file is determined by the current size or the resulting size after
4220  * allocation which ever is larger
4221  *
4222  * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
4223  */
4224 static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
4225 {
4226         struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
4227         int bsbits = ac->ac_sb->s_blocksize_bits;
4228         loff_t size, isize;
4229
4230         if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
4231                 return;
4232
4233         if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
4234                 return;
4235
4236         size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
4237         isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
4238                 >> bsbits;
4239
4240         if ((size == isize) && !ext4_fs_is_busy(sbi) &&
4241             !inode_is_open_for_write(ac->ac_inode)) {
4242                 ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
4243                 return;
4244         }
4245
4246         if (sbi->s_mb_group_prealloc <= 0) {
4247                 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
4248                 return;
4249         }
4250
4251         /* don't use group allocation for large files */
4252         size = max(size, isize);
4253         if (size > sbi->s_mb_stream_request) {
4254                 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
4255                 return;
4256         }
4257
4258         BUG_ON(ac->ac_lg != NULL);
4259         /*
4260          * locality group prealloc space are per cpu. The reason for having
4261          * per cpu locality group is to reduce the contention between block
4262          * request from multiple CPUs.
4263          */
4264         ac->ac_lg = raw_cpu_ptr(sbi->s_locality_groups);
4265
4266         /* we're going to use group allocation */
4267         ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
4268
4269         /* serialize all allocations in the group */
4270         mutex_lock(&ac->ac_lg->lg_mutex);
4271 }
4272
4273 static noinline_for_stack int
4274 ext4_mb_initialize_context(struct ext4_allocation_context *ac,
4275                                 struct ext4_allocation_request *ar)
4276 {
4277         struct super_block *sb = ar->inode->i_sb;
4278         struct ext4_sb_info *sbi = EXT4_SB(sb);
4279         struct ext4_super_block *es = sbi->s_es;
4280         ext4_group_t group;
4281         unsigned int len;
4282         ext4_fsblk_t goal;
4283         ext4_grpblk_t block;
4284
4285         /* we can't allocate > group size */
4286         len = ar->len;
4287
4288         /* just a dirty hack to filter too big requests  */
4289         if (len >= EXT4_CLUSTERS_PER_GROUP(sb))
4290                 len = EXT4_CLUSTERS_PER_GROUP(sb);
4291
4292         /* start searching from the goal */
4293         goal = ar->goal;
4294         if (goal < le32_to_cpu(es->s_first_data_block) ||
4295                         goal >= ext4_blocks_count(es))
4296                 goal = le32_to_cpu(es->s_first_data_block);
4297         ext4_get_group_no_and_offset(sb, goal, &group, &block);
4298
4299         /* set up allocation goals */
4300         ac->ac_b_ex.fe_logical = EXT4_LBLK_CMASK(sbi, ar->logical);
4301         ac->ac_status = AC_STATUS_CONTINUE;
4302         ac->ac_sb = sb;
4303         ac->ac_inode = ar->inode;
4304         ac->ac_o_ex.fe_logical = ac->ac_b_ex.fe_logical;
4305         ac->ac_o_ex.fe_group = group;
4306         ac->ac_o_ex.fe_start = block;
4307         ac->ac_o_ex.fe_len = len;
4308         ac->ac_g_ex = ac->ac_o_ex;
4309         ac->ac_flags = ar->flags;
4310
4311         /* we have to define context: we'll we work with a file or
4312          * locality group. this is a policy, actually */
4313         ext4_mb_group_or_file(ac);
4314
4315         mb_debug(1, "init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, "
4316                         "left: %u/%u, right %u/%u to %swritable\n",
4317                         (unsigned) ar->len, (unsigned) ar->logical,
4318                         (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
4319                         (unsigned) ar->lleft, (unsigned) ar->pleft,
4320                         (unsigned) ar->lright, (unsigned) ar->pright,
4321                         inode_is_open_for_write(ar->inode) ? "" : "non-");
4322         return 0;
4323
4324 }
4325
4326 static noinline_for_stack void
4327 ext4_mb_discard_lg_preallocations(struct super_block *sb,
4328                                         struct ext4_locality_group *lg,
4329                                         int order, int total_entries)
4330 {
4331         ext4_group_t group = 0;
4332         struct ext4_buddy e4b;
4333         struct list_head discard_list;
4334         struct ext4_prealloc_space *pa, *tmp;
4335
4336         mb_debug(1, "discard locality group preallocation\n");
4337
4338         INIT_LIST_HEAD(&discard_list);
4339
4340         spin_lock(&lg->lg_prealloc_lock);
4341         list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
4342                                                 pa_inode_list) {
4343                 spin_lock(&pa->pa_lock);
4344                 if (atomic_read(&pa->pa_count)) {
4345                         /*
4346                          * This is the pa that we just used
4347                          * for block allocation. So don't
4348                          * free that
4349                          */
4350                         spin_unlock(&pa->pa_lock);
4351                         continue;
4352                 }
4353                 if (pa->pa_deleted) {
4354                         spin_unlock(&pa->pa_lock);
4355                         continue;
4356                 }
4357                 /* only lg prealloc space */
4358                 BUG_ON(pa->pa_type != MB_GROUP_PA);
4359
4360                 /* seems this one can be freed ... */
4361                 pa->pa_deleted = 1;
4362                 spin_unlock(&pa->pa_lock);
4363
4364                 list_del_rcu(&pa->pa_inode_list);
4365                 list_add(&pa->u.pa_tmp_list, &discard_list);
4366
4367                 total_entries--;
4368                 if (total_entries <= 5) {
4369                         /*
4370                          * we want to keep only 5 entries
4371                          * allowing it to grow to 8. This
4372                          * mak sure we don't call discard
4373                          * soon for this list.
4374                          */
4375                         break;
4376                 }
4377         }
4378         spin_unlock(&lg->lg_prealloc_lock);
4379
4380         list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
4381                 int err;
4382
4383                 group = ext4_get_group_number(sb, pa->pa_pstart);
4384                 err = ext4_mb_load_buddy_gfp(sb, group, &e4b,
4385                                              GFP_NOFS|__GFP_NOFAIL);
4386                 if (err) {
4387                         ext4_error(sb, "Error %d loading buddy information for %u",
4388                                    err, group);
4389                         continue;
4390                 }
4391                 ext4_lock_group(sb, group);
4392                 list_del(&pa->pa_group_list);
4393                 ext4_mb_release_group_pa(&e4b, pa);
4394                 ext4_unlock_group(sb, group);
4395
4396                 ext4_mb_unload_buddy(&e4b);
4397                 list_del(&pa->u.pa_tmp_list);
4398                 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4399         }
4400 }
4401
4402 /*
4403  * We have incremented pa_count. So it cannot be freed at this
4404  * point. Also we hold lg_mutex. So no parallel allocation is
4405  * possible from this lg. That means pa_free cannot be updated.
4406  *
4407  * A parallel ext4_mb_discard_group_preallocations is possible.
4408  * which can cause the lg_prealloc_list to be updated.
4409  */
4410
4411 static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
4412 {
4413         int order, added = 0, lg_prealloc_count = 1;
4414         struct super_block *sb = ac->ac_sb;
4415         struct ext4_locality_group *lg = ac->ac_lg;
4416         struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
4417
4418         order = fls(pa->pa_free) - 1;
4419         if (order > PREALLOC_TB_SIZE - 1)
4420                 /* The max size of hash table is PREALLOC_TB_SIZE */
4421                 order = PREALLOC_TB_SIZE - 1;
4422         /* Add the prealloc space to lg */
4423         spin_lock(&lg->lg_prealloc_lock);
4424         list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
4425                                                 pa_inode_list) {
4426                 spin_lock(&tmp_pa->pa_lock);
4427                 if (tmp_pa->pa_deleted) {
4428                         spin_unlock(&tmp_pa->pa_lock);
4429                         continue;
4430                 }
4431                 if (!added && pa->pa_free < tmp_pa->pa_free) {
4432                         /* Add to the tail of the previous entry */
4433                         list_add_tail_rcu(&pa->pa_inode_list,
4434                                                 &tmp_pa->pa_inode_list);
4435                         added = 1;
4436                         /*
4437                          * we want to count the total
4438                          * number of entries in the list
4439                          */
4440                 }
4441                 spin_unlock(&tmp_pa->pa_lock);
4442                 lg_prealloc_count++;
4443         }
4444         if (!added)
4445                 list_add_tail_rcu(&pa->pa_inode_list,
4446                                         &lg->lg_prealloc_list[order]);
4447         spin_unlock(&lg->lg_prealloc_lock);
4448
4449         /* Now trim the list to be not more than 8 elements */
4450         if (lg_prealloc_count > 8) {
4451                 ext4_mb_discard_lg_preallocations(sb, lg,
4452                                                   order, lg_prealloc_count);
4453                 return;
4454         }
4455         return ;
4456 }
4457
4458 /*
4459  * release all resource we used in allocation
4460  */
4461 static int ext4_mb_release_context(struct ext4_allocation_context *ac)
4462 {
4463         struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
4464         struct ext4_prealloc_space *pa = ac->ac_pa;
4465         if (pa) {
4466                 if (pa->pa_type == MB_GROUP_PA) {
4467                         /* see comment in ext4_mb_use_group_pa() */
4468                         spin_lock(&pa->pa_lock);
4469                         pa->pa_pstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
4470                         pa->pa_lstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
4471                         pa->pa_free -= ac->ac_b_ex.fe_len;
4472                         pa->pa_len -= ac->ac_b_ex.fe_len;
4473                         spin_unlock(&pa->pa_lock);
4474                 }
4475         }
4476         if (pa) {
4477                 /*
4478                  * We want to add the pa to the right bucket.
4479                  * Remove it from the list and while adding
4480                  * make sure the list to which we are adding
4481                  * doesn't grow big.
4482                  */
4483                 if ((pa->pa_type == MB_GROUP_PA) && likely(pa->pa_free)) {
4484                         spin_lock(pa->pa_obj_lock);
4485                         list_del_rcu(&pa->pa_inode_list);
4486                         spin_unlock(pa->pa_obj_lock);
4487                         ext4_mb_add_n_trim(ac);
4488                 }
4489                 ext4_mb_put_pa(ac, ac->ac_sb, pa);
4490         }
4491         if (ac->ac_bitmap_page)
4492                 put_page(ac->ac_bitmap_page);
4493         if (ac->ac_buddy_page)
4494                 put_page(ac->ac_buddy_page);
4495         if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
4496                 mutex_unlock(&ac->ac_lg->lg_mutex);
4497         ext4_mb_collect_stats(ac);
4498         return 0;
4499 }
4500
4501 static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
4502 {
4503         ext4_group_t i, ngroups = ext4_get_groups_count(sb);
4504         int ret;
4505         int freed = 0;
4506
4507         trace_ext4_mb_discard_preallocations(sb, needed);
4508         for (i = 0; i < ngroups && needed > 0; i++) {
4509                 ret = ext4_mb_discard_group_preallocations(sb, i, needed);
4510                 freed += ret;
4511                 needed -= ret;
4512         }
4513
4514         return freed;
4515 }
4516
4517 /*
4518  * Main entry point into mballoc to allocate blocks
4519  * it tries to use preallocation first, then falls back
4520  * to usual allocation
4521  */
4522 ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
4523                                 struct ext4_allocation_request *ar, int *errp)
4524 {
4525         int freed;
4526         struct ext4_allocation_context *ac = NULL;
4527         struct ext4_sb_info *sbi;
4528         struct super_block *sb;
4529         ext4_fsblk_t block = 0;
4530         unsigned int inquota = 0;
4531         unsigned int reserv_clstrs = 0;
4532
4533         might_sleep();
4534         sb = ar->inode->i_sb;
4535         sbi = EXT4_SB(sb);
4536
4537         trace_ext4_request_blocks(ar);
4538
4539         /* Allow to use superuser reservation for quota file */
4540         if (ext4_is_quota_file(ar->inode))
4541                 ar->flags |= EXT4_MB_USE_ROOT_BLOCKS;
4542
4543         if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0) {
4544                 /* Without delayed allocation we need to verify
4545                  * there is enough free blocks to do block allocation
4546                  * and verify allocation doesn't exceed the quota limits.
4547                  */
4548                 while (ar->len &&
4549                         ext4_claim_free_clusters(sbi, ar->len, ar->flags)) {
4550
4551                         /* let others to free the space */
4552                         cond_resched();
4553                         ar->len = ar->len >> 1;
4554                 }
4555                 if (!ar->len) {
4556                         *errp = -ENOSPC;
4557                         return 0;
4558                 }
4559                 reserv_clstrs = ar->len;
4560                 if (ar->flags & EXT4_MB_USE_ROOT_BLOCKS) {
4561                         dquot_alloc_block_nofail(ar->inode,
4562                                                  EXT4_C2B(sbi, ar->len));
4563                 } else {
4564                         while (ar->len &&
4565                                 dquot_alloc_block(ar->inode,
4566                                                   EXT4_C2B(sbi, ar->len))) {
4567
4568                                 ar->flags |= EXT4_MB_HINT_NOPREALLOC;
4569                                 ar->len--;
4570                         }
4571                 }
4572                 inquota = ar->len;
4573                 if (ar->len == 0) {
4574                         *errp = -EDQUOT;
4575                         goto out;
4576                 }
4577         }
4578
4579         ac = kmem_cache_zalloc(ext4_ac_cachep, GFP_NOFS);
4580         if (!ac) {
4581                 ar->len = 0;
4582                 *errp = -ENOMEM;
4583                 goto out;
4584         }
4585
4586         *errp = ext4_mb_initialize_context(ac, ar);
4587         if (*errp) {
4588                 ar->len = 0;
4589                 goto out;
4590         }
4591
4592         ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
4593         if (!ext4_mb_use_preallocated(ac)) {
4594                 ac->ac_op = EXT4_MB_HISTORY_ALLOC;
4595                 ext4_mb_normalize_request(ac, ar);
4596 repeat:
4597                 /* allocate space in core */
4598                 *errp = ext4_mb_regular_allocator(ac);
4599                 if (*errp)
4600                         goto discard_and_exit;
4601
4602                 /* as we've just preallocated more space than
4603                  * user requested originally, we store allocated
4604                  * space in a special descriptor */
4605                 if (ac->ac_status == AC_STATUS_FOUND &&
4606                     ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
4607                         *errp = ext4_mb_new_preallocation(ac);
4608                 if (*errp) {
4609                 discard_and_exit:
4610                         ext4_discard_allocated_blocks(ac);
4611                         goto errout;
4612                 }
4613         }
4614         if (likely(ac->ac_status == AC_STATUS_FOUND)) {
4615                 *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_clstrs);
4616                 if (*errp) {
4617                         ext4_discard_allocated_blocks(ac);
4618                         goto errout;
4619                 } else {
4620                         block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4621                         ar->len = ac->ac_b_ex.fe_len;
4622                 }
4623         } else {
4624                 freed  = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
4625                 if (freed)
4626                         goto repeat;
4627                 *errp = -ENOSPC;
4628         }
4629
4630 errout:
4631         if (*errp) {
4632                 ac->ac_b_ex.fe_len = 0;
4633                 ar->len = 0;
4634                 ext4_mb_show_ac(ac);
4635         }
4636         ext4_mb_release_context(ac);
4637 out:
4638         if (ac)
4639                 kmem_cache_free(ext4_ac_cachep, ac);
4640         if (inquota && ar->len < inquota)
4641                 dquot_free_block(ar->inode, EXT4_C2B(sbi, inquota - ar->len));
4642         if (!ar->len) {
4643                 if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0)
4644                         /* release all the reserved blocks if non delalloc */
4645                         percpu_counter_sub(&sbi->s_dirtyclusters_counter,
4646                                                 reserv_clstrs);
4647         }
4648
4649         trace_ext4_allocate_blocks(ar, (unsigned long long)block);
4650
4651         return block;
4652 }
4653
4654 /*
4655  * We can merge two free data extents only if the physical blocks
4656  * are contiguous, AND the extents were freed by the same transaction,
4657  * AND the blocks are associated with the same group.
4658  */
4659 static void ext4_try_merge_freed_extent(struct ext4_sb_info *sbi,
4660                                         struct ext4_free_data *entry,
4661                                         struct ext4_free_data *new_entry,
4662                                         struct rb_root *entry_rb_root)
4663 {
4664         if ((entry->efd_tid != new_entry->efd_tid) ||
4665             (entry->efd_group != new_entry->efd_group))
4666                 return;
4667         if (entry->efd_start_cluster + entry->efd_count ==
4668             new_entry->efd_start_cluster) {
4669                 new_entry->efd_start_cluster = entry->efd_start_cluster;
4670                 new_entry->efd_count += entry->efd_count;
4671         } else if (new_entry->efd_start_cluster + new_entry->efd_count ==
4672                    entry->efd_start_cluster) {
4673                 new_entry->efd_count += entry->efd_count;
4674         } else
4675                 return;
4676         spin_lock(&sbi->s_md_lock);
4677         list_del(&entry->efd_list);
4678         spin_unlock(&sbi->s_md_lock);
4679         rb_erase(&entry->efd_node, entry_rb_root);
4680         kmem_cache_free(ext4_free_data_cachep, entry);
4681 }
4682
4683 static noinline_for_stack int
4684 ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
4685                       struct ext4_free_data *new_entry)
4686 {
4687         ext4_group_t group = e4b->bd_group;
4688         ext4_grpblk_t cluster;
4689         ext4_grpblk_t clusters = new_entry->efd_count;
4690         struct ext4_free_data *entry;
4691         struct ext4_group_info *db = e4b->bd_info;
4692         struct super_block *sb = e4b->bd_sb;
4693         struct ext4_sb_info *sbi = EXT4_SB(sb);
4694         struct rb_node **n = &db->bb_free_root.rb_node, *node;
4695         struct rb_node *parent = NULL, *new_node;
4696
4697         BUG_ON(!ext4_handle_valid(handle));
4698         BUG_ON(e4b->bd_bitmap_page == NULL);
4699         BUG_ON(e4b->bd_buddy_page == NULL);
4700
4701         new_node = &new_entry->efd_node;
4702         cluster = new_entry->efd_start_cluster;
4703
4704         if (!*n) {
4705                 /* first free block exent. We need to
4706                    protect buddy cache from being freed,
4707                  * otherwise we'll refresh it from
4708                  * on-disk bitmap and lose not-yet-available
4709                  * blocks */
4710                 get_page(e4b->bd_buddy_page);
4711                 get_page(e4b->bd_bitmap_page);
4712         }
4713         while (*n) {
4714                 parent = *n;
4715                 entry = rb_entry(parent, struct ext4_free_data, efd_node);
4716                 if (cluster < entry->efd_start_cluster)
4717                         n = &(*n)->rb_left;
4718                 else if (cluster >= (entry->efd_start_cluster + entry->efd_count))
4719                         n = &(*n)->rb_right;
4720                 else {
4721                         ext4_grp_locked_error(sb, group, 0,
4722                                 ext4_group_first_block_no(sb, group) +
4723                                 EXT4_C2B(sbi, cluster),
4724                                 "Block already on to-be-freed list");
4725                         kmem_cache_free(ext4_free_data_cachep, new_entry);
4726                         return 0;
4727                 }
4728         }
4729
4730         rb_link_node(new_node, parent, n);
4731         rb_insert_color(new_node, &db->bb_free_root);
4732
4733         /* Now try to see the extent can be merged to left and right */
4734         node = rb_prev(new_node);
4735         if (node) {
4736                 entry = rb_entry(node, struct ext4_free_data, efd_node);
4737                 ext4_try_merge_freed_extent(sbi, entry, new_entry,
4738                                             &(db->bb_free_root));
4739         }
4740
4741         node = rb_next(new_node);
4742         if (node) {
4743                 entry = rb_entry(node, struct ext4_free_data, efd_node);
4744                 ext4_try_merge_freed_extent(sbi, entry, new_entry,
4745                                             &(db->bb_free_root));
4746         }
4747
4748         spin_lock(&sbi->s_md_lock);
4749         list_add_tail(&new_entry->efd_list, &sbi->s_freed_data_list);
4750         sbi->s_mb_free_pending += clusters;
4751         spin_unlock(&sbi->s_md_lock);
4752         return 0;
4753 }
4754
4755 /**
4756  * ext4_free_blocks() -- Free given blocks and update quota
4757  * @handle:             handle for this transaction
4758  * @inode:              inode
4759  * @bh:                 optional buffer of the block to be freed
4760  * @block:              starting physical block to be freed
4761  * @count:              number of blocks to be freed
4762  * @flags:              flags used by ext4_free_blocks
4763  */
4764 void ext4_free_blocks(handle_t *handle, struct inode *inode,
4765                       struct buffer_head *bh, ext4_fsblk_t block,
4766                       unsigned long count, int flags)
4767 {
4768         struct buffer_head *bitmap_bh = NULL;
4769         struct super_block *sb = inode->i_sb;
4770         struct ext4_group_desc *gdp;
4771         unsigned int overflow;
4772         ext4_grpblk_t bit;
4773         struct buffer_head *gd_bh;
4774         ext4_group_t block_group;
4775         struct ext4_sb_info *sbi;
4776         struct ext4_buddy e4b;
4777         unsigned int count_clusters;
4778         int err = 0;
4779         int ret;
4780
4781         might_sleep();
4782         if (bh) {
4783                 if (block)
4784                         BUG_ON(block != bh->b_blocknr);
4785                 else
4786                         block = bh->b_blocknr;
4787         }
4788
4789         sbi = EXT4_SB(sb);
4790         if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
4791             !ext4_data_block_valid(sbi, block, count)) {
4792                 ext4_error(sb, "Freeing blocks not in datazone - "
4793                            "block = %llu, count = %lu", block, count);
4794                 goto error_return;
4795         }
4796
4797         ext4_debug("freeing block %llu\n", block);
4798         trace_ext4_free_blocks(inode, block, count, flags);
4799
4800         if (bh && (flags & EXT4_FREE_BLOCKS_FORGET)) {
4801                 BUG_ON(count > 1);
4802
4803                 ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
4804                             inode, bh, block);
4805         }
4806
4807         /*
4808          * If the extent to be freed does not begin on a cluster
4809          * boundary, we need to deal with partial clusters at the
4810          * beginning and end of the extent.  Normally we will free
4811          * blocks at the beginning or the end unless we are explicitly
4812          * requested to avoid doing so.
4813          */
4814         overflow = EXT4_PBLK_COFF(sbi, block);
4815         if (overflow) {
4816                 if (flags & EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER) {
4817                         overflow = sbi->s_cluster_ratio - overflow;
4818                         block += overflow;
4819                         if (count > overflow)
4820                                 count -= overflow;
4821                         else
4822                                 return;
4823                 } else {
4824                         block -= overflow;
4825                         count += overflow;
4826                 }
4827         }
4828         overflow = EXT4_LBLK_COFF(sbi, count);
4829         if (overflow) {
4830                 if (flags & EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER) {
4831                         if (count > overflow)
4832                                 count -= overflow;
4833                         else
4834                                 return;
4835                 } else
4836                         count += sbi->s_cluster_ratio - overflow;
4837         }
4838
4839         if (!bh && (flags & EXT4_FREE_BLOCKS_FORGET)) {
4840                 int i;
4841                 int is_metadata = flags & EXT4_FREE_BLOCKS_METADATA;
4842
4843                 for (i = 0; i < count; i++) {
4844                         cond_resched();
4845                         if (is_metadata)
4846                                 bh = sb_find_get_block(inode->i_sb, block + i);
4847                         ext4_forget(handle, is_metadata, inode, bh, block + i);
4848                 }
4849         }
4850
4851 do_more:
4852         overflow = 0;
4853         ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
4854
4855         if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(
4856                         ext4_get_group_info(sb, block_group))))
4857                 return;
4858
4859         /*
4860          * Check to see if we are freeing blocks across a group
4861          * boundary.
4862          */
4863         if (EXT4_C2B(sbi, bit) + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4864                 overflow = EXT4_C2B(sbi, bit) + count -
4865                         EXT4_BLOCKS_PER_GROUP(sb);
4866                 count -= overflow;
4867         }
4868         count_clusters = EXT4_NUM_B2C(sbi, count);
4869         bitmap_bh = ext4_read_block_bitmap(sb, block_group);
4870         if (IS_ERR(bitmap_bh)) {
4871                 err = PTR_ERR(bitmap_bh);
4872                 bitmap_bh = NULL;
4873                 goto error_return;
4874         }
4875         gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
4876         if (!gdp) {
4877                 err = -EIO;
4878                 goto error_return;
4879         }
4880
4881         if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
4882             in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
4883             in_range(block, ext4_inode_table(sb, gdp),
4884                      sbi->s_itb_per_group) ||
4885             in_range(block + count - 1, ext4_inode_table(sb, gdp),
4886                      sbi->s_itb_per_group)) {
4887
4888                 ext4_error(sb, "Freeing blocks in system zone - "
4889                            "Block = %llu, count = %lu", block, count);
4890                 /* err = 0. ext4_std_error should be a no op */
4891                 goto error_return;
4892         }
4893
4894         BUFFER_TRACE(bitmap_bh, "getting write access");
4895         err = ext4_journal_get_write_access(handle, bitmap_bh);
4896         if (err)
4897                 goto error_return;
4898
4899         /*
4900          * We are about to modify some metadata.  Call the journal APIs
4901          * to unshare ->b_data if a currently-committing transaction is
4902          * using it
4903          */
4904         BUFFER_TRACE(gd_bh, "get_write_access");
4905         err = ext4_journal_get_write_access(handle, gd_bh);
4906         if (err)
4907                 goto error_return;
4908 #ifdef AGGRESSIVE_CHECK
4909         {
4910                 int i;
4911                 for (i = 0; i < count_clusters; i++)
4912                         BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
4913         }
4914 #endif
4915         trace_ext4_mballoc_free(sb, inode, block_group, bit, count_clusters);
4916
4917         /* __GFP_NOFAIL: retry infinitely, ignore TIF_MEMDIE and memcg limit. */
4918         err = ext4_mb_load_buddy_gfp(sb, block_group, &e4b,
4919                                      GFP_NOFS|__GFP_NOFAIL);
4920         if (err)
4921                 goto error_return;
4922
4923         /*
4924          * We need to make sure we don't reuse the freed block until after the
4925          * transaction is committed. We make an exception if the inode is to be
4926          * written in writeback mode since writeback mode has weak data
4927          * consistency guarantees.
4928          */
4929         if (ext4_handle_valid(handle) &&
4930             ((flags & EXT4_FREE_BLOCKS_METADATA) ||
4931              !ext4_should_writeback_data(inode))) {
4932                 struct ext4_free_data *new_entry;
4933                 /*
4934                  * We use __GFP_NOFAIL because ext4_free_blocks() is not allowed
4935                  * to fail.
4936                  */
4937                 new_entry = kmem_cache_alloc(ext4_free_data_cachep,
4938                                 GFP_NOFS|__GFP_NOFAIL);
4939                 new_entry->efd_start_cluster = bit;
4940                 new_entry->efd_group = block_group;
4941                 new_entry->efd_count = count_clusters;
4942                 new_entry->efd_tid = handle->h_transaction->t_tid;
4943
4944                 ext4_lock_group(sb, block_group);
4945                 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
4946                 ext4_mb_free_metadata(handle, &e4b, new_entry);
4947         } else {
4948                 /* need to update group_info->bb_free and bitmap
4949                  * with group lock held. generate_buddy look at
4950                  * them with group lock_held
4951                  */
4952                 if (test_opt(sb, DISCARD)) {
4953                         err = ext4_issue_discard(sb, block_group, bit,
4954                                                  count_clusters, NULL);
4955                         if (err && err != -EOPNOTSUPP)
4956                                 ext4_msg(sb, KERN_WARNING, "discard request in"
4957                                          " group:%d block:%d count:%lu failed"
4958                                          " with %d", block_group, bit, count,
4959                                          err);
4960                 } else
4961                         EXT4_MB_GRP_CLEAR_TRIMMED(e4b.bd_info);
4962
4963                 ext4_lock_group(sb, block_group);
4964                 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
4965                 mb_free_blocks(inode, &e4b, bit, count_clusters);
4966         }
4967
4968         ret = ext4_free_group_clusters(sb, gdp) + count_clusters;
4969         ext4_free_group_clusters_set(sb, gdp, ret);
4970         ext4_block_bitmap_csum_set(sb, block_group, gdp, bitmap_bh);
4971         ext4_group_desc_csum_set(sb, block_group, gdp);
4972         ext4_unlock_group(sb, block_group);
4973
4974         if (sbi->s_log_groups_per_flex) {
4975                 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
4976                 atomic64_add(count_clusters,
4977                              &sbi_array_rcu_deref(sbi, s_flex_groups,
4978                                                   flex_group)->free_clusters);
4979         }
4980
4981         /*
4982          * on a bigalloc file system, defer the s_freeclusters_counter
4983          * update to the caller (ext4_remove_space and friends) so they
4984          * can determine if a cluster freed here should be rereserved
4985          */
4986         if (!(flags & EXT4_FREE_BLOCKS_RERESERVE_CLUSTER)) {
4987                 if (!(flags & EXT4_FREE_BLOCKS_NO_QUOT_UPDATE))
4988                         dquot_free_block(inode, EXT4_C2B(sbi, count_clusters));
4989                 percpu_counter_add(&sbi->s_freeclusters_counter,
4990                                    count_clusters);
4991         }
4992
4993         ext4_mb_unload_buddy(&e4b);
4994
4995         /* We dirtied the bitmap block */
4996         BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
4997         err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
4998
4999         /* And the group descriptor block */
5000         BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
5001         ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
5002         if (!err)
5003                 err = ret;
5004
5005         if (overflow && !err) {
5006                 block += count;
5007                 count = overflow;
5008                 put_bh(bitmap_bh);
5009                 goto do_more;
5010         }
5011 error_return:
5012         brelse(bitmap_bh);
5013         ext4_std_error(sb, err);
5014         return;
5015 }
5016
5017 /**
5018  * ext4_group_add_blocks() -- Add given blocks to an existing group
5019  * @handle:                     handle to this transaction
5020  * @sb:                         super block
5021  * @block:                      start physical block to add to the block group
5022  * @count:                      number of blocks to free
5023  *
5024  * This marks the blocks as free in the bitmap and buddy.
5025  */
5026 int ext4_group_add_blocks(handle_t *handle, struct super_block *sb,
5027                          ext4_fsblk_t block, unsigned long count)
5028 {
5029         struct buffer_head *bitmap_bh = NULL;
5030         struct buffer_head *gd_bh;
5031         ext4_group_t block_group;
5032         ext4_grpblk_t bit;
5033         unsigned int i;
5034         struct ext4_group_desc *desc;
5035         struct ext4_sb_info *sbi = EXT4_SB(sb);
5036         struct ext4_buddy e4b;
5037         int err = 0, ret, free_clusters_count;
5038         ext4_grpblk_t clusters_freed;
5039         ext4_fsblk_t first_cluster = EXT4_B2C(sbi, block);
5040         ext4_fsblk_t last_cluster = EXT4_B2C(sbi, block + count - 1);
5041         unsigned long cluster_count = last_cluster - first_cluster + 1;
5042
5043         ext4_debug("Adding block(s) %llu-%llu\n", block, block + count - 1);
5044
5045         if (count == 0)
5046                 return 0;
5047
5048         ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
5049         /*
5050          * Check to see if we are freeing blocks across a group
5051          * boundary.
5052          */
5053         if (bit + cluster_count > EXT4_CLUSTERS_PER_GROUP(sb)) {
5054                 ext4_warning(sb, "too many blocks added to group %u",
5055                              block_group);
5056                 err = -EINVAL;
5057                 goto error_return;
5058         }
5059
5060         bitmap_bh = ext4_read_block_bitmap(sb, block_group);
5061         if (IS_ERR(bitmap_bh)) {
5062                 err = PTR_ERR(bitmap_bh);
5063                 bitmap_bh = NULL;
5064                 goto error_return;
5065         }
5066
5067         desc = ext4_get_group_desc(sb, block_group, &gd_bh);
5068         if (!desc) {
5069                 err = -EIO;
5070                 goto error_return;
5071         }
5072
5073         if (in_range(ext4_block_bitmap(sb, desc), block, count) ||
5074             in_range(ext4_inode_bitmap(sb, desc), block, count) ||
5075             in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) ||
5076             in_range(block + count - 1, ext4_inode_table(sb, desc),
5077                      sbi->s_itb_per_group)) {
5078                 ext4_error(sb, "Adding blocks in system zones - "
5079                            "Block = %llu, count = %lu",
5080                            block, count);
5081                 err = -EINVAL;
5082                 goto error_return;
5083         }
5084
5085         BUFFER_TRACE(bitmap_bh, "getting write access");
5086         err = ext4_journal_get_write_access(handle, bitmap_bh);
5087         if (err)
5088                 goto error_return;
5089
5090         /*
5091          * We are about to modify some metadata.  Call the journal APIs
5092          * to unshare ->b_data if a currently-committing transaction is
5093          * using it
5094          */
5095         BUFFER_TRACE(gd_bh, "get_write_access");
5096         err = ext4_journal_get_write_access(handle, gd_bh);
5097         if (err)
5098                 goto error_return;
5099
5100         for (i = 0, clusters_freed = 0; i < cluster_count; i++) {
5101                 BUFFER_TRACE(bitmap_bh, "clear bit");
5102                 if (!mb_test_bit(bit + i, bitmap_bh->b_data)) {
5103                         ext4_error(sb, "bit already cleared for block %llu",
5104                                    (ext4_fsblk_t)(block + i));
5105                         BUFFER_TRACE(bitmap_bh, "bit already cleared");
5106                 } else {
5107                         clusters_freed++;
5108                 }
5109         }
5110
5111         err = ext4_mb_load_buddy(sb, block_group, &e4b);
5112         if (err)
5113                 goto error_return;
5114
5115         /*
5116          * need to update group_info->bb_free and bitmap
5117          * with group lock held. generate_buddy look at
5118          * them with group lock_held
5119          */
5120         ext4_lock_group(sb, block_group);
5121         mb_clear_bits(bitmap_bh->b_data, bit, cluster_count);
5122         mb_free_blocks(NULL, &e4b, bit, cluster_count);
5123         free_clusters_count = clusters_freed +
5124                 ext4_free_group_clusters(sb, desc);
5125         ext4_free_group_clusters_set(sb, desc, free_clusters_count);
5126         ext4_block_bitmap_csum_set(sb, block_group, desc, bitmap_bh);
5127         ext4_group_desc_csum_set(sb, block_group, desc);
5128         ext4_unlock_group(sb, block_group);
5129         percpu_counter_add(&sbi->s_freeclusters_counter,
5130                            clusters_freed);
5131
5132         if (sbi->s_log_groups_per_flex) {
5133                 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
5134                 atomic64_add(clusters_freed,
5135                              &sbi_array_rcu_deref(sbi, s_flex_groups,
5136                                                   flex_group)->free_clusters);
5137         }
5138
5139         ext4_mb_unload_buddy(&e4b);
5140
5141         /* We dirtied the bitmap block */
5142         BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
5143         err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
5144
5145         /* And the group descriptor block */
5146         BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
5147         ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
5148         if (!err)
5149                 err = ret;
5150
5151 error_return:
5152         brelse(bitmap_bh);
5153         ext4_std_error(sb, err);
5154         return err;
5155 }
5156
5157 /**
5158  * ext4_trim_extent -- function to TRIM one single free extent in the group
5159  * @sb:         super block for the file system
5160  * @start:      starting block of the free extent in the alloc. group
5161  * @count:      number of blocks to TRIM
5162  * @group:      alloc. group we are working with
5163  * @e4b:        ext4 buddy for the group
5164  *
5165  * Trim "count" blocks starting at "start" in the "group". To assure that no
5166  * one will allocate those blocks, mark it as used in buddy bitmap. This must
5167  * be called with under the group lock.
5168  */
5169 static int ext4_trim_extent(struct super_block *sb, int start, int count,
5170                              ext4_group_t group, struct ext4_buddy *e4b)
5171 __releases(bitlock)
5172 __acquires(bitlock)
5173 {
5174         struct ext4_free_extent ex;
5175         int ret = 0;
5176
5177         trace_ext4_trim_extent(sb, group, start, count);
5178
5179         assert_spin_locked(ext4_group_lock_ptr(sb, group));
5180
5181         ex.fe_start = start;
5182         ex.fe_group = group;
5183         ex.fe_len = count;
5184
5185         /*
5186          * Mark blocks used, so no one can reuse them while
5187          * being trimmed.
5188          */
5189         mb_mark_used(e4b, &ex);
5190         ext4_unlock_group(sb, group);
5191         ret = ext4_issue_discard(sb, group, start, count, NULL);
5192         ext4_lock_group(sb, group);
5193         mb_free_blocks(NULL, e4b, start, ex.fe_len);
5194         return ret;
5195 }
5196
5197 /**
5198  * ext4_trim_all_free -- function to trim all free space in alloc. group
5199  * @sb:                 super block for file system
5200  * @group:              group to be trimmed
5201  * @start:              first group block to examine
5202  * @max:                last group block to examine
5203  * @minblocks:          minimum extent block count
5204  *
5205  * ext4_trim_all_free walks through group's buddy bitmap searching for free
5206  * extents. When the free block is found, ext4_trim_extent is called to TRIM
5207  * the extent.
5208  *
5209  *
5210  * ext4_trim_all_free walks through group's block bitmap searching for free
5211  * extents. When the free extent is found, mark it as used in group buddy
5212  * bitmap. Then issue a TRIM command on this extent and free the extent in
5213  * the group buddy bitmap. This is done until whole group is scanned.
5214  */
5215 static ext4_grpblk_t
5216 ext4_trim_all_free(struct super_block *sb, ext4_group_t group,
5217                    ext4_grpblk_t start, ext4_grpblk_t max,
5218                    ext4_grpblk_t minblocks)
5219 {
5220         void *bitmap;
5221         ext4_grpblk_t next, count = 0, free_count = 0;
5222         struct ext4_buddy e4b;
5223         int ret = 0;
5224
5225         trace_ext4_trim_all_free(sb, group, start, max);
5226
5227         ret = ext4_mb_load_buddy(sb, group, &e4b);
5228         if (ret) {
5229                 ext4_warning(sb, "Error %d loading buddy information for %u",
5230                              ret, group);
5231                 return ret;
5232         }
5233         bitmap = e4b.bd_bitmap;
5234
5235         ext4_lock_group(sb, group);
5236         if (EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) &&
5237             minblocks >= atomic_read(&EXT4_SB(sb)->s_last_trim_minblks))
5238                 goto out;
5239
5240         start = (e4b.bd_info->bb_first_free > start) ?
5241                 e4b.bd_info->bb_first_free : start;
5242
5243         while (start <= max) {
5244                 start = mb_find_next_zero_bit(bitmap, max + 1, start);
5245                 if (start > max)
5246                         break;
5247                 next = mb_find_next_bit(bitmap, max + 1, start);
5248
5249                 if ((next - start) >= minblocks) {
5250                         ret = ext4_trim_extent(sb, start,
5251                                                next - start, group, &e4b);
5252                         if (ret && ret != -EOPNOTSUPP)
5253                                 break;
5254                         ret = 0;
5255                         count += next - start;
5256                 }
5257                 free_count += next - start;
5258                 start = next + 1;
5259
5260                 if (fatal_signal_pending(current)) {
5261                         count = -ERESTARTSYS;
5262                         break;
5263                 }
5264
5265                 if (need_resched()) {
5266                         ext4_unlock_group(sb, group);
5267                         cond_resched();
5268                         ext4_lock_group(sb, group);
5269                 }
5270
5271                 if ((e4b.bd_info->bb_free - free_count) < minblocks)
5272                         break;
5273         }
5274
5275         if (!ret) {
5276                 ret = count;
5277                 EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info);
5278         }
5279 out:
5280         ext4_unlock_group(sb, group);
5281         ext4_mb_unload_buddy(&e4b);
5282
5283         ext4_debug("trimmed %d blocks in the group %d\n",
5284                 count, group);
5285
5286         return ret;
5287 }
5288
5289 /**
5290  * ext4_trim_fs() -- trim ioctl handle function
5291  * @sb:                 superblock for filesystem
5292  * @range:              fstrim_range structure
5293  *
5294  * start:       First Byte to trim
5295  * len:         number of Bytes to trim from start
5296  * minlen:      minimum extent length in Bytes
5297  * ext4_trim_fs goes through all allocation groups containing Bytes from
5298  * start to start+len. For each such a group ext4_trim_all_free function
5299  * is invoked to trim all free space.
5300  */
5301 int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range)
5302 {
5303         struct request_queue *q = bdev_get_queue(sb->s_bdev);
5304         struct ext4_group_info *grp;
5305         ext4_group_t group, first_group, last_group;
5306         ext4_grpblk_t cnt = 0, first_cluster, last_cluster;
5307         uint64_t start, end, minlen, trimmed = 0;
5308         ext4_fsblk_t first_data_blk =
5309                         le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
5310         ext4_fsblk_t max_blks = ext4_blocks_count(EXT4_SB(sb)->s_es);
5311         int ret = 0;
5312
5313         start = range->start >> sb->s_blocksize_bits;
5314         end = start + (range->len >> sb->s_blocksize_bits) - 1;
5315         minlen = EXT4_NUM_B2C(EXT4_SB(sb),
5316                               range->minlen >> sb->s_blocksize_bits);
5317
5318         if (minlen > EXT4_CLUSTERS_PER_GROUP(sb) ||
5319             start >= max_blks ||
5320             range->len < sb->s_blocksize)
5321                 return -EINVAL;
5322         /* No point to try to trim less than discard granularity */
5323         if (range->minlen < q->limits.discard_granularity) {
5324                 minlen = EXT4_NUM_B2C(EXT4_SB(sb),
5325                         q->limits.discard_granularity >> sb->s_blocksize_bits);
5326                 if (minlen > EXT4_CLUSTERS_PER_GROUP(sb))
5327                         goto out;
5328         }
5329         if (end >= max_blks)
5330                 end = max_blks - 1;
5331         if (end <= first_data_blk)
5332                 goto out;
5333         if (start < first_data_blk)
5334                 start = first_data_blk;
5335
5336         /* Determine first and last group to examine based on start and end */
5337         ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) start,
5338                                      &first_group, &first_cluster);
5339         ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) end,
5340                                      &last_group, &last_cluster);
5341
5342         /* end now represents the last cluster to discard in this group */
5343         end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
5344
5345         for (group = first_group; group <= last_group; group++) {
5346                 grp = ext4_get_group_info(sb, group);
5347                 /* We only do this if the grp has never been initialized */
5348                 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
5349                         ret = ext4_mb_init_group(sb, group, GFP_NOFS);
5350                         if (ret)
5351                                 break;
5352                 }
5353
5354                 /*
5355                  * For all the groups except the last one, last cluster will
5356                  * always be EXT4_CLUSTERS_PER_GROUP(sb)-1, so we only need to
5357                  * change it for the last group, note that last_cluster is
5358                  * already computed earlier by ext4_get_group_no_and_offset()
5359                  */
5360                 if (group == last_group)
5361                         end = last_cluster;
5362
5363                 if (grp->bb_free >= minlen) {
5364                         cnt = ext4_trim_all_free(sb, group, first_cluster,
5365                                                 end, minlen);
5366                         if (cnt < 0) {
5367                                 ret = cnt;
5368                                 break;
5369                         }
5370                         trimmed += cnt;
5371                 }
5372
5373                 /*
5374                  * For every group except the first one, we are sure
5375                  * that the first cluster to discard will be cluster #0.
5376                  */
5377                 first_cluster = 0;
5378         }
5379
5380         if (!ret)
5381                 atomic_set(&EXT4_SB(sb)->s_last_trim_minblks, minlen);
5382
5383 out:
5384         range->len = EXT4_C2B(EXT4_SB(sb), trimmed) << sb->s_blocksize_bits;
5385         return ret;
5386 }
5387
5388 /* Iterate all the free extents in the group. */
5389 int
5390 ext4_mballoc_query_range(
5391         struct super_block              *sb,
5392         ext4_group_t                    group,
5393         ext4_grpblk_t                   start,
5394         ext4_grpblk_t                   end,
5395         ext4_mballoc_query_range_fn     formatter,
5396         void                            *priv)
5397 {
5398         void                            *bitmap;
5399         ext4_grpblk_t                   next;
5400         struct ext4_buddy               e4b;
5401         int                             error;
5402
5403         error = ext4_mb_load_buddy(sb, group, &e4b);
5404         if (error)
5405                 return error;
5406         bitmap = e4b.bd_bitmap;
5407
5408         ext4_lock_group(sb, group);
5409
5410         start = (e4b.bd_info->bb_first_free > start) ?
5411                 e4b.bd_info->bb_first_free : start;
5412         if (end >= EXT4_CLUSTERS_PER_GROUP(sb))
5413                 end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
5414
5415         while (start <= end) {
5416                 start = mb_find_next_zero_bit(bitmap, end + 1, start);
5417                 if (start > end)
5418                         break;
5419                 next = mb_find_next_bit(bitmap, end + 1, start);
5420
5421                 ext4_unlock_group(sb, group);
5422                 error = formatter(sb, group, start, next - start, priv);
5423                 if (error)
5424                         goto out_unload;
5425                 ext4_lock_group(sb, group);
5426
5427                 start = next + 1;
5428         }
5429
5430         ext4_unlock_group(sb, group);
5431 out_unload:
5432         ext4_mb_unload_buddy(&e4b);
5433
5434         return error;
5435 }