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