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