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