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