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