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