blob: 0e83dfd351d516d30aa37a9fc44f3ade471ec670 [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"
Theodore Ts'o6ba495e2009-09-18 13:38:55 -040025#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040027#include <trace/events/ext4.h>
28
Alex Tomasc9de5602008-01-29 00:19:52 -050029/*
30 * MUSTDO:
31 * - test ext4_ext_search_left() and ext4_ext_search_right()
32 * - search for metadata in few groups
33 *
34 * TODO v4:
35 * - normalization should take into account whether file is still open
36 * - discard preallocations if no free space left (policy?)
37 * - don't normalize tails
38 * - quota
39 * - reservation for superuser
40 *
41 * TODO v3:
42 * - bitmap read-ahead (proposed by Oleg Drokin aka green)
43 * - track min/max extents in each group for better group selection
44 * - mb_mark_used() may allocate chunk right after splitting buddy
45 * - tree of groups sorted by number of free blocks
46 * - error handling
47 */
48
49/*
50 * The allocation request involve request for multiple number of blocks
51 * near to the goal(block) value specified.
52 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040053 * During initialization phase of the allocator we decide to use the
54 * group preallocation or inode preallocation depending on the size of
55 * the file. The size of the file could be the resulting file size we
56 * would have after allocation, or the current file size, which ever
57 * is larger. If the size is less than sbi->s_mb_stream_request we
58 * select to use the group preallocation. The default value of
59 * s_mb_stream_request is 16 blocks. This can also be tuned via
60 * /sys/fs/ext4/<partition>/mb_stream_req. The value is represented in
61 * terms of number of blocks.
Alex Tomasc9de5602008-01-29 00:19:52 -050062 *
63 * The main motivation for having small file use group preallocation is to
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040064 * ensure that we have small files closer together on the disk.
Alex Tomasc9de5602008-01-29 00:19:52 -050065 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040066 * First stage the allocator looks at the inode prealloc list,
67 * ext4_inode_info->i_prealloc_list, which contains list of prealloc
68 * spaces for this particular inode. The inode prealloc space is
69 * represented as:
Alex Tomasc9de5602008-01-29 00:19:52 -050070 *
71 * pa_lstart -> the logical start block for this prealloc space
72 * pa_pstart -> the physical start block for this prealloc space
Daniel Mack1537a362010-01-29 15:57:49 +080073 * pa_len -> length for this prealloc space
Alex Tomasc9de5602008-01-29 00:19:52 -050074 * pa_free -> free space available in this prealloc space
75 *
76 * The inode preallocation space is used looking at the _logical_ start
77 * block. If only the logical file block falls within the range of prealloc
78 * space we will consume the particular prealloc space. This make sure that
79 * that the we have contiguous physical blocks representing the file blocks
80 *
81 * The important thing to be noted in case of inode prealloc space is that
82 * we don't modify the values associated to inode prealloc space except
83 * pa_free.
84 *
85 * If we are not able to find blocks in the inode prealloc space and if we
86 * have the group allocation flag set then we look at the locality group
87 * prealloc space. These are per CPU prealloc list repreasented as
88 *
89 * ext4_sb_info.s_locality_groups[smp_processor_id()]
90 *
91 * The reason for having a per cpu locality group is to reduce the contention
92 * between CPUs. It is possible to get scheduled at this point.
93 *
94 * The locality group prealloc space is used looking at whether we have
95 * enough free space (pa_free) withing the prealloc space.
96 *
97 * If we can't allocate blocks via inode prealloc or/and locality group
98 * prealloc then we look at the buddy cache. The buddy cache is represented
99 * by ext4_sb_info.s_buddy_cache (struct inode) whose file offset gets
100 * mapped to the buddy and bitmap information regarding different
101 * groups. The buddy information is attached to buddy cache inode so that
102 * we can access them through the page cache. The information regarding
103 * each group is loaded via ext4_mb_load_buddy. The information involve
104 * block bitmap and buddy information. The information are stored in the
105 * inode as:
106 *
107 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500108 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500109 *
110 *
111 * one block each for bitmap and buddy information. So for each group we
112 * take up 2 blocks. A page can contain blocks_per_page (PAGE_CACHE_SIZE /
113 * blocksize) blocks. So it can have information regarding groups_per_page
114 * which is blocks_per_page/2
115 *
116 * The buddy cache inode is not stored on disk. The inode is thrown
117 * away when the filesystem is unmounted.
118 *
119 * We look for count number of blocks in the buddy cache. If we were able
120 * to locate that many free blocks we return with additional information
121 * regarding rest of the contiguous physical block available
122 *
123 * Before allocating blocks via buddy cache we normalize the request
124 * blocks. This ensure we ask for more blocks that we needed. The extra
125 * blocks that we get after allocation is added to the respective prealloc
126 * list. In case of inode preallocation we follow a list of heuristics
127 * based on file size. This can be found in ext4_mb_normalize_request. If
128 * we are doing a group prealloc we try to normalize the request to
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400129 * sbi->s_mb_group_prealloc. Default value of s_mb_group_prealloc is
Alex Tomasc9de5602008-01-29 00:19:52 -0500130 * 512 blocks. This can be tuned via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400131 * /sys/fs/ext4/<partition/mb_group_prealloc. The value is represented in
Alex Tomasc9de5602008-01-29 00:19:52 -0500132 * terms of number of blocks. If we have mounted the file system with -O
133 * stripe=<value> option the group prealloc request is normalized to the
134 * stripe value (sbi->s_stripe)
135 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400136 * The regular allocator(using the buddy cache) supports few tunables.
Alex Tomasc9de5602008-01-29 00:19:52 -0500137 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400138 * /sys/fs/ext4/<partition>/mb_min_to_scan
139 * /sys/fs/ext4/<partition>/mb_max_to_scan
140 * /sys/fs/ext4/<partition>/mb_order2_req
Alex Tomasc9de5602008-01-29 00:19:52 -0500141 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400142 * The regular allocator uses buddy scan only if the request len is power of
Alex Tomasc9de5602008-01-29 00:19:52 -0500143 * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The
144 * value of s_mb_order2_reqs can be tuned via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400145 * /sys/fs/ext4/<partition>/mb_order2_req. If the request len is equal to
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200146 * stripe size (sbi->s_stripe), we try to search for contiguous block in
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400147 * stripe size. This should result in better allocation on RAID setups. If
148 * not, we search in the specific group using bitmap for best extents. The
149 * tunable min_to_scan and max_to_scan control the behaviour here.
Alex Tomasc9de5602008-01-29 00:19:52 -0500150 * min_to_scan indicate how long the mballoc __must__ look for a best
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400151 * extent and max_to_scan indicates how long the mballoc __can__ look for a
Alex Tomasc9de5602008-01-29 00:19:52 -0500152 * best extent in the found extents. Searching for the blocks starts with
153 * the group specified as the goal value in allocation context via
154 * ac_g_ex. Each group is first checked based on the criteria whether it
155 * can used for allocation. ext4_mb_good_group explains how the groups are
156 * checked.
157 *
158 * Both the prealloc space are getting populated as above. So for the first
159 * request we will hit the buddy cache which will result in this prealloc
160 * space getting filled. The prealloc space is then later used for the
161 * subsequent request.
162 */
163
164/*
165 * mballoc operates on the following data:
166 * - on-disk bitmap
167 * - in-core buddy (actually includes buddy and bitmap)
168 * - preallocation descriptors (PAs)
169 *
170 * there are two types of preallocations:
171 * - inode
172 * assiged to specific inode and can be used for this inode only.
173 * it describes part of inode's space preallocated to specific
174 * physical blocks. any block from that preallocated can be used
175 * independent. the descriptor just tracks number of blocks left
176 * unused. so, before taking some block from descriptor, one must
177 * make sure corresponded logical block isn't allocated yet. this
178 * also means that freeing any block within descriptor's range
179 * must discard all preallocated blocks.
180 * - locality group
181 * assigned to specific locality group which does not translate to
182 * permanent set of inodes: inode can join and leave group. space
183 * from this type of preallocation can be used for any inode. thus
184 * it's consumed from the beginning to the end.
185 *
186 * relation between them can be expressed as:
187 * in-core buddy = on-disk bitmap + preallocation descriptors
188 *
189 * this mean blocks mballoc considers used are:
190 * - allocated blocks (persistent)
191 * - preallocated blocks (non-persistent)
192 *
193 * consistency in mballoc world means that at any time a block is either
194 * free or used in ALL structures. notice: "any time" should not be read
195 * literally -- time is discrete and delimited by locks.
196 *
197 * to keep it simple, we don't use block numbers, instead we count number of
198 * blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA.
199 *
200 * all operations can be expressed as:
201 * - init buddy: buddy = on-disk + PAs
202 * - new PA: buddy += N; PA = N
203 * - use inode PA: on-disk += N; PA -= N
204 * - discard inode PA buddy -= on-disk - PA; PA = 0
205 * - use locality group PA on-disk += N; PA -= N
206 * - discard locality group PA buddy -= PA; PA = 0
207 * note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap
208 * is used in real operation because we can't know actual used
209 * bits from PA, only from on-disk bitmap
210 *
211 * if we follow this strict logic, then all operations above should be atomic.
212 * given some of them can block, we'd have to use something like semaphores
213 * killing performance on high-end SMP hardware. let's try to relax it using
214 * the following knowledge:
215 * 1) if buddy is referenced, it's already initialized
216 * 2) while block is used in buddy and the buddy is referenced,
217 * nobody can re-allocate that block
218 * 3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has
219 * bit set and PA claims same block, it's OK. IOW, one can set bit in
220 * on-disk bitmap if buddy has same bit set or/and PA covers corresponded
221 * block
222 *
223 * so, now we're building a concurrency table:
224 * - init buddy vs.
225 * - new PA
226 * blocks for PA are allocated in the buddy, buddy must be referenced
227 * until PA is linked to allocation group to avoid concurrent buddy init
228 * - use inode PA
229 * we need to make sure that either on-disk bitmap or PA has uptodate data
230 * given (3) we care that PA-=N operation doesn't interfere with init
231 * - discard inode PA
232 * the simplest way would be to have buddy initialized by the discard
233 * - use locality group PA
234 * again PA-=N must be serialized with init
235 * - discard locality group PA
236 * the simplest way would be to have buddy initialized by the discard
237 * - new PA vs.
238 * - use inode PA
239 * i_data_sem serializes them
240 * - discard inode PA
241 * discard process must wait until PA isn't used by another process
242 * - use locality group PA
243 * some mutex should serialize them
244 * - discard locality group PA
245 * discard process must wait until PA isn't used by another process
246 * - use inode PA
247 * - use inode PA
248 * i_data_sem or another mutex should serializes them
249 * - discard inode PA
250 * discard process must wait until PA isn't used by another process
251 * - use locality group PA
252 * nothing wrong here -- they're different PAs covering different blocks
253 * - discard locality group PA
254 * discard process must wait until PA isn't used by another process
255 *
256 * now we're ready to make few consequences:
257 * - PA is referenced and while it is no discard is possible
258 * - PA is referenced until block isn't marked in on-disk bitmap
259 * - PA changes only after on-disk bitmap
260 * - discard must not compete with init. either init is done before
261 * any discard or they're serialized somehow
262 * - buddy init as sum of on-disk bitmap and PAs is done atomically
263 *
264 * a special case when we've used PA to emptiness. no need to modify buddy
265 * in this case, but we should care about concurrent init
266 *
267 */
268
269 /*
270 * Logic in few words:
271 *
272 * - allocation:
273 * load group
274 * find blocks
275 * mark bits in on-disk bitmap
276 * release group
277 *
278 * - use preallocation:
279 * find proper PA (per-inode or group)
280 * load group
281 * mark bits in on-disk bitmap
282 * release group
283 * release PA
284 *
285 * - free:
286 * load group
287 * mark bits in on-disk bitmap
288 * release group
289 *
290 * - discard preallocations in group:
291 * mark PAs deleted
292 * move them onto local list
293 * load on-disk bitmap
294 * load group
295 * remove PA from object (inode or locality group)
296 * mark free blocks in-core
297 *
298 * - discard inode's preallocations:
299 */
300
301/*
302 * Locking rules
303 *
304 * Locks:
305 * - bitlock on a group (group)
306 * - object (inode/locality) (object)
307 * - per-pa lock (pa)
308 *
309 * Paths:
310 * - new pa
311 * object
312 * group
313 *
314 * - find and use pa:
315 * pa
316 *
317 * - release consumed pa:
318 * pa
319 * group
320 * object
321 *
322 * - generate in-core bitmap:
323 * group
324 * pa
325 *
326 * - discard all for given object (inode, locality group):
327 * object
328 * pa
329 * group
330 *
331 * - discard all for given group:
332 * group
333 * pa
334 * group
335 * object
336 *
337 */
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500338static struct kmem_cache *ext4_pspace_cachep;
339static struct kmem_cache *ext4_ac_cachep;
340static struct kmem_cache *ext4_free_ext_cachep;
341static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
342 ext4_group_t group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500343static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
344 ext4_group_t group);
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500345static void release_blocks_on_commit(journal_t *journal, transaction_t *txn);
346
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500347static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
348{
Alex Tomasc9de5602008-01-29 00:19:52 -0500349#if BITS_PER_LONG == 64
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500350 *bit += ((unsigned long) addr & 7UL) << 3;
351 addr = (void *) ((unsigned long) addr & ~7UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500352#elif BITS_PER_LONG == 32
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500353 *bit += ((unsigned long) addr & 3UL) << 3;
354 addr = (void *) ((unsigned long) addr & ~3UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500355#else
356#error "how many bits you are?!"
357#endif
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500358 return addr;
359}
Alex Tomasc9de5602008-01-29 00:19:52 -0500360
361static inline int mb_test_bit(int bit, void *addr)
362{
363 /*
364 * ext4_test_bit on architecture like powerpc
365 * needs unsigned long aligned address
366 */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500367 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500368 return ext4_test_bit(bit, addr);
369}
370
371static inline void mb_set_bit(int bit, void *addr)
372{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500373 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500374 ext4_set_bit(bit, addr);
375}
376
Alex Tomasc9de5602008-01-29 00:19:52 -0500377static inline void mb_clear_bit(int bit, void *addr)
378{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500379 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500380 ext4_clear_bit(bit, addr);
381}
382
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500383static inline int mb_find_next_zero_bit(void *addr, int max, int start)
384{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400385 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500386 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400387 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500388 start += fix;
389
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400390 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix;
391 if (ret > max)
392 return max;
393 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500394}
395
396static inline int mb_find_next_bit(void *addr, int max, int start)
397{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400398 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500399 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400400 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500401 start += fix;
402
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400403 ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
404 if (ret > max)
405 return max;
406 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500407}
408
Alex Tomasc9de5602008-01-29 00:19:52 -0500409static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
410{
411 char *bb;
412
Alex Tomasc9de5602008-01-29 00:19:52 -0500413 BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
414 BUG_ON(max == NULL);
415
416 if (order > e4b->bd_blkbits + 1) {
417 *max = 0;
418 return NULL;
419 }
420
421 /* at order 0 we see each particular block */
422 *max = 1 << (e4b->bd_blkbits + 3);
423 if (order == 0)
424 return EXT4_MB_BITMAP(e4b);
425
426 bb = EXT4_MB_BUDDY(e4b) + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
427 *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
428
429 return bb;
430}
431
432#ifdef DOUBLE_CHECK
433static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
434 int first, int count)
435{
436 int i;
437 struct super_block *sb = e4b->bd_sb;
438
439 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
440 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400441 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500442 for (i = 0; i < count; i++) {
443 if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
444 ext4_fsblk_t blocknr;
Akinobu Mita5661bd62010-03-03 23:53:39 -0500445
446 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500447 blocknr += first + i;
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500448 ext4_grp_locked_error(sb, e4b->bd_group,
449 __func__, "double-free of inode"
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500450 " %lu's block %llu(bit %u in group %u)",
Alex Tomasc9de5602008-01-29 00:19:52 -0500451 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;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400464 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500465 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'oa9df9a42009-01-05 22:18:16 -0500480 printk(KERN_ERR "corruption in group %u "
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400481 "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,
Eric Sandeena36b4492009-08-25 22:36:45 -0400626 void *buddy, ext4_grpblk_t first, ext4_grpblk_t len,
Alex Tomasc9de5602008-01-29 00:19:52 -0500627 struct ext4_group_info *grp)
628{
629 struct ext4_sb_info *sbi = EXT4_SB(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400630 ext4_grpblk_t min;
631 ext4_grpblk_t max;
632 ext4_grpblk_t chunk;
Alex Tomasc9de5602008-01-29 00:19:52 -0500633 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
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400661/*
662 * Cache the order of the largest free extent we have available in this block
663 * group.
664 */
665static void
666mb_set_largest_free_order(struct super_block *sb, struct ext4_group_info *grp)
667{
668 int i;
669 int bits;
670
671 grp->bb_largest_free_order = -1; /* uninit */
672
673 bits = sb->s_blocksize_bits + 1;
674 for (i = bits; i >= 0; i--) {
675 if (grp->bb_counters[i] > 0) {
676 grp->bb_largest_free_order = i;
677 break;
678 }
679 }
680}
681
Eric Sandeen089ceec2009-07-05 22:17:31 -0400682static noinline_for_stack
683void ext4_mb_generate_buddy(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -0500684 void *buddy, void *bitmap, ext4_group_t group)
685{
686 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
Eric Sandeena36b4492009-08-25 22:36:45 -0400687 ext4_grpblk_t max = EXT4_BLOCKS_PER_GROUP(sb);
688 ext4_grpblk_t i = 0;
689 ext4_grpblk_t first;
690 ext4_grpblk_t len;
Alex Tomasc9de5602008-01-29 00:19:52 -0500691 unsigned free = 0;
692 unsigned fragments = 0;
693 unsigned long long period = get_cycles();
694
695 /* initialize buddy from bitmap which is aggregation
696 * of on-disk bitmap and preallocations */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500697 i = mb_find_next_zero_bit(bitmap, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -0500698 grp->bb_first_free = i;
699 while (i < max) {
700 fragments++;
701 first = i;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500702 i = mb_find_next_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500703 len = i - first;
704 free += len;
705 if (len > 1)
706 ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
707 else
708 grp->bb_counters[0]++;
709 if (i < max)
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500710 i = mb_find_next_zero_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500711 }
712 grp->bb_fragments = fragments;
713
714 if (free != grp->bb_free) {
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500715 ext4_grp_locked_error(sb, group, __func__,
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500716 "EXT4-fs: group %u: %u blocks in bitmap, %u in gd",
Alex Tomasc9de5602008-01-29 00:19:52 -0500717 group, free, grp->bb_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500718 /*
719 * If we intent to continue, we consider group descritor
720 * corrupt and update bb_free using bitmap value
721 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500722 grp->bb_free = free;
723 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400724 mb_set_largest_free_order(sb, grp);
Alex Tomasc9de5602008-01-29 00:19:52 -0500725
726 clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
727
728 period = get_cycles() - period;
729 spin_lock(&EXT4_SB(sb)->s_bal_lock);
730 EXT4_SB(sb)->s_mb_buddies_generated++;
731 EXT4_SB(sb)->s_mb_generation_time += period;
732 spin_unlock(&EXT4_SB(sb)->s_bal_lock);
733}
734
735/* The buddy information is attached the buddy cache inode
736 * for convenience. The information regarding each group
737 * is loaded via ext4_mb_load_buddy. The information involve
738 * block bitmap and buddy information. The information are
739 * stored in the inode as
740 *
741 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500742 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500743 *
744 *
745 * one block each for bitmap and buddy information.
746 * So for each group we take up 2 blocks. A page can
747 * contain blocks_per_page (PAGE_CACHE_SIZE / blocksize) blocks.
748 * So it can have information regarding groups_per_page which
749 * is blocks_per_page/2
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400750 *
751 * Locking note: This routine takes the block group lock of all groups
752 * for this page; do not hold this lock when calling this routine!
Alex Tomasc9de5602008-01-29 00:19:52 -0500753 */
754
755static int ext4_mb_init_cache(struct page *page, char *incore)
756{
Theodore Ts'o8df96752009-05-01 08:50:38 -0400757 ext4_group_t ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -0500758 int blocksize;
759 int blocks_per_page;
760 int groups_per_page;
761 int err = 0;
762 int i;
763 ext4_group_t first_group;
764 int first_block;
765 struct super_block *sb;
766 struct buffer_head *bhs;
767 struct buffer_head **bh;
768 struct inode *inode;
769 char *data;
770 char *bitmap;
771
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400772 mb_debug(1, "init page %lu\n", page->index);
Alex Tomasc9de5602008-01-29 00:19:52 -0500773
774 inode = page->mapping->host;
775 sb = inode->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400776 ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -0500777 blocksize = 1 << inode->i_blkbits;
778 blocks_per_page = PAGE_CACHE_SIZE / blocksize;
779
780 groups_per_page = blocks_per_page >> 1;
781 if (groups_per_page == 0)
782 groups_per_page = 1;
783
784 /* allocate buffer_heads to read bitmaps */
785 if (groups_per_page > 1) {
786 err = -ENOMEM;
787 i = sizeof(struct buffer_head *) * groups_per_page;
788 bh = kzalloc(i, GFP_NOFS);
789 if (bh == NULL)
790 goto out;
791 } else
792 bh = &bhs;
793
794 first_group = page->index * blocks_per_page / 2;
795
796 /* read all groups the page covers into the cache */
797 for (i = 0; i < groups_per_page; i++) {
798 struct ext4_group_desc *desc;
799
Theodore Ts'o8df96752009-05-01 08:50:38 -0400800 if (first_group + i >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500801 break;
802
803 err = -EIO;
804 desc = ext4_get_group_desc(sb, first_group + i, NULL);
805 if (desc == NULL)
806 goto out;
807
808 err = -ENOMEM;
809 bh[i] = sb_getblk(sb, ext4_block_bitmap(sb, desc));
810 if (bh[i] == NULL)
811 goto out;
812
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500813 if (bitmap_uptodate(bh[i]))
Alex Tomasc9de5602008-01-29 00:19:52 -0500814 continue;
815
Frederic Bohec806e682008-10-10 08:09:18 -0400816 lock_buffer(bh[i]);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500817 if (bitmap_uptodate(bh[i])) {
818 unlock_buffer(bh[i]);
819 continue;
820 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400821 ext4_lock_group(sb, first_group + i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500822 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
823 ext4_init_block_bitmap(sb, bh[i],
824 first_group + i, desc);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500825 set_bitmap_uptodate(bh[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500826 set_buffer_uptodate(bh[i]);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400827 ext4_unlock_group(sb, first_group + i);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500828 unlock_buffer(bh[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500829 continue;
830 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400831 ext4_unlock_group(sb, first_group + i);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500832 if (buffer_uptodate(bh[i])) {
833 /*
834 * if not uninit if bh is uptodate,
835 * bitmap is also uptodate
836 */
837 set_bitmap_uptodate(bh[i]);
838 unlock_buffer(bh[i]);
839 continue;
840 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500841 get_bh(bh[i]);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500842 /*
843 * submit the buffer_head for read. We can
844 * safely mark the bitmap as uptodate now.
845 * We do it here so the bitmap uptodate bit
846 * get set with buffer lock held.
847 */
848 set_bitmap_uptodate(bh[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500849 bh[i]->b_end_io = end_buffer_read_sync;
850 submit_bh(READ, bh[i]);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400851 mb_debug(1, "read bitmap for group %u\n", first_group + i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500852 }
853
854 /* wait for I/O completion */
855 for (i = 0; i < groups_per_page && bh[i]; i++)
856 wait_on_buffer(bh[i]);
857
858 err = -EIO;
859 for (i = 0; i < groups_per_page && bh[i]; i++)
860 if (!buffer_uptodate(bh[i]))
861 goto out;
862
Mingming Cao31b481d2008-07-11 19:27:31 -0400863 err = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -0500864 first_block = page->index * blocks_per_page;
Aneesh Kumar K.V29eaf022009-01-05 21:48:56 -0500865 /* init the page */
866 memset(page_address(page), 0xff, PAGE_CACHE_SIZE);
Alex Tomasc9de5602008-01-29 00:19:52 -0500867 for (i = 0; i < blocks_per_page; i++) {
868 int group;
869 struct ext4_group_info *grinfo;
870
871 group = (first_block + i) >> 1;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400872 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500873 break;
874
875 /*
876 * data carry information regarding this
877 * particular group in the format specified
878 * above
879 *
880 */
881 data = page_address(page) + (i * blocksize);
882 bitmap = bh[group - first_group]->b_data;
883
884 /*
885 * We place the buddy block and bitmap block
886 * close together
887 */
888 if ((first_block + i) & 1) {
889 /* this is block of buddy */
890 BUG_ON(incore == NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400891 mb_debug(1, "put buddy for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500892 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400893 trace_ext4_mb_buddy_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500894 grinfo = ext4_get_group_info(sb, group);
895 grinfo->bb_fragments = 0;
896 memset(grinfo->bb_counters, 0,
Eric Sandeen19278052009-08-25 22:36:25 -0400897 sizeof(*grinfo->bb_counters) *
898 (sb->s_blocksize_bits+2));
Alex Tomasc9de5602008-01-29 00:19:52 -0500899 /*
900 * incore got set to the group block bitmap below
901 */
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500902 ext4_lock_group(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500903 ext4_mb_generate_buddy(sb, data, incore, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500904 ext4_unlock_group(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500905 incore = NULL;
906 } else {
907 /* this is block of bitmap */
908 BUG_ON(incore != NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400909 mb_debug(1, "put bitmap for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500910 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400911 trace_ext4_mb_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500912
913 /* see comments in ext4_mb_put_pa() */
914 ext4_lock_group(sb, group);
915 memcpy(data, bitmap, blocksize);
916
917 /* mark all preallocated blks used in in-core bitmap */
918 ext4_mb_generate_from_pa(sb, data, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500919 ext4_mb_generate_from_freelist(sb, data, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500920 ext4_unlock_group(sb, group);
921
922 /* set incore so that the buddy information can be
923 * generated using this
924 */
925 incore = data;
926 }
927 }
928 SetPageUptodate(page);
929
930out:
931 if (bh) {
932 for (i = 0; i < groups_per_page && bh[i]; i++)
933 brelse(bh[i]);
934 if (bh != &bhs)
935 kfree(bh);
936 }
937 return err;
938}
939
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400940/*
941 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
942 * block group lock of all groups for this page; do not hold the BG lock when
943 * calling this routine!
944 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -0400945static noinline_for_stack
946int ext4_mb_init_group(struct super_block *sb, ext4_group_t group)
947{
948
949 int ret = 0;
950 void *bitmap;
951 int blocks_per_page;
952 int block, pnum, poff;
953 int num_grp_locked = 0;
954 struct ext4_group_info *this_grp;
955 struct ext4_sb_info *sbi = EXT4_SB(sb);
956 struct inode *inode = sbi->s_buddy_cache;
957 struct page *page = NULL, *bitmap_page = NULL;
958
959 mb_debug(1, "init group %u\n", group);
960 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
961 this_grp = ext4_get_group_info(sb, group);
962 /*
Aneesh Kumar K.V08c3a812009-09-09 23:50:17 -0400963 * This ensures that we don't reinit the buddy cache
964 * page which map to the group from which we are already
965 * allocating. If we are looking at the buddy cache we would
966 * have taken a reference using ext4_mb_load_buddy and that
967 * would have taken the alloc_sem lock.
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -0400968 */
969 num_grp_locked = ext4_mb_get_buddy_cache_lock(sb, group);
970 if (!EXT4_MB_GRP_NEED_INIT(this_grp)) {
971 /*
972 * somebody initialized the group
973 * return without doing anything
974 */
975 ret = 0;
976 goto err;
977 }
978 /*
979 * the buddy cache inode stores the block bitmap
980 * and buddy information in consecutive blocks.
981 * So for each group we need two blocks.
982 */
983 block = group * 2;
984 pnum = block / blocks_per_page;
985 poff = block % blocks_per_page;
986 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
987 if (page) {
988 BUG_ON(page->mapping != inode->i_mapping);
989 ret = ext4_mb_init_cache(page, NULL);
990 if (ret) {
991 unlock_page(page);
992 goto err;
993 }
994 unlock_page(page);
995 }
996 if (page == NULL || !PageUptodate(page)) {
997 ret = -EIO;
998 goto err;
999 }
1000 mark_page_accessed(page);
1001 bitmap_page = page;
1002 bitmap = page_address(page) + (poff * sb->s_blocksize);
1003
1004 /* init buddy cache */
1005 block++;
1006 pnum = block / blocks_per_page;
1007 poff = block % blocks_per_page;
1008 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1009 if (page == bitmap_page) {
1010 /*
1011 * If both the bitmap and buddy are in
1012 * the same page we don't need to force
1013 * init the buddy
1014 */
1015 unlock_page(page);
1016 } else if (page) {
1017 BUG_ON(page->mapping != inode->i_mapping);
1018 ret = ext4_mb_init_cache(page, bitmap);
1019 if (ret) {
1020 unlock_page(page);
1021 goto err;
1022 }
1023 unlock_page(page);
1024 }
1025 if (page == NULL || !PageUptodate(page)) {
1026 ret = -EIO;
1027 goto err;
1028 }
1029 mark_page_accessed(page);
1030err:
1031 ext4_mb_put_buddy_cache_lock(sb, group, num_grp_locked);
1032 if (bitmap_page)
1033 page_cache_release(bitmap_page);
1034 if (page)
1035 page_cache_release(page);
1036 return ret;
1037}
1038
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001039/*
1040 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1041 * block group lock of all groups for this page; do not hold the BG lock when
1042 * calling this routine!
1043 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04001044static noinline_for_stack int
1045ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
1046 struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001047{
Alex Tomasc9de5602008-01-29 00:19:52 -05001048 int blocks_per_page;
1049 int block;
1050 int pnum;
1051 int poff;
1052 struct page *page;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001053 int ret;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001054 struct ext4_group_info *grp;
1055 struct ext4_sb_info *sbi = EXT4_SB(sb);
1056 struct inode *inode = sbi->s_buddy_cache;
Alex Tomasc9de5602008-01-29 00:19:52 -05001057
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04001058 mb_debug(1, "load group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001059
1060 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001061 grp = ext4_get_group_info(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001062
1063 e4b->bd_blkbits = sb->s_blocksize_bits;
1064 e4b->bd_info = ext4_get_group_info(sb, group);
1065 e4b->bd_sb = sb;
1066 e4b->bd_group = group;
1067 e4b->bd_buddy_page = NULL;
1068 e4b->bd_bitmap_page = NULL;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001069 e4b->alloc_semp = &grp->alloc_sem;
1070
1071 /* Take the read lock on the group alloc
1072 * sem. This would make sure a parallel
1073 * ext4_mb_init_group happening on other
1074 * groups mapped by the page is blocked
1075 * till we are done with allocation
1076 */
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001077repeat_load_buddy:
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001078 down_read(e4b->alloc_semp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001079
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001080 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
1081 /* we need to check for group need init flag
1082 * with alloc_semp held so that we can be sure
1083 * that new blocks didn't get added to the group
1084 * when we are loading the buddy cache
1085 */
1086 up_read(e4b->alloc_semp);
1087 /*
1088 * we need full data about the group
1089 * to make a good selection
1090 */
1091 ret = ext4_mb_init_group(sb, group);
1092 if (ret)
1093 return ret;
1094 goto repeat_load_buddy;
1095 }
1096
Alex Tomasc9de5602008-01-29 00:19:52 -05001097 /*
1098 * the buddy cache inode stores the block bitmap
1099 * and buddy information in consecutive blocks.
1100 * So for each group we need two blocks.
1101 */
1102 block = group * 2;
1103 pnum = block / blocks_per_page;
1104 poff = block % blocks_per_page;
1105
1106 /* we could use find_or_create_page(), but it locks page
1107 * what we'd like to avoid in fast path ... */
1108 page = find_get_page(inode->i_mapping, pnum);
1109 if (page == NULL || !PageUptodate(page)) {
1110 if (page)
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001111 /*
1112 * drop the page reference and try
1113 * to get the page with lock. If we
1114 * are not uptodate that implies
1115 * somebody just created the page but
1116 * is yet to initialize the same. So
1117 * wait for it to initialize.
1118 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001119 page_cache_release(page);
1120 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1121 if (page) {
1122 BUG_ON(page->mapping != inode->i_mapping);
1123 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001124 ret = ext4_mb_init_cache(page, NULL);
1125 if (ret) {
1126 unlock_page(page);
1127 goto err;
1128 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001129 mb_cmp_bitmaps(e4b, page_address(page) +
1130 (poff * sb->s_blocksize));
1131 }
1132 unlock_page(page);
1133 }
1134 }
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001135 if (page == NULL || !PageUptodate(page)) {
1136 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001137 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001138 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001139 e4b->bd_bitmap_page = page;
1140 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
1141 mark_page_accessed(page);
1142
1143 block++;
1144 pnum = block / blocks_per_page;
1145 poff = block % blocks_per_page;
1146
1147 page = find_get_page(inode->i_mapping, pnum);
1148 if (page == NULL || !PageUptodate(page)) {
1149 if (page)
1150 page_cache_release(page);
1151 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1152 if (page) {
1153 BUG_ON(page->mapping != inode->i_mapping);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001154 if (!PageUptodate(page)) {
1155 ret = ext4_mb_init_cache(page, e4b->bd_bitmap);
1156 if (ret) {
1157 unlock_page(page);
1158 goto err;
1159 }
1160 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001161 unlock_page(page);
1162 }
1163 }
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001164 if (page == NULL || !PageUptodate(page)) {
1165 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001166 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001167 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001168 e4b->bd_buddy_page = page;
1169 e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
1170 mark_page_accessed(page);
1171
1172 BUG_ON(e4b->bd_bitmap_page == NULL);
1173 BUG_ON(e4b->bd_buddy_page == NULL);
1174
1175 return 0;
1176
1177err:
1178 if (e4b->bd_bitmap_page)
1179 page_cache_release(e4b->bd_bitmap_page);
1180 if (e4b->bd_buddy_page)
1181 page_cache_release(e4b->bd_buddy_page);
1182 e4b->bd_buddy = NULL;
1183 e4b->bd_bitmap = NULL;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001184
1185 /* Done with the buddy cache */
1186 up_read(e4b->alloc_semp);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001187 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05001188}
1189
Jing Zhange39e07f2010-05-14 00:00:00 -04001190static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001191{
1192 if (e4b->bd_bitmap_page)
1193 page_cache_release(e4b->bd_bitmap_page);
1194 if (e4b->bd_buddy_page)
1195 page_cache_release(e4b->bd_buddy_page);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001196 /* Done with the buddy cache */
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05001197 if (e4b->alloc_semp)
1198 up_read(e4b->alloc_semp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001199}
1200
1201
1202static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1203{
1204 int order = 1;
1205 void *bb;
1206
1207 BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
1208 BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1209
1210 bb = EXT4_MB_BUDDY(e4b);
1211 while (order <= e4b->bd_blkbits + 1) {
1212 block = block >> 1;
1213 if (!mb_test_bit(block, bb)) {
1214 /* this block is part of buddy of order 'order' */
1215 return order;
1216 }
1217 bb += 1 << (e4b->bd_blkbits - order);
1218 order++;
1219 }
1220 return 0;
1221}
1222
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001223static void mb_clear_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001224{
1225 __u32 *addr;
1226
1227 len = cur + len;
1228 while (cur < len) {
1229 if ((cur & 31) == 0 && (len - cur) >= 32) {
1230 /* fast path: clear whole word at once */
1231 addr = bm + (cur >> 3);
1232 *addr = 0;
1233 cur += 32;
1234 continue;
1235 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001236 mb_clear_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001237 cur++;
1238 }
1239}
1240
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001241static void mb_set_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001242{
1243 __u32 *addr;
1244
1245 len = cur + len;
1246 while (cur < len) {
1247 if ((cur & 31) == 0 && (len - cur) >= 32) {
1248 /* fast path: set whole word at once */
1249 addr = bm + (cur >> 3);
1250 *addr = 0xffffffff;
1251 cur += 32;
1252 continue;
1253 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001254 mb_set_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001255 cur++;
1256 }
1257}
1258
Shen Feng7e5a8cd2008-07-13 21:03:31 -04001259static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
Alex Tomasc9de5602008-01-29 00:19:52 -05001260 int first, int count)
1261{
1262 int block = 0;
1263 int max = 0;
1264 int order;
1265 void *buddy;
1266 void *buddy2;
1267 struct super_block *sb = e4b->bd_sb;
1268
1269 BUG_ON(first + count > (sb->s_blocksize << 3));
Vincent Minetbc8e6742009-05-15 08:33:18 -04001270 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001271 mb_check_buddy(e4b);
1272 mb_free_blocks_double(inode, e4b, first, count);
1273
1274 e4b->bd_info->bb_free += count;
1275 if (first < e4b->bd_info->bb_first_free)
1276 e4b->bd_info->bb_first_free = first;
1277
1278 /* let's maintain fragments counter */
1279 if (first != 0)
1280 block = !mb_test_bit(first - 1, EXT4_MB_BITMAP(e4b));
1281 if (first + count < EXT4_SB(sb)->s_mb_maxs[0])
1282 max = !mb_test_bit(first + count, EXT4_MB_BITMAP(e4b));
1283 if (block && max)
1284 e4b->bd_info->bb_fragments--;
1285 else if (!block && !max)
1286 e4b->bd_info->bb_fragments++;
1287
1288 /* let's maintain buddy itself */
1289 while (count-- > 0) {
1290 block = first++;
1291 order = 0;
1292
1293 if (!mb_test_bit(block, EXT4_MB_BITMAP(e4b))) {
1294 ext4_fsblk_t blocknr;
Akinobu Mita5661bd62010-03-03 23:53:39 -05001295
1296 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001297 blocknr += block;
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05001298 ext4_grp_locked_error(sb, e4b->bd_group,
1299 __func__, "double-free of inode"
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001300 " %lu's block %llu(bit %u in group %u)",
Alex Tomasc9de5602008-01-29 00:19:52 -05001301 inode ? inode->i_ino : 0, blocknr, block,
1302 e4b->bd_group);
1303 }
1304 mb_clear_bit(block, EXT4_MB_BITMAP(e4b));
1305 e4b->bd_info->bb_counters[order]++;
1306
1307 /* start of the buddy */
1308 buddy = mb_find_buddy(e4b, order, &max);
1309
1310 do {
1311 block &= ~1UL;
1312 if (mb_test_bit(block, buddy) ||
1313 mb_test_bit(block + 1, buddy))
1314 break;
1315
1316 /* both the buddies are free, try to coalesce them */
1317 buddy2 = mb_find_buddy(e4b, order + 1, &max);
1318
1319 if (!buddy2)
1320 break;
1321
1322 if (order > 0) {
1323 /* for special purposes, we don't set
1324 * free bits in bitmap */
1325 mb_set_bit(block, buddy);
1326 mb_set_bit(block + 1, buddy);
1327 }
1328 e4b->bd_info->bb_counters[order]--;
1329 e4b->bd_info->bb_counters[order]--;
1330
1331 block = block >> 1;
1332 order++;
1333 e4b->bd_info->bb_counters[order]++;
1334
1335 mb_clear_bit(block, buddy2);
1336 buddy = buddy2;
1337 } while (1);
1338 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001339 mb_set_largest_free_order(sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001340 mb_check_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001341}
1342
1343static int mb_find_extent(struct ext4_buddy *e4b, int order, int block,
1344 int needed, struct ext4_free_extent *ex)
1345{
1346 int next = block;
1347 int max;
1348 int ord;
1349 void *buddy;
1350
Vincent Minetbc8e6742009-05-15 08:33:18 -04001351 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001352 BUG_ON(ex == NULL);
1353
1354 buddy = mb_find_buddy(e4b, order, &max);
1355 BUG_ON(buddy == NULL);
1356 BUG_ON(block >= max);
1357 if (mb_test_bit(block, buddy)) {
1358 ex->fe_len = 0;
1359 ex->fe_start = 0;
1360 ex->fe_group = 0;
1361 return 0;
1362 }
1363
1364 /* FIXME dorp order completely ? */
1365 if (likely(order == 0)) {
1366 /* find actual order */
1367 order = mb_find_order_for_block(e4b, block);
1368 block = block >> order;
1369 }
1370
1371 ex->fe_len = 1 << order;
1372 ex->fe_start = block << order;
1373 ex->fe_group = e4b->bd_group;
1374
1375 /* calc difference from given start */
1376 next = next - ex->fe_start;
1377 ex->fe_len -= next;
1378 ex->fe_start += next;
1379
1380 while (needed > ex->fe_len &&
1381 (buddy = mb_find_buddy(e4b, order, &max))) {
1382
1383 if (block + 1 >= max)
1384 break;
1385
1386 next = (block + 1) * (1 << order);
1387 if (mb_test_bit(next, EXT4_MB_BITMAP(e4b)))
1388 break;
1389
1390 ord = mb_find_order_for_block(e4b, next);
1391
1392 order = ord;
1393 block = next >> order;
1394 ex->fe_len += 1 << order;
1395 }
1396
1397 BUG_ON(ex->fe_start + ex->fe_len > (1 << (e4b->bd_blkbits + 3)));
1398 return ex->fe_len;
1399}
1400
1401static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1402{
1403 int ord;
1404 int mlen = 0;
1405 int max = 0;
1406 int cur;
1407 int start = ex->fe_start;
1408 int len = ex->fe_len;
1409 unsigned ret = 0;
1410 int len0 = len;
1411 void *buddy;
1412
1413 BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1414 BUG_ON(e4b->bd_group != ex->fe_group);
Vincent Minetbc8e6742009-05-15 08:33:18 -04001415 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001416 mb_check_buddy(e4b);
1417 mb_mark_used_double(e4b, start, len);
1418
1419 e4b->bd_info->bb_free -= len;
1420 if (e4b->bd_info->bb_first_free == start)
1421 e4b->bd_info->bb_first_free += len;
1422
1423 /* let's maintain fragments counter */
1424 if (start != 0)
1425 mlen = !mb_test_bit(start - 1, EXT4_MB_BITMAP(e4b));
1426 if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
1427 max = !mb_test_bit(start + len, EXT4_MB_BITMAP(e4b));
1428 if (mlen && max)
1429 e4b->bd_info->bb_fragments++;
1430 else if (!mlen && !max)
1431 e4b->bd_info->bb_fragments--;
1432
1433 /* let's maintain buddy itself */
1434 while (len) {
1435 ord = mb_find_order_for_block(e4b, start);
1436
1437 if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1438 /* the whole chunk may be allocated at once! */
1439 mlen = 1 << ord;
1440 buddy = mb_find_buddy(e4b, ord, &max);
1441 BUG_ON((start >> ord) >= max);
1442 mb_set_bit(start >> ord, buddy);
1443 e4b->bd_info->bb_counters[ord]--;
1444 start += mlen;
1445 len -= mlen;
1446 BUG_ON(len < 0);
1447 continue;
1448 }
1449
1450 /* store for history */
1451 if (ret == 0)
1452 ret = len | (ord << 16);
1453
1454 /* we have to split large buddy */
1455 BUG_ON(ord <= 0);
1456 buddy = mb_find_buddy(e4b, ord, &max);
1457 mb_set_bit(start >> ord, buddy);
1458 e4b->bd_info->bb_counters[ord]--;
1459
1460 ord--;
1461 cur = (start >> ord) & ~1U;
1462 buddy = mb_find_buddy(e4b, ord, &max);
1463 mb_clear_bit(cur, buddy);
1464 mb_clear_bit(cur + 1, buddy);
1465 e4b->bd_info->bb_counters[ord]++;
1466 e4b->bd_info->bb_counters[ord]++;
1467 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001468 mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001469
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001470 mb_set_bits(EXT4_MB_BITMAP(e4b), ex->fe_start, len0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001471 mb_check_buddy(e4b);
1472
1473 return ret;
1474}
1475
1476/*
1477 * Must be called under group lock!
1478 */
1479static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
1480 struct ext4_buddy *e4b)
1481{
1482 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1483 int ret;
1484
1485 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
1486 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1487
1488 ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
1489 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
1490 ret = mb_mark_used(e4b, &ac->ac_b_ex);
1491
1492 /* preallocation can change ac_b_ex, thus we store actually
1493 * allocated blocks for history */
1494 ac->ac_f_ex = ac->ac_b_ex;
1495
1496 ac->ac_status = AC_STATUS_FOUND;
1497 ac->ac_tail = ret & 0xffff;
1498 ac->ac_buddy = ret >> 16;
1499
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -05001500 /*
1501 * take the page reference. We want the page to be pinned
1502 * so that we don't get a ext4_mb_init_cache_call for this
1503 * group until we update the bitmap. That would mean we
1504 * double allocate blocks. The reference is dropped
1505 * in ext4_mb_release_context
1506 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001507 ac->ac_bitmap_page = e4b->bd_bitmap_page;
1508 get_page(ac->ac_bitmap_page);
1509 ac->ac_buddy_page = e4b->bd_buddy_page;
1510 get_page(ac->ac_buddy_page);
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05001511 /* on allocation we use ac to track the held semaphore */
1512 ac->alloc_semp = e4b->alloc_semp;
1513 e4b->alloc_semp = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05001514 /* store last allocated for subsequent stream allocation */
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04001515 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001516 spin_lock(&sbi->s_md_lock);
1517 sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
1518 sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
1519 spin_unlock(&sbi->s_md_lock);
1520 }
1521}
1522
1523/*
1524 * regular allocator, for general purposes allocation
1525 */
1526
1527static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
1528 struct ext4_buddy *e4b,
1529 int finish_group)
1530{
1531 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1532 struct ext4_free_extent *bex = &ac->ac_b_ex;
1533 struct ext4_free_extent *gex = &ac->ac_g_ex;
1534 struct ext4_free_extent ex;
1535 int max;
1536
Aneesh Kumar K.V032115f2009-01-05 21:34:30 -05001537 if (ac->ac_status == AC_STATUS_FOUND)
1538 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05001539 /*
1540 * We don't want to scan for a whole year
1541 */
1542 if (ac->ac_found > sbi->s_mb_max_to_scan &&
1543 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1544 ac->ac_status = AC_STATUS_BREAK;
1545 return;
1546 }
1547
1548 /*
1549 * Haven't found good chunk so far, let's continue
1550 */
1551 if (bex->fe_len < gex->fe_len)
1552 return;
1553
1554 if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
1555 && bex->fe_group == e4b->bd_group) {
1556 /* recheck chunk's availability - we don't know
1557 * when it was found (within this lock-unlock
1558 * period or not) */
1559 max = mb_find_extent(e4b, 0, bex->fe_start, gex->fe_len, &ex);
1560 if (max >= gex->fe_len) {
1561 ext4_mb_use_best_found(ac, e4b);
1562 return;
1563 }
1564 }
1565}
1566
1567/*
1568 * The routine checks whether found extent is good enough. If it is,
1569 * then the extent gets marked used and flag is set to the context
1570 * to stop scanning. Otherwise, the extent is compared with the
1571 * previous found extent and if new one is better, then it's stored
1572 * in the context. Later, the best found extent will be used, if
1573 * mballoc can't find good enough extent.
1574 *
1575 * FIXME: real allocation policy is to be designed yet!
1576 */
1577static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
1578 struct ext4_free_extent *ex,
1579 struct ext4_buddy *e4b)
1580{
1581 struct ext4_free_extent *bex = &ac->ac_b_ex;
1582 struct ext4_free_extent *gex = &ac->ac_g_ex;
1583
1584 BUG_ON(ex->fe_len <= 0);
Eric Sandeen8d03c7a2009-03-14 11:51:46 -04001585 BUG_ON(ex->fe_len > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05001586 BUG_ON(ex->fe_start >= EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
1587 BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
1588
1589 ac->ac_found++;
1590
1591 /*
1592 * The special case - take what you catch first
1593 */
1594 if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1595 *bex = *ex;
1596 ext4_mb_use_best_found(ac, e4b);
1597 return;
1598 }
1599
1600 /*
1601 * Let's check whether the chuck is good enough
1602 */
1603 if (ex->fe_len == gex->fe_len) {
1604 *bex = *ex;
1605 ext4_mb_use_best_found(ac, e4b);
1606 return;
1607 }
1608
1609 /*
1610 * If this is first found extent, just store it in the context
1611 */
1612 if (bex->fe_len == 0) {
1613 *bex = *ex;
1614 return;
1615 }
1616
1617 /*
1618 * If new found extent is better, store it in the context
1619 */
1620 if (bex->fe_len < gex->fe_len) {
1621 /* if the request isn't satisfied, any found extent
1622 * larger than previous best one is better */
1623 if (ex->fe_len > bex->fe_len)
1624 *bex = *ex;
1625 } else if (ex->fe_len > gex->fe_len) {
1626 /* if the request is satisfied, then we try to find
1627 * an extent that still satisfy the request, but is
1628 * smaller than previous one */
1629 if (ex->fe_len < bex->fe_len)
1630 *bex = *ex;
1631 }
1632
1633 ext4_mb_check_limits(ac, e4b, 0);
1634}
1635
Eric Sandeen089ceec2009-07-05 22:17:31 -04001636static noinline_for_stack
1637int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001638 struct ext4_buddy *e4b)
1639{
1640 struct ext4_free_extent ex = ac->ac_b_ex;
1641 ext4_group_t group = ex.fe_group;
1642 int max;
1643 int err;
1644
1645 BUG_ON(ex.fe_len <= 0);
1646 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1647 if (err)
1648 return err;
1649
1650 ext4_lock_group(ac->ac_sb, group);
1651 max = mb_find_extent(e4b, 0, ex.fe_start, ex.fe_len, &ex);
1652
1653 if (max > 0) {
1654 ac->ac_b_ex = ex;
1655 ext4_mb_use_best_found(ac, e4b);
1656 }
1657
1658 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001659 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001660
1661 return 0;
1662}
1663
Eric Sandeen089ceec2009-07-05 22:17:31 -04001664static noinline_for_stack
1665int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001666 struct ext4_buddy *e4b)
1667{
1668 ext4_group_t group = ac->ac_g_ex.fe_group;
1669 int max;
1670 int err;
1671 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05001672 struct ext4_free_extent ex;
1673
1674 if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
1675 return 0;
1676
1677 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1678 if (err)
1679 return err;
1680
1681 ext4_lock_group(ac->ac_sb, group);
1682 max = mb_find_extent(e4b, 0, ac->ac_g_ex.fe_start,
1683 ac->ac_g_ex.fe_len, &ex);
1684
1685 if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
1686 ext4_fsblk_t start;
1687
Akinobu Mita5661bd62010-03-03 23:53:39 -05001688 start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
1689 ex.fe_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05001690 /* use do_div to get remainder (would be 64-bit modulo) */
1691 if (do_div(start, sbi->s_stripe) == 0) {
1692 ac->ac_found++;
1693 ac->ac_b_ex = ex;
1694 ext4_mb_use_best_found(ac, e4b);
1695 }
1696 } else if (max >= ac->ac_g_ex.fe_len) {
1697 BUG_ON(ex.fe_len <= 0);
1698 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1699 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1700 ac->ac_found++;
1701 ac->ac_b_ex = ex;
1702 ext4_mb_use_best_found(ac, e4b);
1703 } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
1704 /* Sometimes, caller may want to merge even small
1705 * number of blocks to an existing extent */
1706 BUG_ON(ex.fe_len <= 0);
1707 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1708 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1709 ac->ac_found++;
1710 ac->ac_b_ex = ex;
1711 ext4_mb_use_best_found(ac, e4b);
1712 }
1713 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001714 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001715
1716 return 0;
1717}
1718
1719/*
1720 * The routine scans buddy structures (not bitmap!) from given order
1721 * to max order and tries to find big enough chunk to satisfy the req
1722 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001723static noinline_for_stack
1724void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001725 struct ext4_buddy *e4b)
1726{
1727 struct super_block *sb = ac->ac_sb;
1728 struct ext4_group_info *grp = e4b->bd_info;
1729 void *buddy;
1730 int i;
1731 int k;
1732 int max;
1733
1734 BUG_ON(ac->ac_2order <= 0);
1735 for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
1736 if (grp->bb_counters[i] == 0)
1737 continue;
1738
1739 buddy = mb_find_buddy(e4b, i, &max);
1740 BUG_ON(buddy == NULL);
1741
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001742 k = mb_find_next_zero_bit(buddy, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001743 BUG_ON(k >= max);
1744
1745 ac->ac_found++;
1746
1747 ac->ac_b_ex.fe_len = 1 << i;
1748 ac->ac_b_ex.fe_start = k << i;
1749 ac->ac_b_ex.fe_group = e4b->bd_group;
1750
1751 ext4_mb_use_best_found(ac, e4b);
1752
1753 BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
1754
1755 if (EXT4_SB(sb)->s_mb_stats)
1756 atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
1757
1758 break;
1759 }
1760}
1761
1762/*
1763 * The routine scans the group and measures all found extents.
1764 * In order to optimize scanning, caller must pass number of
1765 * free blocks in the group, so the routine can know upper limit.
1766 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001767static noinline_for_stack
1768void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001769 struct ext4_buddy *e4b)
1770{
1771 struct super_block *sb = ac->ac_sb;
1772 void *bitmap = EXT4_MB_BITMAP(e4b);
1773 struct ext4_free_extent ex;
1774 int i;
1775 int free;
1776
1777 free = e4b->bd_info->bb_free;
1778 BUG_ON(free <= 0);
1779
1780 i = e4b->bd_info->bb_first_free;
1781
1782 while (free && ac->ac_status == AC_STATUS_CONTINUE) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001783 i = mb_find_next_zero_bit(bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05001784 EXT4_BLOCKS_PER_GROUP(sb), i);
1785 if (i >= EXT4_BLOCKS_PER_GROUP(sb)) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001786 /*
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001787 * IF we have corrupt bitmap, we won't find any
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001788 * free blocks even though group info says we
1789 * we have free blocks
1790 */
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05001791 ext4_grp_locked_error(sb, e4b->bd_group,
1792 __func__, "%d free blocks as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001793 "group info. But bitmap says 0",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001794 free);
Alex Tomasc9de5602008-01-29 00:19:52 -05001795 break;
1796 }
1797
1798 mb_find_extent(e4b, 0, i, ac->ac_g_ex.fe_len, &ex);
1799 BUG_ON(ex.fe_len <= 0);
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001800 if (free < ex.fe_len) {
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05001801 ext4_grp_locked_error(sb, e4b->bd_group,
1802 __func__, "%d free blocks as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001803 "group info. But got %d blocks",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001804 free, ex.fe_len);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001805 /*
1806 * The number of free blocks differs. This mostly
1807 * indicate that the bitmap is corrupt. So exit
1808 * without claiming the space.
1809 */
1810 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001811 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001812
1813 ext4_mb_measure_extent(ac, &ex, e4b);
1814
1815 i += ex.fe_len;
1816 free -= ex.fe_len;
1817 }
1818
1819 ext4_mb_check_limits(ac, e4b, 1);
1820}
1821
1822/*
1823 * This is a special case for storages like raid5
1824 * we try to find stripe-aligned chunks for stripe-size requests
1825 * XXX should do so at least for multiples of stripe size as well
1826 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001827static noinline_for_stack
1828void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001829 struct ext4_buddy *e4b)
1830{
1831 struct super_block *sb = ac->ac_sb;
1832 struct ext4_sb_info *sbi = EXT4_SB(sb);
1833 void *bitmap = EXT4_MB_BITMAP(e4b);
1834 struct ext4_free_extent ex;
1835 ext4_fsblk_t first_group_block;
1836 ext4_fsblk_t a;
1837 ext4_grpblk_t i;
1838 int max;
1839
1840 BUG_ON(sbi->s_stripe == 0);
1841
1842 /* find first stripe-aligned block in group */
Akinobu Mita5661bd62010-03-03 23:53:39 -05001843 first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
1844
Alex Tomasc9de5602008-01-29 00:19:52 -05001845 a = first_group_block + sbi->s_stripe - 1;
1846 do_div(a, sbi->s_stripe);
1847 i = (a * sbi->s_stripe) - first_group_block;
1848
1849 while (i < EXT4_BLOCKS_PER_GROUP(sb)) {
1850 if (!mb_test_bit(i, bitmap)) {
1851 max = mb_find_extent(e4b, 0, i, sbi->s_stripe, &ex);
1852 if (max >= sbi->s_stripe) {
1853 ac->ac_found++;
1854 ac->ac_b_ex = ex;
1855 ext4_mb_use_best_found(ac, e4b);
1856 break;
1857 }
1858 }
1859 i += sbi->s_stripe;
1860 }
1861}
1862
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001863/* This is now called BEFORE we load the buddy bitmap. */
Alex Tomasc9de5602008-01-29 00:19:52 -05001864static int ext4_mb_good_group(struct ext4_allocation_context *ac,
1865 ext4_group_t group, int cr)
1866{
1867 unsigned free, fragments;
Theodore Ts'oa4912122009-03-12 12:18:34 -04001868 int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05001869 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
1870
1871 BUG_ON(cr < 0 || cr >= 4);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001872
1873 /* We only do this if the grp has never been initialized */
1874 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
1875 int ret = ext4_mb_init_group(ac->ac_sb, group);
1876 if (ret)
1877 return 0;
1878 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001879
1880 free = grp->bb_free;
1881 fragments = grp->bb_fragments;
1882 if (free == 0)
1883 return 0;
1884 if (fragments == 0)
1885 return 0;
1886
1887 switch (cr) {
1888 case 0:
1889 BUG_ON(ac->ac_2order == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001890
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001891 if (grp->bb_largest_free_order < ac->ac_2order)
1892 return 0;
1893
Theodore Ts'oa4912122009-03-12 12:18:34 -04001894 /* Avoid using the first bg of a flexgroup for data files */
1895 if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
1896 (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
1897 ((group % flex_size) == 0))
1898 return 0;
1899
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001900 return 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001901 case 1:
1902 if ((free / fragments) >= ac->ac_g_ex.fe_len)
1903 return 1;
1904 break;
1905 case 2:
1906 if (free >= ac->ac_g_ex.fe_len)
1907 return 1;
1908 break;
1909 case 3:
1910 return 1;
1911 default:
1912 BUG();
1913 }
1914
1915 return 0;
1916}
1917
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001918/*
1919 * lock the group_info alloc_sem of all the groups
1920 * belonging to the same buddy cache page. This
1921 * make sure other parallel operation on the buddy
1922 * cache doesn't happen whild holding the buddy cache
1923 * lock
1924 */
1925int ext4_mb_get_buddy_cache_lock(struct super_block *sb, ext4_group_t group)
1926{
1927 int i;
1928 int block, pnum;
1929 int blocks_per_page;
1930 int groups_per_page;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001931 ext4_group_t ngroups = ext4_get_groups_count(sb);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001932 ext4_group_t first_group;
1933 struct ext4_group_info *grp;
1934
1935 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
1936 /*
1937 * the buddy cache inode stores the block bitmap
1938 * and buddy information in consecutive blocks.
1939 * So for each group we need two blocks.
1940 */
1941 block = group * 2;
1942 pnum = block / blocks_per_page;
1943 first_group = pnum * blocks_per_page / 2;
1944
1945 groups_per_page = blocks_per_page >> 1;
1946 if (groups_per_page == 0)
1947 groups_per_page = 1;
1948 /* read all groups the page covers into the cache */
1949 for (i = 0; i < groups_per_page; i++) {
1950
Theodore Ts'o8df96752009-05-01 08:50:38 -04001951 if ((first_group + i) >= ngroups)
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001952 break;
1953 grp = ext4_get_group_info(sb, first_group + i);
1954 /* take all groups write allocation
1955 * semaphore. This make sure there is
1956 * no block allocation going on in any
1957 * of that groups
1958 */
Aneesh Kumar K.Vb7be0192008-11-23 23:51:53 -05001959 down_write_nested(&grp->alloc_sem, i);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001960 }
1961 return i;
1962}
1963
1964void ext4_mb_put_buddy_cache_lock(struct super_block *sb,
1965 ext4_group_t group, int locked_group)
1966{
1967 int i;
1968 int block, pnum;
1969 int blocks_per_page;
1970 ext4_group_t first_group;
1971 struct ext4_group_info *grp;
1972
1973 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
1974 /*
1975 * the buddy cache inode stores the block bitmap
1976 * and buddy information in consecutive blocks.
1977 * So for each group we need two blocks.
1978 */
1979 block = group * 2;
1980 pnum = block / blocks_per_page;
1981 first_group = pnum * blocks_per_page / 2;
1982 /* release locks on all the groups */
1983 for (i = 0; i < locked_group; i++) {
1984
1985 grp = ext4_get_group_info(sb, first_group + i);
1986 /* take all groups write allocation
1987 * semaphore. This make sure there is
1988 * no block allocation going on in any
1989 * of that groups
1990 */
1991 up_write(&grp->alloc_sem);
1992 }
1993
1994}
1995
Eric Sandeen4ddfef72008-04-29 08:11:12 -04001996static noinline_for_stack int
1997ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05001998{
Theodore Ts'o8df96752009-05-01 08:50:38 -04001999 ext4_group_t ngroups, group, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002000 int cr;
2001 int err = 0;
2002 int bsbits;
2003 struct ext4_sb_info *sbi;
2004 struct super_block *sb;
2005 struct ext4_buddy e4b;
Alex Tomasc9de5602008-01-29 00:19:52 -05002006
2007 sb = ac->ac_sb;
2008 sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -04002009 ngroups = ext4_get_groups_count(sb);
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002010 /* non-extent files are limited to low blocks/groups */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002011 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002012 ngroups = sbi->s_blockfile_groups;
2013
Alex Tomasc9de5602008-01-29 00:19:52 -05002014 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
2015
2016 /* first, try the goal */
2017 err = ext4_mb_find_by_goal(ac, &e4b);
2018 if (err || ac->ac_status == AC_STATUS_FOUND)
2019 goto out;
2020
2021 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2022 goto out;
2023
2024 /*
2025 * ac->ac2_order is set only if the fe_len is a power of 2
2026 * if ac2_order is set we also set criteria to 0 so that we
2027 * try exact allocation using buddy.
2028 */
2029 i = fls(ac->ac_g_ex.fe_len);
2030 ac->ac_2order = 0;
2031 /*
2032 * We search using buddy data only if the order of the request
2033 * is greater than equal to the sbi_s_mb_order2_reqs
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002034 * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
Alex Tomasc9de5602008-01-29 00:19:52 -05002035 */
2036 if (i >= sbi->s_mb_order2_reqs) {
2037 /*
2038 * This should tell if fe_len is exactly power of 2
2039 */
2040 if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
2041 ac->ac_2order = i - 1;
2042 }
2043
2044 bsbits = ac->ac_sb->s_blocksize_bits;
Alex Tomasc9de5602008-01-29 00:19:52 -05002045
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002046 /* if stream allocation is enabled, use global goal */
2047 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002048 /* TBD: may be hot point */
2049 spin_lock(&sbi->s_md_lock);
2050 ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
2051 ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
2052 spin_unlock(&sbi->s_md_lock);
2053 }
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002054
Alex Tomasc9de5602008-01-29 00:19:52 -05002055 /* Let's just scan groups to find more-less suitable blocks */
2056 cr = ac->ac_2order ? 0 : 1;
2057 /*
2058 * cr == 0 try to get exact allocation,
2059 * cr == 3 try to get anything
2060 */
2061repeat:
2062 for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
2063 ac->ac_criteria = cr;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04002064 /*
2065 * searching for the right group start
2066 * from the goal value specified
2067 */
2068 group = ac->ac_g_ex.fe_group;
2069
Theodore Ts'o8df96752009-05-01 08:50:38 -04002070 for (i = 0; i < ngroups; group++, i++) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04002071 if (group == ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -05002072 group = 0;
2073
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002074 /* This now checks without needing the buddy page */
2075 if (!ext4_mb_good_group(ac, group, cr))
Alex Tomasc9de5602008-01-29 00:19:52 -05002076 continue;
2077
Alex Tomasc9de5602008-01-29 00:19:52 -05002078 err = ext4_mb_load_buddy(sb, group, &e4b);
2079 if (err)
2080 goto out;
2081
2082 ext4_lock_group(sb, group);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002083
2084 /*
2085 * We need to check again after locking the
2086 * block group
2087 */
Alex Tomasc9de5602008-01-29 00:19:52 -05002088 if (!ext4_mb_good_group(ac, group, cr)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002089 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002090 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002091 continue;
2092 }
2093
2094 ac->ac_groups_scanned++;
Theodore Ts'o75507ef2009-05-01 12:58:36 -04002095 if (cr == 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002096 ext4_mb_simple_scan_group(ac, &e4b);
2097 else if (cr == 1 &&
2098 ac->ac_g_ex.fe_len == sbi->s_stripe)
2099 ext4_mb_scan_aligned(ac, &e4b);
2100 else
2101 ext4_mb_complex_scan_group(ac, &e4b);
2102
2103 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002104 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002105
2106 if (ac->ac_status != AC_STATUS_CONTINUE)
2107 break;
2108 }
2109 }
2110
2111 if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
2112 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2113 /*
2114 * We've been searching too long. Let's try to allocate
2115 * the best chunk we've found so far
2116 */
2117
2118 ext4_mb_try_best_found(ac, &e4b);
2119 if (ac->ac_status != AC_STATUS_FOUND) {
2120 /*
2121 * Someone more lucky has already allocated it.
2122 * The only thing we can do is just take first
2123 * found block(s)
2124 printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n");
2125 */
2126 ac->ac_b_ex.fe_group = 0;
2127 ac->ac_b_ex.fe_start = 0;
2128 ac->ac_b_ex.fe_len = 0;
2129 ac->ac_status = AC_STATUS_CONTINUE;
2130 ac->ac_flags |= EXT4_MB_HINT_FIRST;
2131 cr = 3;
2132 atomic_inc(&sbi->s_mb_lost_chunks);
2133 goto repeat;
2134 }
2135 }
2136out:
2137 return err;
2138}
2139
Alex Tomasc9de5602008-01-29 00:19:52 -05002140static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2141{
2142 struct super_block *sb = seq->private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002143 ext4_group_t group;
2144
Theodore Ts'o8df96752009-05-01 08:50:38 -04002145 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002146 return NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002147 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002148 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002149}
2150
2151static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2152{
2153 struct super_block *sb = seq->private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002154 ext4_group_t group;
2155
2156 ++*pos;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002157 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002158 return NULL;
2159 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002160 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002161}
2162
2163static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2164{
2165 struct super_block *sb = seq->private;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002166 ext4_group_t group = (ext4_group_t) ((unsigned long) v);
Alex Tomasc9de5602008-01-29 00:19:52 -05002167 int i;
2168 int err;
2169 struct ext4_buddy e4b;
2170 struct sg {
2171 struct ext4_group_info info;
Eric Sandeena36b4492009-08-25 22:36:45 -04002172 ext4_grpblk_t counters[16];
Alex Tomasc9de5602008-01-29 00:19:52 -05002173 } sg;
2174
2175 group--;
2176 if (group == 0)
2177 seq_printf(seq, "#%-5s: %-5s %-5s %-5s "
2178 "[ %-5s %-5s %-5s %-5s %-5s %-5s %-5s "
2179 "%-5s %-5s %-5s %-5s %-5s %-5s %-5s ]\n",
2180 "group", "free", "frags", "first",
2181 "2^0", "2^1", "2^2", "2^3", "2^4", "2^5", "2^6",
2182 "2^7", "2^8", "2^9", "2^10", "2^11", "2^12", "2^13");
2183
2184 i = (sb->s_blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2185 sizeof(struct ext4_group_info);
2186 err = ext4_mb_load_buddy(sb, group, &e4b);
2187 if (err) {
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002188 seq_printf(seq, "#%-5u: I/O error\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002189 return 0;
2190 }
2191 ext4_lock_group(sb, group);
2192 memcpy(&sg, ext4_get_group_info(sb, group), i);
2193 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002194 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002195
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002196 seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
Alex Tomasc9de5602008-01-29 00:19:52 -05002197 sg.info.bb_fragments, sg.info.bb_first_free);
2198 for (i = 0; i <= 13; i++)
2199 seq_printf(seq, " %-5u", i <= sb->s_blocksize_bits + 1 ?
2200 sg.info.bb_counters[i] : 0);
2201 seq_printf(seq, " ]\n");
2202
2203 return 0;
2204}
2205
2206static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2207{
2208}
2209
Tobias Klauser7f1346a2009-09-05 09:28:54 -04002210static const struct seq_operations ext4_mb_seq_groups_ops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002211 .start = ext4_mb_seq_groups_start,
2212 .next = ext4_mb_seq_groups_next,
2213 .stop = ext4_mb_seq_groups_stop,
2214 .show = ext4_mb_seq_groups_show,
2215};
2216
2217static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)
2218{
2219 struct super_block *sb = PDE(inode)->data;
2220 int rc;
2221
2222 rc = seq_open(file, &ext4_mb_seq_groups_ops);
2223 if (rc == 0) {
2224 struct seq_file *m = (struct seq_file *)file->private_data;
2225 m->private = sb;
2226 }
2227 return rc;
2228
2229}
2230
Tobias Klauser7f1346a2009-09-05 09:28:54 -04002231static const struct file_operations ext4_mb_seq_groups_fops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002232 .owner = THIS_MODULE,
2233 .open = ext4_mb_seq_groups_open,
2234 .read = seq_read,
2235 .llseek = seq_lseek,
2236 .release = seq_release,
2237};
2238
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002239
2240/* Create and initialize ext4_group_info data for the given group. */
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002241int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002242 struct ext4_group_desc *desc)
2243{
2244 int i, len;
2245 int metalen = 0;
2246 struct ext4_sb_info *sbi = EXT4_SB(sb);
2247 struct ext4_group_info **meta_group_info;
2248
2249 /*
2250 * First check if this group is the first of a reserved block.
2251 * If it's true, we have to allocate a new table of pointers
2252 * to ext4_group_info structures
2253 */
2254 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
2255 metalen = sizeof(*meta_group_info) <<
2256 EXT4_DESC_PER_BLOCK_BITS(sb);
2257 meta_group_info = kmalloc(metalen, GFP_KERNEL);
2258 if (meta_group_info == NULL) {
2259 printk(KERN_ERR "EXT4-fs: can't allocate mem for a "
2260 "buddy group\n");
2261 goto exit_meta_group_info;
2262 }
2263 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] =
2264 meta_group_info;
2265 }
2266
2267 /*
2268 * calculate needed size. if change bb_counters size,
2269 * don't forget about ext4_mb_generate_buddy()
2270 */
2271 len = offsetof(typeof(**meta_group_info),
2272 bb_counters[sb->s_blocksize_bits + 2]);
2273
2274 meta_group_info =
2275 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)];
2276 i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
2277
2278 meta_group_info[i] = kzalloc(len, GFP_KERNEL);
2279 if (meta_group_info[i] == NULL) {
2280 printk(KERN_ERR "EXT4-fs: can't allocate buddy mem\n");
2281 goto exit_group_info;
2282 }
2283 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
2284 &(meta_group_info[i]->bb_state));
2285
2286 /*
2287 * initialize bb_free to be able to skip
2288 * empty groups without initialization
2289 */
2290 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2291 meta_group_info[i]->bb_free =
2292 ext4_free_blocks_after_init(sb, group, desc);
2293 } else {
2294 meta_group_info[i]->bb_free =
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05002295 ext4_free_blks_count(sb, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002296 }
2297
2298 INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002299 init_rwsem(&meta_group_info[i]->alloc_sem);
Venkatesh Pallipadi64e290e2010-03-04 22:25:21 -05002300 meta_group_info[i]->bb_free_root = RB_ROOT;
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002301 meta_group_info[i]->bb_largest_free_order = -1; /* uninit */
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002302
2303#ifdef DOUBLE_CHECK
2304 {
2305 struct buffer_head *bh;
2306 meta_group_info[i]->bb_bitmap =
2307 kmalloc(sb->s_blocksize, GFP_KERNEL);
2308 BUG_ON(meta_group_info[i]->bb_bitmap == NULL);
2309 bh = ext4_read_block_bitmap(sb, group);
2310 BUG_ON(bh == NULL);
2311 memcpy(meta_group_info[i]->bb_bitmap, bh->b_data,
2312 sb->s_blocksize);
2313 put_bh(bh);
2314 }
2315#endif
2316
2317 return 0;
2318
2319exit_group_info:
2320 /* If a meta_group_info table has been allocated, release it now */
2321 if (group % EXT4_DESC_PER_BLOCK(sb) == 0)
2322 kfree(sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)]);
2323exit_meta_group_info:
2324 return -ENOMEM;
2325} /* ext4_mb_add_groupinfo */
2326
Alex Tomasc9de5602008-01-29 00:19:52 -05002327static int ext4_mb_init_backend(struct super_block *sb)
2328{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002329 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002330 ext4_group_t i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002331 struct ext4_sb_info *sbi = EXT4_SB(sb);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002332 struct ext4_super_block *es = sbi->s_es;
2333 int num_meta_group_infos;
2334 int num_meta_group_infos_max;
2335 int array_size;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002336 struct ext4_group_desc *desc;
Alex Tomasc9de5602008-01-29 00:19:52 -05002337
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002338 /* This is the number of blocks used by GDT */
Theodore Ts'o8df96752009-05-01 08:50:38 -04002339 num_meta_group_infos = (ngroups + EXT4_DESC_PER_BLOCK(sb) -
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002340 1) >> EXT4_DESC_PER_BLOCK_BITS(sb);
2341
2342 /*
2343 * This is the total number of blocks used by GDT including
2344 * the number of reserved blocks for GDT.
2345 * The s_group_info array is allocated with this value
2346 * to allow a clean online resize without a complex
2347 * manipulation of pointer.
2348 * The drawback is the unused memory when no resize
2349 * occurs but it's very low in terms of pages
2350 * (see comments below)
2351 * Need to handle this properly when META_BG resizing is allowed
2352 */
2353 num_meta_group_infos_max = num_meta_group_infos +
2354 le16_to_cpu(es->s_reserved_gdt_blocks);
2355
2356 /*
2357 * array_size is the size of s_group_info array. We round it
2358 * to the next power of two because this approximation is done
2359 * internally by kmalloc so we can have some more memory
2360 * for free here (e.g. may be used for META_BG resize).
2361 */
2362 array_size = 1;
2363 while (array_size < sizeof(*sbi->s_group_info) *
2364 num_meta_group_infos_max)
2365 array_size = array_size << 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002366 /* An 8TB filesystem with 64-bit pointers requires a 4096 byte
2367 * kmalloc. A 128kb malloc should suffice for a 256TB filesystem.
2368 * So a two level scheme suffices for now. */
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002369 sbi->s_group_info = kmalloc(array_size, GFP_KERNEL);
Alex Tomasc9de5602008-01-29 00:19:52 -05002370 if (sbi->s_group_info == NULL) {
2371 printk(KERN_ERR "EXT4-fs: can't allocate buddy meta group\n");
2372 return -ENOMEM;
2373 }
2374 sbi->s_buddy_cache = new_inode(sb);
2375 if (sbi->s_buddy_cache == NULL) {
2376 printk(KERN_ERR "EXT4-fs: can't get new inode\n");
2377 goto err_freesgi;
2378 }
2379 EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002380 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002381 desc = ext4_get_group_desc(sb, i, NULL);
2382 if (desc == NULL) {
2383 printk(KERN_ERR
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002384 "EXT4-fs: can't read descriptor %u\n", i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002385 goto err_freebuddy;
2386 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002387 if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
2388 goto err_freebuddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05002389 }
2390
2391 return 0;
2392
2393err_freebuddy:
Roel Kluinf1fa3342008-04-29 22:01:15 -04002394 while (i-- > 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002395 kfree(ext4_get_group_info(sb, i));
Alex Tomasc9de5602008-01-29 00:19:52 -05002396 i = num_meta_group_infos;
Roel Kluinf1fa3342008-04-29 22:01:15 -04002397 while (i-- > 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002398 kfree(sbi->s_group_info[i]);
2399 iput(sbi->s_buddy_cache);
2400err_freesgi:
2401 kfree(sbi->s_group_info);
2402 return -ENOMEM;
2403}
2404
2405int ext4_mb_init(struct super_block *sb, int needs_recovery)
2406{
2407 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002408 unsigned i, j;
Alex Tomasc9de5602008-01-29 00:19:52 -05002409 unsigned offset;
2410 unsigned max;
Shen Feng74767c52008-07-11 19:27:31 -04002411 int ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002412
Eric Sandeen19278052009-08-25 22:36:25 -04002413 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_offsets);
Alex Tomasc9de5602008-01-29 00:19:52 -05002414
2415 sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
2416 if (sbi->s_mb_offsets == NULL) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002417 return -ENOMEM;
2418 }
Yasunori Gotoff7ef322008-12-17 00:48:39 -05002419
Eric Sandeen19278052009-08-25 22:36:25 -04002420 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_maxs);
Alex Tomasc9de5602008-01-29 00:19:52 -05002421 sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
2422 if (sbi->s_mb_maxs == NULL) {
Dan Carpentera7b19442009-03-27 19:42:54 -04002423 kfree(sbi->s_mb_offsets);
Alex Tomasc9de5602008-01-29 00:19:52 -05002424 return -ENOMEM;
2425 }
2426
2427 /* order 0 is regular bitmap */
2428 sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
2429 sbi->s_mb_offsets[0] = 0;
2430
2431 i = 1;
2432 offset = 0;
2433 max = sb->s_blocksize << 2;
2434 do {
2435 sbi->s_mb_offsets[i] = offset;
2436 sbi->s_mb_maxs[i] = max;
2437 offset += 1 << (sb->s_blocksize_bits - i);
2438 max = max >> 1;
2439 i++;
2440 } while (i <= sb->s_blocksize_bits + 1);
2441
2442 /* init file for buddy data */
Shen Feng74767c52008-07-11 19:27:31 -04002443 ret = ext4_mb_init_backend(sb);
2444 if (ret != 0) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002445 kfree(sbi->s_mb_offsets);
2446 kfree(sbi->s_mb_maxs);
Shen Feng74767c52008-07-11 19:27:31 -04002447 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002448 }
2449
2450 spin_lock_init(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05002451 spin_lock_init(&sbi->s_bal_lock);
2452
2453 sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
2454 sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
2455 sbi->s_mb_stats = MB_DEFAULT_STATS;
2456 sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
2457 sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
Alex Tomasc9de5602008-01-29 00:19:52 -05002458 sbi->s_mb_group_prealloc = MB_DEFAULT_GROUP_PREALLOC;
2459
Eric Sandeen730c2132008-09-13 15:23:29 -04002460 sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002461 if (sbi->s_locality_groups == NULL) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002462 kfree(sbi->s_mb_offsets);
2463 kfree(sbi->s_mb_maxs);
2464 return -ENOMEM;
2465 }
Eric Sandeen730c2132008-09-13 15:23:29 -04002466 for_each_possible_cpu(i) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002467 struct ext4_locality_group *lg;
Eric Sandeen730c2132008-09-13 15:23:29 -04002468 lg = per_cpu_ptr(sbi->s_locality_groups, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002469 mutex_init(&lg->lg_mutex);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002470 for (j = 0; j < PREALLOC_TB_SIZE; j++)
2471 INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
Alex Tomasc9de5602008-01-29 00:19:52 -05002472 spin_lock_init(&lg->lg_prealloc_lock);
2473 }
2474
Theodore Ts'o296c3552009-09-30 00:32:42 -04002475 if (sbi->s_proc)
2476 proc_create_data("mb_groups", S_IRUGO, sbi->s_proc,
2477 &ext4_mb_seq_groups_fops, sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002478
Frank Mayhar03901312009-01-07 00:06:22 -05002479 if (sbi->s_journal)
2480 sbi->s_journal->j_commit_callback = release_blocks_on_commit;
Alex Tomasc9de5602008-01-29 00:19:52 -05002481 return 0;
2482}
2483
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002484/* need to called with the ext4 group lock held */
Alex Tomasc9de5602008-01-29 00:19:52 -05002485static void ext4_mb_cleanup_pa(struct ext4_group_info *grp)
2486{
2487 struct ext4_prealloc_space *pa;
2488 struct list_head *cur, *tmp;
2489 int count = 0;
2490
2491 list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
2492 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
2493 list_del(&pa->pa_group_list);
2494 count++;
Aneesh Kumar K.V688f05a2008-10-13 12:14:14 -04002495 kmem_cache_free(ext4_pspace_cachep, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05002496 }
2497 if (count)
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002498 mb_debug(1, "mballoc: %u PAs left\n", count);
Alex Tomasc9de5602008-01-29 00:19:52 -05002499
2500}
2501
2502int ext4_mb_release(struct super_block *sb)
2503{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002504 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002505 ext4_group_t i;
2506 int num_meta_group_infos;
2507 struct ext4_group_info *grinfo;
2508 struct ext4_sb_info *sbi = EXT4_SB(sb);
2509
Alex Tomasc9de5602008-01-29 00:19:52 -05002510 if (sbi->s_group_info) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04002511 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002512 grinfo = ext4_get_group_info(sb, i);
2513#ifdef DOUBLE_CHECK
2514 kfree(grinfo->bb_bitmap);
2515#endif
2516 ext4_lock_group(sb, i);
2517 ext4_mb_cleanup_pa(grinfo);
2518 ext4_unlock_group(sb, i);
2519 kfree(grinfo);
2520 }
Theodore Ts'o8df96752009-05-01 08:50:38 -04002521 num_meta_group_infos = (ngroups +
Alex Tomasc9de5602008-01-29 00:19:52 -05002522 EXT4_DESC_PER_BLOCK(sb) - 1) >>
2523 EXT4_DESC_PER_BLOCK_BITS(sb);
2524 for (i = 0; i < num_meta_group_infos; i++)
2525 kfree(sbi->s_group_info[i]);
2526 kfree(sbi->s_group_info);
2527 }
2528 kfree(sbi->s_mb_offsets);
2529 kfree(sbi->s_mb_maxs);
2530 if (sbi->s_buddy_cache)
2531 iput(sbi->s_buddy_cache);
2532 if (sbi->s_mb_stats) {
2533 printk(KERN_INFO
2534 "EXT4-fs: mballoc: %u blocks %u reqs (%u success)\n",
2535 atomic_read(&sbi->s_bal_allocated),
2536 atomic_read(&sbi->s_bal_reqs),
2537 atomic_read(&sbi->s_bal_success));
2538 printk(KERN_INFO
2539 "EXT4-fs: mballoc: %u extents scanned, %u goal hits, "
2540 "%u 2^N hits, %u breaks, %u lost\n",
2541 atomic_read(&sbi->s_bal_ex_scanned),
2542 atomic_read(&sbi->s_bal_goals),
2543 atomic_read(&sbi->s_bal_2orders),
2544 atomic_read(&sbi->s_bal_breaks),
2545 atomic_read(&sbi->s_mb_lost_chunks));
2546 printk(KERN_INFO
2547 "EXT4-fs: mballoc: %lu generated and it took %Lu\n",
2548 sbi->s_mb_buddies_generated++,
2549 sbi->s_mb_generation_time);
2550 printk(KERN_INFO
2551 "EXT4-fs: mballoc: %u preallocated, %u discarded\n",
2552 atomic_read(&sbi->s_mb_preallocated),
2553 atomic_read(&sbi->s_mb_discarded));
2554 }
2555
Eric Sandeen730c2132008-09-13 15:23:29 -04002556 free_percpu(sbi->s_locality_groups);
Theodore Ts'o296c3552009-09-30 00:32:42 -04002557 if (sbi->s_proc)
2558 remove_proc_entry("mb_groups", sbi->s_proc);
Alex Tomasc9de5602008-01-29 00:19:52 -05002559
2560 return 0;
2561}
2562
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002563/*
2564 * This function is called by the jbd2 layer once the commit has finished,
2565 * so we know we can free the blocks that were released with that commit.
2566 */
2567static void release_blocks_on_commit(journal_t *journal, transaction_t *txn)
Alex Tomasc9de5602008-01-29 00:19:52 -05002568{
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002569 struct super_block *sb = journal->j_private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002570 struct ext4_buddy e4b;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002571 struct ext4_group_info *db;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002572 int err, count = 0, count2 = 0;
2573 struct ext4_free_data *entry;
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002574 struct list_head *l, *ltmp;
Alex Tomasc9de5602008-01-29 00:19:52 -05002575
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002576 list_for_each_safe(l, ltmp, &txn->t_private_list) {
2577 entry = list_entry(l, struct ext4_free_data, list);
Alex Tomasc9de5602008-01-29 00:19:52 -05002578
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002579 mb_debug(1, "gonna free %u blocks in group %u (0x%p):",
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002580 entry->count, entry->group, entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05002581
Theodore Ts'ob90f6872010-04-20 16:51:59 -04002582 if (test_opt(sb, DISCARD)) {
Eric Sandeena30eec22010-05-16 03:00:00 -04002583 int ret;
Theodore Ts'ob90f6872010-04-20 16:51:59 -04002584 ext4_fsblk_t discard_block;
2585
2586 discard_block = entry->start_blk +
2587 ext4_group_first_block_no(sb, entry->group);
2588 trace_ext4_discard_blocks(sb,
2589 (unsigned long long)discard_block,
2590 entry->count);
Eric Sandeena30eec22010-05-16 03:00:00 -04002591 ret = sb_issue_discard(sb, discard_block, entry->count);
2592 if (ret == EOPNOTSUPP) {
2593 ext4_warning(sb,
2594 "discard not supported, disabling");
2595 clear_opt(EXT4_SB(sb)->s_mount_opt, DISCARD);
2596 }
Theodore Ts'ob90f6872010-04-20 16:51:59 -04002597 }
2598
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002599 err = ext4_mb_load_buddy(sb, entry->group, &e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002600 /* we expect to find existing buddy because it's pinned */
2601 BUG_ON(err != 0);
2602
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002603 db = e4b.bd_info;
Alex Tomasc9de5602008-01-29 00:19:52 -05002604 /* there are blocks to put in buddy to make them really free */
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002605 count += entry->count;
Alex Tomasc9de5602008-01-29 00:19:52 -05002606 count2++;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002607 ext4_lock_group(sb, entry->group);
2608 /* Take it out of per group rb tree */
2609 rb_erase(&entry->node, &(db->bb_free_root));
2610 mb_free_blocks(NULL, &e4b, entry->start_blk, entry->count);
2611
2612 if (!db->bb_free_root.rb_node) {
2613 /* No more items in the per group rb tree
2614 * balance refcounts from ext4_mb_free_metadata()
2615 */
2616 page_cache_release(e4b.bd_buddy_page);
2617 page_cache_release(e4b.bd_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05002618 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002619 ext4_unlock_group(sb, entry->group);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002620 kmem_cache_free(ext4_free_ext_cachep, entry);
Jing Zhange39e07f2010-05-14 00:00:00 -04002621 ext4_mb_unload_buddy(&e4b);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002622 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002623
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002624 mb_debug(1, "freed %u blocks in %u structures\n", count, count2);
Alex Tomasc9de5602008-01-29 00:19:52 -05002625}
2626
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002627#ifdef CONFIG_EXT4_DEBUG
2628u8 mb_enable_debug __read_mostly;
2629
2630static struct dentry *debugfs_dir;
2631static struct dentry *debugfs_debug;
2632
2633static void __init ext4_create_debugfs_entry(void)
2634{
2635 debugfs_dir = debugfs_create_dir("ext4", NULL);
2636 if (debugfs_dir)
2637 debugfs_debug = debugfs_create_u8("mballoc-debug",
2638 S_IRUGO | S_IWUSR,
2639 debugfs_dir,
2640 &mb_enable_debug);
2641}
2642
2643static void ext4_remove_debugfs_entry(void)
2644{
2645 debugfs_remove(debugfs_debug);
2646 debugfs_remove(debugfs_dir);
2647}
2648
2649#else
2650
2651static void __init ext4_create_debugfs_entry(void)
2652{
2653}
2654
2655static void ext4_remove_debugfs_entry(void)
2656{
2657}
2658
2659#endif
2660
Alex Tomasc9de5602008-01-29 00:19:52 -05002661int __init init_ext4_mballoc(void)
2662{
2663 ext4_pspace_cachep =
2664 kmem_cache_create("ext4_prealloc_space",
2665 sizeof(struct ext4_prealloc_space),
2666 0, SLAB_RECLAIM_ACCOUNT, NULL);
2667 if (ext4_pspace_cachep == NULL)
2668 return -ENOMEM;
2669
Eric Sandeen256bdb42008-02-10 01:13:33 -05002670 ext4_ac_cachep =
2671 kmem_cache_create("ext4_alloc_context",
2672 sizeof(struct ext4_allocation_context),
2673 0, SLAB_RECLAIM_ACCOUNT, NULL);
2674 if (ext4_ac_cachep == NULL) {
2675 kmem_cache_destroy(ext4_pspace_cachep);
2676 return -ENOMEM;
2677 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002678
2679 ext4_free_ext_cachep =
2680 kmem_cache_create("ext4_free_block_extents",
2681 sizeof(struct ext4_free_data),
2682 0, SLAB_RECLAIM_ACCOUNT, NULL);
2683 if (ext4_free_ext_cachep == NULL) {
2684 kmem_cache_destroy(ext4_pspace_cachep);
2685 kmem_cache_destroy(ext4_ac_cachep);
2686 return -ENOMEM;
2687 }
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002688 ext4_create_debugfs_entry();
Alex Tomasc9de5602008-01-29 00:19:52 -05002689 return 0;
2690}
2691
2692void exit_ext4_mballoc(void)
2693{
Theodore Ts'o60e66792010-05-17 07:00:00 -04002694 /*
Jesper Dangaard Brouer3e03f9c2009-07-05 22:29:27 -04002695 * Wait for completion of call_rcu()'s on ext4_pspace_cachep
2696 * before destroying the slab cache.
2697 */
2698 rcu_barrier();
Alex Tomasc9de5602008-01-29 00:19:52 -05002699 kmem_cache_destroy(ext4_pspace_cachep);
Eric Sandeen256bdb42008-02-10 01:13:33 -05002700 kmem_cache_destroy(ext4_ac_cachep);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002701 kmem_cache_destroy(ext4_free_ext_cachep);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002702 ext4_remove_debugfs_entry();
Alex Tomasc9de5602008-01-29 00:19:52 -05002703}
2704
2705
2706/*
Uwe Kleine-König73b2c712010-07-30 21:02:47 +02002707 * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
Alex Tomasc9de5602008-01-29 00:19:52 -05002708 * Returns 0 if success or error code
2709 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002710static noinline_for_stack int
2711ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002712 handle_t *handle, unsigned int reserv_blks)
Alex Tomasc9de5602008-01-29 00:19:52 -05002713{
2714 struct buffer_head *bitmap_bh = NULL;
2715 struct ext4_super_block *es;
2716 struct ext4_group_desc *gdp;
2717 struct buffer_head *gdp_bh;
2718 struct ext4_sb_info *sbi;
2719 struct super_block *sb;
2720 ext4_fsblk_t block;
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002721 int err, len;
Alex Tomasc9de5602008-01-29 00:19:52 -05002722
2723 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
2724 BUG_ON(ac->ac_b_ex.fe_len <= 0);
2725
2726 sb = ac->ac_sb;
2727 sbi = EXT4_SB(sb);
2728 es = sbi->s_es;
2729
Alex Tomasc9de5602008-01-29 00:19:52 -05002730
2731 err = -EIO;
Theodore Ts'o574ca172008-07-11 19:27:31 -04002732 bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002733 if (!bitmap_bh)
2734 goto out_err;
2735
2736 err = ext4_journal_get_write_access(handle, bitmap_bh);
2737 if (err)
2738 goto out_err;
2739
2740 err = -EIO;
2741 gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
2742 if (!gdp)
2743 goto out_err;
2744
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002745 ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
Thadeu Lima de Souza Cascardo9fd97842009-01-26 19:26:26 -05002746 ext4_free_blks_count(sb, gdp));
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04002747
Alex Tomasc9de5602008-01-29 00:19:52 -05002748 err = ext4_journal_get_write_access(handle, gdp_bh);
2749 if (err)
2750 goto out_err;
2751
Akinobu Mitabda00de2010-03-03 23:53:25 -05002752 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002753
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002754 len = ac->ac_b_ex.fe_len;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002755 if (!ext4_data_block_valid(sbi, block, len)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002756 ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002757 "fs metadata\n", block, block+len);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002758 /* File system mounted not to panic on error
2759 * Fix the bitmap and repeat the block allocation
2760 * We leak some of the blocks here.
2761 */
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002762 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
2763 mb_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
2764 ac->ac_b_ex.fe_len);
2765 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Frank Mayhar03901312009-01-07 00:06:22 -05002766 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002767 if (!err)
2768 err = -EAGAIN;
2769 goto out_err;
Alex Tomasc9de5602008-01-29 00:19:52 -05002770 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002771
2772 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002773#ifdef AGGRESSIVE_CHECK
2774 {
2775 int i;
2776 for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
2777 BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
2778 bitmap_bh->b_data));
2779 }
2780 }
2781#endif
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002782 mb_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05002783 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2784 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05002785 ext4_free_blks_set(sb, gdp,
2786 ext4_free_blocks_after_init(sb,
2787 ac->ac_b_ex.fe_group, gdp));
Alex Tomasc9de5602008-01-29 00:19:52 -05002788 }
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05002789 len = ext4_free_blks_count(sb, gdp) - ac->ac_b_ex.fe_len;
2790 ext4_free_blks_set(sb, gdp, len);
Alex Tomasc9de5602008-01-29 00:19:52 -05002791 gdp->bg_checksum = ext4_group_desc_csum(sbi, ac->ac_b_ex.fe_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002792
2793 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002794 percpu_counter_sub(&sbi->s_freeblocks_counter, ac->ac_b_ex.fe_len);
Mingming Caod2a17632008-07-14 17:52:37 -04002795 /*
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002796 * Now reduce the dirty block count also. Should not go negative
Mingming Caod2a17632008-07-14 17:52:37 -04002797 */
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002798 if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
2799 /* release all the reserved blocks if non delalloc */
2800 percpu_counter_sub(&sbi->s_dirtyblocks_counter, reserv_blks);
Alex Tomasc9de5602008-01-29 00:19:52 -05002801
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002802 if (sbi->s_log_groups_per_flex) {
2803 ext4_group_t flex_group = ext4_flex_group(sbi,
2804 ac->ac_b_ex.fe_group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -05002805 atomic_sub(ac->ac_b_ex.fe_len,
2806 &sbi->s_flex_groups[flex_group].free_blocks);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002807 }
2808
Frank Mayhar03901312009-01-07 00:06:22 -05002809 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002810 if (err)
2811 goto out_err;
Frank Mayhar03901312009-01-07 00:06:22 -05002812 err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002813
2814out_err:
2815 sb->s_dirt = 1;
Aneesh Kumar K.V42a10ad2008-02-10 01:07:28 -05002816 brelse(bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002817 return err;
2818}
2819
2820/*
2821 * here we normalize request for locality group
2822 * Group request are normalized to s_strip size if we set the same via mount
2823 * option. If not we set it to s_mb_group_prealloc which can be configured via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002824 * /sys/fs/ext4/<partition>/mb_group_prealloc
Alex Tomasc9de5602008-01-29 00:19:52 -05002825 *
2826 * XXX: should we try to preallocate more than the group has now?
2827 */
2828static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
2829{
2830 struct super_block *sb = ac->ac_sb;
2831 struct ext4_locality_group *lg = ac->ac_lg;
2832
2833 BUG_ON(lg == NULL);
2834 if (EXT4_SB(sb)->s_stripe)
2835 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_stripe;
2836 else
2837 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002838 mb_debug(1, "#%u: goal %u blocks for locality group\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05002839 current->pid, ac->ac_g_ex.fe_len);
2840}
2841
2842/*
2843 * Normalization means making request better in terms of
2844 * size and alignment
2845 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002846static noinline_for_stack void
2847ext4_mb_normalize_request(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002848 struct ext4_allocation_request *ar)
2849{
2850 int bsbits, max;
2851 ext4_lblk_t end;
Alex Tomasc9de5602008-01-29 00:19:52 -05002852 loff_t size, orig_size, start_off;
2853 ext4_lblk_t start, orig_start;
2854 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04002855 struct ext4_prealloc_space *pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05002856
2857 /* do normalize only data requests, metadata requests
2858 do not need preallocation */
2859 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
2860 return;
2861
2862 /* sometime caller may want exact blocks */
2863 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2864 return;
2865
2866 /* caller may indicate that preallocation isn't
2867 * required (it's a tail, for example) */
2868 if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
2869 return;
2870
2871 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
2872 ext4_mb_normalize_group_request(ac);
2873 return ;
2874 }
2875
2876 bsbits = ac->ac_sb->s_blocksize_bits;
2877
2878 /* first, let's learn actual file size
2879 * given current request is allocated */
2880 size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len;
2881 size = size << bsbits;
2882 if (size < i_size_read(ac->ac_inode))
2883 size = i_size_read(ac->ac_inode);
2884
Valerie Clement19304792008-05-13 19:31:14 -04002885 /* max size of free chunks */
2886 max = 2 << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05002887
Valerie Clement19304792008-05-13 19:31:14 -04002888#define NRL_CHECK_SIZE(req, size, max, chunk_size) \
2889 (req <= (size) || max <= (chunk_size))
Alex Tomasc9de5602008-01-29 00:19:52 -05002890
2891 /* first, try to predict filesize */
2892 /* XXX: should this table be tunable? */
2893 start_off = 0;
2894 if (size <= 16 * 1024) {
2895 size = 16 * 1024;
2896 } else if (size <= 32 * 1024) {
2897 size = 32 * 1024;
2898 } else if (size <= 64 * 1024) {
2899 size = 64 * 1024;
2900 } else if (size <= 128 * 1024) {
2901 size = 128 * 1024;
2902 } else if (size <= 256 * 1024) {
2903 size = 256 * 1024;
2904 } else if (size <= 512 * 1024) {
2905 size = 512 * 1024;
2906 } else if (size <= 1024 * 1024) {
2907 size = 1024 * 1024;
Valerie Clement19304792008-05-13 19:31:14 -04002908 } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002909 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
Valerie Clement19304792008-05-13 19:31:14 -04002910 (21 - bsbits)) << 21;
2911 size = 2 * 1024 * 1024;
2912 } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002913 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
2914 (22 - bsbits)) << 22;
2915 size = 4 * 1024 * 1024;
2916 } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
Valerie Clement19304792008-05-13 19:31:14 -04002917 (8<<20)>>bsbits, max, 8 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002918 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
2919 (23 - bsbits)) << 23;
2920 size = 8 * 1024 * 1024;
2921 } else {
2922 start_off = (loff_t)ac->ac_o_ex.fe_logical << bsbits;
2923 size = ac->ac_o_ex.fe_len << bsbits;
2924 }
2925 orig_size = size = size >> bsbits;
2926 orig_start = start = start_off >> bsbits;
2927
2928 /* don't cover already allocated blocks in selected range */
2929 if (ar->pleft && start <= ar->lleft) {
2930 size -= ar->lleft + 1 - start;
2931 start = ar->lleft + 1;
2932 }
2933 if (ar->pright && start + size - 1 >= ar->lright)
2934 size -= start + size - ar->lright;
2935
2936 end = start + size;
2937
2938 /* check we don't cross already preallocated blocks */
2939 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04002940 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002941 ext4_lblk_t pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05002942
Alex Tomasc9de5602008-01-29 00:19:52 -05002943 if (pa->pa_deleted)
2944 continue;
2945 spin_lock(&pa->pa_lock);
2946 if (pa->pa_deleted) {
2947 spin_unlock(&pa->pa_lock);
2948 continue;
2949 }
2950
2951 pa_end = pa->pa_lstart + pa->pa_len;
2952
2953 /* PA must not overlap original request */
2954 BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
2955 ac->ac_o_ex.fe_logical < pa->pa_lstart));
2956
Eric Sandeen38877f42009-08-17 23:55:24 -04002957 /* skip PAs this normalized request doesn't overlap with */
2958 if (pa->pa_lstart >= end || pa_end <= start) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002959 spin_unlock(&pa->pa_lock);
2960 continue;
2961 }
2962 BUG_ON(pa->pa_lstart <= start && pa_end >= end);
2963
Eric Sandeen38877f42009-08-17 23:55:24 -04002964 /* adjust start or end to be adjacent to this pa */
Alex Tomasc9de5602008-01-29 00:19:52 -05002965 if (pa_end <= ac->ac_o_ex.fe_logical) {
2966 BUG_ON(pa_end < start);
2967 start = pa_end;
Eric Sandeen38877f42009-08-17 23:55:24 -04002968 } else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002969 BUG_ON(pa->pa_lstart > end);
2970 end = pa->pa_lstart;
2971 }
2972 spin_unlock(&pa->pa_lock);
2973 }
2974 rcu_read_unlock();
2975 size = end - start;
2976
2977 /* XXX: extra loop to check we really don't overlap preallocations */
2978 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04002979 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002980 ext4_lblk_t pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05002981 spin_lock(&pa->pa_lock);
2982 if (pa->pa_deleted == 0) {
2983 pa_end = pa->pa_lstart + pa->pa_len;
2984 BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
2985 }
2986 spin_unlock(&pa->pa_lock);
2987 }
2988 rcu_read_unlock();
2989
2990 if (start + size <= ac->ac_o_ex.fe_logical &&
2991 start > ac->ac_o_ex.fe_logical) {
2992 printk(KERN_ERR "start %lu, size %lu, fe_logical %lu\n",
2993 (unsigned long) start, (unsigned long) size,
2994 (unsigned long) ac->ac_o_ex.fe_logical);
2995 }
2996 BUG_ON(start + size <= ac->ac_o_ex.fe_logical &&
2997 start > ac->ac_o_ex.fe_logical);
Eric Sandeen8d03c7a2009-03-14 11:51:46 -04002998 BUG_ON(size <= 0 || size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05002999
3000 /* now prepare goal request */
3001
3002 /* XXX: is it better to align blocks WRT to logical
3003 * placement or satisfy big request as is */
3004 ac->ac_g_ex.fe_logical = start;
3005 ac->ac_g_ex.fe_len = size;
3006
3007 /* define goal start in order to merge */
3008 if (ar->pright && (ar->lright == (start + size))) {
3009 /* merge to the right */
3010 ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
3011 &ac->ac_f_ex.fe_group,
3012 &ac->ac_f_ex.fe_start);
3013 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3014 }
3015 if (ar->pleft && (ar->lleft + 1 == start)) {
3016 /* merge to the left */
3017 ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
3018 &ac->ac_f_ex.fe_group,
3019 &ac->ac_f_ex.fe_start);
3020 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3021 }
3022
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003023 mb_debug(1, "goal: %u(was %u) blocks at %u\n", (unsigned) size,
Alex Tomasc9de5602008-01-29 00:19:52 -05003024 (unsigned) orig_size, (unsigned) start);
3025}
3026
3027static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
3028{
3029 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3030
3031 if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
3032 atomic_inc(&sbi->s_bal_reqs);
3033 atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
Curt Wohlgemuth291dae42010-05-16 16:00:00 -04003034 if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
Alex Tomasc9de5602008-01-29 00:19:52 -05003035 atomic_inc(&sbi->s_bal_success);
3036 atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
3037 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
3038 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
3039 atomic_inc(&sbi->s_bal_goals);
3040 if (ac->ac_found > sbi->s_mb_max_to_scan)
3041 atomic_inc(&sbi->s_bal_breaks);
3042 }
3043
Theodore Ts'o296c3552009-09-30 00:32:42 -04003044 if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
3045 trace_ext4_mballoc_alloc(ac);
3046 else
3047 trace_ext4_mballoc_prealloc(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003048}
3049
3050/*
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003051 * Called on failure; free up any blocks from the inode PA for this
3052 * context. We don't need this for MB_GROUP_PA because we only change
3053 * pa_free in ext4_mb_release_context(), but on failure, we've already
3054 * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
3055 */
3056static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
3057{
3058 struct ext4_prealloc_space *pa = ac->ac_pa;
3059 int len;
3060
3061 if (pa && pa->pa_type == MB_INODE_PA) {
3062 len = ac->ac_b_ex.fe_len;
3063 pa->pa_free += len;
3064 }
3065
3066}
3067
3068/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003069 * use blocks preallocated to inode
3070 */
3071static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
3072 struct ext4_prealloc_space *pa)
3073{
3074 ext4_fsblk_t start;
3075 ext4_fsblk_t end;
3076 int len;
3077
3078 /* found preallocated blocks, use them */
3079 start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
3080 end = min(pa->pa_pstart + pa->pa_len, start + ac->ac_o_ex.fe_len);
3081 len = end - start;
3082 ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
3083 &ac->ac_b_ex.fe_start);
3084 ac->ac_b_ex.fe_len = len;
3085 ac->ac_status = AC_STATUS_FOUND;
3086 ac->ac_pa = pa;
3087
3088 BUG_ON(start < pa->pa_pstart);
3089 BUG_ON(start + len > pa->pa_pstart + pa->pa_len);
3090 BUG_ON(pa->pa_free < len);
3091 pa->pa_free -= len;
3092
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003093 mb_debug(1, "use %llu/%u from inode pa %p\n", start, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003094}
3095
3096/*
3097 * use blocks preallocated to locality group
3098 */
3099static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
3100 struct ext4_prealloc_space *pa)
3101{
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04003102 unsigned int len = ac->ac_o_ex.fe_len;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003103
Alex Tomasc9de5602008-01-29 00:19:52 -05003104 ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
3105 &ac->ac_b_ex.fe_group,
3106 &ac->ac_b_ex.fe_start);
3107 ac->ac_b_ex.fe_len = len;
3108 ac->ac_status = AC_STATUS_FOUND;
3109 ac->ac_pa = pa;
3110
3111 /* we don't correct pa_pstart or pa_plen here to avoid
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003112 * possible race when the group is being loaded concurrently
Alex Tomasc9de5602008-01-29 00:19:52 -05003113 * instead we correct pa later, after blocks are marked
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003114 * in on-disk bitmap -- see ext4_mb_release_context()
3115 * Other CPUs are prevented from allocating from this pa by lg_mutex
Alex Tomasc9de5602008-01-29 00:19:52 -05003116 */
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003117 mb_debug(1, "use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003118}
3119
3120/*
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003121 * Return the prealloc space that have minimal distance
3122 * from the goal block. @cpa is the prealloc
3123 * space that is having currently known minimal distance
3124 * from the goal block.
3125 */
3126static struct ext4_prealloc_space *
3127ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
3128 struct ext4_prealloc_space *pa,
3129 struct ext4_prealloc_space *cpa)
3130{
3131 ext4_fsblk_t cur_distance, new_distance;
3132
3133 if (cpa == NULL) {
3134 atomic_inc(&pa->pa_count);
3135 return pa;
3136 }
3137 cur_distance = abs(goal_block - cpa->pa_pstart);
3138 new_distance = abs(goal_block - pa->pa_pstart);
3139
3140 if (cur_distance < new_distance)
3141 return cpa;
3142
3143 /* drop the previous reference */
3144 atomic_dec(&cpa->pa_count);
3145 atomic_inc(&pa->pa_count);
3146 return pa;
3147}
3148
3149/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003150 * search goal blocks in preallocated space
3151 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003152static noinline_for_stack int
3153ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003154{
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003155 int order, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003156 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3157 struct ext4_locality_group *lg;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003158 struct ext4_prealloc_space *pa, *cpa = NULL;
3159 ext4_fsblk_t goal_block;
Alex Tomasc9de5602008-01-29 00:19:52 -05003160
3161 /* only data can be preallocated */
3162 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3163 return 0;
3164
3165 /* first, try per-file preallocation */
3166 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003167 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003168
3169 /* all fields in this condition don't change,
3170 * so we can skip locking for them */
3171 if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
3172 ac->ac_o_ex.fe_logical >= pa->pa_lstart + pa->pa_len)
3173 continue;
3174
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003175 /* non-extent files can't have physical blocks past 2^32 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003176 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003177 pa->pa_pstart + pa->pa_len > EXT4_MAX_BLOCK_FILE_PHYS)
3178 continue;
3179
Alex Tomasc9de5602008-01-29 00:19:52 -05003180 /* found preallocated blocks, use them */
3181 spin_lock(&pa->pa_lock);
3182 if (pa->pa_deleted == 0 && pa->pa_free) {
3183 atomic_inc(&pa->pa_count);
3184 ext4_mb_use_inode_pa(ac, pa);
3185 spin_unlock(&pa->pa_lock);
3186 ac->ac_criteria = 10;
3187 rcu_read_unlock();
3188 return 1;
3189 }
3190 spin_unlock(&pa->pa_lock);
3191 }
3192 rcu_read_unlock();
3193
3194 /* can we use group allocation? */
3195 if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
3196 return 0;
3197
3198 /* inode may have no locality group for some reason */
3199 lg = ac->ac_lg;
3200 if (lg == NULL)
3201 return 0;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003202 order = fls(ac->ac_o_ex.fe_len) - 1;
3203 if (order > PREALLOC_TB_SIZE - 1)
3204 /* The max size of hash table is PREALLOC_TB_SIZE */
3205 order = PREALLOC_TB_SIZE - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003206
Akinobu Mitabda00de2010-03-03 23:53:25 -05003207 goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003208 /*
3209 * search for the prealloc space that is having
3210 * minimal distance from the goal block.
3211 */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003212 for (i = order; i < PREALLOC_TB_SIZE; i++) {
3213 rcu_read_lock();
3214 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
3215 pa_inode_list) {
3216 spin_lock(&pa->pa_lock);
3217 if (pa->pa_deleted == 0 &&
3218 pa->pa_free >= ac->ac_o_ex.fe_len) {
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003219
3220 cpa = ext4_mb_check_group_pa(goal_block,
3221 pa, cpa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003222 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003223 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003224 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003225 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003226 }
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003227 if (cpa) {
3228 ext4_mb_use_group_pa(ac, cpa);
3229 ac->ac_criteria = 20;
3230 return 1;
3231 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003232 return 0;
3233}
3234
3235/*
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003236 * the function goes through all block freed in the group
3237 * but not yet committed and marks them used in in-core bitmap.
3238 * buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003239 * Need to be called with the ext4 group lock held
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003240 */
3241static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
3242 ext4_group_t group)
3243{
3244 struct rb_node *n;
3245 struct ext4_group_info *grp;
3246 struct ext4_free_data *entry;
3247
3248 grp = ext4_get_group_info(sb, group);
3249 n = rb_first(&(grp->bb_free_root));
3250
3251 while (n) {
3252 entry = rb_entry(n, struct ext4_free_data, node);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003253 mb_set_bits(bitmap, entry->start_blk, entry->count);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003254 n = rb_next(n);
3255 }
3256 return;
3257}
3258
3259/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003260 * the function goes through all preallocation in this group and marks them
3261 * used in in-core bitmap. buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003262 * Need to be called with ext4 group lock held
Alex Tomasc9de5602008-01-29 00:19:52 -05003263 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04003264static noinline_for_stack
3265void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05003266 ext4_group_t group)
3267{
3268 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3269 struct ext4_prealloc_space *pa;
3270 struct list_head *cur;
3271 ext4_group_t groupnr;
3272 ext4_grpblk_t start;
3273 int preallocated = 0;
3274 int count = 0;
3275 int len;
3276
3277 /* all form of preallocation discards first load group,
3278 * so the only competing code is preallocation use.
3279 * we don't need any locking here
3280 * notice we do NOT ignore preallocations with pa_deleted
3281 * otherwise we could leave used blocks available for
3282 * allocation in buddy when concurrent ext4_mb_put_pa()
3283 * is dropping preallocation
3284 */
3285 list_for_each(cur, &grp->bb_prealloc_list) {
3286 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3287 spin_lock(&pa->pa_lock);
3288 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3289 &groupnr, &start);
3290 len = pa->pa_len;
3291 spin_unlock(&pa->pa_lock);
3292 if (unlikely(len == 0))
3293 continue;
3294 BUG_ON(groupnr != group);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003295 mb_set_bits(bitmap, start, len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003296 preallocated += len;
3297 count++;
3298 }
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003299 mb_debug(1, "prellocated %u for group %u\n", preallocated, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003300}
3301
3302static void ext4_mb_pa_callback(struct rcu_head *head)
3303{
3304 struct ext4_prealloc_space *pa;
3305 pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
3306 kmem_cache_free(ext4_pspace_cachep, pa);
3307}
3308
3309/*
3310 * drops a reference to preallocated space descriptor
3311 * if this was the last reference and the space is consumed
3312 */
3313static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
3314 struct super_block *sb, struct ext4_prealloc_space *pa)
3315{
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003316 ext4_group_t grp;
Eric Sandeend33a1972009-03-16 23:25:40 -04003317 ext4_fsblk_t grp_blk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003318
3319 if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0)
3320 return;
3321
3322 /* in this short window concurrent discard can set pa_deleted */
3323 spin_lock(&pa->pa_lock);
3324 if (pa->pa_deleted == 1) {
3325 spin_unlock(&pa->pa_lock);
3326 return;
3327 }
3328
3329 pa->pa_deleted = 1;
3330 spin_unlock(&pa->pa_lock);
3331
Eric Sandeend33a1972009-03-16 23:25:40 -04003332 grp_blk = pa->pa_pstart;
Theodore Ts'o60e66792010-05-17 07:00:00 -04003333 /*
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003334 * If doing group-based preallocation, pa_pstart may be in the
3335 * next group when pa is used up
3336 */
3337 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeend33a1972009-03-16 23:25:40 -04003338 grp_blk--;
3339
3340 ext4_get_group_no_and_offset(sb, grp_blk, &grp, NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003341
3342 /*
3343 * possible race:
3344 *
3345 * P1 (buddy init) P2 (regular allocation)
3346 * find block B in PA
3347 * copy on-disk bitmap to buddy
3348 * mark B in on-disk bitmap
3349 * drop PA from group
3350 * mark all PAs in buddy
3351 *
3352 * thus, P1 initializes buddy with B available. to prevent this
3353 * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
3354 * against that pair
3355 */
3356 ext4_lock_group(sb, grp);
3357 list_del(&pa->pa_group_list);
3358 ext4_unlock_group(sb, grp);
3359
3360 spin_lock(pa->pa_obj_lock);
3361 list_del_rcu(&pa->pa_inode_list);
3362 spin_unlock(pa->pa_obj_lock);
3363
3364 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3365}
3366
3367/*
3368 * creates new preallocated space for given inode
3369 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003370static noinline_for_stack int
3371ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003372{
3373 struct super_block *sb = ac->ac_sb;
3374 struct ext4_prealloc_space *pa;
3375 struct ext4_group_info *grp;
3376 struct ext4_inode_info *ei;
3377
3378 /* preallocate only when found space is larger then requested */
3379 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3380 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3381 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3382
3383 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3384 if (pa == NULL)
3385 return -ENOMEM;
3386
3387 if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
3388 int winl;
3389 int wins;
3390 int win;
3391 int offs;
3392
3393 /* we can't allocate as much as normalizer wants.
3394 * so, found space must get proper lstart
3395 * to cover original request */
3396 BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
3397 BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
3398
3399 /* we're limited by original request in that
3400 * logical block must be covered any way
3401 * winl is window we can move our chunk within */
3402 winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
3403
3404 /* also, we should cover whole original request */
3405 wins = ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len;
3406
3407 /* the smallest one defines real window */
3408 win = min(winl, wins);
3409
3410 offs = ac->ac_o_ex.fe_logical % ac->ac_b_ex.fe_len;
3411 if (offs && offs < win)
3412 win = offs;
3413
3414 ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical - win;
3415 BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
3416 BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
3417 }
3418
3419 /* preallocation can change ac_b_ex, thus we store actually
3420 * allocated blocks for history */
3421 ac->ac_f_ex = ac->ac_b_ex;
3422
3423 pa->pa_lstart = ac->ac_b_ex.fe_logical;
3424 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3425 pa->pa_len = ac->ac_b_ex.fe_len;
3426 pa->pa_free = pa->pa_len;
3427 atomic_set(&pa->pa_count, 1);
3428 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003429 INIT_LIST_HEAD(&pa->pa_inode_list);
3430 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003431 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003432 pa->pa_type = MB_INODE_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003433
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003434 mb_debug(1, "new inode pa %p: %llu/%u for %u\n", pa,
Alex Tomasc9de5602008-01-29 00:19:52 -05003435 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003436 trace_ext4_mb_new_inode_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003437
3438 ext4_mb_use_inode_pa(ac, pa);
3439 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3440
3441 ei = EXT4_I(ac->ac_inode);
3442 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3443
3444 pa->pa_obj_lock = &ei->i_prealloc_lock;
3445 pa->pa_inode = ac->ac_inode;
3446
3447 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3448 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3449 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3450
3451 spin_lock(pa->pa_obj_lock);
3452 list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
3453 spin_unlock(pa->pa_obj_lock);
3454
3455 return 0;
3456}
3457
3458/*
3459 * creates new preallocated space for locality group inodes belongs to
3460 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003461static noinline_for_stack int
3462ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003463{
3464 struct super_block *sb = ac->ac_sb;
3465 struct ext4_locality_group *lg;
3466 struct ext4_prealloc_space *pa;
3467 struct ext4_group_info *grp;
3468
3469 /* preallocate only when found space is larger then requested */
3470 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3471 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3472 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3473
3474 BUG_ON(ext4_pspace_cachep == NULL);
3475 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3476 if (pa == NULL)
3477 return -ENOMEM;
3478
3479 /* preallocation can change ac_b_ex, thus we store actually
3480 * allocated blocks for history */
3481 ac->ac_f_ex = ac->ac_b_ex;
3482
3483 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3484 pa->pa_lstart = pa->pa_pstart;
3485 pa->pa_len = ac->ac_b_ex.fe_len;
3486 pa->pa_free = pa->pa_len;
3487 atomic_set(&pa->pa_count, 1);
3488 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003489 INIT_LIST_HEAD(&pa->pa_inode_list);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003490 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003491 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003492 pa->pa_type = MB_GROUP_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003493
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003494 mb_debug(1, "new group pa %p: %llu/%u for %u\n", pa,
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003495 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
3496 trace_ext4_mb_new_group_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003497
3498 ext4_mb_use_group_pa(ac, pa);
3499 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3500
3501 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3502 lg = ac->ac_lg;
3503 BUG_ON(lg == NULL);
3504
3505 pa->pa_obj_lock = &lg->lg_prealloc_lock;
3506 pa->pa_inode = NULL;
3507
3508 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3509 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3510 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3511
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003512 /*
3513 * We will later add the new pa to the right bucket
3514 * after updating the pa_free in ext4_mb_release_context
3515 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003516 return 0;
3517}
3518
3519static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
3520{
3521 int err;
3522
3523 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
3524 err = ext4_mb_new_group_pa(ac);
3525 else
3526 err = ext4_mb_new_inode_pa(ac);
3527 return err;
3528}
3529
3530/*
3531 * finds all unused blocks in on-disk bitmap, frees them in
3532 * in-core bitmap and buddy.
3533 * @pa must be unlinked from inode and group lists, so that
3534 * nobody else can find/use it.
3535 * the caller MUST hold group/inode locks.
3536 * TODO: optimize the case when there are no in-core structures yet
3537 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003538static noinline_for_stack int
3539ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003540 struct ext4_prealloc_space *pa,
3541 struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003542{
Alex Tomasc9de5602008-01-29 00:19:52 -05003543 struct super_block *sb = e4b->bd_sb;
3544 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003545 unsigned int end;
3546 unsigned int next;
Alex Tomasc9de5602008-01-29 00:19:52 -05003547 ext4_group_t group;
3548 ext4_grpblk_t bit;
Theodore Ts'oba80b102009-01-03 20:03:21 -05003549 unsigned long long grp_blk_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05003550 sector_t start;
3551 int err = 0;
3552 int free = 0;
3553
3554 BUG_ON(pa->pa_deleted == 0);
3555 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
Theodore Ts'oba80b102009-01-03 20:03:21 -05003556 grp_blk_start = pa->pa_pstart - bit;
Alex Tomasc9de5602008-01-29 00:19:52 -05003557 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3558 end = bit + pa->pa_len;
3559
Eric Sandeen256bdb42008-02-10 01:13:33 -05003560 if (ac) {
3561 ac->ac_sb = sb;
3562 ac->ac_inode = pa->pa_inode;
Eric Sandeen256bdb42008-02-10 01:13:33 -05003563 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003564
3565 while (bit < end) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003566 bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003567 if (bit >= end)
3568 break;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003569 next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
Akinobu Mita5661bd62010-03-03 23:53:39 -05003570 start = ext4_group_first_block_no(sb, group) + bit;
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003571 mb_debug(1, " free preallocated %u/%u in group %u\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05003572 (unsigned) start, (unsigned) next - bit,
3573 (unsigned) group);
3574 free += next - bit;
3575
Eric Sandeen256bdb42008-02-10 01:13:33 -05003576 if (ac) {
3577 ac->ac_b_ex.fe_group = group;
3578 ac->ac_b_ex.fe_start = bit;
3579 ac->ac_b_ex.fe_len = next - bit;
3580 ac->ac_b_ex.fe_logical = 0;
Theodore Ts'o296c3552009-09-30 00:32:42 -04003581 trace_ext4_mballoc_discard(ac);
Eric Sandeen256bdb42008-02-10 01:13:33 -05003582 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003583
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003584 trace_ext4_mb_release_inode_pa(ac, pa, grp_blk_start + bit,
3585 next - bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003586 mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
3587 bit = next + 1;
3588 }
3589 if (free != pa->pa_free) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003590 printk(KERN_CRIT "pa %p: logic %lu, phys. %lu, len %lu\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05003591 pa, (unsigned long) pa->pa_lstart,
3592 (unsigned long) pa->pa_pstart,
3593 (unsigned long) pa->pa_len);
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003594 ext4_grp_locked_error(sb, group,
3595 __func__, "free %u, pa_free %u",
3596 free, pa->pa_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05003597 /*
3598 * pa is already deleted so we use the value obtained
3599 * from the bitmap and continue.
3600 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003601 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003602 atomic_add(free, &sbi->s_mb_discarded);
3603
3604 return err;
3605}
3606
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003607static noinline_for_stack int
3608ext4_mb_release_group_pa(struct ext4_buddy *e4b,
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003609 struct ext4_prealloc_space *pa,
3610 struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003611{
Alex Tomasc9de5602008-01-29 00:19:52 -05003612 struct super_block *sb = e4b->bd_sb;
3613 ext4_group_t group;
3614 ext4_grpblk_t bit;
3615
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003616 trace_ext4_mb_release_group_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003617 BUG_ON(pa->pa_deleted == 0);
3618 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3619 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3620 mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
3621 atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
3622
Eric Sandeen256bdb42008-02-10 01:13:33 -05003623 if (ac) {
3624 ac->ac_sb = sb;
3625 ac->ac_inode = NULL;
3626 ac->ac_b_ex.fe_group = group;
3627 ac->ac_b_ex.fe_start = bit;
3628 ac->ac_b_ex.fe_len = pa->pa_len;
3629 ac->ac_b_ex.fe_logical = 0;
Theodore Ts'o296c3552009-09-30 00:32:42 -04003630 trace_ext4_mballoc_discard(ac);
Eric Sandeen256bdb42008-02-10 01:13:33 -05003631 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003632
3633 return 0;
3634}
3635
3636/*
3637 * releases all preallocations in given group
3638 *
3639 * first, we need to decide discard policy:
3640 * - when do we discard
3641 * 1) ENOSPC
3642 * - how many do we discard
3643 * 1) how many requested
3644 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003645static noinline_for_stack int
3646ext4_mb_discard_group_preallocations(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -05003647 ext4_group_t group, int needed)
3648{
3649 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3650 struct buffer_head *bitmap_bh = NULL;
3651 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003652 struct ext4_allocation_context *ac;
Alex Tomasc9de5602008-01-29 00:19:52 -05003653 struct list_head list;
3654 struct ext4_buddy e4b;
3655 int err;
3656 int busy = 0;
3657 int free = 0;
3658
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003659 mb_debug(1, "discard preallocation for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003660
3661 if (list_empty(&grp->bb_prealloc_list))
3662 return 0;
3663
Theodore Ts'o574ca172008-07-11 19:27:31 -04003664 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003665 if (bitmap_bh == NULL) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003666 ext4_error(sb, "Error reading block bitmap for %u", group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003667 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003668 }
3669
3670 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003671 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003672 ext4_error(sb, "Error loading buddy information for %u", group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003673 put_bh(bitmap_bh);
3674 return 0;
3675 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003676
3677 if (needed == 0)
3678 needed = EXT4_BLOCKS_PER_GROUP(sb) + 1;
3679
Alex Tomasc9de5602008-01-29 00:19:52 -05003680 INIT_LIST_HEAD(&list);
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003681 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003682 if (ac)
3683 ac->ac_sb = sb;
Alex Tomasc9de5602008-01-29 00:19:52 -05003684repeat:
3685 ext4_lock_group(sb, group);
3686 list_for_each_entry_safe(pa, tmp,
3687 &grp->bb_prealloc_list, pa_group_list) {
3688 spin_lock(&pa->pa_lock);
3689 if (atomic_read(&pa->pa_count)) {
3690 spin_unlock(&pa->pa_lock);
3691 busy = 1;
3692 continue;
3693 }
3694 if (pa->pa_deleted) {
3695 spin_unlock(&pa->pa_lock);
3696 continue;
3697 }
3698
3699 /* seems this one can be freed ... */
3700 pa->pa_deleted = 1;
3701
3702 /* we can trust pa_free ... */
3703 free += pa->pa_free;
3704
3705 spin_unlock(&pa->pa_lock);
3706
3707 list_del(&pa->pa_group_list);
3708 list_add(&pa->u.pa_tmp_list, &list);
3709 }
3710
3711 /* if we still need more blocks and some PAs were used, try again */
3712 if (free < needed && busy) {
3713 busy = 0;
3714 ext4_unlock_group(sb, group);
3715 /*
3716 * Yield the CPU here so that we don't get soft lockup
3717 * in non preempt case.
3718 */
3719 yield();
3720 goto repeat;
3721 }
3722
3723 /* found anything to free? */
3724 if (list_empty(&list)) {
3725 BUG_ON(free != 0);
3726 goto out;
3727 }
3728
3729 /* now free all selected PAs */
3730 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
3731
3732 /* remove from object (inode or locality group) */
3733 spin_lock(pa->pa_obj_lock);
3734 list_del_rcu(&pa->pa_inode_list);
3735 spin_unlock(pa->pa_obj_lock);
3736
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003737 if (pa->pa_type == MB_GROUP_PA)
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003738 ext4_mb_release_group_pa(&e4b, pa, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003739 else
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003740 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003741
3742 list_del(&pa->u.pa_tmp_list);
3743 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3744 }
3745
3746out:
3747 ext4_unlock_group(sb, group);
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003748 if (ac)
3749 kmem_cache_free(ext4_ac_cachep, ac);
Jing Zhange39e07f2010-05-14 00:00:00 -04003750 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05003751 put_bh(bitmap_bh);
3752 return free;
3753}
3754
3755/*
3756 * releases all non-used preallocated blocks for given inode
3757 *
3758 * It's important to discard preallocations under i_data_sem
3759 * We don't want another block to be served from the prealloc
3760 * space when we are discarding the inode prealloc space.
3761 *
3762 * FIXME!! Make sure it is valid at all the call sites
3763 */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003764void ext4_discard_preallocations(struct inode *inode)
Alex Tomasc9de5602008-01-29 00:19:52 -05003765{
3766 struct ext4_inode_info *ei = EXT4_I(inode);
3767 struct super_block *sb = inode->i_sb;
3768 struct buffer_head *bitmap_bh = NULL;
3769 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003770 struct ext4_allocation_context *ac;
Alex Tomasc9de5602008-01-29 00:19:52 -05003771 ext4_group_t group = 0;
3772 struct list_head list;
3773 struct ext4_buddy e4b;
3774 int err;
3775
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003776 if (!S_ISREG(inode->i_mode)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003777 /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
3778 return;
3779 }
3780
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003781 mb_debug(1, "discard preallocation for inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003782 trace_ext4_discard_preallocations(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05003783
3784 INIT_LIST_HEAD(&list);
3785
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003786 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003787 if (ac) {
3788 ac->ac_sb = sb;
3789 ac->ac_inode = inode;
3790 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003791repeat:
3792 /* first, collect all pa's in the inode */
3793 spin_lock(&ei->i_prealloc_lock);
3794 while (!list_empty(&ei->i_prealloc_list)) {
3795 pa = list_entry(ei->i_prealloc_list.next,
3796 struct ext4_prealloc_space, pa_inode_list);
3797 BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
3798 spin_lock(&pa->pa_lock);
3799 if (atomic_read(&pa->pa_count)) {
3800 /* this shouldn't happen often - nobody should
3801 * use preallocation while we're discarding it */
3802 spin_unlock(&pa->pa_lock);
3803 spin_unlock(&ei->i_prealloc_lock);
3804 printk(KERN_ERR "uh-oh! used pa while discarding\n");
3805 WARN_ON(1);
3806 schedule_timeout_uninterruptible(HZ);
3807 goto repeat;
3808
3809 }
3810 if (pa->pa_deleted == 0) {
3811 pa->pa_deleted = 1;
3812 spin_unlock(&pa->pa_lock);
3813 list_del_rcu(&pa->pa_inode_list);
3814 list_add(&pa->u.pa_tmp_list, &list);
3815 continue;
3816 }
3817
3818 /* someone is deleting pa right now */
3819 spin_unlock(&pa->pa_lock);
3820 spin_unlock(&ei->i_prealloc_lock);
3821
3822 /* we have to wait here because pa_deleted
3823 * doesn't mean pa is already unlinked from
3824 * the list. as we might be called from
3825 * ->clear_inode() the inode will get freed
3826 * and concurrent thread which is unlinking
3827 * pa from inode's list may access already
3828 * freed memory, bad-bad-bad */
3829
3830 /* XXX: if this happens too often, we can
3831 * add a flag to force wait only in case
3832 * of ->clear_inode(), but not in case of
3833 * regular truncate */
3834 schedule_timeout_uninterruptible(HZ);
3835 goto repeat;
3836 }
3837 spin_unlock(&ei->i_prealloc_lock);
3838
3839 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003840 BUG_ON(pa->pa_type != MB_INODE_PA);
Alex Tomasc9de5602008-01-29 00:19:52 -05003841 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
3842
3843 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003844 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003845 ext4_error(sb, "Error loading buddy information for %u",
3846 group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003847 continue;
3848 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003849
Theodore Ts'o574ca172008-07-11 19:27:31 -04003850 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003851 if (bitmap_bh == NULL) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003852 ext4_error(sb, "Error reading block bitmap for %u",
3853 group);
Jing Zhange39e07f2010-05-14 00:00:00 -04003854 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003855 continue;
Alex Tomasc9de5602008-01-29 00:19:52 -05003856 }
3857
3858 ext4_lock_group(sb, group);
3859 list_del(&pa->pa_group_list);
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003860 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003861 ext4_unlock_group(sb, group);
3862
Jing Zhange39e07f2010-05-14 00:00:00 -04003863 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05003864 put_bh(bitmap_bh);
3865
3866 list_del(&pa->u.pa_tmp_list);
3867 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3868 }
Aneesh Kumar K.Vc83617d2008-04-29 22:00:47 -04003869 if (ac)
3870 kmem_cache_free(ext4_ac_cachep, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003871}
3872
3873/*
3874 * finds all preallocated spaces and return blocks being freed to them
3875 * if preallocated space becomes full (no block is used from the space)
3876 * then the function frees space in buddy
3877 * XXX: at the moment, truncate (which is the only way to free blocks)
3878 * discards all preallocations
3879 */
3880static void ext4_mb_return_to_preallocation(struct inode *inode,
3881 struct ext4_buddy *e4b,
3882 sector_t block, int count)
3883{
3884 BUG_ON(!list_empty(&EXT4_I(inode)->i_prealloc_list));
3885}
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003886#ifdef CONFIG_EXT4_DEBUG
Alex Tomasc9de5602008-01-29 00:19:52 -05003887static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
3888{
3889 struct super_block *sb = ac->ac_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -04003890 ext4_group_t ngroups, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003891
3892 printk(KERN_ERR "EXT4-fs: Can't allocate:"
3893 " Allocation context details:\n");
3894 printk(KERN_ERR "EXT4-fs: status %d flags %d\n",
3895 ac->ac_status, ac->ac_flags);
3896 printk(KERN_ERR "EXT4-fs: orig %lu/%lu/%lu@%lu, goal %lu/%lu/%lu@%lu, "
3897 "best %lu/%lu/%lu@%lu cr %d\n",
3898 (unsigned long)ac->ac_o_ex.fe_group,
3899 (unsigned long)ac->ac_o_ex.fe_start,
3900 (unsigned long)ac->ac_o_ex.fe_len,
3901 (unsigned long)ac->ac_o_ex.fe_logical,
3902 (unsigned long)ac->ac_g_ex.fe_group,
3903 (unsigned long)ac->ac_g_ex.fe_start,
3904 (unsigned long)ac->ac_g_ex.fe_len,
3905 (unsigned long)ac->ac_g_ex.fe_logical,
3906 (unsigned long)ac->ac_b_ex.fe_group,
3907 (unsigned long)ac->ac_b_ex.fe_start,
3908 (unsigned long)ac->ac_b_ex.fe_len,
3909 (unsigned long)ac->ac_b_ex.fe_logical,
3910 (int)ac->ac_criteria);
3911 printk(KERN_ERR "EXT4-fs: %lu scanned, %d found\n", ac->ac_ex_scanned,
3912 ac->ac_found);
3913 printk(KERN_ERR "EXT4-fs: groups: \n");
Theodore Ts'o8df96752009-05-01 08:50:38 -04003914 ngroups = ext4_get_groups_count(sb);
3915 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003916 struct ext4_group_info *grp = ext4_get_group_info(sb, i);
3917 struct ext4_prealloc_space *pa;
3918 ext4_grpblk_t start;
3919 struct list_head *cur;
3920 ext4_lock_group(sb, i);
3921 list_for_each(cur, &grp->bb_prealloc_list) {
3922 pa = list_entry(cur, struct ext4_prealloc_space,
3923 pa_group_list);
3924 spin_lock(&pa->pa_lock);
3925 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3926 NULL, &start);
3927 spin_unlock(&pa->pa_lock);
Akira Fujita1c718502009-07-05 23:04:36 -04003928 printk(KERN_ERR "PA:%u:%d:%u \n", i,
3929 start, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003930 }
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04003931 ext4_unlock_group(sb, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05003932
3933 if (grp->bb_free == 0)
3934 continue;
Akira Fujita1c718502009-07-05 23:04:36 -04003935 printk(KERN_ERR "%u: %d/%d \n",
Alex Tomasc9de5602008-01-29 00:19:52 -05003936 i, grp->bb_free, grp->bb_fragments);
3937 }
3938 printk(KERN_ERR "\n");
3939}
3940#else
3941static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
3942{
3943 return;
3944}
3945#endif
3946
3947/*
3948 * We use locality group preallocation for small size file. The size of the
3949 * file is determined by the current size or the resulting size after
3950 * allocation which ever is larger
3951 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003952 * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
Alex Tomasc9de5602008-01-29 00:19:52 -05003953 */
3954static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
3955{
3956 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3957 int bsbits = ac->ac_sb->s_blocksize_bits;
3958 loff_t size, isize;
3959
3960 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3961 return;
3962
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04003963 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
3964 return;
3965
Alex Tomasc9de5602008-01-29 00:19:52 -05003966 size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len;
Theodore Ts'o50797482009-09-18 13:34:02 -04003967 isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
3968 >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003969
Theodore Ts'o50797482009-09-18 13:34:02 -04003970 if ((size == isize) &&
3971 !ext4_fs_is_busy(sbi) &&
3972 (atomic_read(&ac->ac_inode->i_writecount) == 0)) {
3973 ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
3974 return;
3975 }
3976
Alex Tomasc9de5602008-01-29 00:19:52 -05003977 /* don't use group allocation for large files */
Theodore Ts'o71780572009-09-28 00:06:20 -04003978 size = max(size, isize);
Tao Macc483f12010-03-01 19:06:35 -05003979 if (size > sbi->s_mb_stream_request) {
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04003980 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05003981 return;
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04003982 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003983
3984 BUG_ON(ac->ac_lg != NULL);
3985 /*
3986 * locality group prealloc space are per cpu. The reason for having
3987 * per cpu locality group is to reduce the contention between block
3988 * request from multiple CPUs.
3989 */
Christoph Lameterca0c9582009-10-03 19:48:22 +09003990 ac->ac_lg = __this_cpu_ptr(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05003991
3992 /* we're going to use group allocation */
3993 ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
3994
3995 /* serialize all allocations in the group */
3996 mutex_lock(&ac->ac_lg->lg_mutex);
3997}
3998
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003999static noinline_for_stack int
4000ext4_mb_initialize_context(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05004001 struct ext4_allocation_request *ar)
4002{
4003 struct super_block *sb = ar->inode->i_sb;
4004 struct ext4_sb_info *sbi = EXT4_SB(sb);
4005 struct ext4_super_block *es = sbi->s_es;
4006 ext4_group_t group;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004007 unsigned int len;
4008 ext4_fsblk_t goal;
Alex Tomasc9de5602008-01-29 00:19:52 -05004009 ext4_grpblk_t block;
4010
4011 /* we can't allocate > group size */
4012 len = ar->len;
4013
4014 /* just a dirty hack to filter too big requests */
4015 if (len >= EXT4_BLOCKS_PER_GROUP(sb) - 10)
4016 len = EXT4_BLOCKS_PER_GROUP(sb) - 10;
4017
4018 /* start searching from the goal */
4019 goal = ar->goal;
4020 if (goal < le32_to_cpu(es->s_first_data_block) ||
4021 goal >= ext4_blocks_count(es))
4022 goal = le32_to_cpu(es->s_first_data_block);
4023 ext4_get_group_no_and_offset(sb, goal, &group, &block);
4024
4025 /* set up allocation goals */
Theodore Ts'o833576b2009-07-13 09:45:52 -04004026 memset(ac, 0, sizeof(struct ext4_allocation_context));
Alex Tomasc9de5602008-01-29 00:19:52 -05004027 ac->ac_b_ex.fe_logical = ar->logical;
Alex Tomasc9de5602008-01-29 00:19:52 -05004028 ac->ac_status = AC_STATUS_CONTINUE;
Alex Tomasc9de5602008-01-29 00:19:52 -05004029 ac->ac_sb = sb;
4030 ac->ac_inode = ar->inode;
4031 ac->ac_o_ex.fe_logical = ar->logical;
4032 ac->ac_o_ex.fe_group = group;
4033 ac->ac_o_ex.fe_start = block;
4034 ac->ac_o_ex.fe_len = len;
4035 ac->ac_g_ex.fe_logical = ar->logical;
4036 ac->ac_g_ex.fe_group = group;
4037 ac->ac_g_ex.fe_start = block;
4038 ac->ac_g_ex.fe_len = len;
Alex Tomasc9de5602008-01-29 00:19:52 -05004039 ac->ac_flags = ar->flags;
Alex Tomasc9de5602008-01-29 00:19:52 -05004040
4041 /* we have to define context: we'll we work with a file or
4042 * locality group. this is a policy, actually */
4043 ext4_mb_group_or_file(ac);
4044
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004045 mb_debug(1, "init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, "
Alex Tomasc9de5602008-01-29 00:19:52 -05004046 "left: %u/%u, right %u/%u to %swritable\n",
4047 (unsigned) ar->len, (unsigned) ar->logical,
4048 (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
4049 (unsigned) ar->lleft, (unsigned) ar->pleft,
4050 (unsigned) ar->lright, (unsigned) ar->pright,
4051 atomic_read(&ar->inode->i_writecount) ? "" : "non-");
4052 return 0;
4053
4054}
4055
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004056static noinline_for_stack void
4057ext4_mb_discard_lg_preallocations(struct super_block *sb,
4058 struct ext4_locality_group *lg,
4059 int order, int total_entries)
4060{
4061 ext4_group_t group = 0;
4062 struct ext4_buddy e4b;
4063 struct list_head discard_list;
4064 struct ext4_prealloc_space *pa, *tmp;
4065 struct ext4_allocation_context *ac;
4066
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004067 mb_debug(1, "discard locality group preallocation\n");
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004068
4069 INIT_LIST_HEAD(&discard_list);
4070 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004071 if (ac)
4072 ac->ac_sb = sb;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004073
4074 spin_lock(&lg->lg_prealloc_lock);
4075 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
4076 pa_inode_list) {
4077 spin_lock(&pa->pa_lock);
4078 if (atomic_read(&pa->pa_count)) {
4079 /*
4080 * This is the pa that we just used
4081 * for block allocation. So don't
4082 * free that
4083 */
4084 spin_unlock(&pa->pa_lock);
4085 continue;
4086 }
4087 if (pa->pa_deleted) {
4088 spin_unlock(&pa->pa_lock);
4089 continue;
4090 }
4091 /* only lg prealloc space */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004092 BUG_ON(pa->pa_type != MB_GROUP_PA);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004093
4094 /* seems this one can be freed ... */
4095 pa->pa_deleted = 1;
4096 spin_unlock(&pa->pa_lock);
4097
4098 list_del_rcu(&pa->pa_inode_list);
4099 list_add(&pa->u.pa_tmp_list, &discard_list);
4100
4101 total_entries--;
4102 if (total_entries <= 5) {
4103 /*
4104 * we want to keep only 5 entries
4105 * allowing it to grow to 8. This
4106 * mak sure we don't call discard
4107 * soon for this list.
4108 */
4109 break;
4110 }
4111 }
4112 spin_unlock(&lg->lg_prealloc_lock);
4113
4114 list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
4115
4116 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
4117 if (ext4_mb_load_buddy(sb, group, &e4b)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004118 ext4_error(sb, "Error loading buddy information for %u",
4119 group);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004120 continue;
4121 }
4122 ext4_lock_group(sb, group);
4123 list_del(&pa->pa_group_list);
4124 ext4_mb_release_group_pa(&e4b, pa, ac);
4125 ext4_unlock_group(sb, group);
4126
Jing Zhange39e07f2010-05-14 00:00:00 -04004127 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004128 list_del(&pa->u.pa_tmp_list);
4129 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4130 }
4131 if (ac)
4132 kmem_cache_free(ext4_ac_cachep, ac);
4133}
4134
4135/*
4136 * We have incremented pa_count. So it cannot be freed at this
4137 * point. Also we hold lg_mutex. So no parallel allocation is
4138 * possible from this lg. That means pa_free cannot be updated.
4139 *
4140 * A parallel ext4_mb_discard_group_preallocations is possible.
4141 * which can cause the lg_prealloc_list to be updated.
4142 */
4143
4144static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
4145{
4146 int order, added = 0, lg_prealloc_count = 1;
4147 struct super_block *sb = ac->ac_sb;
4148 struct ext4_locality_group *lg = ac->ac_lg;
4149 struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
4150
4151 order = fls(pa->pa_free) - 1;
4152 if (order > PREALLOC_TB_SIZE - 1)
4153 /* The max size of hash table is PREALLOC_TB_SIZE */
4154 order = PREALLOC_TB_SIZE - 1;
4155 /* Add the prealloc space to lg */
4156 rcu_read_lock();
4157 list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
4158 pa_inode_list) {
4159 spin_lock(&tmp_pa->pa_lock);
4160 if (tmp_pa->pa_deleted) {
Theodore Ts'oe7c9e3e2009-03-27 19:43:21 -04004161 spin_unlock(&tmp_pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004162 continue;
4163 }
4164 if (!added && pa->pa_free < tmp_pa->pa_free) {
4165 /* Add to the tail of the previous entry */
4166 list_add_tail_rcu(&pa->pa_inode_list,
4167 &tmp_pa->pa_inode_list);
4168 added = 1;
4169 /*
4170 * we want to count the total
4171 * number of entries in the list
4172 */
4173 }
4174 spin_unlock(&tmp_pa->pa_lock);
4175 lg_prealloc_count++;
4176 }
4177 if (!added)
4178 list_add_tail_rcu(&pa->pa_inode_list,
4179 &lg->lg_prealloc_list[order]);
4180 rcu_read_unlock();
4181
4182 /* Now trim the list to be not more than 8 elements */
4183 if (lg_prealloc_count > 8) {
4184 ext4_mb_discard_lg_preallocations(sb, lg,
4185 order, lg_prealloc_count);
4186 return;
4187 }
4188 return ;
4189}
4190
Alex Tomasc9de5602008-01-29 00:19:52 -05004191/*
4192 * release all resource we used in allocation
4193 */
4194static int ext4_mb_release_context(struct ext4_allocation_context *ac)
4195{
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004196 struct ext4_prealloc_space *pa = ac->ac_pa;
4197 if (pa) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004198 if (pa->pa_type == MB_GROUP_PA) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004199 /* see comment in ext4_mb_use_group_pa() */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004200 spin_lock(&pa->pa_lock);
4201 pa->pa_pstart += ac->ac_b_ex.fe_len;
4202 pa->pa_lstart += ac->ac_b_ex.fe_len;
4203 pa->pa_free -= ac->ac_b_ex.fe_len;
4204 pa->pa_len -= ac->ac_b_ex.fe_len;
4205 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004206 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004207 }
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05004208 if (ac->alloc_semp)
4209 up_read(ac->alloc_semp);
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004210 if (pa) {
4211 /*
4212 * We want to add the pa to the right bucket.
4213 * Remove it from the list and while adding
4214 * make sure the list to which we are adding
4215 * doesn't grow big. We need to release
4216 * alloc_semp before calling ext4_mb_add_n_trim()
4217 */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004218 if ((pa->pa_type == MB_GROUP_PA) && likely(pa->pa_free)) {
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004219 spin_lock(pa->pa_obj_lock);
4220 list_del_rcu(&pa->pa_inode_list);
4221 spin_unlock(pa->pa_obj_lock);
4222 ext4_mb_add_n_trim(ac);
4223 }
4224 ext4_mb_put_pa(ac, ac->ac_sb, pa);
4225 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004226 if (ac->ac_bitmap_page)
4227 page_cache_release(ac->ac_bitmap_page);
4228 if (ac->ac_buddy_page)
4229 page_cache_release(ac->ac_buddy_page);
4230 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
4231 mutex_unlock(&ac->ac_lg->lg_mutex);
4232 ext4_mb_collect_stats(ac);
4233 return 0;
4234}
4235
4236static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
4237{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004238 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004239 int ret;
4240 int freed = 0;
4241
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004242 trace_ext4_mb_discard_preallocations(sb, needed);
Theodore Ts'o8df96752009-05-01 08:50:38 -04004243 for (i = 0; i < ngroups && needed > 0; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004244 ret = ext4_mb_discard_group_preallocations(sb, i, needed);
4245 freed += ret;
4246 needed -= ret;
4247 }
4248
4249 return freed;
4250}
4251
4252/*
4253 * Main entry point into mballoc to allocate blocks
4254 * it tries to use preallocation first, then falls back
4255 * to usual allocation
4256 */
4257ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
4258 struct ext4_allocation_request *ar, int *errp)
4259{
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004260 int freed;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004261 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004262 struct ext4_sb_info *sbi;
4263 struct super_block *sb;
4264 ext4_fsblk_t block = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01004265 unsigned int inquota = 0;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004266 unsigned int reserv_blks = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004267
4268 sb = ar->inode->i_sb;
4269 sbi = EXT4_SB(sb);
4270
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004271 trace_ext4_request_blocks(ar);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004272
Mingming Cao60e58e02009-01-22 18:13:05 +01004273 /*
4274 * For delayed allocation, we could skip the ENOSPC and
4275 * EDQUOT check, as blocks and quotas have been already
4276 * reserved when data being copied into pagecache.
4277 */
4278 if (EXT4_I(ar->inode)->i_delalloc_reserved_flag)
4279 ar->flags |= EXT4_MB_DELALLOC_RESERVED;
4280 else {
4281 /* Without delayed allocation we need to verify
4282 * there is enough free blocks to do block allocation
4283 * and verify allocation doesn't exceed the quota limits.
Mingming Caod2a17632008-07-14 17:52:37 -04004284 */
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004285 while (ar->len && ext4_claim_free_blocks(sbi, ar->len)) {
4286 /* let others to free the space */
4287 yield();
4288 ar->len = ar->len >> 1;
4289 }
4290 if (!ar->len) {
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -04004291 *errp = -ENOSPC;
4292 return 0;
4293 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004294 reserv_blks = ar->len;
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004295 while (ar->len && dquot_alloc_block(ar->inode, ar->len)) {
Mingming Cao60e58e02009-01-22 18:13:05 +01004296 ar->flags |= EXT4_MB_HINT_NOPREALLOC;
4297 ar->len--;
4298 }
4299 inquota = ar->len;
4300 if (ar->len == 0) {
4301 *errp = -EDQUOT;
4302 goto out3;
4303 }
Mingming Caod2a17632008-07-14 17:52:37 -04004304 }
Mingming Caod2a17632008-07-14 17:52:37 -04004305
Eric Sandeen256bdb42008-02-10 01:13:33 -05004306 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o833576b2009-07-13 09:45:52 -04004307 if (!ac) {
Shen Feng363d4252008-07-11 19:27:31 -04004308 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004309 *errp = -ENOMEM;
Shen Feng363d4252008-07-11 19:27:31 -04004310 goto out1;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004311 }
4312
Eric Sandeen256bdb42008-02-10 01:13:33 -05004313 *errp = ext4_mb_initialize_context(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004314 if (*errp) {
4315 ar->len = 0;
Shen Feng363d4252008-07-11 19:27:31 -04004316 goto out2;
Alex Tomasc9de5602008-01-29 00:19:52 -05004317 }
4318
Eric Sandeen256bdb42008-02-10 01:13:33 -05004319 ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
4320 if (!ext4_mb_use_preallocated(ac)) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004321 ac->ac_op = EXT4_MB_HISTORY_ALLOC;
4322 ext4_mb_normalize_request(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004323repeat:
4324 /* allocate space in core */
Eric Sandeen256bdb42008-02-10 01:13:33 -05004325 ext4_mb_regular_allocator(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004326
4327 /* as we've just preallocated more space than
4328 * user requested orinally, we store allocated
4329 * space in a special descriptor */
Eric Sandeen256bdb42008-02-10 01:13:33 -05004330 if (ac->ac_status == AC_STATUS_FOUND &&
4331 ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
4332 ext4_mb_new_preallocation(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004333 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05004334 if (likely(ac->ac_status == AC_STATUS_FOUND)) {
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004335 *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_blks);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004336 if (*errp == -EAGAIN) {
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05004337 /*
4338 * drop the reference that we took
4339 * in ext4_mb_use_best_found
4340 */
4341 ext4_mb_release_context(ac);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004342 ac->ac_b_ex.fe_group = 0;
4343 ac->ac_b_ex.fe_start = 0;
4344 ac->ac_b_ex.fe_len = 0;
4345 ac->ac_status = AC_STATUS_CONTINUE;
4346 goto repeat;
4347 } else if (*errp) {
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05004348 ext4_discard_allocated_blocks(ac);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004349 ac->ac_b_ex.fe_len = 0;
4350 ar->len = 0;
4351 ext4_mb_show_ac(ac);
4352 } else {
4353 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4354 ar->len = ac->ac_b_ex.fe_len;
4355 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004356 } else {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004357 freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004358 if (freed)
4359 goto repeat;
4360 *errp = -ENOSPC;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004361 ac->ac_b_ex.fe_len = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004362 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004363 ext4_mb_show_ac(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004364 }
4365
Eric Sandeen256bdb42008-02-10 01:13:33 -05004366 ext4_mb_release_context(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004367
Shen Feng363d4252008-07-11 19:27:31 -04004368out2:
4369 kmem_cache_free(ext4_ac_cachep, ac);
4370out1:
Mingming Cao60e58e02009-01-22 18:13:05 +01004371 if (inquota && ar->len < inquota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004372 dquot_free_block(ar->inode, inquota - ar->len);
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004373out3:
4374 if (!ar->len) {
4375 if (!EXT4_I(ar->inode)->i_delalloc_reserved_flag)
4376 /* release all the reserved blocks if non delalloc */
4377 percpu_counter_sub(&sbi->s_dirtyblocks_counter,
4378 reserv_blks);
4379 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004380
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004381 trace_ext4_allocate_blocks(ar, (unsigned long long)block);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004382
Alex Tomasc9de5602008-01-29 00:19:52 -05004383 return block;
4384}
Alex Tomasc9de5602008-01-29 00:19:52 -05004385
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004386/*
4387 * We can merge two free data extents only if the physical blocks
4388 * are contiguous, AND the extents were freed by the same transaction,
4389 * AND the blocks are associated with the same group.
4390 */
4391static int can_merge(struct ext4_free_data *entry1,
4392 struct ext4_free_data *entry2)
4393{
4394 if ((entry1->t_tid == entry2->t_tid) &&
4395 (entry1->group == entry2->group) &&
4396 ((entry1->start_blk + entry1->count) == entry2->start_blk))
4397 return 1;
4398 return 0;
4399}
4400
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004401static noinline_for_stack int
4402ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004403 struct ext4_free_data *new_entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05004404{
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004405 ext4_grpblk_t block;
4406 struct ext4_free_data *entry;
Alex Tomasc9de5602008-01-29 00:19:52 -05004407 struct ext4_group_info *db = e4b->bd_info;
4408 struct super_block *sb = e4b->bd_sb;
4409 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004410 struct rb_node **n = &db->bb_free_root.rb_node, *node;
4411 struct rb_node *parent = NULL, *new_node;
4412
Frank Mayhar03901312009-01-07 00:06:22 -05004413 BUG_ON(!ext4_handle_valid(handle));
Alex Tomasc9de5602008-01-29 00:19:52 -05004414 BUG_ON(e4b->bd_bitmap_page == NULL);
4415 BUG_ON(e4b->bd_buddy_page == NULL);
4416
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004417 new_node = &new_entry->node;
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004418 block = new_entry->start_blk;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004419
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004420 if (!*n) {
4421 /* first free block exent. We need to
4422 protect buddy cache from being freed,
4423 * otherwise we'll refresh it from
4424 * on-disk bitmap and lose not-yet-available
4425 * blocks */
4426 page_cache_get(e4b->bd_buddy_page);
4427 page_cache_get(e4b->bd_bitmap_page);
4428 }
4429 while (*n) {
4430 parent = *n;
4431 entry = rb_entry(parent, struct ext4_free_data, node);
4432 if (block < entry->start_blk)
4433 n = &(*n)->rb_left;
4434 else if (block >= (entry->start_blk + entry->count))
4435 n = &(*n)->rb_right;
4436 else {
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05004437 ext4_grp_locked_error(sb, e4b->bd_group, __func__,
4438 "Double free of blocks %d (%d %d)",
4439 block, entry->start_blk, entry->count);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004440 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004441 }
4442 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004443
4444 rb_link_node(new_node, parent, n);
4445 rb_insert_color(new_node, &db->bb_free_root);
4446
4447 /* Now try to see the extent can be merged to left and right */
4448 node = rb_prev(new_node);
4449 if (node) {
4450 entry = rb_entry(node, struct ext4_free_data, node);
4451 if (can_merge(entry, new_entry)) {
4452 new_entry->start_blk = entry->start_blk;
4453 new_entry->count += entry->count;
4454 rb_erase(node, &(db->bb_free_root));
4455 spin_lock(&sbi->s_md_lock);
4456 list_del(&entry->list);
4457 spin_unlock(&sbi->s_md_lock);
4458 kmem_cache_free(ext4_free_ext_cachep, entry);
4459 }
4460 }
4461
4462 node = rb_next(new_node);
4463 if (node) {
4464 entry = rb_entry(node, struct ext4_free_data, node);
4465 if (can_merge(new_entry, entry)) {
4466 new_entry->count += entry->count;
4467 rb_erase(node, &(db->bb_free_root));
4468 spin_lock(&sbi->s_md_lock);
4469 list_del(&entry->list);
4470 spin_unlock(&sbi->s_md_lock);
4471 kmem_cache_free(ext4_free_ext_cachep, entry);
4472 }
4473 }
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04004474 /* Add the extent to transaction's private list */
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004475 spin_lock(&sbi->s_md_lock);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04004476 list_add(&new_entry->list, &handle->h_transaction->t_private_list);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004477 spin_unlock(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004478 return 0;
4479}
4480
Theodore Ts'o44338712009-11-22 07:44:56 -05004481/**
4482 * ext4_free_blocks() -- Free given blocks and update quota
4483 * @handle: handle for this transaction
4484 * @inode: inode
4485 * @block: start physical block to free
4486 * @count: number of blocks to count
4487 * @metadata: Are these metadata blocks
Alex Tomasc9de5602008-01-29 00:19:52 -05004488 */
Theodore Ts'o44338712009-11-22 07:44:56 -05004489void ext4_free_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'oe6362602009-11-23 07:17:05 -05004490 struct buffer_head *bh, ext4_fsblk_t block,
4491 unsigned long count, int flags)
Alex Tomasc9de5602008-01-29 00:19:52 -05004492{
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05004493 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004494 struct super_block *sb = inode->i_sb;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004495 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004496 struct ext4_group_desc *gdp;
4497 struct ext4_super_block *es;
Theodore Ts'o44338712009-11-22 07:44:56 -05004498 unsigned long freed = 0;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004499 unsigned int overflow;
Alex Tomasc9de5602008-01-29 00:19:52 -05004500 ext4_grpblk_t bit;
4501 struct buffer_head *gd_bh;
4502 ext4_group_t block_group;
4503 struct ext4_sb_info *sbi;
4504 struct ext4_buddy e4b;
4505 int err = 0;
4506 int ret;
4507
Theodore Ts'oe6362602009-11-23 07:17:05 -05004508 if (bh) {
4509 if (block)
4510 BUG_ON(block != bh->b_blocknr);
4511 else
4512 block = bh->b_blocknr;
4513 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004514
Alex Tomasc9de5602008-01-29 00:19:52 -05004515 sbi = EXT4_SB(sb);
4516 es = EXT4_SB(sb)->s_es;
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004517 if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
4518 !ext4_data_block_valid(sbi, block, count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004519 ext4_error(sb, "Freeing blocks not in datazone - "
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004520 "block = %llu, count = %lu", block, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004521 goto error_return;
4522 }
4523
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004524 ext4_debug("freeing block %llu\n", block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05004525 trace_ext4_free_blocks(inode, block, count, flags);
4526
4527 if (flags & EXT4_FREE_BLOCKS_FORGET) {
4528 struct buffer_head *tbh = bh;
4529 int i;
4530
4531 BUG_ON(bh && (count > 1));
4532
4533 for (i = 0; i < count; i++) {
4534 if (!bh)
4535 tbh = sb_find_get_block(inode->i_sb,
4536 block + i);
Theodore Ts'o60e66792010-05-17 07:00:00 -04004537 ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
Theodore Ts'oe6362602009-11-23 07:17:05 -05004538 inode, tbh, block + i);
4539 }
4540 }
4541
Theodore Ts'o60e66792010-05-17 07:00:00 -04004542 /*
Theodore Ts'oe6362602009-11-23 07:17:05 -05004543 * We need to make sure we don't reuse the freed block until
4544 * after the transaction is committed, which we can do by
4545 * treating the block as metadata, below. We make an
4546 * exception if the inode is to be written in writeback mode
4547 * since writeback mode has weak data consistency guarantees.
4548 */
4549 if (!ext4_should_writeback_data(inode))
4550 flags |= EXT4_FREE_BLOCKS_METADATA;
Alex Tomasc9de5602008-01-29 00:19:52 -05004551
Eric Sandeen256bdb42008-02-10 01:13:33 -05004552 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
4553 if (ac) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004554 ac->ac_inode = inode;
4555 ac->ac_sb = sb;
4556 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004557
4558do_more:
4559 overflow = 0;
4560 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
4561
4562 /*
4563 * Check to see if we are freeing blocks across a group
4564 * boundary.
4565 */
4566 if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4567 overflow = bit + count - EXT4_BLOCKS_PER_GROUP(sb);
4568 count -= overflow;
4569 }
Theodore Ts'o574ca172008-07-11 19:27:31 -04004570 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004571 if (!bitmap_bh) {
4572 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004573 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004574 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004575 gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004576 if (!gdp) {
4577 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004578 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004579 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004580
4581 if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
4582 in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
4583 in_range(block, ext4_inode_table(sb, gdp),
4584 EXT4_SB(sb)->s_itb_per_group) ||
4585 in_range(block + count - 1, ext4_inode_table(sb, gdp),
4586 EXT4_SB(sb)->s_itb_per_group)) {
4587
Eric Sandeen12062dd2010-02-15 14:19:27 -05004588 ext4_error(sb, "Freeing blocks in system zone - "
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004589 "Block = %llu, count = %lu", block, count);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004590 /* err = 0. ext4_std_error should be a no op */
4591 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004592 }
4593
4594 BUFFER_TRACE(bitmap_bh, "getting write access");
4595 err = ext4_journal_get_write_access(handle, bitmap_bh);
4596 if (err)
4597 goto error_return;
4598
4599 /*
4600 * We are about to modify some metadata. Call the journal APIs
4601 * to unshare ->b_data if a currently-committing transaction is
4602 * using it
4603 */
4604 BUFFER_TRACE(gd_bh, "get_write_access");
4605 err = ext4_journal_get_write_access(handle, gd_bh);
4606 if (err)
4607 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004608#ifdef AGGRESSIVE_CHECK
4609 {
4610 int i;
4611 for (i = 0; i < count; i++)
4612 BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
4613 }
4614#endif
Eric Sandeen256bdb42008-02-10 01:13:33 -05004615 if (ac) {
4616 ac->ac_b_ex.fe_group = block_group;
4617 ac->ac_b_ex.fe_start = bit;
4618 ac->ac_b_ex.fe_len = count;
Theodore Ts'o296c3552009-09-30 00:32:42 -04004619 trace_ext4_mballoc_free(ac);
Eric Sandeen256bdb42008-02-10 01:13:33 -05004620 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004621
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05004622 err = ext4_mb_load_buddy(sb, block_group, &e4b);
4623 if (err)
4624 goto error_return;
Theodore Ts'oe6362602009-11-23 07:17:05 -05004625
4626 if ((flags & EXT4_FREE_BLOCKS_METADATA) && ext4_handle_valid(handle)) {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004627 struct ext4_free_data *new_entry;
4628 /*
4629 * blocks being freed are metadata. these blocks shouldn't
4630 * be used until this transaction is committed
4631 */
4632 new_entry = kmem_cache_alloc(ext4_free_ext_cachep, GFP_NOFS);
4633 new_entry->start_blk = bit;
4634 new_entry->group = block_group;
4635 new_entry->count = count;
4636 new_entry->t_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004637
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004638 ext4_lock_group(sb, block_group);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004639 mb_clear_bits(bitmap_bh->b_data, bit, count);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004640 ext4_mb_free_metadata(handle, &e4b, new_entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05004641 } else {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004642 /* need to update group_info->bb_free and bitmap
4643 * with group lock held. generate_buddy look at
4644 * them with group lock_held
4645 */
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004646 ext4_lock_group(sb, block_group);
4647 mb_clear_bits(bitmap_bh->b_data, bit, count);
Shen Feng7e5a8cd2008-07-13 21:03:31 -04004648 mb_free_blocks(inode, &e4b, bit, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004649 ext4_mb_return_to_preallocation(inode, &e4b, block, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004650 }
4651
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004652 ret = ext4_free_blks_count(sb, gdp) + count;
4653 ext4_free_blks_set(sb, gdp, ret);
Alex Tomasc9de5602008-01-29 00:19:52 -05004654 gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004655 ext4_unlock_group(sb, block_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004656 percpu_counter_add(&sbi->s_freeblocks_counter, count);
4657
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004658 if (sbi->s_log_groups_per_flex) {
4659 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -05004660 atomic_add(count, &sbi->s_flex_groups[flex_group].free_blocks);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004661 }
4662
Jing Zhange39e07f2010-05-14 00:00:00 -04004663 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05004664
Theodore Ts'o44338712009-11-22 07:44:56 -05004665 freed += count;
Alex Tomasc9de5602008-01-29 00:19:52 -05004666
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004667 /* We dirtied the bitmap block */
4668 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
4669 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
4670
Alex Tomasc9de5602008-01-29 00:19:52 -05004671 /* And the group descriptor block */
4672 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
Frank Mayhar03901312009-01-07 00:06:22 -05004673 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05004674 if (!err)
4675 err = ret;
4676
4677 if (overflow && !err) {
4678 block += count;
4679 count = overflow;
4680 put_bh(bitmap_bh);
4681 goto do_more;
4682 }
4683 sb->s_dirt = 1;
4684error_return:
Theodore Ts'o44338712009-11-22 07:44:56 -05004685 if (freed)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004686 dquot_free_block(inode, freed);
Alex Tomasc9de5602008-01-29 00:19:52 -05004687 brelse(bitmap_bh);
4688 ext4_std_error(sb, err);
Eric Sandeen256bdb42008-02-10 01:13:33 -05004689 if (ac)
4690 kmem_cache_free(ext4_ac_cachep, ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004691 return;
4692}