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