OSDN Git Service

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