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