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