blob: 815a22ea60784521fff85b1cf0f3dc70cd9d5387 [file] [log] [blame]
Alex Tomasc9de5602008-01-29 00:19:52 -05001/*
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
Mingming Cao8f6e39a2008-04-29 22:01:31 -040024#include "mballoc.h"
Alex Tomasc9de5602008-01-29 00:19:52 -050025/*
26 * MUSTDO:
27 * - test ext4_ext_search_left() and ext4_ext_search_right()
28 * - search for metadata in few groups
29 *
30 * TODO v4:
31 * - normalization should take into account whether file is still open
32 * - discard preallocations if no free space left (policy?)
33 * - don't normalize tails
34 * - quota
35 * - reservation for superuser
36 *
37 * TODO v3:
38 * - bitmap read-ahead (proposed by Oleg Drokin aka green)
39 * - track min/max extents in each group for better group selection
40 * - mb_mark_used() may allocate chunk right after splitting buddy
41 * - tree of groups sorted by number of free blocks
42 * - error handling
43 */
44
45/*
46 * The allocation request involve request for multiple number of blocks
47 * near to the goal(block) value specified.
48 *
49 * During initialization phase of the allocator we decide to use the group
50 * preallocation or inode preallocation depending on the size file. The
51 * size of the file could be the resulting file size we would have after
52 * allocation or the current file size which ever is larger. If the size is
53 * less that sbi->s_mb_stream_request we select the group
54 * preallocation. The default value of s_mb_stream_request is 16
55 * blocks. This can also be tuned via
56 * /proc/fs/ext4/<partition>/stream_req. The value is represented in terms
57 * of number of blocks.
58 *
59 * The main motivation for having small file use group preallocation is to
60 * ensure that we have small file closer in the disk.
61 *
62 * First stage the allocator looks at the inode prealloc list
63 * ext4_inode_info->i_prealloc_list contain list of prealloc spaces for
64 * this particular inode. The inode prealloc space is represented as:
65 *
66 * pa_lstart -> the logical start block for this prealloc space
67 * pa_pstart -> the physical start block for this prealloc space
68 * pa_len -> lenght for this prealloc space
69 * pa_free -> free space available in this prealloc space
70 *
71 * The inode preallocation space is used looking at the _logical_ start
72 * block. If only the logical file block falls within the range of prealloc
73 * space we will consume the particular prealloc space. This make sure that
74 * that the we have contiguous physical blocks representing the file blocks
75 *
76 * The important thing to be noted in case of inode prealloc space is that
77 * we don't modify the values associated to inode prealloc space except
78 * pa_free.
79 *
80 * If we are not able to find blocks in the inode prealloc space and if we
81 * have the group allocation flag set then we look at the locality group
82 * prealloc space. These are per CPU prealloc list repreasented as
83 *
84 * ext4_sb_info.s_locality_groups[smp_processor_id()]
85 *
86 * The reason for having a per cpu locality group is to reduce the contention
87 * between CPUs. It is possible to get scheduled at this point.
88 *
89 * The locality group prealloc space is used looking at whether we have
90 * enough free space (pa_free) withing the prealloc space.
91 *
92 * If we can't allocate blocks via inode prealloc or/and locality group
93 * prealloc then we look at the buddy cache. The buddy cache is represented
94 * by ext4_sb_info.s_buddy_cache (struct inode) whose file offset gets
95 * mapped to the buddy and bitmap information regarding different
96 * groups. The buddy information is attached to buddy cache inode so that
97 * we can access them through the page cache. The information regarding
98 * each group is loaded via ext4_mb_load_buddy. The information involve
99 * block bitmap and buddy information. The information are stored in the
100 * inode as:
101 *
102 * { page }
103 * [ group 0 buddy][ group 0 bitmap] [group 1][ group 1]...
104 *
105 *
106 * one block each for bitmap and buddy information. So for each group we
107 * take up 2 blocks. A page can contain blocks_per_page (PAGE_CACHE_SIZE /
108 * blocksize) blocks. So it can have information regarding groups_per_page
109 * which is blocks_per_page/2
110 *
111 * The buddy cache inode is not stored on disk. The inode is thrown
112 * away when the filesystem is unmounted.
113 *
114 * We look for count number of blocks in the buddy cache. If we were able
115 * to locate that many free blocks we return with additional information
116 * regarding rest of the contiguous physical block available
117 *
118 * Before allocating blocks via buddy cache we normalize the request
119 * blocks. This ensure we ask for more blocks that we needed. The extra
120 * blocks that we get after allocation is added to the respective prealloc
121 * list. In case of inode preallocation we follow a list of heuristics
122 * based on file size. This can be found in ext4_mb_normalize_request. If
123 * we are doing a group prealloc we try to normalize the request to
124 * sbi->s_mb_group_prealloc. Default value of s_mb_group_prealloc is set to
125 * 512 blocks. This can be tuned via
126 * /proc/fs/ext4/<partition/group_prealloc. The value is represented in
127 * terms of number of blocks. If we have mounted the file system with -O
128 * stripe=<value> option the group prealloc request is normalized to the
129 * stripe value (sbi->s_stripe)
130 *
131 * The regular allocator(using the buddy cache) support few tunables.
132 *
133 * /proc/fs/ext4/<partition>/min_to_scan
134 * /proc/fs/ext4/<partition>/max_to_scan
135 * /proc/fs/ext4/<partition>/order2_req
136 *
137 * The regular allocator use buddy scan only if the request len is power of
138 * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The
139 * value of s_mb_order2_reqs can be tuned via
140 * /proc/fs/ext4/<partition>/order2_req. If the request len is equal to
141 * stripe size (sbi->s_stripe), we try to search for contigous block in
142 * stripe size. This should result in better allocation on RAID setup. If
143 * not we search in the specific group using bitmap for best extents. The
144 * tunable min_to_scan and max_to_scan controll the behaviour here.
145 * min_to_scan indicate how long the mballoc __must__ look for a best
146 * extent and max_to_scanindicate how long the mballoc __can__ look for a
147 * best extent in the found extents. Searching for the blocks starts with
148 * the group specified as the goal value in allocation context via
149 * ac_g_ex. Each group is first checked based on the criteria whether it
150 * can used for allocation. ext4_mb_good_group explains how the groups are
151 * checked.
152 *
153 * Both the prealloc space are getting populated as above. So for the first
154 * request we will hit the buddy cache which will result in this prealloc
155 * space getting filled. The prealloc space is then later used for the
156 * subsequent request.
157 */
158
159/*
160 * mballoc operates on the following data:
161 * - on-disk bitmap
162 * - in-core buddy (actually includes buddy and bitmap)
163 * - preallocation descriptors (PAs)
164 *
165 * there are two types of preallocations:
166 * - inode
167 * assiged to specific inode and can be used for this inode only.
168 * it describes part of inode's space preallocated to specific
169 * physical blocks. any block from that preallocated can be used
170 * independent. the descriptor just tracks number of blocks left
171 * unused. so, before taking some block from descriptor, one must
172 * make sure corresponded logical block isn't allocated yet. this
173 * also means that freeing any block within descriptor's range
174 * must discard all preallocated blocks.
175 * - locality group
176 * assigned to specific locality group which does not translate to
177 * permanent set of inodes: inode can join and leave group. space
178 * from this type of preallocation can be used for any inode. thus
179 * it's consumed from the beginning to the end.
180 *
181 * relation between them can be expressed as:
182 * in-core buddy = on-disk bitmap + preallocation descriptors
183 *
184 * this mean blocks mballoc considers used are:
185 * - allocated blocks (persistent)
186 * - preallocated blocks (non-persistent)
187 *
188 * consistency in mballoc world means that at any time a block is either
189 * free or used in ALL structures. notice: "any time" should not be read
190 * literally -- time is discrete and delimited by locks.
191 *
192 * to keep it simple, we don't use block numbers, instead we count number of
193 * blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA.
194 *
195 * all operations can be expressed as:
196 * - init buddy: buddy = on-disk + PAs
197 * - new PA: buddy += N; PA = N
198 * - use inode PA: on-disk += N; PA -= N
199 * - discard inode PA buddy -= on-disk - PA; PA = 0
200 * - use locality group PA on-disk += N; PA -= N
201 * - discard locality group PA buddy -= PA; PA = 0
202 * note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap
203 * is used in real operation because we can't know actual used
204 * bits from PA, only from on-disk bitmap
205 *
206 * if we follow this strict logic, then all operations above should be atomic.
207 * given some of them can block, we'd have to use something like semaphores
208 * killing performance on high-end SMP hardware. let's try to relax it using
209 * the following knowledge:
210 * 1) if buddy is referenced, it's already initialized
211 * 2) while block is used in buddy and the buddy is referenced,
212 * nobody can re-allocate that block
213 * 3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has
214 * bit set and PA claims same block, it's OK. IOW, one can set bit in
215 * on-disk bitmap if buddy has same bit set or/and PA covers corresponded
216 * block
217 *
218 * so, now we're building a concurrency table:
219 * - init buddy vs.
220 * - new PA
221 * blocks for PA are allocated in the buddy, buddy must be referenced
222 * until PA is linked to allocation group to avoid concurrent buddy init
223 * - use inode PA
224 * we need to make sure that either on-disk bitmap or PA has uptodate data
225 * given (3) we care that PA-=N operation doesn't interfere with init
226 * - discard inode PA
227 * the simplest way would be to have buddy initialized by the discard
228 * - use locality group PA
229 * again PA-=N must be serialized with init
230 * - discard locality group PA
231 * the simplest way would be to have buddy initialized by the discard
232 * - new PA vs.
233 * - use inode PA
234 * i_data_sem serializes them
235 * - discard inode PA
236 * discard process must wait until PA isn't used by another process
237 * - use locality group PA
238 * some mutex should serialize them
239 * - discard locality group PA
240 * discard process must wait until PA isn't used by another process
241 * - use inode PA
242 * - use inode PA
243 * i_data_sem or another mutex should serializes them
244 * - discard inode PA
245 * discard process must wait until PA isn't used by another process
246 * - use locality group PA
247 * nothing wrong here -- they're different PAs covering different blocks
248 * - discard locality group PA
249 * discard process must wait until PA isn't used by another process
250 *
251 * now we're ready to make few consequences:
252 * - PA is referenced and while it is no discard is possible
253 * - PA is referenced until block isn't marked in on-disk bitmap
254 * - PA changes only after on-disk bitmap
255 * - discard must not compete with init. either init is done before
256 * any discard or they're serialized somehow
257 * - buddy init as sum of on-disk bitmap and PAs is done atomically
258 *
259 * a special case when we've used PA to emptiness. no need to modify buddy
260 * in this case, but we should care about concurrent init
261 *
262 */
263
264 /*
265 * Logic in few words:
266 *
267 * - allocation:
268 * load group
269 * find blocks
270 * mark bits in on-disk bitmap
271 * release group
272 *
273 * - use preallocation:
274 * find proper PA (per-inode or group)
275 * load group
276 * mark bits in on-disk bitmap
277 * release group
278 * release PA
279 *
280 * - free:
281 * load group
282 * mark bits in on-disk bitmap
283 * release group
284 *
285 * - discard preallocations in group:
286 * mark PAs deleted
287 * move them onto local list
288 * load on-disk bitmap
289 * load group
290 * remove PA from object (inode or locality group)
291 * mark free blocks in-core
292 *
293 * - discard inode's preallocations:
294 */
295
296/*
297 * Locking rules
298 *
299 * Locks:
300 * - bitlock on a group (group)
301 * - object (inode/locality) (object)
302 * - per-pa lock (pa)
303 *
304 * Paths:
305 * - new pa
306 * object
307 * group
308 *
309 * - find and use pa:
310 * pa
311 *
312 * - release consumed pa:
313 * pa
314 * group
315 * object
316 *
317 * - generate in-core bitmap:
318 * group
319 * pa
320 *
321 * - discard all for given object (inode, locality group):
322 * object
323 * pa
324 * group
325 *
326 * - discard all for given group:
327 * group
328 * pa
329 * group
330 * object
331 *
332 */
333
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500334static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
335{
Alex Tomasc9de5602008-01-29 00:19:52 -0500336#if BITS_PER_LONG == 64
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500337 *bit += ((unsigned long) addr & 7UL) << 3;
338 addr = (void *) ((unsigned long) addr & ~7UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500339#elif BITS_PER_LONG == 32
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500340 *bit += ((unsigned long) addr & 3UL) << 3;
341 addr = (void *) ((unsigned long) addr & ~3UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500342#else
343#error "how many bits you are?!"
344#endif
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500345 return addr;
346}
Alex Tomasc9de5602008-01-29 00:19:52 -0500347
348static inline int mb_test_bit(int bit, void *addr)
349{
350 /*
351 * ext4_test_bit on architecture like powerpc
352 * needs unsigned long aligned address
353 */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500354 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500355 return ext4_test_bit(bit, addr);
356}
357
358static inline void mb_set_bit(int bit, void *addr)
359{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500360 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500361 ext4_set_bit(bit, addr);
362}
363
364static inline void mb_set_bit_atomic(spinlock_t *lock, int bit, void *addr)
365{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500366 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500367 ext4_set_bit_atomic(lock, bit, addr);
368}
369
370static inline void mb_clear_bit(int bit, void *addr)
371{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500372 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500373 ext4_clear_bit(bit, addr);
374}
375
376static inline void mb_clear_bit_atomic(spinlock_t *lock, int bit, void *addr)
377{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500378 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500379 ext4_clear_bit_atomic(lock, bit, addr);
380}
381
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500382static inline int mb_find_next_zero_bit(void *addr, int max, int start)
383{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400384 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500385 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400386 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500387 start += fix;
388
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400389 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix;
390 if (ret > max)
391 return max;
392 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500393}
394
395static inline int mb_find_next_bit(void *addr, int max, int start)
396{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400397 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500398 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400399 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500400 start += fix;
401
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400402 ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
403 if (ret > max)
404 return max;
405 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500406}
407
Alex Tomasc9de5602008-01-29 00:19:52 -0500408static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
409{
410 char *bb;
411
Alex Tomasc9de5602008-01-29 00:19:52 -0500412 BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
413 BUG_ON(max == NULL);
414
415 if (order > e4b->bd_blkbits + 1) {
416 *max = 0;
417 return NULL;
418 }
419
420 /* at order 0 we see each particular block */
421 *max = 1 << (e4b->bd_blkbits + 3);
422 if (order == 0)
423 return EXT4_MB_BITMAP(e4b);
424
425 bb = EXT4_MB_BUDDY(e4b) + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
426 *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
427
428 return bb;
429}
430
431#ifdef DOUBLE_CHECK
432static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
433 int first, int count)
434{
435 int i;
436 struct super_block *sb = e4b->bd_sb;
437
438 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
439 return;
440 BUG_ON(!ext4_is_group_locked(sb, e4b->bd_group));
441 for (i = 0; i < count; i++) {
442 if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
443 ext4_fsblk_t blocknr;
444 blocknr = e4b->bd_group * EXT4_BLOCKS_PER_GROUP(sb);
445 blocknr += first + i;
446 blocknr +=
447 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
448
Harvey Harrison46e665e2008-04-17 10:38:59 -0400449 ext4_error(sb, __func__, "double-free of inode"
Alex Tomasc9de5602008-01-29 00:19:52 -0500450 " %lu's block %llu(bit %u in group %lu)\n",
451 inode ? inode->i_ino : 0, blocknr,
452 first + i, e4b->bd_group);
453 }
454 mb_clear_bit(first + i, e4b->bd_info->bb_bitmap);
455 }
456}
457
458static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count)
459{
460 int i;
461
462 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
463 return;
464 BUG_ON(!ext4_is_group_locked(e4b->bd_sb, e4b->bd_group));
465 for (i = 0; i < count; i++) {
466 BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap));
467 mb_set_bit(first + i, e4b->bd_info->bb_bitmap);
468 }
469}
470
471static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
472{
473 if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) {
474 unsigned char *b1, *b2;
475 int i;
476 b1 = (unsigned char *) e4b->bd_info->bb_bitmap;
477 b2 = (unsigned char *) bitmap;
478 for (i = 0; i < e4b->bd_sb->s_blocksize; i++) {
479 if (b1[i] != b2[i]) {
Theodore Ts'o47760042008-09-08 23:00:52 -0400480 printk(KERN_ERR "corruption in group %lu "
481 "at byte %u(%u): %x in copy != %x "
482 "on disk/prealloc\n",
483 e4b->bd_group, i, i * 8, b1[i], b2[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500484 BUG();
485 }
486 }
487 }
488}
489
490#else
491static inline void mb_free_blocks_double(struct inode *inode,
492 struct ext4_buddy *e4b, int first, int count)
493{
494 return;
495}
496static inline void mb_mark_used_double(struct ext4_buddy *e4b,
497 int first, int count)
498{
499 return;
500}
501static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
502{
503 return;
504}
505#endif
506
507#ifdef AGGRESSIVE_CHECK
508
509#define MB_CHECK_ASSERT(assert) \
510do { \
511 if (!(assert)) { \
512 printk(KERN_EMERG \
513 "Assertion failure in %s() at %s:%d: \"%s\"\n", \
514 function, file, line, # assert); \
515 BUG(); \
516 } \
517} while (0)
518
519static int __mb_check_buddy(struct ext4_buddy *e4b, char *file,
520 const char *function, int line)
521{
522 struct super_block *sb = e4b->bd_sb;
523 int order = e4b->bd_blkbits + 1;
524 int max;
525 int max2;
526 int i;
527 int j;
528 int k;
529 int count;
530 struct ext4_group_info *grp;
531 int fragments = 0;
532 int fstart;
533 struct list_head *cur;
534 void *buddy;
535 void *buddy2;
536
Alex Tomasc9de5602008-01-29 00:19:52 -0500537 {
538 static int mb_check_counter;
539 if (mb_check_counter++ % 100 != 0)
540 return 0;
541 }
542
543 while (order > 1) {
544 buddy = mb_find_buddy(e4b, order, &max);
545 MB_CHECK_ASSERT(buddy);
546 buddy2 = mb_find_buddy(e4b, order - 1, &max2);
547 MB_CHECK_ASSERT(buddy2);
548 MB_CHECK_ASSERT(buddy != buddy2);
549 MB_CHECK_ASSERT(max * 2 == max2);
550
551 count = 0;
552 for (i = 0; i < max; i++) {
553
554 if (mb_test_bit(i, buddy)) {
555 /* only single bit in buddy2 may be 1 */
556 if (!mb_test_bit(i << 1, buddy2)) {
557 MB_CHECK_ASSERT(
558 mb_test_bit((i<<1)+1, buddy2));
559 } else if (!mb_test_bit((i << 1) + 1, buddy2)) {
560 MB_CHECK_ASSERT(
561 mb_test_bit(i << 1, buddy2));
562 }
563 continue;
564 }
565
566 /* both bits in buddy2 must be 0 */
567 MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2));
568 MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2));
569
570 for (j = 0; j < (1 << order); j++) {
571 k = (i * (1 << order)) + j;
572 MB_CHECK_ASSERT(
573 !mb_test_bit(k, EXT4_MB_BITMAP(e4b)));
574 }
575 count++;
576 }
577 MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count);
578 order--;
579 }
580
581 fstart = -1;
582 buddy = mb_find_buddy(e4b, 0, &max);
583 for (i = 0; i < max; i++) {
584 if (!mb_test_bit(i, buddy)) {
585 MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free);
586 if (fstart == -1) {
587 fragments++;
588 fstart = i;
589 }
590 continue;
591 }
592 fstart = -1;
593 /* check used bits only */
594 for (j = 0; j < e4b->bd_blkbits + 1; j++) {
595 buddy2 = mb_find_buddy(e4b, j, &max2);
596 k = i >> j;
597 MB_CHECK_ASSERT(k < max2);
598 MB_CHECK_ASSERT(mb_test_bit(k, buddy2));
599 }
600 }
601 MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info));
602 MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments);
603
604 grp = ext4_get_group_info(sb, e4b->bd_group);
605 buddy = mb_find_buddy(e4b, 0, &max);
606 list_for_each(cur, &grp->bb_prealloc_list) {
607 ext4_group_t groupnr;
608 struct ext4_prealloc_space *pa;
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400609 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
610 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k);
Alex Tomasc9de5602008-01-29 00:19:52 -0500611 MB_CHECK_ASSERT(groupnr == e4b->bd_group);
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400612 for (i = 0; i < pa->pa_len; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500613 MB_CHECK_ASSERT(mb_test_bit(k + i, buddy));
614 }
615 return 0;
616}
617#undef MB_CHECK_ASSERT
618#define mb_check_buddy(e4b) __mb_check_buddy(e4b, \
Harvey Harrison46e665e2008-04-17 10:38:59 -0400619 __FILE__, __func__, __LINE__)
Alex Tomasc9de5602008-01-29 00:19:52 -0500620#else
621#define mb_check_buddy(e4b)
622#endif
623
624/* FIXME!! need more doc */
625static void ext4_mb_mark_free_simple(struct super_block *sb,
626 void *buddy, unsigned first, int len,
627 struct ext4_group_info *grp)
628{
629 struct ext4_sb_info *sbi = EXT4_SB(sb);
630 unsigned short min;
631 unsigned short max;
632 unsigned short chunk;
633 unsigned short border;
634
Valerie Clementb73fce62008-02-15 13:48:51 -0500635 BUG_ON(len > EXT4_BLOCKS_PER_GROUP(sb));
Alex Tomasc9de5602008-01-29 00:19:52 -0500636
637 border = 2 << sb->s_blocksize_bits;
638
639 while (len > 0) {
640 /* find how many blocks can be covered since this position */
641 max = ffs(first | border) - 1;
642
643 /* find how many blocks of power 2 we need to mark */
644 min = fls(len) - 1;
645
646 if (max < min)
647 min = max;
648 chunk = 1 << min;
649
650 /* mark multiblock chunks only */
651 grp->bb_counters[min]++;
652 if (min > 0)
653 mb_clear_bit(first >> min,
654 buddy + sbi->s_mb_offsets[min]);
655
656 len -= chunk;
657 first += chunk;
658 }
659}
660
661static 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 */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500675 i = mb_find_next_zero_bit(bitmap, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -0500676 grp->bb_first_free = i;
677 while (i < max) {
678 fragments++;
679 first = i;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500680 i = mb_find_next_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500681 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)
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500688 i = mb_find_next_zero_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500689 }
690 grp->bb_fragments = fragments;
691
692 if (free != grp->bb_free) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400693 ext4_error(sb, __func__,
Alex Tomasc9de5602008-01-29 00:19:52 -0500694 "EXT4-fs: group %lu: %u blocks in bitmap, %u in gd\n",
695 group, free, grp->bb_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500696 /*
697 * If we intent to continue, we consider group descritor
698 * corrupt and update bb_free using bitmap value
699 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500700 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 buddy][ group 0 bitmap] [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
729static int ext4_mb_init_cache(struct page *page, char *incore)
730{
731 int blocksize;
732 int blocks_per_page;
733 int groups_per_page;
734 int err = 0;
735 int i;
736 ext4_group_t first_group;
737 int first_block;
738 struct super_block *sb;
739 struct buffer_head *bhs;
740 struct buffer_head **bh;
741 struct inode *inode;
742 char *data;
743 char *bitmap;
744
745 mb_debug("init page %lu\n", page->index);
746
747 inode = page->mapping->host;
748 sb = inode->i_sb;
749 blocksize = 1 << inode->i_blkbits;
750 blocks_per_page = PAGE_CACHE_SIZE / blocksize;
751
752 groups_per_page = blocks_per_page >> 1;
753 if (groups_per_page == 0)
754 groups_per_page = 1;
755
756 /* allocate buffer_heads to read bitmaps */
757 if (groups_per_page > 1) {
758 err = -ENOMEM;
759 i = sizeof(struct buffer_head *) * groups_per_page;
760 bh = kzalloc(i, GFP_NOFS);
761 if (bh == NULL)
762 goto out;
763 } else
764 bh = &bhs;
765
766 first_group = page->index * blocks_per_page / 2;
767
768 /* read all groups the page covers into the cache */
769 for (i = 0; i < groups_per_page; i++) {
770 struct ext4_group_desc *desc;
771
772 if (first_group + i >= EXT4_SB(sb)->s_groups_count)
773 break;
774
775 err = -EIO;
776 desc = ext4_get_group_desc(sb, first_group + i, NULL);
777 if (desc == NULL)
778 goto out;
779
780 err = -ENOMEM;
781 bh[i] = sb_getblk(sb, ext4_block_bitmap(sb, desc));
782 if (bh[i] == NULL)
783 goto out;
784
Frederic Bohec806e682008-10-10 08:09:18 -0400785 if (buffer_uptodate(bh[i]) &&
786 !(desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)))
Alex Tomasc9de5602008-01-29 00:19:52 -0500787 continue;
788
Frederic Bohec806e682008-10-10 08:09:18 -0400789 lock_buffer(bh[i]);
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400790 spin_lock(sb_bgl_lock(EXT4_SB(sb), first_group + i));
Alex Tomasc9de5602008-01-29 00:19:52 -0500791 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
792 ext4_init_block_bitmap(sb, bh[i],
793 first_group + i, desc);
794 set_buffer_uptodate(bh[i]);
795 unlock_buffer(bh[i]);
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400796 spin_unlock(sb_bgl_lock(EXT4_SB(sb), first_group + i));
Alex Tomasc9de5602008-01-29 00:19:52 -0500797 continue;
798 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400799 spin_unlock(sb_bgl_lock(EXT4_SB(sb), first_group + i));
Alex Tomasc9de5602008-01-29 00:19:52 -0500800 get_bh(bh[i]);
801 bh[i]->b_end_io = end_buffer_read_sync;
802 submit_bh(READ, bh[i]);
803 mb_debug("read bitmap for group %lu\n", first_group + i);
804 }
805
806 /* wait for I/O completion */
807 for (i = 0; i < groups_per_page && bh[i]; i++)
808 wait_on_buffer(bh[i]);
809
810 err = -EIO;
811 for (i = 0; i < groups_per_page && bh[i]; i++)
812 if (!buffer_uptodate(bh[i]))
813 goto out;
814
Mingming Cao31b481d2008-07-11 19:27:31 -0400815 err = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -0500816 first_block = page->index * blocks_per_page;
817 for (i = 0; i < blocks_per_page; i++) {
818 int group;
819 struct ext4_group_info *grinfo;
820
821 group = (first_block + i) >> 1;
822 if (group >= EXT4_SB(sb)->s_groups_count)
823 break;
824
825 /*
826 * data carry information regarding this
827 * particular group in the format specified
828 * above
829 *
830 */
831 data = page_address(page) + (i * blocksize);
832 bitmap = bh[group - first_group]->b_data;
833
834 /*
835 * We place the buddy block and bitmap block
836 * close together
837 */
838 if ((first_block + i) & 1) {
839 /* this is block of buddy */
840 BUG_ON(incore == NULL);
841 mb_debug("put buddy for group %u in page %lu/%x\n",
842 group, page->index, i * blocksize);
843 memset(data, 0xff, blocksize);
844 grinfo = ext4_get_group_info(sb, group);
845 grinfo->bb_fragments = 0;
846 memset(grinfo->bb_counters, 0,
847 sizeof(unsigned short)*(sb->s_blocksize_bits+2));
848 /*
849 * incore got set to the group block bitmap below
850 */
851 ext4_mb_generate_buddy(sb, data, incore, group);
852 incore = NULL;
853 } else {
854 /* this is block of bitmap */
855 BUG_ON(incore != NULL);
856 mb_debug("put bitmap for group %u in page %lu/%x\n",
857 group, page->index, i * blocksize);
858
859 /* see comments in ext4_mb_put_pa() */
860 ext4_lock_group(sb, group);
861 memcpy(data, bitmap, blocksize);
862
863 /* mark all preallocated blks used in in-core bitmap */
864 ext4_mb_generate_from_pa(sb, data, group);
865 ext4_unlock_group(sb, group);
866
867 /* set incore so that the buddy information can be
868 * generated using this
869 */
870 incore = data;
871 }
872 }
873 SetPageUptodate(page);
874
875out:
876 if (bh) {
877 for (i = 0; i < groups_per_page && bh[i]; i++)
878 brelse(bh[i]);
879 if (bh != &bhs)
880 kfree(bh);
881 }
882 return err;
883}
884
Eric Sandeen4ddfef72008-04-29 08:11:12 -0400885static noinline_for_stack int
886ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
887 struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -0500888{
889 struct ext4_sb_info *sbi = EXT4_SB(sb);
890 struct inode *inode = sbi->s_buddy_cache;
891 int blocks_per_page;
892 int block;
893 int pnum;
894 int poff;
895 struct page *page;
Shen Fengfdf6c7a2008-07-11 19:27:31 -0400896 int ret;
Alex Tomasc9de5602008-01-29 00:19:52 -0500897
898 mb_debug("load group %lu\n", group);
899
900 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
901
902 e4b->bd_blkbits = sb->s_blocksize_bits;
903 e4b->bd_info = ext4_get_group_info(sb, group);
904 e4b->bd_sb = sb;
905 e4b->bd_group = group;
906 e4b->bd_buddy_page = NULL;
907 e4b->bd_bitmap_page = NULL;
908
909 /*
910 * the buddy cache inode stores the block bitmap
911 * and buddy information in consecutive blocks.
912 * So for each group we need two blocks.
913 */
914 block = group * 2;
915 pnum = block / blocks_per_page;
916 poff = block % blocks_per_page;
917
918 /* we could use find_or_create_page(), but it locks page
919 * what we'd like to avoid in fast path ... */
920 page = find_get_page(inode->i_mapping, pnum);
921 if (page == NULL || !PageUptodate(page)) {
922 if (page)
923 page_cache_release(page);
924 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
925 if (page) {
926 BUG_ON(page->mapping != inode->i_mapping);
927 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -0400928 ret = ext4_mb_init_cache(page, NULL);
929 if (ret) {
930 unlock_page(page);
931 goto err;
932 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500933 mb_cmp_bitmaps(e4b, page_address(page) +
934 (poff * sb->s_blocksize));
935 }
936 unlock_page(page);
937 }
938 }
Shen Fengfdf6c7a2008-07-11 19:27:31 -0400939 if (page == NULL || !PageUptodate(page)) {
940 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -0500941 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -0400942 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500943 e4b->bd_bitmap_page = page;
944 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
945 mark_page_accessed(page);
946
947 block++;
948 pnum = block / blocks_per_page;
949 poff = block % blocks_per_page;
950
951 page = find_get_page(inode->i_mapping, pnum);
952 if (page == NULL || !PageUptodate(page)) {
953 if (page)
954 page_cache_release(page);
955 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
956 if (page) {
957 BUG_ON(page->mapping != inode->i_mapping);
Shen Fengfdf6c7a2008-07-11 19:27:31 -0400958 if (!PageUptodate(page)) {
959 ret = ext4_mb_init_cache(page, e4b->bd_bitmap);
960 if (ret) {
961 unlock_page(page);
962 goto err;
963 }
964 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500965 unlock_page(page);
966 }
967 }
Shen Fengfdf6c7a2008-07-11 19:27:31 -0400968 if (page == NULL || !PageUptodate(page)) {
969 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -0500970 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -0400971 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500972 e4b->bd_buddy_page = page;
973 e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
974 mark_page_accessed(page);
975
976 BUG_ON(e4b->bd_bitmap_page == NULL);
977 BUG_ON(e4b->bd_buddy_page == NULL);
978
979 return 0;
980
981err:
982 if (e4b->bd_bitmap_page)
983 page_cache_release(e4b->bd_bitmap_page);
984 if (e4b->bd_buddy_page)
985 page_cache_release(e4b->bd_buddy_page);
986 e4b->bd_buddy = NULL;
987 e4b->bd_bitmap = NULL;
Shen Fengfdf6c7a2008-07-11 19:27:31 -0400988 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -0500989}
990
991static void ext4_mb_release_desc(struct ext4_buddy *e4b)
992{
993 if (e4b->bd_bitmap_page)
994 page_cache_release(e4b->bd_bitmap_page);
995 if (e4b->bd_buddy_page)
996 page_cache_release(e4b->bd_buddy_page);
997}
998
999
1000static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1001{
1002 int order = 1;
1003 void *bb;
1004
1005 BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
1006 BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1007
1008 bb = EXT4_MB_BUDDY(e4b);
1009 while (order <= e4b->bd_blkbits + 1) {
1010 block = block >> 1;
1011 if (!mb_test_bit(block, bb)) {
1012 /* this block is part of buddy of order 'order' */
1013 return order;
1014 }
1015 bb += 1 << (e4b->bd_blkbits - order);
1016 order++;
1017 }
1018 return 0;
1019}
1020
1021static void mb_clear_bits(spinlock_t *lock, void *bm, int cur, int len)
1022{
1023 __u32 *addr;
1024
1025 len = cur + len;
1026 while (cur < len) {
1027 if ((cur & 31) == 0 && (len - cur) >= 32) {
1028 /* fast path: clear whole word at once */
1029 addr = bm + (cur >> 3);
1030 *addr = 0;
1031 cur += 32;
1032 continue;
1033 }
1034 mb_clear_bit_atomic(lock, cur, bm);
1035 cur++;
1036 }
1037}
1038
1039static void mb_set_bits(spinlock_t *lock, void *bm, int cur, int len)
1040{
1041 __u32 *addr;
1042
1043 len = cur + len;
1044 while (cur < len) {
1045 if ((cur & 31) == 0 && (len - cur) >= 32) {
1046 /* fast path: set whole word at once */
1047 addr = bm + (cur >> 3);
1048 *addr = 0xffffffff;
1049 cur += 32;
1050 continue;
1051 }
1052 mb_set_bit_atomic(lock, cur, bm);
1053 cur++;
1054 }
1055}
1056
Shen Feng7e5a8cd2008-07-13 21:03:31 -04001057static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
Alex Tomasc9de5602008-01-29 00:19:52 -05001058 int first, int count)
1059{
1060 int block = 0;
1061 int max = 0;
1062 int order;
1063 void *buddy;
1064 void *buddy2;
1065 struct super_block *sb = e4b->bd_sb;
1066
1067 BUG_ON(first + count > (sb->s_blocksize << 3));
1068 BUG_ON(!ext4_is_group_locked(sb, e4b->bd_group));
1069 mb_check_buddy(e4b);
1070 mb_free_blocks_double(inode, e4b, first, count);
1071
1072 e4b->bd_info->bb_free += count;
1073 if (first < e4b->bd_info->bb_first_free)
1074 e4b->bd_info->bb_first_free = first;
1075
1076 /* let's maintain fragments counter */
1077 if (first != 0)
1078 block = !mb_test_bit(first - 1, EXT4_MB_BITMAP(e4b));
1079 if (first + count < EXT4_SB(sb)->s_mb_maxs[0])
1080 max = !mb_test_bit(first + count, EXT4_MB_BITMAP(e4b));
1081 if (block && max)
1082 e4b->bd_info->bb_fragments--;
1083 else if (!block && !max)
1084 e4b->bd_info->bb_fragments++;
1085
1086 /* let's maintain buddy itself */
1087 while (count-- > 0) {
1088 block = first++;
1089 order = 0;
1090
1091 if (!mb_test_bit(block, EXT4_MB_BITMAP(e4b))) {
1092 ext4_fsblk_t blocknr;
1093 blocknr = e4b->bd_group * EXT4_BLOCKS_PER_GROUP(sb);
1094 blocknr += block;
1095 blocknr +=
1096 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
Shen Feng7e5a8cd2008-07-13 21:03:31 -04001097 ext4_unlock_group(sb, e4b->bd_group);
Harvey Harrison46e665e2008-04-17 10:38:59 -04001098 ext4_error(sb, __func__, "double-free of inode"
Alex Tomasc9de5602008-01-29 00:19:52 -05001099 " %lu's block %llu(bit %u in group %lu)\n",
1100 inode ? inode->i_ino : 0, blocknr, block,
1101 e4b->bd_group);
Shen Feng7e5a8cd2008-07-13 21:03:31 -04001102 ext4_lock_group(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001103 }
1104 mb_clear_bit(block, EXT4_MB_BITMAP(e4b));
1105 e4b->bd_info->bb_counters[order]++;
1106
1107 /* start of the buddy */
1108 buddy = mb_find_buddy(e4b, order, &max);
1109
1110 do {
1111 block &= ~1UL;
1112 if (mb_test_bit(block, buddy) ||
1113 mb_test_bit(block + 1, buddy))
1114 break;
1115
1116 /* both the buddies are free, try to coalesce them */
1117 buddy2 = mb_find_buddy(e4b, order + 1, &max);
1118
1119 if (!buddy2)
1120 break;
1121
1122 if (order > 0) {
1123 /* for special purposes, we don't set
1124 * free bits in bitmap */
1125 mb_set_bit(block, buddy);
1126 mb_set_bit(block + 1, buddy);
1127 }
1128 e4b->bd_info->bb_counters[order]--;
1129 e4b->bd_info->bb_counters[order]--;
1130
1131 block = block >> 1;
1132 order++;
1133 e4b->bd_info->bb_counters[order]++;
1134
1135 mb_clear_bit(block, buddy2);
1136 buddy = buddy2;
1137 } while (1);
1138 }
1139 mb_check_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001140}
1141
1142static int mb_find_extent(struct ext4_buddy *e4b, int order, int block,
1143 int needed, struct ext4_free_extent *ex)
1144{
1145 int next = block;
1146 int max;
1147 int ord;
1148 void *buddy;
1149
1150 BUG_ON(!ext4_is_group_locked(e4b->bd_sb, e4b->bd_group));
1151 BUG_ON(ex == NULL);
1152
1153 buddy = mb_find_buddy(e4b, order, &max);
1154 BUG_ON(buddy == NULL);
1155 BUG_ON(block >= max);
1156 if (mb_test_bit(block, buddy)) {
1157 ex->fe_len = 0;
1158 ex->fe_start = 0;
1159 ex->fe_group = 0;
1160 return 0;
1161 }
1162
1163 /* FIXME dorp order completely ? */
1164 if (likely(order == 0)) {
1165 /* find actual order */
1166 order = mb_find_order_for_block(e4b, block);
1167 block = block >> order;
1168 }
1169
1170 ex->fe_len = 1 << order;
1171 ex->fe_start = block << order;
1172 ex->fe_group = e4b->bd_group;
1173
1174 /* calc difference from given start */
1175 next = next - ex->fe_start;
1176 ex->fe_len -= next;
1177 ex->fe_start += next;
1178
1179 while (needed > ex->fe_len &&
1180 (buddy = mb_find_buddy(e4b, order, &max))) {
1181
1182 if (block + 1 >= max)
1183 break;
1184
1185 next = (block + 1) * (1 << order);
1186 if (mb_test_bit(next, EXT4_MB_BITMAP(e4b)))
1187 break;
1188
1189 ord = mb_find_order_for_block(e4b, next);
1190
1191 order = ord;
1192 block = next >> order;
1193 ex->fe_len += 1 << order;
1194 }
1195
1196 BUG_ON(ex->fe_start + ex->fe_len > (1 << (e4b->bd_blkbits + 3)));
1197 return ex->fe_len;
1198}
1199
1200static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1201{
1202 int ord;
1203 int mlen = 0;
1204 int max = 0;
1205 int cur;
1206 int start = ex->fe_start;
1207 int len = ex->fe_len;
1208 unsigned ret = 0;
1209 int len0 = len;
1210 void *buddy;
1211
1212 BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1213 BUG_ON(e4b->bd_group != ex->fe_group);
1214 BUG_ON(!ext4_is_group_locked(e4b->bd_sb, e4b->bd_group));
1215 mb_check_buddy(e4b);
1216 mb_mark_used_double(e4b, start, len);
1217
1218 e4b->bd_info->bb_free -= len;
1219 if (e4b->bd_info->bb_first_free == start)
1220 e4b->bd_info->bb_first_free += len;
1221
1222 /* let's maintain fragments counter */
1223 if (start != 0)
1224 mlen = !mb_test_bit(start - 1, EXT4_MB_BITMAP(e4b));
1225 if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
1226 max = !mb_test_bit(start + len, EXT4_MB_BITMAP(e4b));
1227 if (mlen && max)
1228 e4b->bd_info->bb_fragments++;
1229 else if (!mlen && !max)
1230 e4b->bd_info->bb_fragments--;
1231
1232 /* let's maintain buddy itself */
1233 while (len) {
1234 ord = mb_find_order_for_block(e4b, start);
1235
1236 if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1237 /* the whole chunk may be allocated at once! */
1238 mlen = 1 << ord;
1239 buddy = mb_find_buddy(e4b, ord, &max);
1240 BUG_ON((start >> ord) >= max);
1241 mb_set_bit(start >> ord, buddy);
1242 e4b->bd_info->bb_counters[ord]--;
1243 start += mlen;
1244 len -= mlen;
1245 BUG_ON(len < 0);
1246 continue;
1247 }
1248
1249 /* store for history */
1250 if (ret == 0)
1251 ret = len | (ord << 16);
1252
1253 /* we have to split large buddy */
1254 BUG_ON(ord <= 0);
1255 buddy = mb_find_buddy(e4b, ord, &max);
1256 mb_set_bit(start >> ord, buddy);
1257 e4b->bd_info->bb_counters[ord]--;
1258
1259 ord--;
1260 cur = (start >> ord) & ~1U;
1261 buddy = mb_find_buddy(e4b, ord, &max);
1262 mb_clear_bit(cur, buddy);
1263 mb_clear_bit(cur + 1, buddy);
1264 e4b->bd_info->bb_counters[ord]++;
1265 e4b->bd_info->bb_counters[ord]++;
1266 }
1267
1268 mb_set_bits(sb_bgl_lock(EXT4_SB(e4b->bd_sb), ex->fe_group),
1269 EXT4_MB_BITMAP(e4b), ex->fe_start, len0);
1270 mb_check_buddy(e4b);
1271
1272 return ret;
1273}
1274
1275/*
1276 * Must be called under group lock!
1277 */
1278static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
1279 struct ext4_buddy *e4b)
1280{
1281 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1282 int ret;
1283
1284 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
1285 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1286
1287 ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
1288 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
1289 ret = mb_mark_used(e4b, &ac->ac_b_ex);
1290
1291 /* preallocation can change ac_b_ex, thus we store actually
1292 * allocated blocks for history */
1293 ac->ac_f_ex = ac->ac_b_ex;
1294
1295 ac->ac_status = AC_STATUS_FOUND;
1296 ac->ac_tail = ret & 0xffff;
1297 ac->ac_buddy = ret >> 16;
1298
1299 /* XXXXXXX: SUCH A HORRIBLE **CK */
1300 /*FIXME!! Why ? */
1301 ac->ac_bitmap_page = e4b->bd_bitmap_page;
1302 get_page(ac->ac_bitmap_page);
1303 ac->ac_buddy_page = e4b->bd_buddy_page;
1304 get_page(ac->ac_buddy_page);
1305
1306 /* store last allocated for subsequent stream allocation */
1307 if ((ac->ac_flags & EXT4_MB_HINT_DATA)) {
1308 spin_lock(&sbi->s_md_lock);
1309 sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
1310 sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
1311 spin_unlock(&sbi->s_md_lock);
1312 }
1313}
1314
1315/*
1316 * regular allocator, for general purposes allocation
1317 */
1318
1319static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
1320 struct ext4_buddy *e4b,
1321 int finish_group)
1322{
1323 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1324 struct ext4_free_extent *bex = &ac->ac_b_ex;
1325 struct ext4_free_extent *gex = &ac->ac_g_ex;
1326 struct ext4_free_extent ex;
1327 int max;
1328
1329 /*
1330 * We don't want to scan for a whole year
1331 */
1332 if (ac->ac_found > sbi->s_mb_max_to_scan &&
1333 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1334 ac->ac_status = AC_STATUS_BREAK;
1335 return;
1336 }
1337
1338 /*
1339 * Haven't found good chunk so far, let's continue
1340 */
1341 if (bex->fe_len < gex->fe_len)
1342 return;
1343
1344 if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
1345 && bex->fe_group == e4b->bd_group) {
1346 /* recheck chunk's availability - we don't know
1347 * when it was found (within this lock-unlock
1348 * period or not) */
1349 max = mb_find_extent(e4b, 0, bex->fe_start, gex->fe_len, &ex);
1350 if (max >= gex->fe_len) {
1351 ext4_mb_use_best_found(ac, e4b);
1352 return;
1353 }
1354 }
1355}
1356
1357/*
1358 * The routine checks whether found extent is good enough. If it is,
1359 * then the extent gets marked used and flag is set to the context
1360 * to stop scanning. Otherwise, the extent is compared with the
1361 * previous found extent and if new one is better, then it's stored
1362 * in the context. Later, the best found extent will be used, if
1363 * mballoc can't find good enough extent.
1364 *
1365 * FIXME: real allocation policy is to be designed yet!
1366 */
1367static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
1368 struct ext4_free_extent *ex,
1369 struct ext4_buddy *e4b)
1370{
1371 struct ext4_free_extent *bex = &ac->ac_b_ex;
1372 struct ext4_free_extent *gex = &ac->ac_g_ex;
1373
1374 BUG_ON(ex->fe_len <= 0);
1375 BUG_ON(ex->fe_len >= EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
1376 BUG_ON(ex->fe_start >= EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
1377 BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
1378
1379 ac->ac_found++;
1380
1381 /*
1382 * The special case - take what you catch first
1383 */
1384 if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1385 *bex = *ex;
1386 ext4_mb_use_best_found(ac, e4b);
1387 return;
1388 }
1389
1390 /*
1391 * Let's check whether the chuck is good enough
1392 */
1393 if (ex->fe_len == gex->fe_len) {
1394 *bex = *ex;
1395 ext4_mb_use_best_found(ac, e4b);
1396 return;
1397 }
1398
1399 /*
1400 * If this is first found extent, just store it in the context
1401 */
1402 if (bex->fe_len == 0) {
1403 *bex = *ex;
1404 return;
1405 }
1406
1407 /*
1408 * If new found extent is better, store it in the context
1409 */
1410 if (bex->fe_len < gex->fe_len) {
1411 /* if the request isn't satisfied, any found extent
1412 * larger than previous best one is better */
1413 if (ex->fe_len > bex->fe_len)
1414 *bex = *ex;
1415 } else if (ex->fe_len > gex->fe_len) {
1416 /* if the request is satisfied, then we try to find
1417 * an extent that still satisfy the request, but is
1418 * smaller than previous one */
1419 if (ex->fe_len < bex->fe_len)
1420 *bex = *ex;
1421 }
1422
1423 ext4_mb_check_limits(ac, e4b, 0);
1424}
1425
1426static int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
1427 struct ext4_buddy *e4b)
1428{
1429 struct ext4_free_extent ex = ac->ac_b_ex;
1430 ext4_group_t group = ex.fe_group;
1431 int max;
1432 int err;
1433
1434 BUG_ON(ex.fe_len <= 0);
1435 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1436 if (err)
1437 return err;
1438
1439 ext4_lock_group(ac->ac_sb, group);
1440 max = mb_find_extent(e4b, 0, ex.fe_start, ex.fe_len, &ex);
1441
1442 if (max > 0) {
1443 ac->ac_b_ex = ex;
1444 ext4_mb_use_best_found(ac, e4b);
1445 }
1446
1447 ext4_unlock_group(ac->ac_sb, group);
1448 ext4_mb_release_desc(e4b);
1449
1450 return 0;
1451}
1452
1453static int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
1454 struct ext4_buddy *e4b)
1455{
1456 ext4_group_t group = ac->ac_g_ex.fe_group;
1457 int max;
1458 int err;
1459 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1460 struct ext4_super_block *es = sbi->s_es;
1461 struct ext4_free_extent ex;
1462
1463 if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
1464 return 0;
1465
1466 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1467 if (err)
1468 return err;
1469
1470 ext4_lock_group(ac->ac_sb, group);
1471 max = mb_find_extent(e4b, 0, ac->ac_g_ex.fe_start,
1472 ac->ac_g_ex.fe_len, &ex);
1473
1474 if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
1475 ext4_fsblk_t start;
1476
1477 start = (e4b->bd_group * EXT4_BLOCKS_PER_GROUP(ac->ac_sb)) +
1478 ex.fe_start + le32_to_cpu(es->s_first_data_block);
1479 /* use do_div to get remainder (would be 64-bit modulo) */
1480 if (do_div(start, sbi->s_stripe) == 0) {
1481 ac->ac_found++;
1482 ac->ac_b_ex = ex;
1483 ext4_mb_use_best_found(ac, e4b);
1484 }
1485 } else if (max >= ac->ac_g_ex.fe_len) {
1486 BUG_ON(ex.fe_len <= 0);
1487 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1488 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1489 ac->ac_found++;
1490 ac->ac_b_ex = ex;
1491 ext4_mb_use_best_found(ac, e4b);
1492 } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
1493 /* Sometimes, caller may want to merge even small
1494 * number of blocks to an existing extent */
1495 BUG_ON(ex.fe_len <= 0);
1496 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1497 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1498 ac->ac_found++;
1499 ac->ac_b_ex = ex;
1500 ext4_mb_use_best_found(ac, e4b);
1501 }
1502 ext4_unlock_group(ac->ac_sb, group);
1503 ext4_mb_release_desc(e4b);
1504
1505 return 0;
1506}
1507
1508/*
1509 * The routine scans buddy structures (not bitmap!) from given order
1510 * to max order and tries to find big enough chunk to satisfy the req
1511 */
1512static void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
1513 struct ext4_buddy *e4b)
1514{
1515 struct super_block *sb = ac->ac_sb;
1516 struct ext4_group_info *grp = e4b->bd_info;
1517 void *buddy;
1518 int i;
1519 int k;
1520 int max;
1521
1522 BUG_ON(ac->ac_2order <= 0);
1523 for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
1524 if (grp->bb_counters[i] == 0)
1525 continue;
1526
1527 buddy = mb_find_buddy(e4b, i, &max);
1528 BUG_ON(buddy == NULL);
1529
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001530 k = mb_find_next_zero_bit(buddy, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001531 BUG_ON(k >= max);
1532
1533 ac->ac_found++;
1534
1535 ac->ac_b_ex.fe_len = 1 << i;
1536 ac->ac_b_ex.fe_start = k << i;
1537 ac->ac_b_ex.fe_group = e4b->bd_group;
1538
1539 ext4_mb_use_best_found(ac, e4b);
1540
1541 BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
1542
1543 if (EXT4_SB(sb)->s_mb_stats)
1544 atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
1545
1546 break;
1547 }
1548}
1549
1550/*
1551 * The routine scans the group and measures all found extents.
1552 * In order to optimize scanning, caller must pass number of
1553 * free blocks in the group, so the routine can know upper limit.
1554 */
1555static void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
1556 struct ext4_buddy *e4b)
1557{
1558 struct super_block *sb = ac->ac_sb;
1559 void *bitmap = EXT4_MB_BITMAP(e4b);
1560 struct ext4_free_extent ex;
1561 int i;
1562 int free;
1563
1564 free = e4b->bd_info->bb_free;
1565 BUG_ON(free <= 0);
1566
1567 i = e4b->bd_info->bb_first_free;
1568
1569 while (free && ac->ac_status == AC_STATUS_CONTINUE) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001570 i = mb_find_next_zero_bit(bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05001571 EXT4_BLOCKS_PER_GROUP(sb), i);
1572 if (i >= EXT4_BLOCKS_PER_GROUP(sb)) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001573 /*
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001574 * IF we have corrupt bitmap, we won't find any
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001575 * free blocks even though group info says we
1576 * we have free blocks
1577 */
Harvey Harrison46e665e2008-04-17 10:38:59 -04001578 ext4_error(sb, __func__, "%d free blocks as per "
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001579 "group info. But bitmap says 0\n",
1580 free);
Alex Tomasc9de5602008-01-29 00:19:52 -05001581 break;
1582 }
1583
1584 mb_find_extent(e4b, 0, i, ac->ac_g_ex.fe_len, &ex);
1585 BUG_ON(ex.fe_len <= 0);
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001586 if (free < ex.fe_len) {
Harvey Harrison46e665e2008-04-17 10:38:59 -04001587 ext4_error(sb, __func__, "%d free blocks as per "
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001588 "group info. But got %d blocks\n",
1589 free, ex.fe_len);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001590 /*
1591 * The number of free blocks differs. This mostly
1592 * indicate that the bitmap is corrupt. So exit
1593 * without claiming the space.
1594 */
1595 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001596 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001597
1598 ext4_mb_measure_extent(ac, &ex, e4b);
1599
1600 i += ex.fe_len;
1601 free -= ex.fe_len;
1602 }
1603
1604 ext4_mb_check_limits(ac, e4b, 1);
1605}
1606
1607/*
1608 * This is a special case for storages like raid5
1609 * we try to find stripe-aligned chunks for stripe-size requests
1610 * XXX should do so at least for multiples of stripe size as well
1611 */
1612static void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
1613 struct ext4_buddy *e4b)
1614{
1615 struct super_block *sb = ac->ac_sb;
1616 struct ext4_sb_info *sbi = EXT4_SB(sb);
1617 void *bitmap = EXT4_MB_BITMAP(e4b);
1618 struct ext4_free_extent ex;
1619 ext4_fsblk_t first_group_block;
1620 ext4_fsblk_t a;
1621 ext4_grpblk_t i;
1622 int max;
1623
1624 BUG_ON(sbi->s_stripe == 0);
1625
1626 /* find first stripe-aligned block in group */
1627 first_group_block = e4b->bd_group * EXT4_BLOCKS_PER_GROUP(sb)
1628 + le32_to_cpu(sbi->s_es->s_first_data_block);
1629 a = first_group_block + sbi->s_stripe - 1;
1630 do_div(a, sbi->s_stripe);
1631 i = (a * sbi->s_stripe) - first_group_block;
1632
1633 while (i < EXT4_BLOCKS_PER_GROUP(sb)) {
1634 if (!mb_test_bit(i, bitmap)) {
1635 max = mb_find_extent(e4b, 0, i, sbi->s_stripe, &ex);
1636 if (max >= sbi->s_stripe) {
1637 ac->ac_found++;
1638 ac->ac_b_ex = ex;
1639 ext4_mb_use_best_found(ac, e4b);
1640 break;
1641 }
1642 }
1643 i += sbi->s_stripe;
1644 }
1645}
1646
1647static int ext4_mb_good_group(struct ext4_allocation_context *ac,
1648 ext4_group_t group, int cr)
1649{
1650 unsigned free, fragments;
1651 unsigned i, bits;
1652 struct ext4_group_desc *desc;
1653 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
1654
1655 BUG_ON(cr < 0 || cr >= 4);
1656 BUG_ON(EXT4_MB_GRP_NEED_INIT(grp));
1657
1658 free = grp->bb_free;
1659 fragments = grp->bb_fragments;
1660 if (free == 0)
1661 return 0;
1662 if (fragments == 0)
1663 return 0;
1664
1665 switch (cr) {
1666 case 0:
1667 BUG_ON(ac->ac_2order == 0);
1668 /* If this group is uninitialized, skip it initially */
1669 desc = ext4_get_group_desc(ac->ac_sb, group, NULL);
1670 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))
1671 return 0;
1672
1673 bits = ac->ac_sb->s_blocksize_bits + 1;
1674 for (i = ac->ac_2order; i <= bits; i++)
1675 if (grp->bb_counters[i] > 0)
1676 return 1;
1677 break;
1678 case 1:
1679 if ((free / fragments) >= ac->ac_g_ex.fe_len)
1680 return 1;
1681 break;
1682 case 2:
1683 if (free >= ac->ac_g_ex.fe_len)
1684 return 1;
1685 break;
1686 case 3:
1687 return 1;
1688 default:
1689 BUG();
1690 }
1691
1692 return 0;
1693}
1694
Eric Sandeen4ddfef72008-04-29 08:11:12 -04001695static noinline_for_stack int
1696ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05001697{
1698 ext4_group_t group;
1699 ext4_group_t i;
1700 int cr;
1701 int err = 0;
1702 int bsbits;
1703 struct ext4_sb_info *sbi;
1704 struct super_block *sb;
1705 struct ext4_buddy e4b;
1706 loff_t size, isize;
1707
1708 sb = ac->ac_sb;
1709 sbi = EXT4_SB(sb);
1710 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1711
1712 /* first, try the goal */
1713 err = ext4_mb_find_by_goal(ac, &e4b);
1714 if (err || ac->ac_status == AC_STATUS_FOUND)
1715 goto out;
1716
1717 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
1718 goto out;
1719
1720 /*
1721 * ac->ac2_order is set only if the fe_len is a power of 2
1722 * if ac2_order is set we also set criteria to 0 so that we
1723 * try exact allocation using buddy.
1724 */
1725 i = fls(ac->ac_g_ex.fe_len);
1726 ac->ac_2order = 0;
1727 /*
1728 * We search using buddy data only if the order of the request
1729 * is greater than equal to the sbi_s_mb_order2_reqs
1730 * You can tune it via /proc/fs/ext4/<partition>/order2_req
1731 */
1732 if (i >= sbi->s_mb_order2_reqs) {
1733 /*
1734 * This should tell if fe_len is exactly power of 2
1735 */
1736 if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
1737 ac->ac_2order = i - 1;
1738 }
1739
1740 bsbits = ac->ac_sb->s_blocksize_bits;
1741 /* if stream allocation is enabled, use global goal */
1742 size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len;
1743 isize = i_size_read(ac->ac_inode) >> bsbits;
1744 if (size < isize)
1745 size = isize;
1746
1747 if (size < sbi->s_mb_stream_request &&
1748 (ac->ac_flags & EXT4_MB_HINT_DATA)) {
1749 /* TBD: may be hot point */
1750 spin_lock(&sbi->s_md_lock);
1751 ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
1752 ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
1753 spin_unlock(&sbi->s_md_lock);
1754 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001755 /* Let's just scan groups to find more-less suitable blocks */
1756 cr = ac->ac_2order ? 0 : 1;
1757 /*
1758 * cr == 0 try to get exact allocation,
1759 * cr == 3 try to get anything
1760 */
1761repeat:
1762 for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
1763 ac->ac_criteria = cr;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04001764 /*
1765 * searching for the right group start
1766 * from the goal value specified
1767 */
1768 group = ac->ac_g_ex.fe_group;
1769
Alex Tomasc9de5602008-01-29 00:19:52 -05001770 for (i = 0; i < EXT4_SB(sb)->s_groups_count; group++, i++) {
1771 struct ext4_group_info *grp;
1772 struct ext4_group_desc *desc;
1773
1774 if (group == EXT4_SB(sb)->s_groups_count)
1775 group = 0;
1776
1777 /* quick check to skip empty groups */
1778 grp = ext4_get_group_info(ac->ac_sb, group);
1779 if (grp->bb_free == 0)
1780 continue;
1781
1782 /*
1783 * if the group is already init we check whether it is
1784 * a good group and if not we don't load the buddy
1785 */
1786 if (EXT4_MB_GRP_NEED_INIT(grp)) {
1787 /*
1788 * we need full data about the group
1789 * to make a good selection
1790 */
1791 err = ext4_mb_load_buddy(sb, group, &e4b);
1792 if (err)
1793 goto out;
1794 ext4_mb_release_desc(&e4b);
1795 }
1796
1797 /*
1798 * If the particular group doesn't satisfy our
1799 * criteria we continue with the next group
1800 */
1801 if (!ext4_mb_good_group(ac, group, cr))
1802 continue;
1803
1804 err = ext4_mb_load_buddy(sb, group, &e4b);
1805 if (err)
1806 goto out;
1807
1808 ext4_lock_group(sb, group);
1809 if (!ext4_mb_good_group(ac, group, cr)) {
1810 /* someone did allocation from this group */
1811 ext4_unlock_group(sb, group);
1812 ext4_mb_release_desc(&e4b);
1813 continue;
1814 }
1815
1816 ac->ac_groups_scanned++;
1817 desc = ext4_get_group_desc(sb, group, NULL);
1818 if (cr == 0 || (desc->bg_flags &
1819 cpu_to_le16(EXT4_BG_BLOCK_UNINIT) &&
1820 ac->ac_2order != 0))
1821 ext4_mb_simple_scan_group(ac, &e4b);
1822 else if (cr == 1 &&
1823 ac->ac_g_ex.fe_len == sbi->s_stripe)
1824 ext4_mb_scan_aligned(ac, &e4b);
1825 else
1826 ext4_mb_complex_scan_group(ac, &e4b);
1827
1828 ext4_unlock_group(sb, group);
1829 ext4_mb_release_desc(&e4b);
1830
1831 if (ac->ac_status != AC_STATUS_CONTINUE)
1832 break;
1833 }
1834 }
1835
1836 if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
1837 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1838 /*
1839 * We've been searching too long. Let's try to allocate
1840 * the best chunk we've found so far
1841 */
1842
1843 ext4_mb_try_best_found(ac, &e4b);
1844 if (ac->ac_status != AC_STATUS_FOUND) {
1845 /*
1846 * Someone more lucky has already allocated it.
1847 * The only thing we can do is just take first
1848 * found block(s)
1849 printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n");
1850 */
1851 ac->ac_b_ex.fe_group = 0;
1852 ac->ac_b_ex.fe_start = 0;
1853 ac->ac_b_ex.fe_len = 0;
1854 ac->ac_status = AC_STATUS_CONTINUE;
1855 ac->ac_flags |= EXT4_MB_HINT_FIRST;
1856 cr = 3;
1857 atomic_inc(&sbi->s_mb_lost_chunks);
1858 goto repeat;
1859 }
1860 }
1861out:
1862 return err;
1863}
1864
1865#ifdef EXT4_MB_HISTORY
1866struct ext4_mb_proc_session {
1867 struct ext4_mb_history *history;
1868 struct super_block *sb;
1869 int start;
1870 int max;
1871};
1872
1873static void *ext4_mb_history_skip_empty(struct ext4_mb_proc_session *s,
1874 struct ext4_mb_history *hs,
1875 int first)
1876{
1877 if (hs == s->history + s->max)
1878 hs = s->history;
1879 if (!first && hs == s->history + s->start)
1880 return NULL;
1881 while (hs->orig.fe_len == 0) {
1882 hs++;
1883 if (hs == s->history + s->max)
1884 hs = s->history;
1885 if (hs == s->history + s->start)
1886 return NULL;
1887 }
1888 return hs;
1889}
1890
1891static void *ext4_mb_seq_history_start(struct seq_file *seq, loff_t *pos)
1892{
1893 struct ext4_mb_proc_session *s = seq->private;
1894 struct ext4_mb_history *hs;
1895 int l = *pos;
1896
1897 if (l == 0)
1898 return SEQ_START_TOKEN;
1899 hs = ext4_mb_history_skip_empty(s, s->history + s->start, 1);
1900 if (!hs)
1901 return NULL;
1902 while (--l && (hs = ext4_mb_history_skip_empty(s, ++hs, 0)) != NULL);
1903 return hs;
1904}
1905
1906static void *ext4_mb_seq_history_next(struct seq_file *seq, void *v,
1907 loff_t *pos)
1908{
1909 struct ext4_mb_proc_session *s = seq->private;
1910 struct ext4_mb_history *hs = v;
1911
1912 ++*pos;
1913 if (v == SEQ_START_TOKEN)
1914 return ext4_mb_history_skip_empty(s, s->history + s->start, 1);
1915 else
1916 return ext4_mb_history_skip_empty(s, ++hs, 0);
1917}
1918
1919static int ext4_mb_seq_history_show(struct seq_file *seq, void *v)
1920{
1921 char buf[25], buf2[25], buf3[25], *fmt;
1922 struct ext4_mb_history *hs = v;
1923
1924 if (v == SEQ_START_TOKEN) {
1925 seq_printf(seq, "%-5s %-8s %-23s %-23s %-23s %-5s "
1926 "%-5s %-2s %-5s %-5s %-5s %-6s\n",
1927 "pid", "inode", "original", "goal", "result", "found",
1928 "grps", "cr", "flags", "merge", "tail", "broken");
1929 return 0;
1930 }
1931
1932 if (hs->op == EXT4_MB_HISTORY_ALLOC) {
1933 fmt = "%-5u %-8u %-23s %-23s %-23s %-5u %-5u %-2u "
1934 "%-5u %-5s %-5u %-6u\n";
1935 sprintf(buf2, "%lu/%d/%u@%u", hs->result.fe_group,
1936 hs->result.fe_start, hs->result.fe_len,
1937 hs->result.fe_logical);
1938 sprintf(buf, "%lu/%d/%u@%u", hs->orig.fe_group,
1939 hs->orig.fe_start, hs->orig.fe_len,
1940 hs->orig.fe_logical);
1941 sprintf(buf3, "%lu/%d/%u@%u", hs->goal.fe_group,
1942 hs->goal.fe_start, hs->goal.fe_len,
1943 hs->goal.fe_logical);
1944 seq_printf(seq, fmt, hs->pid, hs->ino, buf, buf3, buf2,
1945 hs->found, hs->groups, hs->cr, hs->flags,
1946 hs->merged ? "M" : "", hs->tail,
1947 hs->buddy ? 1 << hs->buddy : 0);
1948 } else if (hs->op == EXT4_MB_HISTORY_PREALLOC) {
1949 fmt = "%-5u %-8u %-23s %-23s %-23s\n";
1950 sprintf(buf2, "%lu/%d/%u@%u", hs->result.fe_group,
1951 hs->result.fe_start, hs->result.fe_len,
1952 hs->result.fe_logical);
1953 sprintf(buf, "%lu/%d/%u@%u", hs->orig.fe_group,
1954 hs->orig.fe_start, hs->orig.fe_len,
1955 hs->orig.fe_logical);
1956 seq_printf(seq, fmt, hs->pid, hs->ino, buf, "", buf2);
1957 } else if (hs->op == EXT4_MB_HISTORY_DISCARD) {
1958 sprintf(buf2, "%lu/%d/%u", hs->result.fe_group,
1959 hs->result.fe_start, hs->result.fe_len);
1960 seq_printf(seq, "%-5u %-8u %-23s discard\n",
1961 hs->pid, hs->ino, buf2);
1962 } else if (hs->op == EXT4_MB_HISTORY_FREE) {
1963 sprintf(buf2, "%lu/%d/%u", hs->result.fe_group,
1964 hs->result.fe_start, hs->result.fe_len);
1965 seq_printf(seq, "%-5u %-8u %-23s free\n",
1966 hs->pid, hs->ino, buf2);
1967 }
1968 return 0;
1969}
1970
1971static void ext4_mb_seq_history_stop(struct seq_file *seq, void *v)
1972{
1973}
1974
1975static struct seq_operations ext4_mb_seq_history_ops = {
1976 .start = ext4_mb_seq_history_start,
1977 .next = ext4_mb_seq_history_next,
1978 .stop = ext4_mb_seq_history_stop,
1979 .show = ext4_mb_seq_history_show,
1980};
1981
1982static int ext4_mb_seq_history_open(struct inode *inode, struct file *file)
1983{
1984 struct super_block *sb = PDE(inode)->data;
1985 struct ext4_sb_info *sbi = EXT4_SB(sb);
1986 struct ext4_mb_proc_session *s;
1987 int rc;
1988 int size;
1989
Shen Feng74767c52008-07-11 19:27:31 -04001990 if (unlikely(sbi->s_mb_history == NULL))
1991 return -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -05001992 s = kmalloc(sizeof(*s), GFP_KERNEL);
1993 if (s == NULL)
1994 return -ENOMEM;
1995 s->sb = sb;
1996 size = sizeof(struct ext4_mb_history) * sbi->s_mb_history_max;
1997 s->history = kmalloc(size, GFP_KERNEL);
1998 if (s->history == NULL) {
1999 kfree(s);
2000 return -ENOMEM;
2001 }
2002
2003 spin_lock(&sbi->s_mb_history_lock);
2004 memcpy(s->history, sbi->s_mb_history, size);
2005 s->max = sbi->s_mb_history_max;
2006 s->start = sbi->s_mb_history_cur % s->max;
2007 spin_unlock(&sbi->s_mb_history_lock);
2008
2009 rc = seq_open(file, &ext4_mb_seq_history_ops);
2010 if (rc == 0) {
2011 struct seq_file *m = (struct seq_file *)file->private_data;
2012 m->private = s;
2013 } else {
2014 kfree(s->history);
2015 kfree(s);
2016 }
2017 return rc;
2018
2019}
2020
2021static int ext4_mb_seq_history_release(struct inode *inode, struct file *file)
2022{
2023 struct seq_file *seq = (struct seq_file *)file->private_data;
2024 struct ext4_mb_proc_session *s = seq->private;
2025 kfree(s->history);
2026 kfree(s);
2027 return seq_release(inode, file);
2028}
2029
2030static ssize_t ext4_mb_seq_history_write(struct file *file,
2031 const char __user *buffer,
2032 size_t count, loff_t *ppos)
2033{
2034 struct seq_file *seq = (struct seq_file *)file->private_data;
2035 struct ext4_mb_proc_session *s = seq->private;
2036 struct super_block *sb = s->sb;
2037 char str[32];
2038 int value;
2039
2040 if (count >= sizeof(str)) {
2041 printk(KERN_ERR "EXT4-fs: %s string too long, max %u bytes\n",
2042 "mb_history", (int)sizeof(str));
2043 return -EOVERFLOW;
2044 }
2045
2046 if (copy_from_user(str, buffer, count))
2047 return -EFAULT;
2048
2049 value = simple_strtol(str, NULL, 0);
2050 if (value < 0)
2051 return -ERANGE;
2052 EXT4_SB(sb)->s_mb_history_filter = value;
2053
2054 return count;
2055}
2056
2057static struct file_operations ext4_mb_seq_history_fops = {
2058 .owner = THIS_MODULE,
2059 .open = ext4_mb_seq_history_open,
2060 .read = seq_read,
2061 .write = ext4_mb_seq_history_write,
2062 .llseek = seq_lseek,
2063 .release = ext4_mb_seq_history_release,
2064};
2065
2066static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2067{
2068 struct super_block *sb = seq->private;
2069 struct ext4_sb_info *sbi = EXT4_SB(sb);
2070 ext4_group_t group;
2071
2072 if (*pos < 0 || *pos >= sbi->s_groups_count)
2073 return NULL;
2074
2075 group = *pos + 1;
2076 return (void *) group;
2077}
2078
2079static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2080{
2081 struct super_block *sb = seq->private;
2082 struct ext4_sb_info *sbi = EXT4_SB(sb);
2083 ext4_group_t group;
2084
2085 ++*pos;
2086 if (*pos < 0 || *pos >= sbi->s_groups_count)
2087 return NULL;
2088 group = *pos + 1;
2089 return (void *) group;;
2090}
2091
2092static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2093{
2094 struct super_block *sb = seq->private;
2095 long group = (long) v;
2096 int i;
2097 int err;
2098 struct ext4_buddy e4b;
2099 struct sg {
2100 struct ext4_group_info info;
2101 unsigned short counters[16];
2102 } sg;
2103
2104 group--;
2105 if (group == 0)
2106 seq_printf(seq, "#%-5s: %-5s %-5s %-5s "
2107 "[ %-5s %-5s %-5s %-5s %-5s %-5s %-5s "
2108 "%-5s %-5s %-5s %-5s %-5s %-5s %-5s ]\n",
2109 "group", "free", "frags", "first",
2110 "2^0", "2^1", "2^2", "2^3", "2^4", "2^5", "2^6",
2111 "2^7", "2^8", "2^9", "2^10", "2^11", "2^12", "2^13");
2112
2113 i = (sb->s_blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2114 sizeof(struct ext4_group_info);
2115 err = ext4_mb_load_buddy(sb, group, &e4b);
2116 if (err) {
2117 seq_printf(seq, "#%-5lu: I/O error\n", group);
2118 return 0;
2119 }
2120 ext4_lock_group(sb, group);
2121 memcpy(&sg, ext4_get_group_info(sb, group), i);
2122 ext4_unlock_group(sb, group);
2123 ext4_mb_release_desc(&e4b);
2124
2125 seq_printf(seq, "#%-5lu: %-5u %-5u %-5u [", group, sg.info.bb_free,
2126 sg.info.bb_fragments, sg.info.bb_first_free);
2127 for (i = 0; i <= 13; i++)
2128 seq_printf(seq, " %-5u", i <= sb->s_blocksize_bits + 1 ?
2129 sg.info.bb_counters[i] : 0);
2130 seq_printf(seq, " ]\n");
2131
2132 return 0;
2133}
2134
2135static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2136{
2137}
2138
2139static struct seq_operations ext4_mb_seq_groups_ops = {
2140 .start = ext4_mb_seq_groups_start,
2141 .next = ext4_mb_seq_groups_next,
2142 .stop = ext4_mb_seq_groups_stop,
2143 .show = ext4_mb_seq_groups_show,
2144};
2145
2146static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)
2147{
2148 struct super_block *sb = PDE(inode)->data;
2149 int rc;
2150
2151 rc = seq_open(file, &ext4_mb_seq_groups_ops);
2152 if (rc == 0) {
2153 struct seq_file *m = (struct seq_file *)file->private_data;
2154 m->private = sb;
2155 }
2156 return rc;
2157
2158}
2159
2160static struct file_operations ext4_mb_seq_groups_fops = {
2161 .owner = THIS_MODULE,
2162 .open = ext4_mb_seq_groups_open,
2163 .read = seq_read,
2164 .llseek = seq_lseek,
2165 .release = seq_release,
2166};
2167
2168static void ext4_mb_history_release(struct super_block *sb)
2169{
2170 struct ext4_sb_info *sbi = EXT4_SB(sb);
2171
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002172 if (sbi->s_proc != NULL) {
2173 remove_proc_entry("mb_groups", sbi->s_proc);
2174 remove_proc_entry("mb_history", sbi->s_proc);
2175 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002176 kfree(sbi->s_mb_history);
2177}
2178
2179static void ext4_mb_history_init(struct super_block *sb)
2180{
2181 struct ext4_sb_info *sbi = EXT4_SB(sb);
2182 int i;
2183
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002184 if (sbi->s_proc != NULL) {
2185 proc_create_data("mb_history", S_IRUGO, sbi->s_proc,
Denis V. Lunev46fe74f2008-04-29 01:02:08 -07002186 &ext4_mb_seq_history_fops, sb);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002187 proc_create_data("mb_groups", S_IRUGO, sbi->s_proc,
Denis V. Lunev46fe74f2008-04-29 01:02:08 -07002188 &ext4_mb_seq_groups_fops, sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002189 }
2190
2191 sbi->s_mb_history_max = 1000;
2192 sbi->s_mb_history_cur = 0;
2193 spin_lock_init(&sbi->s_mb_history_lock);
2194 i = sbi->s_mb_history_max * sizeof(struct ext4_mb_history);
Shen Feng74767c52008-07-11 19:27:31 -04002195 sbi->s_mb_history = kzalloc(i, GFP_KERNEL);
Alex Tomasc9de5602008-01-29 00:19:52 -05002196 /* if we can't allocate history, then we simple won't use it */
2197}
2198
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002199static noinline_for_stack void
2200ext4_mb_store_history(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05002201{
2202 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
2203 struct ext4_mb_history h;
2204
2205 if (unlikely(sbi->s_mb_history == NULL))
2206 return;
2207
2208 if (!(ac->ac_op & sbi->s_mb_history_filter))
2209 return;
2210
2211 h.op = ac->ac_op;
2212 h.pid = current->pid;
2213 h.ino = ac->ac_inode ? ac->ac_inode->i_ino : 0;
2214 h.orig = ac->ac_o_ex;
2215 h.result = ac->ac_b_ex;
2216 h.flags = ac->ac_flags;
2217 h.found = ac->ac_found;
2218 h.groups = ac->ac_groups_scanned;
2219 h.cr = ac->ac_criteria;
2220 h.tail = ac->ac_tail;
2221 h.buddy = ac->ac_buddy;
2222 h.merged = 0;
2223 if (ac->ac_op == EXT4_MB_HISTORY_ALLOC) {
2224 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
2225 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
2226 h.merged = 1;
2227 h.goal = ac->ac_g_ex;
2228 h.result = ac->ac_f_ex;
2229 }
2230
2231 spin_lock(&sbi->s_mb_history_lock);
2232 memcpy(sbi->s_mb_history + sbi->s_mb_history_cur, &h, sizeof(h));
2233 if (++sbi->s_mb_history_cur >= sbi->s_mb_history_max)
2234 sbi->s_mb_history_cur = 0;
2235 spin_unlock(&sbi->s_mb_history_lock);
2236}
2237
2238#else
2239#define ext4_mb_history_release(sb)
2240#define ext4_mb_history_init(sb)
2241#endif
2242
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002243
2244/* Create and initialize ext4_group_info data for the given group. */
2245int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
2246 struct ext4_group_desc *desc)
2247{
2248 int i, len;
2249 int metalen = 0;
2250 struct ext4_sb_info *sbi = EXT4_SB(sb);
2251 struct ext4_group_info **meta_group_info;
2252
2253 /*
2254 * First check if this group is the first of a reserved block.
2255 * If it's true, we have to allocate a new table of pointers
2256 * to ext4_group_info structures
2257 */
2258 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
2259 metalen = sizeof(*meta_group_info) <<
2260 EXT4_DESC_PER_BLOCK_BITS(sb);
2261 meta_group_info = kmalloc(metalen, GFP_KERNEL);
2262 if (meta_group_info == NULL) {
2263 printk(KERN_ERR "EXT4-fs: can't allocate mem for a "
2264 "buddy group\n");
2265 goto exit_meta_group_info;
2266 }
2267 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] =
2268 meta_group_info;
2269 }
2270
2271 /*
2272 * calculate needed size. if change bb_counters size,
2273 * don't forget about ext4_mb_generate_buddy()
2274 */
2275 len = offsetof(typeof(**meta_group_info),
2276 bb_counters[sb->s_blocksize_bits + 2]);
2277
2278 meta_group_info =
2279 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)];
2280 i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
2281
2282 meta_group_info[i] = kzalloc(len, GFP_KERNEL);
2283 if (meta_group_info[i] == NULL) {
2284 printk(KERN_ERR "EXT4-fs: can't allocate buddy mem\n");
2285 goto exit_group_info;
2286 }
2287 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
2288 &(meta_group_info[i]->bb_state));
2289
2290 /*
2291 * initialize bb_free to be able to skip
2292 * empty groups without initialization
2293 */
2294 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2295 meta_group_info[i]->bb_free =
2296 ext4_free_blocks_after_init(sb, group, desc);
2297 } else {
2298 meta_group_info[i]->bb_free =
2299 le16_to_cpu(desc->bg_free_blocks_count);
2300 }
2301
2302 INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002303 meta_group_info[i]->bb_free_root.rb_node = NULL;;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002304
2305#ifdef DOUBLE_CHECK
2306 {
2307 struct buffer_head *bh;
2308 meta_group_info[i]->bb_bitmap =
2309 kmalloc(sb->s_blocksize, GFP_KERNEL);
2310 BUG_ON(meta_group_info[i]->bb_bitmap == NULL);
2311 bh = ext4_read_block_bitmap(sb, group);
2312 BUG_ON(bh == NULL);
2313 memcpy(meta_group_info[i]->bb_bitmap, bh->b_data,
2314 sb->s_blocksize);
2315 put_bh(bh);
2316 }
2317#endif
2318
2319 return 0;
2320
2321exit_group_info:
2322 /* If a meta_group_info table has been allocated, release it now */
2323 if (group % EXT4_DESC_PER_BLOCK(sb) == 0)
2324 kfree(sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)]);
2325exit_meta_group_info:
2326 return -ENOMEM;
2327} /* ext4_mb_add_groupinfo */
2328
2329/*
2330 * Add a group to the existing groups.
2331 * This function is used for online resize
2332 */
2333int ext4_mb_add_more_groupinfo(struct super_block *sb, ext4_group_t group,
2334 struct ext4_group_desc *desc)
2335{
2336 struct ext4_sb_info *sbi = EXT4_SB(sb);
2337 struct inode *inode = sbi->s_buddy_cache;
2338 int blocks_per_page;
2339 int block;
2340 int pnum;
2341 struct page *page;
2342 int err;
2343
2344 /* Add group based on group descriptor*/
2345 err = ext4_mb_add_groupinfo(sb, group, desc);
2346 if (err)
2347 return err;
2348
2349 /*
2350 * Cache pages containing dynamic mb_alloc datas (buddy and bitmap
2351 * datas) are set not up to date so that they will be re-initilaized
2352 * during the next call to ext4_mb_load_buddy
2353 */
2354
2355 /* Set buddy page as not up to date */
2356 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
2357 block = group * 2;
2358 pnum = block / blocks_per_page;
2359 page = find_get_page(inode->i_mapping, pnum);
2360 if (page != NULL) {
2361 ClearPageUptodate(page);
2362 page_cache_release(page);
2363 }
2364
2365 /* Set bitmap page as not up to date */
2366 block++;
2367 pnum = block / blocks_per_page;
2368 page = find_get_page(inode->i_mapping, pnum);
2369 if (page != NULL) {
2370 ClearPageUptodate(page);
2371 page_cache_release(page);
2372 }
2373
2374 return 0;
2375}
2376
2377/*
2378 * Update an existing group.
2379 * This function is used for online resize
2380 */
2381void ext4_mb_update_group_info(struct ext4_group_info *grp, ext4_grpblk_t add)
2382{
2383 grp->bb_free += add;
2384}
2385
Alex Tomasc9de5602008-01-29 00:19:52 -05002386static int ext4_mb_init_backend(struct super_block *sb)
2387{
2388 ext4_group_t i;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002389 int metalen;
Alex Tomasc9de5602008-01-29 00:19:52 -05002390 struct ext4_sb_info *sbi = EXT4_SB(sb);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002391 struct ext4_super_block *es = sbi->s_es;
2392 int num_meta_group_infos;
2393 int num_meta_group_infos_max;
2394 int array_size;
Alex Tomasc9de5602008-01-29 00:19:52 -05002395 struct ext4_group_info **meta_group_info;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002396 struct ext4_group_desc *desc;
Alex Tomasc9de5602008-01-29 00:19:52 -05002397
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002398 /* This is the number of blocks used by GDT */
2399 num_meta_group_infos = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) -
2400 1) >> EXT4_DESC_PER_BLOCK_BITS(sb);
2401
2402 /*
2403 * This is the total number of blocks used by GDT including
2404 * the number of reserved blocks for GDT.
2405 * The s_group_info array is allocated with this value
2406 * to allow a clean online resize without a complex
2407 * manipulation of pointer.
2408 * The drawback is the unused memory when no resize
2409 * occurs but it's very low in terms of pages
2410 * (see comments below)
2411 * Need to handle this properly when META_BG resizing is allowed
2412 */
2413 num_meta_group_infos_max = num_meta_group_infos +
2414 le16_to_cpu(es->s_reserved_gdt_blocks);
2415
2416 /*
2417 * array_size is the size of s_group_info array. We round it
2418 * to the next power of two because this approximation is done
2419 * internally by kmalloc so we can have some more memory
2420 * for free here (e.g. may be used for META_BG resize).
2421 */
2422 array_size = 1;
2423 while (array_size < sizeof(*sbi->s_group_info) *
2424 num_meta_group_infos_max)
2425 array_size = array_size << 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002426 /* An 8TB filesystem with 64-bit pointers requires a 4096 byte
2427 * kmalloc. A 128kb malloc should suffice for a 256TB filesystem.
2428 * So a two level scheme suffices for now. */
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002429 sbi->s_group_info = kmalloc(array_size, GFP_KERNEL);
Alex Tomasc9de5602008-01-29 00:19:52 -05002430 if (sbi->s_group_info == NULL) {
2431 printk(KERN_ERR "EXT4-fs: can't allocate buddy meta group\n");
2432 return -ENOMEM;
2433 }
2434 sbi->s_buddy_cache = new_inode(sb);
2435 if (sbi->s_buddy_cache == NULL) {
2436 printk(KERN_ERR "EXT4-fs: can't get new inode\n");
2437 goto err_freesgi;
2438 }
2439 EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
2440
2441 metalen = sizeof(*meta_group_info) << EXT4_DESC_PER_BLOCK_BITS(sb);
2442 for (i = 0; i < num_meta_group_infos; i++) {
2443 if ((i + 1) == num_meta_group_infos)
2444 metalen = sizeof(*meta_group_info) *
2445 (sbi->s_groups_count -
2446 (i << EXT4_DESC_PER_BLOCK_BITS(sb)));
2447 meta_group_info = kmalloc(metalen, GFP_KERNEL);
2448 if (meta_group_info == NULL) {
2449 printk(KERN_ERR "EXT4-fs: can't allocate mem for a "
2450 "buddy group\n");
2451 goto err_freemeta;
2452 }
2453 sbi->s_group_info[i] = meta_group_info;
2454 }
2455
Alex Tomasc9de5602008-01-29 00:19:52 -05002456 for (i = 0; i < sbi->s_groups_count; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002457 desc = ext4_get_group_desc(sb, i, NULL);
2458 if (desc == NULL) {
2459 printk(KERN_ERR
2460 "EXT4-fs: can't read descriptor %lu\n", i);
2461 goto err_freebuddy;
2462 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002463 if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
2464 goto err_freebuddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05002465 }
2466
2467 return 0;
2468
2469err_freebuddy:
Roel Kluinf1fa3342008-04-29 22:01:15 -04002470 while (i-- > 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002471 kfree(ext4_get_group_info(sb, i));
Alex Tomasc9de5602008-01-29 00:19:52 -05002472 i = num_meta_group_infos;
2473err_freemeta:
Roel Kluinf1fa3342008-04-29 22:01:15 -04002474 while (i-- > 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002475 kfree(sbi->s_group_info[i]);
2476 iput(sbi->s_buddy_cache);
2477err_freesgi:
2478 kfree(sbi->s_group_info);
2479 return -ENOMEM;
2480}
2481
2482int ext4_mb_init(struct super_block *sb, int needs_recovery)
2483{
2484 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002485 unsigned i, j;
Alex Tomasc9de5602008-01-29 00:19:52 -05002486 unsigned offset;
2487 unsigned max;
Shen Feng74767c52008-07-11 19:27:31 -04002488 int ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002489
Alex Tomasc9de5602008-01-29 00:19:52 -05002490 i = (sb->s_blocksize_bits + 2) * sizeof(unsigned short);
2491
2492 sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
2493 if (sbi->s_mb_offsets == NULL) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002494 return -ENOMEM;
2495 }
2496 sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
2497 if (sbi->s_mb_maxs == NULL) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002498 kfree(sbi->s_mb_maxs);
2499 return -ENOMEM;
2500 }
2501
2502 /* order 0 is regular bitmap */
2503 sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
2504 sbi->s_mb_offsets[0] = 0;
2505
2506 i = 1;
2507 offset = 0;
2508 max = sb->s_blocksize << 2;
2509 do {
2510 sbi->s_mb_offsets[i] = offset;
2511 sbi->s_mb_maxs[i] = max;
2512 offset += 1 << (sb->s_blocksize_bits - i);
2513 max = max >> 1;
2514 i++;
2515 } while (i <= sb->s_blocksize_bits + 1);
2516
2517 /* init file for buddy data */
Shen Feng74767c52008-07-11 19:27:31 -04002518 ret = ext4_mb_init_backend(sb);
2519 if (ret != 0) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002520 kfree(sbi->s_mb_offsets);
2521 kfree(sbi->s_mb_maxs);
Shen Feng74767c52008-07-11 19:27:31 -04002522 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002523 }
2524
2525 spin_lock_init(&sbi->s_md_lock);
2526 INIT_LIST_HEAD(&sbi->s_active_transaction);
2527 INIT_LIST_HEAD(&sbi->s_closed_transaction);
2528 INIT_LIST_HEAD(&sbi->s_committed_transaction);
2529 spin_lock_init(&sbi->s_bal_lock);
2530
2531 sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
2532 sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
2533 sbi->s_mb_stats = MB_DEFAULT_STATS;
2534 sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
2535 sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
2536 sbi->s_mb_history_filter = EXT4_MB_HISTORY_DEFAULT;
2537 sbi->s_mb_group_prealloc = MB_DEFAULT_GROUP_PREALLOC;
2538
Eric Sandeen730c2132008-09-13 15:23:29 -04002539 sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002540 if (sbi->s_locality_groups == NULL) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002541 kfree(sbi->s_mb_offsets);
2542 kfree(sbi->s_mb_maxs);
2543 return -ENOMEM;
2544 }
Eric Sandeen730c2132008-09-13 15:23:29 -04002545 for_each_possible_cpu(i) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002546 struct ext4_locality_group *lg;
Eric Sandeen730c2132008-09-13 15:23:29 -04002547 lg = per_cpu_ptr(sbi->s_locality_groups, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002548 mutex_init(&lg->lg_mutex);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002549 for (j = 0; j < PREALLOC_TB_SIZE; j++)
2550 INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
Alex Tomasc9de5602008-01-29 00:19:52 -05002551 spin_lock_init(&lg->lg_prealloc_lock);
2552 }
2553
2554 ext4_mb_init_per_dev_proc(sb);
2555 ext4_mb_history_init(sb);
2556
Theodore Ts'o47760042008-09-08 23:00:52 -04002557 printk(KERN_INFO "EXT4-fs: mballoc enabled\n");
Alex Tomasc9de5602008-01-29 00:19:52 -05002558 return 0;
2559}
2560
2561/* need to called with ext4 group lock (ext4_lock_group) */
2562static void ext4_mb_cleanup_pa(struct ext4_group_info *grp)
2563{
2564 struct ext4_prealloc_space *pa;
2565 struct list_head *cur, *tmp;
2566 int count = 0;
2567
2568 list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
2569 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
2570 list_del(&pa->pa_group_list);
2571 count++;
Aneesh Kumar K.V688f05a2008-10-13 12:14:14 -04002572 kmem_cache_free(ext4_pspace_cachep, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05002573 }
2574 if (count)
2575 mb_debug("mballoc: %u PAs left\n", count);
2576
2577}
2578
2579int ext4_mb_release(struct super_block *sb)
2580{
2581 ext4_group_t i;
2582 int num_meta_group_infos;
2583 struct ext4_group_info *grinfo;
2584 struct ext4_sb_info *sbi = EXT4_SB(sb);
2585
Alex Tomasc9de5602008-01-29 00:19:52 -05002586 /* release freed, non-committed blocks */
2587 spin_lock(&sbi->s_md_lock);
2588 list_splice_init(&sbi->s_closed_transaction,
2589 &sbi->s_committed_transaction);
2590 list_splice_init(&sbi->s_active_transaction,
2591 &sbi->s_committed_transaction);
2592 spin_unlock(&sbi->s_md_lock);
2593 ext4_mb_free_committed_blocks(sb);
2594
2595 if (sbi->s_group_info) {
2596 for (i = 0; i < sbi->s_groups_count; i++) {
2597 grinfo = ext4_get_group_info(sb, i);
2598#ifdef DOUBLE_CHECK
2599 kfree(grinfo->bb_bitmap);
2600#endif
2601 ext4_lock_group(sb, i);
2602 ext4_mb_cleanup_pa(grinfo);
2603 ext4_unlock_group(sb, i);
2604 kfree(grinfo);
2605 }
2606 num_meta_group_infos = (sbi->s_groups_count +
2607 EXT4_DESC_PER_BLOCK(sb) - 1) >>
2608 EXT4_DESC_PER_BLOCK_BITS(sb);
2609 for (i = 0; i < num_meta_group_infos; i++)
2610 kfree(sbi->s_group_info[i]);
2611 kfree(sbi->s_group_info);
2612 }
2613 kfree(sbi->s_mb_offsets);
2614 kfree(sbi->s_mb_maxs);
2615 if (sbi->s_buddy_cache)
2616 iput(sbi->s_buddy_cache);
2617 if (sbi->s_mb_stats) {
2618 printk(KERN_INFO
2619 "EXT4-fs: mballoc: %u blocks %u reqs (%u success)\n",
2620 atomic_read(&sbi->s_bal_allocated),
2621 atomic_read(&sbi->s_bal_reqs),
2622 atomic_read(&sbi->s_bal_success));
2623 printk(KERN_INFO
2624 "EXT4-fs: mballoc: %u extents scanned, %u goal hits, "
2625 "%u 2^N hits, %u breaks, %u lost\n",
2626 atomic_read(&sbi->s_bal_ex_scanned),
2627 atomic_read(&sbi->s_bal_goals),
2628 atomic_read(&sbi->s_bal_2orders),
2629 atomic_read(&sbi->s_bal_breaks),
2630 atomic_read(&sbi->s_mb_lost_chunks));
2631 printk(KERN_INFO
2632 "EXT4-fs: mballoc: %lu generated and it took %Lu\n",
2633 sbi->s_mb_buddies_generated++,
2634 sbi->s_mb_generation_time);
2635 printk(KERN_INFO
2636 "EXT4-fs: mballoc: %u preallocated, %u discarded\n",
2637 atomic_read(&sbi->s_mb_preallocated),
2638 atomic_read(&sbi->s_mb_discarded));
2639 }
2640
Eric Sandeen730c2132008-09-13 15:23:29 -04002641 free_percpu(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05002642 ext4_mb_history_release(sb);
2643 ext4_mb_destroy_per_dev_proc(sb);
2644
2645 return 0;
2646}
2647
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002648static noinline_for_stack void
2649ext4_mb_free_committed_blocks(struct super_block *sb)
Alex Tomasc9de5602008-01-29 00:19:52 -05002650{
Alex Tomasc9de5602008-01-29 00:19:52 -05002651 struct ext4_buddy e4b;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002652 struct ext4_group_info *db;
2653 struct ext4_sb_info *sbi = EXT4_SB(sb);
2654 int err, count = 0, count2 = 0;
2655 struct ext4_free_data *entry;
Theodore Ts'o8a0aba72008-10-16 10:06:27 -04002656 ext4_fsblk_t discard_block;
Alex Tomasc9de5602008-01-29 00:19:52 -05002657
2658 if (list_empty(&sbi->s_committed_transaction))
2659 return;
2660
2661 /* there is committed blocks to be freed yet */
2662 do {
2663 /* get next array of blocks */
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002664 entry = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002665 spin_lock(&sbi->s_md_lock);
2666 if (!list_empty(&sbi->s_committed_transaction)) {
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002667 entry = list_entry(sbi->s_committed_transaction.next,
2668 struct ext4_free_data, list);
2669 list_del(&entry->list);
Alex Tomasc9de5602008-01-29 00:19:52 -05002670 }
2671 spin_unlock(&sbi->s_md_lock);
2672
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002673 if (entry == NULL)
Alex Tomasc9de5602008-01-29 00:19:52 -05002674 break;
2675
2676 mb_debug("gonna free %u blocks in group %lu (0x%p):",
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002677 entry->count, entry->group, entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05002678
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002679 err = ext4_mb_load_buddy(sb, entry->group, &e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002680 /* we expect to find existing buddy because it's pinned */
2681 BUG_ON(err != 0);
2682
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002683 db = e4b.bd_info;
Alex Tomasc9de5602008-01-29 00:19:52 -05002684 /* there are blocks to put in buddy to make them really free */
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002685 count += entry->count;
Alex Tomasc9de5602008-01-29 00:19:52 -05002686 count2++;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002687 ext4_lock_group(sb, entry->group);
2688 /* Take it out of per group rb tree */
2689 rb_erase(&entry->node, &(db->bb_free_root));
2690 mb_free_blocks(NULL, &e4b, entry->start_blk, entry->count);
2691
2692 if (!db->bb_free_root.rb_node) {
2693 /* No more items in the per group rb tree
2694 * balance refcounts from ext4_mb_free_metadata()
2695 */
2696 page_cache_release(e4b.bd_buddy_page);
2697 page_cache_release(e4b.bd_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05002698 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002699 ext4_unlock_group(sb, entry->group);
Theodore Ts'o8a0aba72008-10-16 10:06:27 -04002700 discard_block = (ext4_fsblk_t) entry->group * EXT4_BLOCKS_PER_GROUP(sb)
2701 + entry->start_blk
2702 + le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
2703 trace_mark(ext4_discard_blocks, "dev %s blk %llu count %u", sb->s_id,
2704 (unsigned long long) discard_block, entry->count);
2705 sb_issue_discard(sb, discard_block, entry->count);
Alex Tomasc9de5602008-01-29 00:19:52 -05002706
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002707 kmem_cache_free(ext4_free_ext_cachep, entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05002708 ext4_mb_release_desc(&e4b);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002709 } while (1);
Alex Tomasc9de5602008-01-29 00:19:52 -05002710
2711 mb_debug("freed %u blocks in %u structures\n", count, count2);
2712}
2713
Alex Tomasc9de5602008-01-29 00:19:52 -05002714#define EXT4_MB_STATS_NAME "stats"
2715#define EXT4_MB_MAX_TO_SCAN_NAME "max_to_scan"
2716#define EXT4_MB_MIN_TO_SCAN_NAME "min_to_scan"
2717#define EXT4_MB_ORDER2_REQ "order2_req"
2718#define EXT4_MB_STREAM_REQ "stream_req"
2719#define EXT4_MB_GROUP_PREALLOC "group_prealloc"
2720
Alex Tomasc9de5602008-01-29 00:19:52 -05002721static int ext4_mb_init_per_dev_proc(struct super_block *sb)
2722{
2723 mode_t mode = S_IFREG | S_IRUGO | S_IWUSR;
2724 struct ext4_sb_info *sbi = EXT4_SB(sb);
2725 struct proc_dir_entry *proc;
Alex Tomasc9de5602008-01-29 00:19:52 -05002726
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002727 if (sbi->s_proc == NULL)
Shen Fengcfbe7e42008-07-13 21:03:31 -04002728 return -EINVAL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002729
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04002730 EXT4_PROC_HANDLER(EXT4_MB_STATS_NAME, mb_stats);
2731 EXT4_PROC_HANDLER(EXT4_MB_MAX_TO_SCAN_NAME, mb_max_to_scan);
2732 EXT4_PROC_HANDLER(EXT4_MB_MIN_TO_SCAN_NAME, mb_min_to_scan);
2733 EXT4_PROC_HANDLER(EXT4_MB_ORDER2_REQ, mb_order2_reqs);
2734 EXT4_PROC_HANDLER(EXT4_MB_STREAM_REQ, mb_stream_request);
2735 EXT4_PROC_HANDLER(EXT4_MB_GROUP_PREALLOC, mb_group_prealloc);
Alex Tomasc9de5602008-01-29 00:19:52 -05002736 return 0;
2737
2738err_out:
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002739 remove_proc_entry(EXT4_MB_GROUP_PREALLOC, sbi->s_proc);
2740 remove_proc_entry(EXT4_MB_STREAM_REQ, sbi->s_proc);
2741 remove_proc_entry(EXT4_MB_ORDER2_REQ, sbi->s_proc);
2742 remove_proc_entry(EXT4_MB_MIN_TO_SCAN_NAME, sbi->s_proc);
2743 remove_proc_entry(EXT4_MB_MAX_TO_SCAN_NAME, sbi->s_proc);
2744 remove_proc_entry(EXT4_MB_STATS_NAME, sbi->s_proc);
Alex Tomasc9de5602008-01-29 00:19:52 -05002745 return -ENOMEM;
2746}
2747
2748static int ext4_mb_destroy_per_dev_proc(struct super_block *sb)
2749{
2750 struct ext4_sb_info *sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002751
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002752 if (sbi->s_proc == NULL)
Alex Tomasc9de5602008-01-29 00:19:52 -05002753 return -EINVAL;
2754
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002755 remove_proc_entry(EXT4_MB_GROUP_PREALLOC, sbi->s_proc);
2756 remove_proc_entry(EXT4_MB_STREAM_REQ, sbi->s_proc);
2757 remove_proc_entry(EXT4_MB_ORDER2_REQ, sbi->s_proc);
2758 remove_proc_entry(EXT4_MB_MIN_TO_SCAN_NAME, sbi->s_proc);
2759 remove_proc_entry(EXT4_MB_MAX_TO_SCAN_NAME, sbi->s_proc);
2760 remove_proc_entry(EXT4_MB_STATS_NAME, sbi->s_proc);
Alex Tomasc9de5602008-01-29 00:19:52 -05002761
2762 return 0;
2763}
2764
2765int __init init_ext4_mballoc(void)
2766{
2767 ext4_pspace_cachep =
2768 kmem_cache_create("ext4_prealloc_space",
2769 sizeof(struct ext4_prealloc_space),
2770 0, SLAB_RECLAIM_ACCOUNT, NULL);
2771 if (ext4_pspace_cachep == NULL)
2772 return -ENOMEM;
2773
Eric Sandeen256bdb42008-02-10 01:13:33 -05002774 ext4_ac_cachep =
2775 kmem_cache_create("ext4_alloc_context",
2776 sizeof(struct ext4_allocation_context),
2777 0, SLAB_RECLAIM_ACCOUNT, NULL);
2778 if (ext4_ac_cachep == NULL) {
2779 kmem_cache_destroy(ext4_pspace_cachep);
2780 return -ENOMEM;
2781 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002782
2783 ext4_free_ext_cachep =
2784 kmem_cache_create("ext4_free_block_extents",
2785 sizeof(struct ext4_free_data),
2786 0, SLAB_RECLAIM_ACCOUNT, NULL);
2787 if (ext4_free_ext_cachep == NULL) {
2788 kmem_cache_destroy(ext4_pspace_cachep);
2789 kmem_cache_destroy(ext4_ac_cachep);
2790 return -ENOMEM;
2791 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002792 return 0;
2793}
2794
2795void exit_ext4_mballoc(void)
2796{
2797 /* XXX: synchronize_rcu(); */
2798 kmem_cache_destroy(ext4_pspace_cachep);
Eric Sandeen256bdb42008-02-10 01:13:33 -05002799 kmem_cache_destroy(ext4_ac_cachep);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002800 kmem_cache_destroy(ext4_free_ext_cachep);
Alex Tomasc9de5602008-01-29 00:19:52 -05002801}
2802
2803
2804/*
2805 * Check quota and mark choosed space (ac->ac_b_ex) non-free in bitmaps
2806 * Returns 0 if success or error code
2807 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002808static noinline_for_stack int
2809ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002810 handle_t *handle, unsigned long reserv_blks)
Alex Tomasc9de5602008-01-29 00:19:52 -05002811{
2812 struct buffer_head *bitmap_bh = NULL;
2813 struct ext4_super_block *es;
2814 struct ext4_group_desc *gdp;
2815 struct buffer_head *gdp_bh;
2816 struct ext4_sb_info *sbi;
2817 struct super_block *sb;
2818 ext4_fsblk_t block;
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002819 int err, len;
Alex Tomasc9de5602008-01-29 00:19:52 -05002820
2821 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
2822 BUG_ON(ac->ac_b_ex.fe_len <= 0);
2823
2824 sb = ac->ac_sb;
2825 sbi = EXT4_SB(sb);
2826 es = sbi->s_es;
2827
Alex Tomasc9de5602008-01-29 00:19:52 -05002828
2829 err = -EIO;
Theodore Ts'o574ca172008-07-11 19:27:31 -04002830 bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002831 if (!bitmap_bh)
2832 goto out_err;
2833
2834 err = ext4_journal_get_write_access(handle, bitmap_bh);
2835 if (err)
2836 goto out_err;
2837
2838 err = -EIO;
2839 gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
2840 if (!gdp)
2841 goto out_err;
2842
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04002843 ext4_debug("using block group %lu(%d)\n", ac->ac_b_ex.fe_group,
2844 gdp->bg_free_blocks_count);
2845
Alex Tomasc9de5602008-01-29 00:19:52 -05002846 err = ext4_journal_get_write_access(handle, gdp_bh);
2847 if (err)
2848 goto out_err;
2849
2850 block = ac->ac_b_ex.fe_group * EXT4_BLOCKS_PER_GROUP(sb)
2851 + ac->ac_b_ex.fe_start
2852 + le32_to_cpu(es->s_first_data_block);
2853
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002854 len = ac->ac_b_ex.fe_len;
2855 if (in_range(ext4_block_bitmap(sb, gdp), block, len) ||
2856 in_range(ext4_inode_bitmap(sb, gdp), block, len) ||
2857 in_range(block, ext4_inode_table(sb, gdp),
2858 EXT4_SB(sb)->s_itb_per_group) ||
2859 in_range(block + len - 1, ext4_inode_table(sb, gdp),
2860 EXT4_SB(sb)->s_itb_per_group)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -04002861 ext4_error(sb, __func__,
Alex Tomasc9de5602008-01-29 00:19:52 -05002862 "Allocating block in system zone - block = %llu",
2863 block);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002864 /* File system mounted not to panic on error
2865 * Fix the bitmap and repeat the block allocation
2866 * We leak some of the blocks here.
2867 */
2868 mb_set_bits(sb_bgl_lock(sbi, ac->ac_b_ex.fe_group),
2869 bitmap_bh->b_data, ac->ac_b_ex.fe_start,
2870 ac->ac_b_ex.fe_len);
2871 err = ext4_journal_dirty_metadata(handle, bitmap_bh);
2872 if (!err)
2873 err = -EAGAIN;
2874 goto out_err;
Alex Tomasc9de5602008-01-29 00:19:52 -05002875 }
2876#ifdef AGGRESSIVE_CHECK
2877 {
2878 int i;
2879 for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
2880 BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
2881 bitmap_bh->b_data));
2882 }
2883 }
2884#endif
2885 mb_set_bits(sb_bgl_lock(sbi, ac->ac_b_ex.fe_group), bitmap_bh->b_data,
2886 ac->ac_b_ex.fe_start, ac->ac_b_ex.fe_len);
2887
2888 spin_lock(sb_bgl_lock(sbi, ac->ac_b_ex.fe_group));
2889 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2890 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
2891 gdp->bg_free_blocks_count =
2892 cpu_to_le16(ext4_free_blocks_after_init(sb,
2893 ac->ac_b_ex.fe_group,
2894 gdp));
2895 }
Marcin Slusarze8546d02008-04-17 10:38:59 -04002896 le16_add_cpu(&gdp->bg_free_blocks_count, -ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05002897 gdp->bg_checksum = ext4_group_desc_csum(sbi, ac->ac_b_ex.fe_group, gdp);
2898 spin_unlock(sb_bgl_lock(sbi, ac->ac_b_ex.fe_group));
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002899 percpu_counter_sub(&sbi->s_freeblocks_counter, ac->ac_b_ex.fe_len);
Mingming Caod2a17632008-07-14 17:52:37 -04002900 /*
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002901 * Now reduce the dirty block count also. Should not go negative
Mingming Caod2a17632008-07-14 17:52:37 -04002902 */
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002903 if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
2904 /* release all the reserved blocks if non delalloc */
2905 percpu_counter_sub(&sbi->s_dirtyblocks_counter, reserv_blks);
2906 else
2907 percpu_counter_sub(&sbi->s_dirtyblocks_counter,
2908 ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05002909
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002910 if (sbi->s_log_groups_per_flex) {
2911 ext4_group_t flex_group = ext4_flex_group(sbi,
2912 ac->ac_b_ex.fe_group);
2913 spin_lock(sb_bgl_lock(sbi, flex_group));
2914 sbi->s_flex_groups[flex_group].free_blocks -= ac->ac_b_ex.fe_len;
2915 spin_unlock(sb_bgl_lock(sbi, flex_group));
2916 }
2917
Alex Tomasc9de5602008-01-29 00:19:52 -05002918 err = ext4_journal_dirty_metadata(handle, bitmap_bh);
2919 if (err)
2920 goto out_err;
2921 err = ext4_journal_dirty_metadata(handle, gdp_bh);
2922
2923out_err:
2924 sb->s_dirt = 1;
Aneesh Kumar K.V42a10ad2008-02-10 01:07:28 -05002925 brelse(bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002926 return err;
2927}
2928
2929/*
2930 * here we normalize request for locality group
2931 * Group request are normalized to s_strip size if we set the same via mount
2932 * option. If not we set it to s_mb_group_prealloc which can be configured via
2933 * /proc/fs/ext4/<partition>/group_prealloc
2934 *
2935 * XXX: should we try to preallocate more than the group has now?
2936 */
2937static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
2938{
2939 struct super_block *sb = ac->ac_sb;
2940 struct ext4_locality_group *lg = ac->ac_lg;
2941
2942 BUG_ON(lg == NULL);
2943 if (EXT4_SB(sb)->s_stripe)
2944 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_stripe;
2945 else
2946 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04002947 mb_debug("#%u: goal %u blocks for locality group\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05002948 current->pid, ac->ac_g_ex.fe_len);
2949}
2950
2951/*
2952 * Normalization means making request better in terms of
2953 * size and alignment
2954 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002955static noinline_for_stack void
2956ext4_mb_normalize_request(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002957 struct ext4_allocation_request *ar)
2958{
2959 int bsbits, max;
2960 ext4_lblk_t end;
Alex Tomasc9de5602008-01-29 00:19:52 -05002961 loff_t size, orig_size, start_off;
2962 ext4_lblk_t start, orig_start;
2963 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04002964 struct ext4_prealloc_space *pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05002965
2966 /* do normalize only data requests, metadata requests
2967 do not need preallocation */
2968 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
2969 return;
2970
2971 /* sometime caller may want exact blocks */
2972 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2973 return;
2974
2975 /* caller may indicate that preallocation isn't
2976 * required (it's a tail, for example) */
2977 if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
2978 return;
2979
2980 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
2981 ext4_mb_normalize_group_request(ac);
2982 return ;
2983 }
2984
2985 bsbits = ac->ac_sb->s_blocksize_bits;
2986
2987 /* first, let's learn actual file size
2988 * given current request is allocated */
2989 size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len;
2990 size = size << bsbits;
2991 if (size < i_size_read(ac->ac_inode))
2992 size = i_size_read(ac->ac_inode);
2993
Valerie Clement19304792008-05-13 19:31:14 -04002994 /* max size of free chunks */
2995 max = 2 << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05002996
Valerie Clement19304792008-05-13 19:31:14 -04002997#define NRL_CHECK_SIZE(req, size, max, chunk_size) \
2998 (req <= (size) || max <= (chunk_size))
Alex Tomasc9de5602008-01-29 00:19:52 -05002999
3000 /* first, try to predict filesize */
3001 /* XXX: should this table be tunable? */
3002 start_off = 0;
3003 if (size <= 16 * 1024) {
3004 size = 16 * 1024;
3005 } else if (size <= 32 * 1024) {
3006 size = 32 * 1024;
3007 } else if (size <= 64 * 1024) {
3008 size = 64 * 1024;
3009 } else if (size <= 128 * 1024) {
3010 size = 128 * 1024;
3011 } else if (size <= 256 * 1024) {
3012 size = 256 * 1024;
3013 } else if (size <= 512 * 1024) {
3014 size = 512 * 1024;
3015 } else if (size <= 1024 * 1024) {
3016 size = 1024 * 1024;
Valerie Clement19304792008-05-13 19:31:14 -04003017 } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003018 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
Valerie Clement19304792008-05-13 19:31:14 -04003019 (21 - bsbits)) << 21;
3020 size = 2 * 1024 * 1024;
3021 } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003022 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3023 (22 - bsbits)) << 22;
3024 size = 4 * 1024 * 1024;
3025 } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
Valerie Clement19304792008-05-13 19:31:14 -04003026 (8<<20)>>bsbits, max, 8 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003027 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3028 (23 - bsbits)) << 23;
3029 size = 8 * 1024 * 1024;
3030 } else {
3031 start_off = (loff_t)ac->ac_o_ex.fe_logical << bsbits;
3032 size = ac->ac_o_ex.fe_len << bsbits;
3033 }
3034 orig_size = size = size >> bsbits;
3035 orig_start = start = start_off >> bsbits;
3036
3037 /* don't cover already allocated blocks in selected range */
3038 if (ar->pleft && start <= ar->lleft) {
3039 size -= ar->lleft + 1 - start;
3040 start = ar->lleft + 1;
3041 }
3042 if (ar->pright && start + size - 1 >= ar->lright)
3043 size -= start + size - ar->lright;
3044
3045 end = start + size;
3046
3047 /* check we don't cross already preallocated blocks */
3048 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003049 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003050 unsigned long pa_end;
3051
Alex Tomasc9de5602008-01-29 00:19:52 -05003052 if (pa->pa_deleted)
3053 continue;
3054 spin_lock(&pa->pa_lock);
3055 if (pa->pa_deleted) {
3056 spin_unlock(&pa->pa_lock);
3057 continue;
3058 }
3059
3060 pa_end = pa->pa_lstart + pa->pa_len;
3061
3062 /* PA must not overlap original request */
3063 BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
3064 ac->ac_o_ex.fe_logical < pa->pa_lstart));
3065
3066 /* skip PA normalized request doesn't overlap with */
3067 if (pa->pa_lstart >= end) {
3068 spin_unlock(&pa->pa_lock);
3069 continue;
3070 }
3071 if (pa_end <= start) {
3072 spin_unlock(&pa->pa_lock);
3073 continue;
3074 }
3075 BUG_ON(pa->pa_lstart <= start && pa_end >= end);
3076
3077 if (pa_end <= ac->ac_o_ex.fe_logical) {
3078 BUG_ON(pa_end < start);
3079 start = pa_end;
3080 }
3081
3082 if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
3083 BUG_ON(pa->pa_lstart > end);
3084 end = pa->pa_lstart;
3085 }
3086 spin_unlock(&pa->pa_lock);
3087 }
3088 rcu_read_unlock();
3089 size = end - start;
3090
3091 /* XXX: extra loop to check we really don't overlap preallocations */
3092 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003093 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003094 unsigned long pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05003095 spin_lock(&pa->pa_lock);
3096 if (pa->pa_deleted == 0) {
3097 pa_end = pa->pa_lstart + pa->pa_len;
3098 BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
3099 }
3100 spin_unlock(&pa->pa_lock);
3101 }
3102 rcu_read_unlock();
3103
3104 if (start + size <= ac->ac_o_ex.fe_logical &&
3105 start > ac->ac_o_ex.fe_logical) {
3106 printk(KERN_ERR "start %lu, size %lu, fe_logical %lu\n",
3107 (unsigned long) start, (unsigned long) size,
3108 (unsigned long) ac->ac_o_ex.fe_logical);
3109 }
3110 BUG_ON(start + size <= ac->ac_o_ex.fe_logical &&
3111 start > ac->ac_o_ex.fe_logical);
3112 BUG_ON(size <= 0 || size >= EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
3113
3114 /* now prepare goal request */
3115
3116 /* XXX: is it better to align blocks WRT to logical
3117 * placement or satisfy big request as is */
3118 ac->ac_g_ex.fe_logical = start;
3119 ac->ac_g_ex.fe_len = size;
3120
3121 /* define goal start in order to merge */
3122 if (ar->pright && (ar->lright == (start + size))) {
3123 /* merge to the right */
3124 ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
3125 &ac->ac_f_ex.fe_group,
3126 &ac->ac_f_ex.fe_start);
3127 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3128 }
3129 if (ar->pleft && (ar->lleft + 1 == start)) {
3130 /* merge to the left */
3131 ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
3132 &ac->ac_f_ex.fe_group,
3133 &ac->ac_f_ex.fe_start);
3134 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3135 }
3136
3137 mb_debug("goal: %u(was %u) blocks at %u\n", (unsigned) size,
3138 (unsigned) orig_size, (unsigned) start);
3139}
3140
3141static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
3142{
3143 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3144
3145 if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
3146 atomic_inc(&sbi->s_bal_reqs);
3147 atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
3148 if (ac->ac_o_ex.fe_len >= ac->ac_g_ex.fe_len)
3149 atomic_inc(&sbi->s_bal_success);
3150 atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
3151 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
3152 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
3153 atomic_inc(&sbi->s_bal_goals);
3154 if (ac->ac_found > sbi->s_mb_max_to_scan)
3155 atomic_inc(&sbi->s_bal_breaks);
3156 }
3157
3158 ext4_mb_store_history(ac);
3159}
3160
3161/*
3162 * use blocks preallocated to inode
3163 */
3164static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
3165 struct ext4_prealloc_space *pa)
3166{
3167 ext4_fsblk_t start;
3168 ext4_fsblk_t end;
3169 int len;
3170
3171 /* found preallocated blocks, use them */
3172 start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
3173 end = min(pa->pa_pstart + pa->pa_len, start + ac->ac_o_ex.fe_len);
3174 len = end - start;
3175 ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
3176 &ac->ac_b_ex.fe_start);
3177 ac->ac_b_ex.fe_len = len;
3178 ac->ac_status = AC_STATUS_FOUND;
3179 ac->ac_pa = pa;
3180
3181 BUG_ON(start < pa->pa_pstart);
3182 BUG_ON(start + len > pa->pa_pstart + pa->pa_len);
3183 BUG_ON(pa->pa_free < len);
3184 pa->pa_free -= len;
3185
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04003186 mb_debug("use %llu/%u from inode pa %p\n", start, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003187}
3188
3189/*
3190 * use blocks preallocated to locality group
3191 */
3192static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
3193 struct ext4_prealloc_space *pa)
3194{
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04003195 unsigned int len = ac->ac_o_ex.fe_len;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003196
Alex Tomasc9de5602008-01-29 00:19:52 -05003197 ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
3198 &ac->ac_b_ex.fe_group,
3199 &ac->ac_b_ex.fe_start);
3200 ac->ac_b_ex.fe_len = len;
3201 ac->ac_status = AC_STATUS_FOUND;
3202 ac->ac_pa = pa;
3203
3204 /* we don't correct pa_pstart or pa_plen here to avoid
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003205 * possible race when the group is being loaded concurrently
Alex Tomasc9de5602008-01-29 00:19:52 -05003206 * instead we correct pa later, after blocks are marked
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003207 * in on-disk bitmap -- see ext4_mb_release_context()
3208 * Other CPUs are prevented from allocating from this pa by lg_mutex
Alex Tomasc9de5602008-01-29 00:19:52 -05003209 */
3210 mb_debug("use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa);
3211}
3212
3213/*
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003214 * Return the prealloc space that have minimal distance
3215 * from the goal block. @cpa is the prealloc
3216 * space that is having currently known minimal distance
3217 * from the goal block.
3218 */
3219static struct ext4_prealloc_space *
3220ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
3221 struct ext4_prealloc_space *pa,
3222 struct ext4_prealloc_space *cpa)
3223{
3224 ext4_fsblk_t cur_distance, new_distance;
3225
3226 if (cpa == NULL) {
3227 atomic_inc(&pa->pa_count);
3228 return pa;
3229 }
3230 cur_distance = abs(goal_block - cpa->pa_pstart);
3231 new_distance = abs(goal_block - pa->pa_pstart);
3232
3233 if (cur_distance < new_distance)
3234 return cpa;
3235
3236 /* drop the previous reference */
3237 atomic_dec(&cpa->pa_count);
3238 atomic_inc(&pa->pa_count);
3239 return pa;
3240}
3241
3242/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003243 * search goal blocks in preallocated space
3244 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003245static noinline_for_stack int
3246ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003247{
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003248 int order, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003249 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3250 struct ext4_locality_group *lg;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003251 struct ext4_prealloc_space *pa, *cpa = NULL;
3252 ext4_fsblk_t goal_block;
Alex Tomasc9de5602008-01-29 00:19:52 -05003253
3254 /* only data can be preallocated */
3255 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3256 return 0;
3257
3258 /* first, try per-file preallocation */
3259 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003260 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003261
3262 /* all fields in this condition don't change,
3263 * so we can skip locking for them */
3264 if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
3265 ac->ac_o_ex.fe_logical >= pa->pa_lstart + pa->pa_len)
3266 continue;
3267
3268 /* found preallocated blocks, use them */
3269 spin_lock(&pa->pa_lock);
3270 if (pa->pa_deleted == 0 && pa->pa_free) {
3271 atomic_inc(&pa->pa_count);
3272 ext4_mb_use_inode_pa(ac, pa);
3273 spin_unlock(&pa->pa_lock);
3274 ac->ac_criteria = 10;
3275 rcu_read_unlock();
3276 return 1;
3277 }
3278 spin_unlock(&pa->pa_lock);
3279 }
3280 rcu_read_unlock();
3281
3282 /* can we use group allocation? */
3283 if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
3284 return 0;
3285
3286 /* inode may have no locality group for some reason */
3287 lg = ac->ac_lg;
3288 if (lg == NULL)
3289 return 0;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003290 order = fls(ac->ac_o_ex.fe_len) - 1;
3291 if (order > PREALLOC_TB_SIZE - 1)
3292 /* The max size of hash table is PREALLOC_TB_SIZE */
3293 order = PREALLOC_TB_SIZE - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003294
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003295 goal_block = ac->ac_g_ex.fe_group * EXT4_BLOCKS_PER_GROUP(ac->ac_sb) +
3296 ac->ac_g_ex.fe_start +
3297 le32_to_cpu(EXT4_SB(ac->ac_sb)->s_es->s_first_data_block);
3298 /*
3299 * search for the prealloc space that is having
3300 * minimal distance from the goal block.
3301 */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003302 for (i = order; i < PREALLOC_TB_SIZE; i++) {
3303 rcu_read_lock();
3304 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
3305 pa_inode_list) {
3306 spin_lock(&pa->pa_lock);
3307 if (pa->pa_deleted == 0 &&
3308 pa->pa_free >= ac->ac_o_ex.fe_len) {
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003309
3310 cpa = ext4_mb_check_group_pa(goal_block,
3311 pa, cpa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003312 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003313 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003314 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003315 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003316 }
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003317 if (cpa) {
3318 ext4_mb_use_group_pa(ac, cpa);
3319 ac->ac_criteria = 20;
3320 return 1;
3321 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003322 return 0;
3323}
3324
3325/*
3326 * the function goes through all preallocation in this group and marks them
3327 * used in in-core bitmap. buddy must be generated from this bitmap
3328 * Need to be called with ext4 group lock (ext4_lock_group)
3329 */
3330static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
3331 ext4_group_t group)
3332{
3333 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3334 struct ext4_prealloc_space *pa;
3335 struct list_head *cur;
3336 ext4_group_t groupnr;
3337 ext4_grpblk_t start;
3338 int preallocated = 0;
3339 int count = 0;
3340 int len;
3341
3342 /* all form of preallocation discards first load group,
3343 * so the only competing code is preallocation use.
3344 * we don't need any locking here
3345 * notice we do NOT ignore preallocations with pa_deleted
3346 * otherwise we could leave used blocks available for
3347 * allocation in buddy when concurrent ext4_mb_put_pa()
3348 * is dropping preallocation
3349 */
3350 list_for_each(cur, &grp->bb_prealloc_list) {
3351 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3352 spin_lock(&pa->pa_lock);
3353 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3354 &groupnr, &start);
3355 len = pa->pa_len;
3356 spin_unlock(&pa->pa_lock);
3357 if (unlikely(len == 0))
3358 continue;
3359 BUG_ON(groupnr != group);
3360 mb_set_bits(sb_bgl_lock(EXT4_SB(sb), group),
3361 bitmap, start, len);
3362 preallocated += len;
3363 count++;
3364 }
3365 mb_debug("prellocated %u for group %lu\n", preallocated, group);
3366}
3367
3368static void ext4_mb_pa_callback(struct rcu_head *head)
3369{
3370 struct ext4_prealloc_space *pa;
3371 pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
3372 kmem_cache_free(ext4_pspace_cachep, pa);
3373}
3374
3375/*
3376 * drops a reference to preallocated space descriptor
3377 * if this was the last reference and the space is consumed
3378 */
3379static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
3380 struct super_block *sb, struct ext4_prealloc_space *pa)
3381{
3382 unsigned long grp;
3383
3384 if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0)
3385 return;
3386
3387 /* in this short window concurrent discard can set pa_deleted */
3388 spin_lock(&pa->pa_lock);
3389 if (pa->pa_deleted == 1) {
3390 spin_unlock(&pa->pa_lock);
3391 return;
3392 }
3393
3394 pa->pa_deleted = 1;
3395 spin_unlock(&pa->pa_lock);
3396
3397 /* -1 is to protect from crossing allocation group */
3398 ext4_get_group_no_and_offset(sb, pa->pa_pstart - 1, &grp, NULL);
3399
3400 /*
3401 * possible race:
3402 *
3403 * P1 (buddy init) P2 (regular allocation)
3404 * find block B in PA
3405 * copy on-disk bitmap to buddy
3406 * mark B in on-disk bitmap
3407 * drop PA from group
3408 * mark all PAs in buddy
3409 *
3410 * thus, P1 initializes buddy with B available. to prevent this
3411 * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
3412 * against that pair
3413 */
3414 ext4_lock_group(sb, grp);
3415 list_del(&pa->pa_group_list);
3416 ext4_unlock_group(sb, grp);
3417
3418 spin_lock(pa->pa_obj_lock);
3419 list_del_rcu(&pa->pa_inode_list);
3420 spin_unlock(pa->pa_obj_lock);
3421
3422 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3423}
3424
3425/*
3426 * creates new preallocated space for given inode
3427 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003428static noinline_for_stack int
3429ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003430{
3431 struct super_block *sb = ac->ac_sb;
3432 struct ext4_prealloc_space *pa;
3433 struct ext4_group_info *grp;
3434 struct ext4_inode_info *ei;
3435
3436 /* preallocate only when found space is larger then requested */
3437 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3438 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3439 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3440
3441 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3442 if (pa == NULL)
3443 return -ENOMEM;
3444
3445 if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
3446 int winl;
3447 int wins;
3448 int win;
3449 int offs;
3450
3451 /* we can't allocate as much as normalizer wants.
3452 * so, found space must get proper lstart
3453 * to cover original request */
3454 BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
3455 BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
3456
3457 /* we're limited by original request in that
3458 * logical block must be covered any way
3459 * winl is window we can move our chunk within */
3460 winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
3461
3462 /* also, we should cover whole original request */
3463 wins = ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len;
3464
3465 /* the smallest one defines real window */
3466 win = min(winl, wins);
3467
3468 offs = ac->ac_o_ex.fe_logical % ac->ac_b_ex.fe_len;
3469 if (offs && offs < win)
3470 win = offs;
3471
3472 ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical - win;
3473 BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
3474 BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
3475 }
3476
3477 /* preallocation can change ac_b_ex, thus we store actually
3478 * allocated blocks for history */
3479 ac->ac_f_ex = ac->ac_b_ex;
3480
3481 pa->pa_lstart = ac->ac_b_ex.fe_logical;
3482 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3483 pa->pa_len = ac->ac_b_ex.fe_len;
3484 pa->pa_free = pa->pa_len;
3485 atomic_set(&pa->pa_count, 1);
3486 spin_lock_init(&pa->pa_lock);
3487 pa->pa_deleted = 0;
3488 pa->pa_linear = 0;
3489
3490 mb_debug("new inode pa %p: %llu/%u for %u\n", pa,
3491 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
3492
3493 ext4_mb_use_inode_pa(ac, pa);
3494 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3495
3496 ei = EXT4_I(ac->ac_inode);
3497 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3498
3499 pa->pa_obj_lock = &ei->i_prealloc_lock;
3500 pa->pa_inode = ac->ac_inode;
3501
3502 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3503 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3504 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3505
3506 spin_lock(pa->pa_obj_lock);
3507 list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
3508 spin_unlock(pa->pa_obj_lock);
3509
3510 return 0;
3511}
3512
3513/*
3514 * creates new preallocated space for locality group inodes belongs to
3515 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003516static noinline_for_stack int
3517ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003518{
3519 struct super_block *sb = ac->ac_sb;
3520 struct ext4_locality_group *lg;
3521 struct ext4_prealloc_space *pa;
3522 struct ext4_group_info *grp;
3523
3524 /* preallocate only when found space is larger then requested */
3525 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3526 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3527 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3528
3529 BUG_ON(ext4_pspace_cachep == NULL);
3530 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3531 if (pa == NULL)
3532 return -ENOMEM;
3533
3534 /* preallocation can change ac_b_ex, thus we store actually
3535 * allocated blocks for history */
3536 ac->ac_f_ex = ac->ac_b_ex;
3537
3538 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3539 pa->pa_lstart = pa->pa_pstart;
3540 pa->pa_len = ac->ac_b_ex.fe_len;
3541 pa->pa_free = pa->pa_len;
3542 atomic_set(&pa->pa_count, 1);
3543 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003544 INIT_LIST_HEAD(&pa->pa_inode_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003545 pa->pa_deleted = 0;
3546 pa->pa_linear = 1;
3547
3548 mb_debug("new group pa %p: %llu/%u for %u\n", pa,
3549 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
3550
3551 ext4_mb_use_group_pa(ac, pa);
3552 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3553
3554 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3555 lg = ac->ac_lg;
3556 BUG_ON(lg == NULL);
3557
3558 pa->pa_obj_lock = &lg->lg_prealloc_lock;
3559 pa->pa_inode = NULL;
3560
3561 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3562 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3563 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3564
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003565 /*
3566 * We will later add the new pa to the right bucket
3567 * after updating the pa_free in ext4_mb_release_context
3568 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003569 return 0;
3570}
3571
3572static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
3573{
3574 int err;
3575
3576 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
3577 err = ext4_mb_new_group_pa(ac);
3578 else
3579 err = ext4_mb_new_inode_pa(ac);
3580 return err;
3581}
3582
3583/*
3584 * finds all unused blocks in on-disk bitmap, frees them in
3585 * in-core bitmap and buddy.
3586 * @pa must be unlinked from inode and group lists, so that
3587 * nobody else can find/use it.
3588 * the caller MUST hold group/inode locks.
3589 * TODO: optimize the case when there are no in-core structures yet
3590 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003591static noinline_for_stack int
3592ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003593 struct ext4_prealloc_space *pa,
3594 struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003595{
Alex Tomasc9de5602008-01-29 00:19:52 -05003596 struct super_block *sb = e4b->bd_sb;
3597 struct ext4_sb_info *sbi = EXT4_SB(sb);
3598 unsigned long end;
3599 unsigned long next;
3600 ext4_group_t group;
3601 ext4_grpblk_t bit;
3602 sector_t start;
3603 int err = 0;
3604 int free = 0;
3605
3606 BUG_ON(pa->pa_deleted == 0);
3607 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3608 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3609 end = bit + pa->pa_len;
3610
Eric Sandeen256bdb42008-02-10 01:13:33 -05003611 if (ac) {
3612 ac->ac_sb = sb;
3613 ac->ac_inode = pa->pa_inode;
3614 ac->ac_op = EXT4_MB_HISTORY_DISCARD;
3615 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003616
3617 while (bit < end) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003618 bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003619 if (bit >= end)
3620 break;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003621 next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003622 start = group * EXT4_BLOCKS_PER_GROUP(sb) + bit +
3623 le32_to_cpu(sbi->s_es->s_first_data_block);
3624 mb_debug(" free preallocated %u/%u in group %u\n",
3625 (unsigned) start, (unsigned) next - bit,
3626 (unsigned) group);
3627 free += next - bit;
3628
Eric Sandeen256bdb42008-02-10 01:13:33 -05003629 if (ac) {
3630 ac->ac_b_ex.fe_group = group;
3631 ac->ac_b_ex.fe_start = bit;
3632 ac->ac_b_ex.fe_len = next - bit;
3633 ac->ac_b_ex.fe_logical = 0;
3634 ext4_mb_store_history(ac);
3635 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003636
3637 mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
3638 bit = next + 1;
3639 }
3640 if (free != pa->pa_free) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003641 printk(KERN_CRIT "pa %p: logic %lu, phys. %lu, len %lu\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05003642 pa, (unsigned long) pa->pa_lstart,
3643 (unsigned long) pa->pa_pstart,
3644 (unsigned long) pa->pa_len);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003645 ext4_error(sb, __func__, "free %u, pa_free %u\n",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003646 free, pa->pa_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05003647 /*
3648 * pa is already deleted so we use the value obtained
3649 * from the bitmap and continue.
3650 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003651 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003652 atomic_add(free, &sbi->s_mb_discarded);
3653
3654 return err;
3655}
3656
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003657static noinline_for_stack int
3658ext4_mb_release_group_pa(struct ext4_buddy *e4b,
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003659 struct ext4_prealloc_space *pa,
3660 struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003661{
Alex Tomasc9de5602008-01-29 00:19:52 -05003662 struct super_block *sb = e4b->bd_sb;
3663 ext4_group_t group;
3664 ext4_grpblk_t bit;
3665
Eric Sandeen256bdb42008-02-10 01:13:33 -05003666 if (ac)
3667 ac->ac_op = EXT4_MB_HISTORY_DISCARD;
Alex Tomasc9de5602008-01-29 00:19:52 -05003668
3669 BUG_ON(pa->pa_deleted == 0);
3670 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3671 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3672 mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
3673 atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
3674
Eric Sandeen256bdb42008-02-10 01:13:33 -05003675 if (ac) {
3676 ac->ac_sb = sb;
3677 ac->ac_inode = NULL;
3678 ac->ac_b_ex.fe_group = group;
3679 ac->ac_b_ex.fe_start = bit;
3680 ac->ac_b_ex.fe_len = pa->pa_len;
3681 ac->ac_b_ex.fe_logical = 0;
3682 ext4_mb_store_history(ac);
Eric Sandeen256bdb42008-02-10 01:13:33 -05003683 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003684
3685 return 0;
3686}
3687
3688/*
3689 * releases all preallocations in given group
3690 *
3691 * first, we need to decide discard policy:
3692 * - when do we discard
3693 * 1) ENOSPC
3694 * - how many do we discard
3695 * 1) how many requested
3696 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003697static noinline_for_stack int
3698ext4_mb_discard_group_preallocations(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -05003699 ext4_group_t group, int needed)
3700{
3701 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3702 struct buffer_head *bitmap_bh = NULL;
3703 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003704 struct ext4_allocation_context *ac;
Alex Tomasc9de5602008-01-29 00:19:52 -05003705 struct list_head list;
3706 struct ext4_buddy e4b;
3707 int err;
3708 int busy = 0;
3709 int free = 0;
3710
3711 mb_debug("discard preallocation for group %lu\n", group);
3712
3713 if (list_empty(&grp->bb_prealloc_list))
3714 return 0;
3715
Theodore Ts'o574ca172008-07-11 19:27:31 -04003716 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003717 if (bitmap_bh == NULL) {
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003718 ext4_error(sb, __func__, "Error in reading block "
3719 "bitmap for %lu\n", group);
3720 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003721 }
3722
3723 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003724 if (err) {
3725 ext4_error(sb, __func__, "Error in loading buddy "
3726 "information for %lu\n", group);
3727 put_bh(bitmap_bh);
3728 return 0;
3729 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003730
3731 if (needed == 0)
3732 needed = EXT4_BLOCKS_PER_GROUP(sb) + 1;
3733
Alex Tomasc9de5602008-01-29 00:19:52 -05003734 INIT_LIST_HEAD(&list);
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003735 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
Alex Tomasc9de5602008-01-29 00:19:52 -05003736repeat:
3737 ext4_lock_group(sb, group);
3738 list_for_each_entry_safe(pa, tmp,
3739 &grp->bb_prealloc_list, pa_group_list) {
3740 spin_lock(&pa->pa_lock);
3741 if (atomic_read(&pa->pa_count)) {
3742 spin_unlock(&pa->pa_lock);
3743 busy = 1;
3744 continue;
3745 }
3746 if (pa->pa_deleted) {
3747 spin_unlock(&pa->pa_lock);
3748 continue;
3749 }
3750
3751 /* seems this one can be freed ... */
3752 pa->pa_deleted = 1;
3753
3754 /* we can trust pa_free ... */
3755 free += pa->pa_free;
3756
3757 spin_unlock(&pa->pa_lock);
3758
3759 list_del(&pa->pa_group_list);
3760 list_add(&pa->u.pa_tmp_list, &list);
3761 }
3762
3763 /* if we still need more blocks and some PAs were used, try again */
3764 if (free < needed && busy) {
3765 busy = 0;
3766 ext4_unlock_group(sb, group);
3767 /*
3768 * Yield the CPU here so that we don't get soft lockup
3769 * in non preempt case.
3770 */
3771 yield();
3772 goto repeat;
3773 }
3774
3775 /* found anything to free? */
3776 if (list_empty(&list)) {
3777 BUG_ON(free != 0);
3778 goto out;
3779 }
3780
3781 /* now free all selected PAs */
3782 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
3783
3784 /* remove from object (inode or locality group) */
3785 spin_lock(pa->pa_obj_lock);
3786 list_del_rcu(&pa->pa_inode_list);
3787 spin_unlock(pa->pa_obj_lock);
3788
3789 if (pa->pa_linear)
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003790 ext4_mb_release_group_pa(&e4b, pa, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003791 else
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003792 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003793
3794 list_del(&pa->u.pa_tmp_list);
3795 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3796 }
3797
3798out:
3799 ext4_unlock_group(sb, group);
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003800 if (ac)
3801 kmem_cache_free(ext4_ac_cachep, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003802 ext4_mb_release_desc(&e4b);
3803 put_bh(bitmap_bh);
3804 return free;
3805}
3806
3807/*
3808 * releases all non-used preallocated blocks for given inode
3809 *
3810 * It's important to discard preallocations under i_data_sem
3811 * We don't want another block to be served from the prealloc
3812 * space when we are discarding the inode prealloc space.
3813 *
3814 * FIXME!! Make sure it is valid at all the call sites
3815 */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003816void ext4_discard_preallocations(struct inode *inode)
Alex Tomasc9de5602008-01-29 00:19:52 -05003817{
3818 struct ext4_inode_info *ei = EXT4_I(inode);
3819 struct super_block *sb = inode->i_sb;
3820 struct buffer_head *bitmap_bh = NULL;
3821 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003822 struct ext4_allocation_context *ac;
Alex Tomasc9de5602008-01-29 00:19:52 -05003823 ext4_group_t group = 0;
3824 struct list_head list;
3825 struct ext4_buddy e4b;
3826 int err;
3827
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003828 if (!S_ISREG(inode->i_mode)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003829 /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
3830 return;
3831 }
3832
3833 mb_debug("discard preallocation for inode %lu\n", inode->i_ino);
3834
3835 INIT_LIST_HEAD(&list);
3836
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003837 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
Alex Tomasc9de5602008-01-29 00:19:52 -05003838repeat:
3839 /* first, collect all pa's in the inode */
3840 spin_lock(&ei->i_prealloc_lock);
3841 while (!list_empty(&ei->i_prealloc_list)) {
3842 pa = list_entry(ei->i_prealloc_list.next,
3843 struct ext4_prealloc_space, pa_inode_list);
3844 BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
3845 spin_lock(&pa->pa_lock);
3846 if (atomic_read(&pa->pa_count)) {
3847 /* this shouldn't happen often - nobody should
3848 * use preallocation while we're discarding it */
3849 spin_unlock(&pa->pa_lock);
3850 spin_unlock(&ei->i_prealloc_lock);
3851 printk(KERN_ERR "uh-oh! used pa while discarding\n");
3852 WARN_ON(1);
3853 schedule_timeout_uninterruptible(HZ);
3854 goto repeat;
3855
3856 }
3857 if (pa->pa_deleted == 0) {
3858 pa->pa_deleted = 1;
3859 spin_unlock(&pa->pa_lock);
3860 list_del_rcu(&pa->pa_inode_list);
3861 list_add(&pa->u.pa_tmp_list, &list);
3862 continue;
3863 }
3864
3865 /* someone is deleting pa right now */
3866 spin_unlock(&pa->pa_lock);
3867 spin_unlock(&ei->i_prealloc_lock);
3868
3869 /* we have to wait here because pa_deleted
3870 * doesn't mean pa is already unlinked from
3871 * the list. as we might be called from
3872 * ->clear_inode() the inode will get freed
3873 * and concurrent thread which is unlinking
3874 * pa from inode's list may access already
3875 * freed memory, bad-bad-bad */
3876
3877 /* XXX: if this happens too often, we can
3878 * add a flag to force wait only in case
3879 * of ->clear_inode(), but not in case of
3880 * regular truncate */
3881 schedule_timeout_uninterruptible(HZ);
3882 goto repeat;
3883 }
3884 spin_unlock(&ei->i_prealloc_lock);
3885
3886 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
3887 BUG_ON(pa->pa_linear != 0);
3888 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
3889
3890 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003891 if (err) {
3892 ext4_error(sb, __func__, "Error in loading buddy "
3893 "information for %lu\n", group);
3894 continue;
3895 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003896
Theodore Ts'o574ca172008-07-11 19:27:31 -04003897 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003898 if (bitmap_bh == NULL) {
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003899 ext4_error(sb, __func__, "Error in reading block "
3900 "bitmap for %lu\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003901 ext4_mb_release_desc(&e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003902 continue;
Alex Tomasc9de5602008-01-29 00:19:52 -05003903 }
3904
3905 ext4_lock_group(sb, group);
3906 list_del(&pa->pa_group_list);
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003907 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003908 ext4_unlock_group(sb, group);
3909
3910 ext4_mb_release_desc(&e4b);
3911 put_bh(bitmap_bh);
3912
3913 list_del(&pa->u.pa_tmp_list);
3914 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3915 }
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003916 if (ac)
3917 kmem_cache_free(ext4_ac_cachep, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003918}
3919
3920/*
3921 * finds all preallocated spaces and return blocks being freed to them
3922 * if preallocated space becomes full (no block is used from the space)
3923 * then the function frees space in buddy
3924 * XXX: at the moment, truncate (which is the only way to free blocks)
3925 * discards all preallocations
3926 */
3927static void ext4_mb_return_to_preallocation(struct inode *inode,
3928 struct ext4_buddy *e4b,
3929 sector_t block, int count)
3930{
3931 BUG_ON(!list_empty(&EXT4_I(inode)->i_prealloc_list));
3932}
3933#ifdef MB_DEBUG
3934static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
3935{
3936 struct super_block *sb = ac->ac_sb;
3937 ext4_group_t i;
3938
3939 printk(KERN_ERR "EXT4-fs: Can't allocate:"
3940 " Allocation context details:\n");
3941 printk(KERN_ERR "EXT4-fs: status %d flags %d\n",
3942 ac->ac_status, ac->ac_flags);
3943 printk(KERN_ERR "EXT4-fs: orig %lu/%lu/%lu@%lu, goal %lu/%lu/%lu@%lu, "
3944 "best %lu/%lu/%lu@%lu cr %d\n",
3945 (unsigned long)ac->ac_o_ex.fe_group,
3946 (unsigned long)ac->ac_o_ex.fe_start,
3947 (unsigned long)ac->ac_o_ex.fe_len,
3948 (unsigned long)ac->ac_o_ex.fe_logical,
3949 (unsigned long)ac->ac_g_ex.fe_group,
3950 (unsigned long)ac->ac_g_ex.fe_start,
3951 (unsigned long)ac->ac_g_ex.fe_len,
3952 (unsigned long)ac->ac_g_ex.fe_logical,
3953 (unsigned long)ac->ac_b_ex.fe_group,
3954 (unsigned long)ac->ac_b_ex.fe_start,
3955 (unsigned long)ac->ac_b_ex.fe_len,
3956 (unsigned long)ac->ac_b_ex.fe_logical,
3957 (int)ac->ac_criteria);
3958 printk(KERN_ERR "EXT4-fs: %lu scanned, %d found\n", ac->ac_ex_scanned,
3959 ac->ac_found);
3960 printk(KERN_ERR "EXT4-fs: groups: \n");
3961 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
3962 struct ext4_group_info *grp = ext4_get_group_info(sb, i);
3963 struct ext4_prealloc_space *pa;
3964 ext4_grpblk_t start;
3965 struct list_head *cur;
3966 ext4_lock_group(sb, i);
3967 list_for_each(cur, &grp->bb_prealloc_list) {
3968 pa = list_entry(cur, struct ext4_prealloc_space,
3969 pa_group_list);
3970 spin_lock(&pa->pa_lock);
3971 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3972 NULL, &start);
3973 spin_unlock(&pa->pa_lock);
3974 printk(KERN_ERR "PA:%lu:%d:%u \n", i,
3975 start, pa->pa_len);
3976 }
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04003977 ext4_unlock_group(sb, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05003978
3979 if (grp->bb_free == 0)
3980 continue;
3981 printk(KERN_ERR "%lu: %d/%d \n",
3982 i, grp->bb_free, grp->bb_fragments);
3983 }
3984 printk(KERN_ERR "\n");
3985}
3986#else
3987static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
3988{
3989 return;
3990}
3991#endif
3992
3993/*
3994 * We use locality group preallocation for small size file. The size of the
3995 * file is determined by the current size or the resulting size after
3996 * allocation which ever is larger
3997 *
3998 * One can tune this size via /proc/fs/ext4/<partition>/stream_req
3999 */
4000static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
4001{
4002 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
4003 int bsbits = ac->ac_sb->s_blocksize_bits;
4004 loff_t size, isize;
4005
4006 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
4007 return;
4008
4009 size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len;
4010 isize = i_size_read(ac->ac_inode) >> bsbits;
4011 size = max(size, isize);
4012
4013 /* don't use group allocation for large files */
4014 if (size >= sbi->s_mb_stream_request)
4015 return;
4016
4017 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
4018 return;
4019
4020 BUG_ON(ac->ac_lg != NULL);
4021 /*
4022 * locality group prealloc space are per cpu. The reason for having
4023 * per cpu locality group is to reduce the contention between block
4024 * request from multiple CPUs.
4025 */
Eric Sandeen730c2132008-09-13 15:23:29 -04004026 ac->ac_lg = per_cpu_ptr(sbi->s_locality_groups, raw_smp_processor_id());
Alex Tomasc9de5602008-01-29 00:19:52 -05004027
4028 /* we're going to use group allocation */
4029 ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
4030
4031 /* serialize all allocations in the group */
4032 mutex_lock(&ac->ac_lg->lg_mutex);
4033}
4034
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004035static noinline_for_stack int
4036ext4_mb_initialize_context(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05004037 struct ext4_allocation_request *ar)
4038{
4039 struct super_block *sb = ar->inode->i_sb;
4040 struct ext4_sb_info *sbi = EXT4_SB(sb);
4041 struct ext4_super_block *es = sbi->s_es;
4042 ext4_group_t group;
4043 unsigned long len;
4044 unsigned long goal;
4045 ext4_grpblk_t block;
4046
4047 /* we can't allocate > group size */
4048 len = ar->len;
4049
4050 /* just a dirty hack to filter too big requests */
4051 if (len >= EXT4_BLOCKS_PER_GROUP(sb) - 10)
4052 len = EXT4_BLOCKS_PER_GROUP(sb) - 10;
4053
4054 /* start searching from the goal */
4055 goal = ar->goal;
4056 if (goal < le32_to_cpu(es->s_first_data_block) ||
4057 goal >= ext4_blocks_count(es))
4058 goal = le32_to_cpu(es->s_first_data_block);
4059 ext4_get_group_no_and_offset(sb, goal, &group, &block);
4060
4061 /* set up allocation goals */
4062 ac->ac_b_ex.fe_logical = ar->logical;
4063 ac->ac_b_ex.fe_group = 0;
4064 ac->ac_b_ex.fe_start = 0;
4065 ac->ac_b_ex.fe_len = 0;
4066 ac->ac_status = AC_STATUS_CONTINUE;
4067 ac->ac_groups_scanned = 0;
4068 ac->ac_ex_scanned = 0;
4069 ac->ac_found = 0;
4070 ac->ac_sb = sb;
4071 ac->ac_inode = ar->inode;
4072 ac->ac_o_ex.fe_logical = ar->logical;
4073 ac->ac_o_ex.fe_group = group;
4074 ac->ac_o_ex.fe_start = block;
4075 ac->ac_o_ex.fe_len = len;
4076 ac->ac_g_ex.fe_logical = ar->logical;
4077 ac->ac_g_ex.fe_group = group;
4078 ac->ac_g_ex.fe_start = block;
4079 ac->ac_g_ex.fe_len = len;
4080 ac->ac_f_ex.fe_len = 0;
4081 ac->ac_flags = ar->flags;
4082 ac->ac_2order = 0;
4083 ac->ac_criteria = 0;
4084 ac->ac_pa = NULL;
4085 ac->ac_bitmap_page = NULL;
4086 ac->ac_buddy_page = NULL;
4087 ac->ac_lg = NULL;
4088
4089 /* we have to define context: we'll we work with a file or
4090 * locality group. this is a policy, actually */
4091 ext4_mb_group_or_file(ac);
4092
4093 mb_debug("init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, "
4094 "left: %u/%u, right %u/%u to %swritable\n",
4095 (unsigned) ar->len, (unsigned) ar->logical,
4096 (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
4097 (unsigned) ar->lleft, (unsigned) ar->pleft,
4098 (unsigned) ar->lright, (unsigned) ar->pright,
4099 atomic_read(&ar->inode->i_writecount) ? "" : "non-");
4100 return 0;
4101
4102}
4103
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004104static noinline_for_stack void
4105ext4_mb_discard_lg_preallocations(struct super_block *sb,
4106 struct ext4_locality_group *lg,
4107 int order, int total_entries)
4108{
4109 ext4_group_t group = 0;
4110 struct ext4_buddy e4b;
4111 struct list_head discard_list;
4112 struct ext4_prealloc_space *pa, *tmp;
4113 struct ext4_allocation_context *ac;
4114
4115 mb_debug("discard locality group preallocation\n");
4116
4117 INIT_LIST_HEAD(&discard_list);
4118 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
4119
4120 spin_lock(&lg->lg_prealloc_lock);
4121 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
4122 pa_inode_list) {
4123 spin_lock(&pa->pa_lock);
4124 if (atomic_read(&pa->pa_count)) {
4125 /*
4126 * This is the pa that we just used
4127 * for block allocation. So don't
4128 * free that
4129 */
4130 spin_unlock(&pa->pa_lock);
4131 continue;
4132 }
4133 if (pa->pa_deleted) {
4134 spin_unlock(&pa->pa_lock);
4135 continue;
4136 }
4137 /* only lg prealloc space */
4138 BUG_ON(!pa->pa_linear);
4139
4140 /* seems this one can be freed ... */
4141 pa->pa_deleted = 1;
4142 spin_unlock(&pa->pa_lock);
4143
4144 list_del_rcu(&pa->pa_inode_list);
4145 list_add(&pa->u.pa_tmp_list, &discard_list);
4146
4147 total_entries--;
4148 if (total_entries <= 5) {
4149 /*
4150 * we want to keep only 5 entries
4151 * allowing it to grow to 8. This
4152 * mak sure we don't call discard
4153 * soon for this list.
4154 */
4155 break;
4156 }
4157 }
4158 spin_unlock(&lg->lg_prealloc_lock);
4159
4160 list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
4161
4162 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
4163 if (ext4_mb_load_buddy(sb, group, &e4b)) {
4164 ext4_error(sb, __func__, "Error in loading buddy "
4165 "information for %lu\n", group);
4166 continue;
4167 }
4168 ext4_lock_group(sb, group);
4169 list_del(&pa->pa_group_list);
4170 ext4_mb_release_group_pa(&e4b, pa, ac);
4171 ext4_unlock_group(sb, group);
4172
4173 ext4_mb_release_desc(&e4b);
4174 list_del(&pa->u.pa_tmp_list);
4175 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4176 }
4177 if (ac)
4178 kmem_cache_free(ext4_ac_cachep, ac);
4179}
4180
4181/*
4182 * We have incremented pa_count. So it cannot be freed at this
4183 * point. Also we hold lg_mutex. So no parallel allocation is
4184 * possible from this lg. That means pa_free cannot be updated.
4185 *
4186 * A parallel ext4_mb_discard_group_preallocations is possible.
4187 * which can cause the lg_prealloc_list to be updated.
4188 */
4189
4190static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
4191{
4192 int order, added = 0, lg_prealloc_count = 1;
4193 struct super_block *sb = ac->ac_sb;
4194 struct ext4_locality_group *lg = ac->ac_lg;
4195 struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
4196
4197 order = fls(pa->pa_free) - 1;
4198 if (order > PREALLOC_TB_SIZE - 1)
4199 /* The max size of hash table is PREALLOC_TB_SIZE */
4200 order = PREALLOC_TB_SIZE - 1;
4201 /* Add the prealloc space to lg */
4202 rcu_read_lock();
4203 list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
4204 pa_inode_list) {
4205 spin_lock(&tmp_pa->pa_lock);
4206 if (tmp_pa->pa_deleted) {
4207 spin_unlock(&pa->pa_lock);
4208 continue;
4209 }
4210 if (!added && pa->pa_free < tmp_pa->pa_free) {
4211 /* Add to the tail of the previous entry */
4212 list_add_tail_rcu(&pa->pa_inode_list,
4213 &tmp_pa->pa_inode_list);
4214 added = 1;
4215 /*
4216 * we want to count the total
4217 * number of entries in the list
4218 */
4219 }
4220 spin_unlock(&tmp_pa->pa_lock);
4221 lg_prealloc_count++;
4222 }
4223 if (!added)
4224 list_add_tail_rcu(&pa->pa_inode_list,
4225 &lg->lg_prealloc_list[order]);
4226 rcu_read_unlock();
4227
4228 /* Now trim the list to be not more than 8 elements */
4229 if (lg_prealloc_count > 8) {
4230 ext4_mb_discard_lg_preallocations(sb, lg,
4231 order, lg_prealloc_count);
4232 return;
4233 }
4234 return ;
4235}
4236
Alex Tomasc9de5602008-01-29 00:19:52 -05004237/*
4238 * release all resource we used in allocation
4239 */
4240static int ext4_mb_release_context(struct ext4_allocation_context *ac)
4241{
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004242 struct ext4_prealloc_space *pa = ac->ac_pa;
4243 if (pa) {
4244 if (pa->pa_linear) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004245 /* see comment in ext4_mb_use_group_pa() */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004246 spin_lock(&pa->pa_lock);
4247 pa->pa_pstart += ac->ac_b_ex.fe_len;
4248 pa->pa_lstart += ac->ac_b_ex.fe_len;
4249 pa->pa_free -= ac->ac_b_ex.fe_len;
4250 pa->pa_len -= ac->ac_b_ex.fe_len;
4251 spin_unlock(&pa->pa_lock);
4252 /*
4253 * We want to add the pa to the right bucket.
4254 * Remove it from the list and while adding
4255 * make sure the list to which we are adding
4256 * doesn't grow big.
4257 */
4258 if (likely(pa->pa_free)) {
4259 spin_lock(pa->pa_obj_lock);
4260 list_del_rcu(&pa->pa_inode_list);
4261 spin_unlock(pa->pa_obj_lock);
4262 ext4_mb_add_n_trim(ac);
4263 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004264 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004265 ext4_mb_put_pa(ac, ac->ac_sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004266 }
4267 if (ac->ac_bitmap_page)
4268 page_cache_release(ac->ac_bitmap_page);
4269 if (ac->ac_buddy_page)
4270 page_cache_release(ac->ac_buddy_page);
4271 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
4272 mutex_unlock(&ac->ac_lg->lg_mutex);
4273 ext4_mb_collect_stats(ac);
4274 return 0;
4275}
4276
4277static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
4278{
4279 ext4_group_t i;
4280 int ret;
4281 int freed = 0;
4282
4283 for (i = 0; i < EXT4_SB(sb)->s_groups_count && needed > 0; i++) {
4284 ret = ext4_mb_discard_group_preallocations(sb, i, needed);
4285 freed += ret;
4286 needed -= ret;
4287 }
4288
4289 return freed;
4290}
4291
4292/*
4293 * Main entry point into mballoc to allocate blocks
4294 * it tries to use preallocation first, then falls back
4295 * to usual allocation
4296 */
4297ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
4298 struct ext4_allocation_request *ar, int *errp)
4299{
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004300 int freed;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004301 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004302 struct ext4_sb_info *sbi;
4303 struct super_block *sb;
4304 ext4_fsblk_t block = 0;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004305 unsigned long inquota;
4306 unsigned long reserv_blks = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004307
4308 sb = ar->inode->i_sb;
4309 sbi = EXT4_SB(sb);
4310
Mingming Caod2a17632008-07-14 17:52:37 -04004311 if (!EXT4_I(ar->inode)->i_delalloc_reserved_flag) {
4312 /*
4313 * With delalloc we already reserved the blocks
4314 */
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004315 while (ar->len && ext4_claim_free_blocks(sbi, ar->len)) {
4316 /* let others to free the space */
4317 yield();
4318 ar->len = ar->len >> 1;
4319 }
4320 if (!ar->len) {
Aneesh Kumar K.Va30d5422008-10-09 10:56:23 -04004321 *errp = -ENOSPC;
4322 return 0;
4323 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004324 reserv_blks = ar->len;
Mingming Caod2a17632008-07-14 17:52:37 -04004325 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004326 while (ar->len && DQUOT_ALLOC_BLOCK(ar->inode, ar->len)) {
4327 ar->flags |= EXT4_MB_HINT_NOPREALLOC;
4328 ar->len--;
4329 }
4330 if (ar->len == 0) {
4331 *errp = -EDQUOT;
4332 return 0;
4333 }
4334 inquota = ar->len;
4335
Mingming Caod2a17632008-07-14 17:52:37 -04004336 if (EXT4_I(ar->inode)->i_delalloc_reserved_flag)
4337 ar->flags |= EXT4_MB_DELALLOC_RESERVED;
4338
Eric Sandeen256bdb42008-02-10 01:13:33 -05004339 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
4340 if (!ac) {
Shen Feng363d4252008-07-11 19:27:31 -04004341 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004342 *errp = -ENOMEM;
Shen Feng363d4252008-07-11 19:27:31 -04004343 goto out1;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004344 }
4345
Alex Tomasc9de5602008-01-29 00:19:52 -05004346 ext4_mb_poll_new_transaction(sb, handle);
4347
Eric Sandeen256bdb42008-02-10 01:13:33 -05004348 *errp = ext4_mb_initialize_context(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004349 if (*errp) {
4350 ar->len = 0;
Shen Feng363d4252008-07-11 19:27:31 -04004351 goto out2;
Alex Tomasc9de5602008-01-29 00:19:52 -05004352 }
4353
Eric Sandeen256bdb42008-02-10 01:13:33 -05004354 ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
4355 if (!ext4_mb_use_preallocated(ac)) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004356 ac->ac_op = EXT4_MB_HISTORY_ALLOC;
4357 ext4_mb_normalize_request(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004358repeat:
4359 /* allocate space in core */
Eric Sandeen256bdb42008-02-10 01:13:33 -05004360 ext4_mb_regular_allocator(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004361
4362 /* as we've just preallocated more space than
4363 * user requested orinally, we store allocated
4364 * space in a special descriptor */
Eric Sandeen256bdb42008-02-10 01:13:33 -05004365 if (ac->ac_status == AC_STATUS_FOUND &&
4366 ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
4367 ext4_mb_new_preallocation(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004368 }
4369
Eric Sandeen256bdb42008-02-10 01:13:33 -05004370 if (likely(ac->ac_status == AC_STATUS_FOUND)) {
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004371 *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_blks);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004372 if (*errp == -EAGAIN) {
4373 ac->ac_b_ex.fe_group = 0;
4374 ac->ac_b_ex.fe_start = 0;
4375 ac->ac_b_ex.fe_len = 0;
4376 ac->ac_status = AC_STATUS_CONTINUE;
4377 goto repeat;
4378 } else if (*errp) {
4379 ac->ac_b_ex.fe_len = 0;
4380 ar->len = 0;
4381 ext4_mb_show_ac(ac);
4382 } else {
4383 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4384 ar->len = ac->ac_b_ex.fe_len;
4385 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004386 } else {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004387 freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004388 if (freed)
4389 goto repeat;
4390 *errp = -ENOSPC;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004391 ac->ac_b_ex.fe_len = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004392 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004393 ext4_mb_show_ac(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004394 }
4395
Eric Sandeen256bdb42008-02-10 01:13:33 -05004396 ext4_mb_release_context(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004397
Shen Feng363d4252008-07-11 19:27:31 -04004398out2:
4399 kmem_cache_free(ext4_ac_cachep, ac);
4400out1:
Alex Tomasc9de5602008-01-29 00:19:52 -05004401 if (ar->len < inquota)
4402 DQUOT_FREE_BLOCK(ar->inode, inquota - ar->len);
4403
4404 return block;
4405}
4406static void ext4_mb_poll_new_transaction(struct super_block *sb,
4407 handle_t *handle)
4408{
4409 struct ext4_sb_info *sbi = EXT4_SB(sb);
4410
4411 if (sbi->s_last_transaction == handle->h_transaction->t_tid)
4412 return;
4413
4414 /* new transaction! time to close last one and free blocks for
4415 * committed transaction. we know that only transaction can be
4416 * active, so previos transaction can be being logged and we
4417 * know that transaction before previous is known to be already
4418 * logged. this means that now we may free blocks freed in all
4419 * transactions before previous one. hope I'm clear enough ... */
4420
4421 spin_lock(&sbi->s_md_lock);
4422 if (sbi->s_last_transaction != handle->h_transaction->t_tid) {
4423 mb_debug("new transaction %lu, old %lu\n",
4424 (unsigned long) handle->h_transaction->t_tid,
4425 (unsigned long) sbi->s_last_transaction);
4426 list_splice_init(&sbi->s_closed_transaction,
4427 &sbi->s_committed_transaction);
4428 list_splice_init(&sbi->s_active_transaction,
4429 &sbi->s_closed_transaction);
4430 sbi->s_last_transaction = handle->h_transaction->t_tid;
4431 }
4432 spin_unlock(&sbi->s_md_lock);
4433
4434 ext4_mb_free_committed_blocks(sb);
4435}
4436
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004437/*
4438 * We can merge two free data extents only if the physical blocks
4439 * are contiguous, AND the extents were freed by the same transaction,
4440 * AND the blocks are associated with the same group.
4441 */
4442static int can_merge(struct ext4_free_data *entry1,
4443 struct ext4_free_data *entry2)
4444{
4445 if ((entry1->t_tid == entry2->t_tid) &&
4446 (entry1->group == entry2->group) &&
4447 ((entry1->start_blk + entry1->count) == entry2->start_blk))
4448 return 1;
4449 return 0;
4450}
4451
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004452static noinline_for_stack int
4453ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
Alex Tomasc9de5602008-01-29 00:19:52 -05004454 ext4_group_t group, ext4_grpblk_t block, int count)
4455{
4456 struct ext4_group_info *db = e4b->bd_info;
4457 struct super_block *sb = e4b->bd_sb;
4458 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004459 struct ext4_free_data *entry, *new_entry;
4460 struct rb_node **n = &db->bb_free_root.rb_node, *node;
4461 struct rb_node *parent = NULL, *new_node;
4462
Alex Tomasc9de5602008-01-29 00:19:52 -05004463
4464 BUG_ON(e4b->bd_bitmap_page == NULL);
4465 BUG_ON(e4b->bd_buddy_page == NULL);
4466
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004467 new_entry = kmem_cache_alloc(ext4_free_ext_cachep, GFP_NOFS);
4468 new_entry->start_blk = block;
4469 new_entry->group = group;
4470 new_entry->count = count;
4471 new_entry->t_tid = handle->h_transaction->t_tid;
4472 new_node = &new_entry->node;
4473
Alex Tomasc9de5602008-01-29 00:19:52 -05004474 ext4_lock_group(sb, group);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004475 if (!*n) {
4476 /* first free block exent. We need to
4477 protect buddy cache from being freed,
4478 * otherwise we'll refresh it from
4479 * on-disk bitmap and lose not-yet-available
4480 * blocks */
4481 page_cache_get(e4b->bd_buddy_page);
4482 page_cache_get(e4b->bd_bitmap_page);
4483 }
4484 while (*n) {
4485 parent = *n;
4486 entry = rb_entry(parent, struct ext4_free_data, node);
4487 if (block < entry->start_blk)
4488 n = &(*n)->rb_left;
4489 else if (block >= (entry->start_blk + entry->count))
4490 n = &(*n)->rb_right;
4491 else {
4492 ext4_error(sb, __func__,
4493 "Double free of blocks %d (%d %d)\n",
4494 block, entry->start_blk, entry->count);
4495 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004496 }
4497 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004498
4499 rb_link_node(new_node, parent, n);
4500 rb_insert_color(new_node, &db->bb_free_root);
4501
4502 /* Now try to see the extent can be merged to left and right */
4503 node = rb_prev(new_node);
4504 if (node) {
4505 entry = rb_entry(node, struct ext4_free_data, node);
4506 if (can_merge(entry, new_entry)) {
4507 new_entry->start_blk = entry->start_blk;
4508 new_entry->count += entry->count;
4509 rb_erase(node, &(db->bb_free_root));
4510 spin_lock(&sbi->s_md_lock);
4511 list_del(&entry->list);
4512 spin_unlock(&sbi->s_md_lock);
4513 kmem_cache_free(ext4_free_ext_cachep, entry);
4514 }
4515 }
4516
4517 node = rb_next(new_node);
4518 if (node) {
4519 entry = rb_entry(node, struct ext4_free_data, node);
4520 if (can_merge(new_entry, entry)) {
4521 new_entry->count += entry->count;
4522 rb_erase(node, &(db->bb_free_root));
4523 spin_lock(&sbi->s_md_lock);
4524 list_del(&entry->list);
4525 spin_unlock(&sbi->s_md_lock);
4526 kmem_cache_free(ext4_free_ext_cachep, entry);
4527 }
4528 }
4529 /* Add the extent to active_transaction list */
4530 spin_lock(&sbi->s_md_lock);
4531 list_add(&new_entry->list, &sbi->s_active_transaction);
4532 spin_unlock(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004533 ext4_unlock_group(sb, group);
4534 return 0;
4535}
4536
4537/*
4538 * Main entry point into mballoc to free blocks
4539 */
4540void ext4_mb_free_blocks(handle_t *handle, struct inode *inode,
4541 unsigned long block, unsigned long count,
4542 int metadata, unsigned long *freed)
4543{
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05004544 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004545 struct super_block *sb = inode->i_sb;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004546 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004547 struct ext4_group_desc *gdp;
4548 struct ext4_super_block *es;
4549 unsigned long overflow;
4550 ext4_grpblk_t bit;
4551 struct buffer_head *gd_bh;
4552 ext4_group_t block_group;
4553 struct ext4_sb_info *sbi;
4554 struct ext4_buddy e4b;
4555 int err = 0;
4556 int ret;
4557
4558 *freed = 0;
4559
4560 ext4_mb_poll_new_transaction(sb, handle);
4561
4562 sbi = EXT4_SB(sb);
4563 es = EXT4_SB(sb)->s_es;
4564 if (block < le32_to_cpu(es->s_first_data_block) ||
4565 block + count < block ||
4566 block + count > ext4_blocks_count(es)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -04004567 ext4_error(sb, __func__,
Alex Tomasc9de5602008-01-29 00:19:52 -05004568 "Freeing blocks not in datazone - "
4569 "block = %lu, count = %lu", block, count);
4570 goto error_return;
4571 }
4572
4573 ext4_debug("freeing block %lu\n", block);
4574
Eric Sandeen256bdb42008-02-10 01:13:33 -05004575 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
4576 if (ac) {
4577 ac->ac_op = EXT4_MB_HISTORY_FREE;
4578 ac->ac_inode = inode;
4579 ac->ac_sb = sb;
4580 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004581
4582do_more:
4583 overflow = 0;
4584 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
4585
4586 /*
4587 * Check to see if we are freeing blocks across a group
4588 * boundary.
4589 */
4590 if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4591 overflow = bit + count - EXT4_BLOCKS_PER_GROUP(sb);
4592 count -= overflow;
4593 }
Theodore Ts'o574ca172008-07-11 19:27:31 -04004594 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004595 if (!bitmap_bh) {
4596 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004597 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004598 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004599 gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004600 if (!gdp) {
4601 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004602 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004603 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004604
4605 if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
4606 in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
4607 in_range(block, ext4_inode_table(sb, gdp),
4608 EXT4_SB(sb)->s_itb_per_group) ||
4609 in_range(block + count - 1, ext4_inode_table(sb, gdp),
4610 EXT4_SB(sb)->s_itb_per_group)) {
4611
Harvey Harrison46e665e2008-04-17 10:38:59 -04004612 ext4_error(sb, __func__,
Alex Tomasc9de5602008-01-29 00:19:52 -05004613 "Freeing blocks in system zone - "
4614 "Block = %lu, count = %lu", block, count);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004615 /* err = 0. ext4_std_error should be a no op */
4616 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004617 }
4618
4619 BUFFER_TRACE(bitmap_bh, "getting write access");
4620 err = ext4_journal_get_write_access(handle, bitmap_bh);
4621 if (err)
4622 goto error_return;
4623
4624 /*
4625 * We are about to modify some metadata. Call the journal APIs
4626 * to unshare ->b_data if a currently-committing transaction is
4627 * using it
4628 */
4629 BUFFER_TRACE(gd_bh, "get_write_access");
4630 err = ext4_journal_get_write_access(handle, gd_bh);
4631 if (err)
4632 goto error_return;
4633
4634 err = ext4_mb_load_buddy(sb, block_group, &e4b);
4635 if (err)
4636 goto error_return;
4637
4638#ifdef AGGRESSIVE_CHECK
4639 {
4640 int i;
4641 for (i = 0; i < count; i++)
4642 BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
4643 }
4644#endif
4645 mb_clear_bits(sb_bgl_lock(sbi, block_group), bitmap_bh->b_data,
4646 bit, count);
4647
4648 /* We dirtied the bitmap block */
4649 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
4650 err = ext4_journal_dirty_metadata(handle, bitmap_bh);
4651
Eric Sandeen256bdb42008-02-10 01:13:33 -05004652 if (ac) {
4653 ac->ac_b_ex.fe_group = block_group;
4654 ac->ac_b_ex.fe_start = bit;
4655 ac->ac_b_ex.fe_len = count;
4656 ext4_mb_store_history(ac);
4657 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004658
4659 if (metadata) {
4660 /* blocks being freed are metadata. these blocks shouldn't
4661 * be used until this transaction is committed */
4662 ext4_mb_free_metadata(handle, &e4b, block_group, bit, count);
4663 } else {
4664 ext4_lock_group(sb, block_group);
Shen Feng7e5a8cd2008-07-13 21:03:31 -04004665 mb_free_blocks(inode, &e4b, bit, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004666 ext4_mb_return_to_preallocation(inode, &e4b, block, count);
4667 ext4_unlock_group(sb, block_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004668 }
4669
4670 spin_lock(sb_bgl_lock(sbi, block_group));
Marcin Slusarze8546d02008-04-17 10:38:59 -04004671 le16_add_cpu(&gdp->bg_free_blocks_count, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004672 gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
4673 spin_unlock(sb_bgl_lock(sbi, block_group));
4674 percpu_counter_add(&sbi->s_freeblocks_counter, count);
4675
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004676 if (sbi->s_log_groups_per_flex) {
4677 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
4678 spin_lock(sb_bgl_lock(sbi, flex_group));
4679 sbi->s_flex_groups[flex_group].free_blocks += count;
4680 spin_unlock(sb_bgl_lock(sbi, flex_group));
4681 }
4682
Alex Tomasc9de5602008-01-29 00:19:52 -05004683 ext4_mb_release_desc(&e4b);
4684
4685 *freed += count;
4686
4687 /* And the group descriptor block */
4688 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
4689 ret = ext4_journal_dirty_metadata(handle, gd_bh);
4690 if (!err)
4691 err = ret;
4692
4693 if (overflow && !err) {
4694 block += count;
4695 count = overflow;
4696 put_bh(bitmap_bh);
4697 goto do_more;
4698 }
4699 sb->s_dirt = 1;
4700error_return:
4701 brelse(bitmap_bh);
4702 ext4_std_error(sb, err);
Eric Sandeen256bdb42008-02-10 01:13:33 -05004703 if (ac)
4704 kmem_cache_free(ext4_ac_cachep, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004705 return;
4706}