blob: 92aa05ddef66e5cf20c87d3cc11bb90131c06788 [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
Lucas De Marchi25985ed2011-03-30 22:57:33 -030095 * enough free space (pa_free) within the prealloc space.
Alex Tomasc9de5602008-01-29 00:19:52 -050096 *
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;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400341
342/* We create slab caches for groupinfo data structures based on the
343 * superblock block size. There will be one per mounted filesystem for
344 * each unique s_blocksize_bits */
Eric Sandeen2892c152011-02-12 08:12:18 -0500345#define NR_GRPINFO_CACHES 8
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400346static struct kmem_cache *ext4_groupinfo_caches[NR_GRPINFO_CACHES];
347
Eric Sandeen2892c152011-02-12 08:12:18 -0500348static const char *ext4_groupinfo_slab_names[NR_GRPINFO_CACHES] = {
349 "ext4_groupinfo_1k", "ext4_groupinfo_2k", "ext4_groupinfo_4k",
350 "ext4_groupinfo_8k", "ext4_groupinfo_16k", "ext4_groupinfo_32k",
351 "ext4_groupinfo_64k", "ext4_groupinfo_128k"
352};
353
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500354static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
355 ext4_group_t group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500356static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
357 ext4_group_t group);
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500358static void release_blocks_on_commit(journal_t *journal, transaction_t *txn);
359
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500360static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
361{
Alex Tomasc9de5602008-01-29 00:19:52 -0500362#if BITS_PER_LONG == 64
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500363 *bit += ((unsigned long) addr & 7UL) << 3;
364 addr = (void *) ((unsigned long) addr & ~7UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500365#elif BITS_PER_LONG == 32
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500366 *bit += ((unsigned long) addr & 3UL) << 3;
367 addr = (void *) ((unsigned long) addr & ~3UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500368#else
369#error "how many bits you are?!"
370#endif
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500371 return addr;
372}
Alex Tomasc9de5602008-01-29 00:19:52 -0500373
374static inline int mb_test_bit(int bit, void *addr)
375{
376 /*
377 * ext4_test_bit on architecture like powerpc
378 * needs unsigned long aligned address
379 */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500380 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500381 return ext4_test_bit(bit, addr);
382}
383
384static inline void mb_set_bit(int bit, void *addr)
385{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500386 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500387 ext4_set_bit(bit, addr);
388}
389
Alex Tomasc9de5602008-01-29 00:19:52 -0500390static inline void mb_clear_bit(int bit, void *addr)
391{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500392 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500393 ext4_clear_bit(bit, addr);
394}
395
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500396static inline int mb_find_next_zero_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_zero_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
409static inline int mb_find_next_bit(void *addr, int max, int start)
410{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400411 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500412 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400413 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500414 start += fix;
415
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400416 ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
417 if (ret > max)
418 return max;
419 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500420}
421
Alex Tomasc9de5602008-01-29 00:19:52 -0500422static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
423{
424 char *bb;
425
Alex Tomasc9de5602008-01-29 00:19:52 -0500426 BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
427 BUG_ON(max == NULL);
428
429 if (order > e4b->bd_blkbits + 1) {
430 *max = 0;
431 return NULL;
432 }
433
434 /* at order 0 we see each particular block */
Coly Li84b775a2011-02-24 12:51:59 -0500435 if (order == 0) {
436 *max = 1 << (e4b->bd_blkbits + 3);
Alex Tomasc9de5602008-01-29 00:19:52 -0500437 return EXT4_MB_BITMAP(e4b);
Coly Li84b775a2011-02-24 12:51:59 -0500438 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500439
440 bb = EXT4_MB_BUDDY(e4b) + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
441 *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
442
443 return bb;
444}
445
446#ifdef DOUBLE_CHECK
447static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
448 int first, int count)
449{
450 int i;
451 struct super_block *sb = e4b->bd_sb;
452
453 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
454 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400455 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500456 for (i = 0; i < count; i++) {
457 if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
458 ext4_fsblk_t blocknr;
Akinobu Mita5661bd62010-03-03 23:53:39 -0500459
460 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500461 blocknr += first + i;
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500462 ext4_grp_locked_error(sb, e4b->bd_group,
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400463 inode ? inode->i_ino : 0,
464 blocknr,
465 "freeing block already freed "
466 "(bit %u)",
467 first + i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500468 }
469 mb_clear_bit(first + i, e4b->bd_info->bb_bitmap);
470 }
471}
472
473static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count)
474{
475 int i;
476
477 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
478 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400479 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500480 for (i = 0; i < count; i++) {
481 BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap));
482 mb_set_bit(first + i, e4b->bd_info->bb_bitmap);
483 }
484}
485
486static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
487{
488 if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) {
489 unsigned char *b1, *b2;
490 int i;
491 b1 = (unsigned char *) e4b->bd_info->bb_bitmap;
492 b2 = (unsigned char *) bitmap;
493 for (i = 0; i < e4b->bd_sb->s_blocksize; i++) {
494 if (b1[i] != b2[i]) {
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500495 printk(KERN_ERR "corruption in group %u "
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400496 "at byte %u(%u): %x in copy != %x "
497 "on disk/prealloc\n",
498 e4b->bd_group, i, i * 8, b1[i], b2[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500499 BUG();
500 }
501 }
502 }
503}
504
505#else
506static inline void mb_free_blocks_double(struct inode *inode,
507 struct ext4_buddy *e4b, int first, int count)
508{
509 return;
510}
511static inline void mb_mark_used_double(struct ext4_buddy *e4b,
512 int first, int count)
513{
514 return;
515}
516static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
517{
518 return;
519}
520#endif
521
522#ifdef AGGRESSIVE_CHECK
523
524#define MB_CHECK_ASSERT(assert) \
525do { \
526 if (!(assert)) { \
527 printk(KERN_EMERG \
528 "Assertion failure in %s() at %s:%d: \"%s\"\n", \
529 function, file, line, # assert); \
530 BUG(); \
531 } \
532} while (0)
533
534static int __mb_check_buddy(struct ext4_buddy *e4b, char *file,
535 const char *function, int line)
536{
537 struct super_block *sb = e4b->bd_sb;
538 int order = e4b->bd_blkbits + 1;
539 int max;
540 int max2;
541 int i;
542 int j;
543 int k;
544 int count;
545 struct ext4_group_info *grp;
546 int fragments = 0;
547 int fstart;
548 struct list_head *cur;
549 void *buddy;
550 void *buddy2;
551
Alex Tomasc9de5602008-01-29 00:19:52 -0500552 {
553 static int mb_check_counter;
554 if (mb_check_counter++ % 100 != 0)
555 return 0;
556 }
557
558 while (order > 1) {
559 buddy = mb_find_buddy(e4b, order, &max);
560 MB_CHECK_ASSERT(buddy);
561 buddy2 = mb_find_buddy(e4b, order - 1, &max2);
562 MB_CHECK_ASSERT(buddy2);
563 MB_CHECK_ASSERT(buddy != buddy2);
564 MB_CHECK_ASSERT(max * 2 == max2);
565
566 count = 0;
567 for (i = 0; i < max; i++) {
568
569 if (mb_test_bit(i, buddy)) {
570 /* only single bit in buddy2 may be 1 */
571 if (!mb_test_bit(i << 1, buddy2)) {
572 MB_CHECK_ASSERT(
573 mb_test_bit((i<<1)+1, buddy2));
574 } else if (!mb_test_bit((i << 1) + 1, buddy2)) {
575 MB_CHECK_ASSERT(
576 mb_test_bit(i << 1, buddy2));
577 }
578 continue;
579 }
580
581 /* both bits in buddy2 must be 0 */
582 MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2));
583 MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2));
584
585 for (j = 0; j < (1 << order); j++) {
586 k = (i * (1 << order)) + j;
587 MB_CHECK_ASSERT(
588 !mb_test_bit(k, EXT4_MB_BITMAP(e4b)));
589 }
590 count++;
591 }
592 MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count);
593 order--;
594 }
595
596 fstart = -1;
597 buddy = mb_find_buddy(e4b, 0, &max);
598 for (i = 0; i < max; i++) {
599 if (!mb_test_bit(i, buddy)) {
600 MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free);
601 if (fstart == -1) {
602 fragments++;
603 fstart = i;
604 }
605 continue;
606 }
607 fstart = -1;
608 /* check used bits only */
609 for (j = 0; j < e4b->bd_blkbits + 1; j++) {
610 buddy2 = mb_find_buddy(e4b, j, &max2);
611 k = i >> j;
612 MB_CHECK_ASSERT(k < max2);
613 MB_CHECK_ASSERT(mb_test_bit(k, buddy2));
614 }
615 }
616 MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info));
617 MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments);
618
619 grp = ext4_get_group_info(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500620 list_for_each(cur, &grp->bb_prealloc_list) {
621 ext4_group_t groupnr;
622 struct ext4_prealloc_space *pa;
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400623 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
624 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k);
Alex Tomasc9de5602008-01-29 00:19:52 -0500625 MB_CHECK_ASSERT(groupnr == e4b->bd_group);
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400626 for (i = 0; i < pa->pa_len; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500627 MB_CHECK_ASSERT(mb_test_bit(k + i, buddy));
628 }
629 return 0;
630}
631#undef MB_CHECK_ASSERT
632#define mb_check_buddy(e4b) __mb_check_buddy(e4b, \
Harvey Harrison46e665e2008-04-17 10:38:59 -0400633 __FILE__, __func__, __LINE__)
Alex Tomasc9de5602008-01-29 00:19:52 -0500634#else
635#define mb_check_buddy(e4b)
636#endif
637
Coly Li7c786052011-02-24 13:24:25 -0500638/*
639 * Divide blocks started from @first with length @len into
640 * smaller chunks with power of 2 blocks.
641 * Clear the bits in bitmap which the blocks of the chunk(s) covered,
642 * then increase bb_counters[] for corresponded chunk size.
643 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500644static void ext4_mb_mark_free_simple(struct super_block *sb,
Eric Sandeena36b4492009-08-25 22:36:45 -0400645 void *buddy, ext4_grpblk_t first, ext4_grpblk_t len,
Alex Tomasc9de5602008-01-29 00:19:52 -0500646 struct ext4_group_info *grp)
647{
648 struct ext4_sb_info *sbi = EXT4_SB(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400649 ext4_grpblk_t min;
650 ext4_grpblk_t max;
651 ext4_grpblk_t chunk;
Alex Tomasc9de5602008-01-29 00:19:52 -0500652 unsigned short border;
653
Valerie Clementb73fce62008-02-15 13:48:51 -0500654 BUG_ON(len > EXT4_BLOCKS_PER_GROUP(sb));
Alex Tomasc9de5602008-01-29 00:19:52 -0500655
656 border = 2 << sb->s_blocksize_bits;
657
658 while (len > 0) {
659 /* find how many blocks can be covered since this position */
660 max = ffs(first | border) - 1;
661
662 /* find how many blocks of power 2 we need to mark */
663 min = fls(len) - 1;
664
665 if (max < min)
666 min = max;
667 chunk = 1 << min;
668
669 /* mark multiblock chunks only */
670 grp->bb_counters[min]++;
671 if (min > 0)
672 mb_clear_bit(first >> min,
673 buddy + sbi->s_mb_offsets[min]);
674
675 len -= chunk;
676 first += chunk;
677 }
678}
679
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400680/*
681 * Cache the order of the largest free extent we have available in this block
682 * group.
683 */
684static void
685mb_set_largest_free_order(struct super_block *sb, struct ext4_group_info *grp)
686{
687 int i;
688 int bits;
689
690 grp->bb_largest_free_order = -1; /* uninit */
691
692 bits = sb->s_blocksize_bits + 1;
693 for (i = bits; i >= 0; i--) {
694 if (grp->bb_counters[i] > 0) {
695 grp->bb_largest_free_order = i;
696 break;
697 }
698 }
699}
700
Eric Sandeen089ceec2009-07-05 22:17:31 -0400701static noinline_for_stack
702void ext4_mb_generate_buddy(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -0500703 void *buddy, void *bitmap, ext4_group_t group)
704{
705 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
Eric Sandeena36b4492009-08-25 22:36:45 -0400706 ext4_grpblk_t max = EXT4_BLOCKS_PER_GROUP(sb);
707 ext4_grpblk_t i = 0;
708 ext4_grpblk_t first;
709 ext4_grpblk_t len;
Alex Tomasc9de5602008-01-29 00:19:52 -0500710 unsigned free = 0;
711 unsigned fragments = 0;
712 unsigned long long period = get_cycles();
713
714 /* initialize buddy from bitmap which is aggregation
715 * of on-disk bitmap and preallocations */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500716 i = mb_find_next_zero_bit(bitmap, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -0500717 grp->bb_first_free = i;
718 while (i < max) {
719 fragments++;
720 first = i;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500721 i = mb_find_next_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500722 len = i - first;
723 free += len;
724 if (len > 1)
725 ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
726 else
727 grp->bb_counters[0]++;
728 if (i < max)
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500729 i = mb_find_next_zero_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500730 }
731 grp->bb_fragments = fragments;
732
733 if (free != grp->bb_free) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400734 ext4_grp_locked_error(sb, group, 0, 0,
735 "%u blocks in bitmap, %u in gd",
736 free, grp->bb_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500737 /*
738 * If we intent to continue, we consider group descritor
739 * corrupt and update bb_free using bitmap value
740 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500741 grp->bb_free = free;
742 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400743 mb_set_largest_free_order(sb, grp);
Alex Tomasc9de5602008-01-29 00:19:52 -0500744
745 clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
746
747 period = get_cycles() - period;
748 spin_lock(&EXT4_SB(sb)->s_bal_lock);
749 EXT4_SB(sb)->s_mb_buddies_generated++;
750 EXT4_SB(sb)->s_mb_generation_time += period;
751 spin_unlock(&EXT4_SB(sb)->s_bal_lock);
752}
753
754/* The buddy information is attached the buddy cache inode
755 * for convenience. The information regarding each group
756 * is loaded via ext4_mb_load_buddy. The information involve
757 * block bitmap and buddy information. The information are
758 * stored in the inode as
759 *
760 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500761 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500762 *
763 *
764 * one block each for bitmap and buddy information.
765 * So for each group we take up 2 blocks. A page can
766 * contain blocks_per_page (PAGE_CACHE_SIZE / blocksize) blocks.
767 * So it can have information regarding groups_per_page which
768 * is blocks_per_page/2
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400769 *
770 * Locking note: This routine takes the block group lock of all groups
771 * for this page; do not hold this lock when calling this routine!
Alex Tomasc9de5602008-01-29 00:19:52 -0500772 */
773
774static int ext4_mb_init_cache(struct page *page, char *incore)
775{
Theodore Ts'o8df96752009-05-01 08:50:38 -0400776 ext4_group_t ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -0500777 int blocksize;
778 int blocks_per_page;
779 int groups_per_page;
780 int err = 0;
781 int i;
782 ext4_group_t first_group;
783 int first_block;
784 struct super_block *sb;
785 struct buffer_head *bhs;
786 struct buffer_head **bh;
787 struct inode *inode;
788 char *data;
789 char *bitmap;
790
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400791 mb_debug(1, "init page %lu\n", page->index);
Alex Tomasc9de5602008-01-29 00:19:52 -0500792
793 inode = page->mapping->host;
794 sb = inode->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400795 ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -0500796 blocksize = 1 << inode->i_blkbits;
797 blocks_per_page = PAGE_CACHE_SIZE / blocksize;
798
799 groups_per_page = blocks_per_page >> 1;
800 if (groups_per_page == 0)
801 groups_per_page = 1;
802
803 /* allocate buffer_heads to read bitmaps */
804 if (groups_per_page > 1) {
805 err = -ENOMEM;
806 i = sizeof(struct buffer_head *) * groups_per_page;
807 bh = kzalloc(i, GFP_NOFS);
808 if (bh == NULL)
809 goto out;
810 } else
811 bh = &bhs;
812
813 first_group = page->index * blocks_per_page / 2;
814
815 /* read all groups the page covers into the cache */
816 for (i = 0; i < groups_per_page; i++) {
817 struct ext4_group_desc *desc;
818
Theodore Ts'o8df96752009-05-01 08:50:38 -0400819 if (first_group + i >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500820 break;
821
822 err = -EIO;
823 desc = ext4_get_group_desc(sb, first_group + i, NULL);
824 if (desc == NULL)
825 goto out;
826
827 err = -ENOMEM;
828 bh[i] = sb_getblk(sb, ext4_block_bitmap(sb, desc));
829 if (bh[i] == NULL)
830 goto out;
831
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500832 if (bitmap_uptodate(bh[i]))
Alex Tomasc9de5602008-01-29 00:19:52 -0500833 continue;
834
Frederic Bohec806e682008-10-10 08:09:18 -0400835 lock_buffer(bh[i]);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500836 if (bitmap_uptodate(bh[i])) {
837 unlock_buffer(bh[i]);
838 continue;
839 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400840 ext4_lock_group(sb, first_group + i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500841 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
842 ext4_init_block_bitmap(sb, bh[i],
843 first_group + i, desc);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500844 set_bitmap_uptodate(bh[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500845 set_buffer_uptodate(bh[i]);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400846 ext4_unlock_group(sb, first_group + i);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500847 unlock_buffer(bh[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500848 continue;
849 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400850 ext4_unlock_group(sb, first_group + i);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500851 if (buffer_uptodate(bh[i])) {
852 /*
853 * if not uninit if bh is uptodate,
854 * bitmap is also uptodate
855 */
856 set_bitmap_uptodate(bh[i]);
857 unlock_buffer(bh[i]);
858 continue;
859 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500860 get_bh(bh[i]);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500861 /*
862 * submit the buffer_head for read. We can
863 * safely mark the bitmap as uptodate now.
864 * We do it here so the bitmap uptodate bit
865 * get set with buffer lock held.
866 */
867 set_bitmap_uptodate(bh[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500868 bh[i]->b_end_io = end_buffer_read_sync;
869 submit_bh(READ, bh[i]);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400870 mb_debug(1, "read bitmap for group %u\n", first_group + i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500871 }
872
873 /* wait for I/O completion */
874 for (i = 0; i < groups_per_page && bh[i]; i++)
875 wait_on_buffer(bh[i]);
876
877 err = -EIO;
878 for (i = 0; i < groups_per_page && bh[i]; i++)
879 if (!buffer_uptodate(bh[i]))
880 goto out;
881
Mingming Cao31b481d2008-07-11 19:27:31 -0400882 err = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -0500883 first_block = page->index * blocks_per_page;
Aneesh Kumar K.V29eaf022009-01-05 21:48:56 -0500884 /* init the page */
885 memset(page_address(page), 0xff, PAGE_CACHE_SIZE);
Alex Tomasc9de5602008-01-29 00:19:52 -0500886 for (i = 0; i < blocks_per_page; i++) {
887 int group;
888 struct ext4_group_info *grinfo;
889
890 group = (first_block + i) >> 1;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400891 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500892 break;
893
894 /*
895 * data carry information regarding this
896 * particular group in the format specified
897 * above
898 *
899 */
900 data = page_address(page) + (i * blocksize);
901 bitmap = bh[group - first_group]->b_data;
902
903 /*
904 * We place the buddy block and bitmap block
905 * close together
906 */
907 if ((first_block + i) & 1) {
908 /* this is block of buddy */
909 BUG_ON(incore == NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400910 mb_debug(1, "put buddy for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500911 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400912 trace_ext4_mb_buddy_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500913 grinfo = ext4_get_group_info(sb, group);
914 grinfo->bb_fragments = 0;
915 memset(grinfo->bb_counters, 0,
Eric Sandeen19278052009-08-25 22:36:25 -0400916 sizeof(*grinfo->bb_counters) *
917 (sb->s_blocksize_bits+2));
Alex Tomasc9de5602008-01-29 00:19:52 -0500918 /*
919 * incore got set to the group block bitmap below
920 */
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500921 ext4_lock_group(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500922 ext4_mb_generate_buddy(sb, data, incore, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500923 ext4_unlock_group(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500924 incore = NULL;
925 } else {
926 /* this is block of bitmap */
927 BUG_ON(incore != NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400928 mb_debug(1, "put bitmap for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500929 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400930 trace_ext4_mb_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500931
932 /* see comments in ext4_mb_put_pa() */
933 ext4_lock_group(sb, group);
934 memcpy(data, bitmap, blocksize);
935
936 /* mark all preallocated blks used in in-core bitmap */
937 ext4_mb_generate_from_pa(sb, data, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500938 ext4_mb_generate_from_freelist(sb, data, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500939 ext4_unlock_group(sb, group);
940
941 /* set incore so that the buddy information can be
942 * generated using this
943 */
944 incore = data;
945 }
946 }
947 SetPageUptodate(page);
948
949out:
950 if (bh) {
951 for (i = 0; i < groups_per_page && bh[i]; i++)
952 brelse(bh[i]);
953 if (bh != &bhs)
954 kfree(bh);
955 }
956 return err;
957}
958
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400959/*
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400960 * lock the group_info alloc_sem of all the groups
961 * belonging to the same buddy cache page. This
962 * make sure other parallel operation on the buddy
963 * cache doesn't happen whild holding the buddy cache
964 * lock
965 */
966static int ext4_mb_get_buddy_cache_lock(struct super_block *sb,
967 ext4_group_t group)
968{
969 int i;
970 int block, pnum;
971 int blocks_per_page;
972 int groups_per_page;
973 ext4_group_t ngroups = ext4_get_groups_count(sb);
974 ext4_group_t first_group;
975 struct ext4_group_info *grp;
976
977 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
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 first_group = pnum * blocks_per_page / 2;
986
987 groups_per_page = blocks_per_page >> 1;
988 if (groups_per_page == 0)
989 groups_per_page = 1;
990 /* read all groups the page covers into the cache */
991 for (i = 0; i < groups_per_page; i++) {
992
993 if ((first_group + i) >= ngroups)
994 break;
995 grp = ext4_get_group_info(sb, first_group + i);
996 /* take all groups write allocation
997 * semaphore. This make sure there is
998 * no block allocation going on in any
999 * of that groups
1000 */
1001 down_write_nested(&grp->alloc_sem, i);
1002 }
1003 return i;
1004}
1005
1006static void ext4_mb_put_buddy_cache_lock(struct super_block *sb,
1007 ext4_group_t group, int locked_group)
1008{
1009 int i;
1010 int block, pnum;
1011 int blocks_per_page;
1012 ext4_group_t first_group;
1013 struct ext4_group_info *grp;
1014
1015 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
1016 /*
1017 * the buddy cache inode stores the block bitmap
1018 * and buddy information in consecutive blocks.
1019 * So for each group we need two blocks.
1020 */
1021 block = group * 2;
1022 pnum = block / blocks_per_page;
1023 first_group = pnum * blocks_per_page / 2;
1024 /* release locks on all the groups */
1025 for (i = 0; i < locked_group; i++) {
1026
1027 grp = ext4_get_group_info(sb, first_group + i);
1028 /* take all groups write allocation
1029 * semaphore. This make sure there is
1030 * no block allocation going on in any
1031 * of that groups
1032 */
1033 up_write(&grp->alloc_sem);
1034 }
1035
1036}
1037
1038/*
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001039 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1040 * block group lock of all groups for this page; do not hold the BG lock when
1041 * calling this routine!
1042 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001043static noinline_for_stack
1044int ext4_mb_init_group(struct super_block *sb, ext4_group_t group)
1045{
1046
1047 int ret = 0;
1048 void *bitmap;
1049 int blocks_per_page;
1050 int block, pnum, poff;
1051 int num_grp_locked = 0;
1052 struct ext4_group_info *this_grp;
1053 struct ext4_sb_info *sbi = EXT4_SB(sb);
1054 struct inode *inode = sbi->s_buddy_cache;
1055 struct page *page = NULL, *bitmap_page = NULL;
1056
1057 mb_debug(1, "init group %u\n", group);
1058 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
1059 this_grp = ext4_get_group_info(sb, group);
1060 /*
Aneesh Kumar K.V08c3a812009-09-09 23:50:17 -04001061 * This ensures that we don't reinit the buddy cache
1062 * page which map to the group from which we are already
1063 * allocating. If we are looking at the buddy cache we would
1064 * have taken a reference using ext4_mb_load_buddy and that
1065 * would have taken the alloc_sem lock.
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001066 */
1067 num_grp_locked = ext4_mb_get_buddy_cache_lock(sb, group);
1068 if (!EXT4_MB_GRP_NEED_INIT(this_grp)) {
1069 /*
1070 * somebody initialized the group
1071 * return without doing anything
1072 */
1073 ret = 0;
1074 goto err;
1075 }
1076 /*
1077 * the buddy cache inode stores the block bitmap
1078 * and buddy information in consecutive blocks.
1079 * So for each group we need two blocks.
1080 */
1081 block = group * 2;
1082 pnum = block / blocks_per_page;
1083 poff = block % blocks_per_page;
1084 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1085 if (page) {
1086 BUG_ON(page->mapping != inode->i_mapping);
1087 ret = ext4_mb_init_cache(page, NULL);
1088 if (ret) {
1089 unlock_page(page);
1090 goto err;
1091 }
1092 unlock_page(page);
1093 }
1094 if (page == NULL || !PageUptodate(page)) {
1095 ret = -EIO;
1096 goto err;
1097 }
1098 mark_page_accessed(page);
1099 bitmap_page = page;
1100 bitmap = page_address(page) + (poff * sb->s_blocksize);
1101
1102 /* init buddy cache */
1103 block++;
1104 pnum = block / blocks_per_page;
1105 poff = block % blocks_per_page;
1106 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1107 if (page == bitmap_page) {
1108 /*
1109 * If both the bitmap and buddy are in
1110 * the same page we don't need to force
1111 * init the buddy
1112 */
1113 unlock_page(page);
1114 } else if (page) {
1115 BUG_ON(page->mapping != inode->i_mapping);
1116 ret = ext4_mb_init_cache(page, bitmap);
1117 if (ret) {
1118 unlock_page(page);
1119 goto err;
1120 }
1121 unlock_page(page);
1122 }
1123 if (page == NULL || !PageUptodate(page)) {
1124 ret = -EIO;
1125 goto err;
1126 }
1127 mark_page_accessed(page);
1128err:
1129 ext4_mb_put_buddy_cache_lock(sb, group, num_grp_locked);
1130 if (bitmap_page)
1131 page_cache_release(bitmap_page);
1132 if (page)
1133 page_cache_release(page);
1134 return ret;
1135}
1136
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001137/*
1138 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1139 * block group lock of all groups for this page; do not hold the BG lock when
1140 * calling this routine!
1141 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04001142static noinline_for_stack int
1143ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
1144 struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001145{
Alex Tomasc9de5602008-01-29 00:19:52 -05001146 int blocks_per_page;
1147 int block;
1148 int pnum;
1149 int poff;
1150 struct page *page;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001151 int ret;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001152 struct ext4_group_info *grp;
1153 struct ext4_sb_info *sbi = EXT4_SB(sb);
1154 struct inode *inode = sbi->s_buddy_cache;
Alex Tomasc9de5602008-01-29 00:19:52 -05001155
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04001156 mb_debug(1, "load group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001157
1158 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001159 grp = ext4_get_group_info(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001160
1161 e4b->bd_blkbits = sb->s_blocksize_bits;
1162 e4b->bd_info = ext4_get_group_info(sb, group);
1163 e4b->bd_sb = sb;
1164 e4b->bd_group = group;
1165 e4b->bd_buddy_page = NULL;
1166 e4b->bd_bitmap_page = NULL;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001167 e4b->alloc_semp = &grp->alloc_sem;
1168
1169 /* Take the read lock on the group alloc
1170 * sem. This would make sure a parallel
1171 * ext4_mb_init_group happening on other
1172 * groups mapped by the page is blocked
1173 * till we are done with allocation
1174 */
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001175repeat_load_buddy:
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001176 down_read(e4b->alloc_semp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001177
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001178 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
1179 /* we need to check for group need init flag
1180 * with alloc_semp held so that we can be sure
1181 * that new blocks didn't get added to the group
1182 * when we are loading the buddy cache
1183 */
1184 up_read(e4b->alloc_semp);
1185 /*
1186 * we need full data about the group
1187 * to make a good selection
1188 */
1189 ret = ext4_mb_init_group(sb, group);
1190 if (ret)
1191 return ret;
1192 goto repeat_load_buddy;
1193 }
1194
Alex Tomasc9de5602008-01-29 00:19:52 -05001195 /*
1196 * the buddy cache inode stores the block bitmap
1197 * and buddy information in consecutive blocks.
1198 * So for each group we need two blocks.
1199 */
1200 block = group * 2;
1201 pnum = block / blocks_per_page;
1202 poff = block % blocks_per_page;
1203
1204 /* we could use find_or_create_page(), but it locks page
1205 * what we'd like to avoid in fast path ... */
1206 page = find_get_page(inode->i_mapping, pnum);
1207 if (page == NULL || !PageUptodate(page)) {
1208 if (page)
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001209 /*
1210 * drop the page reference and try
1211 * to get the page with lock. If we
1212 * are not uptodate that implies
1213 * somebody just created the page but
1214 * is yet to initialize the same. So
1215 * wait for it to initialize.
1216 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001217 page_cache_release(page);
1218 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1219 if (page) {
1220 BUG_ON(page->mapping != inode->i_mapping);
1221 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001222 ret = ext4_mb_init_cache(page, NULL);
1223 if (ret) {
1224 unlock_page(page);
1225 goto err;
1226 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001227 mb_cmp_bitmaps(e4b, page_address(page) +
1228 (poff * sb->s_blocksize));
1229 }
1230 unlock_page(page);
1231 }
1232 }
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001233 if (page == NULL || !PageUptodate(page)) {
1234 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001235 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001236 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001237 e4b->bd_bitmap_page = page;
1238 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
1239 mark_page_accessed(page);
1240
1241 block++;
1242 pnum = block / blocks_per_page;
1243 poff = block % blocks_per_page;
1244
1245 page = find_get_page(inode->i_mapping, pnum);
1246 if (page == NULL || !PageUptodate(page)) {
1247 if (page)
1248 page_cache_release(page);
1249 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1250 if (page) {
1251 BUG_ON(page->mapping != inode->i_mapping);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001252 if (!PageUptodate(page)) {
1253 ret = ext4_mb_init_cache(page, e4b->bd_bitmap);
1254 if (ret) {
1255 unlock_page(page);
1256 goto err;
1257 }
1258 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001259 unlock_page(page);
1260 }
1261 }
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001262 if (page == NULL || !PageUptodate(page)) {
1263 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001264 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001265 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001266 e4b->bd_buddy_page = page;
1267 e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
1268 mark_page_accessed(page);
1269
1270 BUG_ON(e4b->bd_bitmap_page == NULL);
1271 BUG_ON(e4b->bd_buddy_page == NULL);
1272
1273 return 0;
1274
1275err:
Yang Ruirui26626f112011-04-16 19:17:48 -04001276 if (page)
1277 page_cache_release(page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001278 if (e4b->bd_bitmap_page)
1279 page_cache_release(e4b->bd_bitmap_page);
1280 if (e4b->bd_buddy_page)
1281 page_cache_release(e4b->bd_buddy_page);
1282 e4b->bd_buddy = NULL;
1283 e4b->bd_bitmap = NULL;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001284
1285 /* Done with the buddy cache */
1286 up_read(e4b->alloc_semp);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001287 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05001288}
1289
Jing Zhange39e07f2010-05-14 00:00:00 -04001290static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001291{
1292 if (e4b->bd_bitmap_page)
1293 page_cache_release(e4b->bd_bitmap_page);
1294 if (e4b->bd_buddy_page)
1295 page_cache_release(e4b->bd_buddy_page);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001296 /* Done with the buddy cache */
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05001297 if (e4b->alloc_semp)
1298 up_read(e4b->alloc_semp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001299}
1300
1301
1302static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1303{
1304 int order = 1;
1305 void *bb;
1306
1307 BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
1308 BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1309
1310 bb = EXT4_MB_BUDDY(e4b);
1311 while (order <= e4b->bd_blkbits + 1) {
1312 block = block >> 1;
1313 if (!mb_test_bit(block, bb)) {
1314 /* this block is part of buddy of order 'order' */
1315 return order;
1316 }
1317 bb += 1 << (e4b->bd_blkbits - order);
1318 order++;
1319 }
1320 return 0;
1321}
1322
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001323static void mb_clear_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001324{
1325 __u32 *addr;
1326
1327 len = cur + len;
1328 while (cur < len) {
1329 if ((cur & 31) == 0 && (len - cur) >= 32) {
1330 /* fast path: clear whole word at once */
1331 addr = bm + (cur >> 3);
1332 *addr = 0;
1333 cur += 32;
1334 continue;
1335 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001336 mb_clear_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001337 cur++;
1338 }
1339}
1340
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001341static void mb_set_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001342{
1343 __u32 *addr;
1344
1345 len = cur + len;
1346 while (cur < len) {
1347 if ((cur & 31) == 0 && (len - cur) >= 32) {
1348 /* fast path: set whole word at once */
1349 addr = bm + (cur >> 3);
1350 *addr = 0xffffffff;
1351 cur += 32;
1352 continue;
1353 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001354 mb_set_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001355 cur++;
1356 }
1357}
1358
Shen Feng7e5a8cd2008-07-13 21:03:31 -04001359static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
Alex Tomasc9de5602008-01-29 00:19:52 -05001360 int first, int count)
1361{
1362 int block = 0;
1363 int max = 0;
1364 int order;
1365 void *buddy;
1366 void *buddy2;
1367 struct super_block *sb = e4b->bd_sb;
1368
1369 BUG_ON(first + count > (sb->s_blocksize << 3));
Vincent Minetbc8e6742009-05-15 08:33:18 -04001370 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001371 mb_check_buddy(e4b);
1372 mb_free_blocks_double(inode, e4b, first, count);
1373
1374 e4b->bd_info->bb_free += count;
1375 if (first < e4b->bd_info->bb_first_free)
1376 e4b->bd_info->bb_first_free = first;
1377
1378 /* let's maintain fragments counter */
1379 if (first != 0)
1380 block = !mb_test_bit(first - 1, EXT4_MB_BITMAP(e4b));
1381 if (first + count < EXT4_SB(sb)->s_mb_maxs[0])
1382 max = !mb_test_bit(first + count, EXT4_MB_BITMAP(e4b));
1383 if (block && max)
1384 e4b->bd_info->bb_fragments--;
1385 else if (!block && !max)
1386 e4b->bd_info->bb_fragments++;
1387
1388 /* let's maintain buddy itself */
1389 while (count-- > 0) {
1390 block = first++;
1391 order = 0;
1392
1393 if (!mb_test_bit(block, EXT4_MB_BITMAP(e4b))) {
1394 ext4_fsblk_t blocknr;
Akinobu Mita5661bd62010-03-03 23:53:39 -05001395
1396 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001397 blocknr += block;
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05001398 ext4_grp_locked_error(sb, e4b->bd_group,
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001399 inode ? inode->i_ino : 0,
1400 blocknr,
1401 "freeing already freed block "
1402 "(bit %u)", block);
Alex Tomasc9de5602008-01-29 00:19:52 -05001403 }
1404 mb_clear_bit(block, EXT4_MB_BITMAP(e4b));
1405 e4b->bd_info->bb_counters[order]++;
1406
1407 /* start of the buddy */
1408 buddy = mb_find_buddy(e4b, order, &max);
1409
1410 do {
1411 block &= ~1UL;
1412 if (mb_test_bit(block, buddy) ||
1413 mb_test_bit(block + 1, buddy))
1414 break;
1415
1416 /* both the buddies are free, try to coalesce them */
1417 buddy2 = mb_find_buddy(e4b, order + 1, &max);
1418
1419 if (!buddy2)
1420 break;
1421
1422 if (order > 0) {
1423 /* for special purposes, we don't set
1424 * free bits in bitmap */
1425 mb_set_bit(block, buddy);
1426 mb_set_bit(block + 1, buddy);
1427 }
1428 e4b->bd_info->bb_counters[order]--;
1429 e4b->bd_info->bb_counters[order]--;
1430
1431 block = block >> 1;
1432 order++;
1433 e4b->bd_info->bb_counters[order]++;
1434
1435 mb_clear_bit(block, buddy2);
1436 buddy = buddy2;
1437 } while (1);
1438 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001439 mb_set_largest_free_order(sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001440 mb_check_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001441}
1442
1443static int mb_find_extent(struct ext4_buddy *e4b, int order, int block,
1444 int needed, struct ext4_free_extent *ex)
1445{
1446 int next = block;
1447 int max;
1448 int ord;
1449 void *buddy;
1450
Vincent Minetbc8e6742009-05-15 08:33:18 -04001451 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001452 BUG_ON(ex == NULL);
1453
1454 buddy = mb_find_buddy(e4b, order, &max);
1455 BUG_ON(buddy == NULL);
1456 BUG_ON(block >= max);
1457 if (mb_test_bit(block, buddy)) {
1458 ex->fe_len = 0;
1459 ex->fe_start = 0;
1460 ex->fe_group = 0;
1461 return 0;
1462 }
1463
1464 /* FIXME dorp order completely ? */
1465 if (likely(order == 0)) {
1466 /* find actual order */
1467 order = mb_find_order_for_block(e4b, block);
1468 block = block >> order;
1469 }
1470
1471 ex->fe_len = 1 << order;
1472 ex->fe_start = block << order;
1473 ex->fe_group = e4b->bd_group;
1474
1475 /* calc difference from given start */
1476 next = next - ex->fe_start;
1477 ex->fe_len -= next;
1478 ex->fe_start += next;
1479
1480 while (needed > ex->fe_len &&
1481 (buddy = mb_find_buddy(e4b, order, &max))) {
1482
1483 if (block + 1 >= max)
1484 break;
1485
1486 next = (block + 1) * (1 << order);
1487 if (mb_test_bit(next, EXT4_MB_BITMAP(e4b)))
1488 break;
1489
1490 ord = mb_find_order_for_block(e4b, next);
1491
1492 order = ord;
1493 block = next >> order;
1494 ex->fe_len += 1 << order;
1495 }
1496
1497 BUG_ON(ex->fe_start + ex->fe_len > (1 << (e4b->bd_blkbits + 3)));
1498 return ex->fe_len;
1499}
1500
1501static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1502{
1503 int ord;
1504 int mlen = 0;
1505 int max = 0;
1506 int cur;
1507 int start = ex->fe_start;
1508 int len = ex->fe_len;
1509 unsigned ret = 0;
1510 int len0 = len;
1511 void *buddy;
1512
1513 BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1514 BUG_ON(e4b->bd_group != ex->fe_group);
Vincent Minetbc8e6742009-05-15 08:33:18 -04001515 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001516 mb_check_buddy(e4b);
1517 mb_mark_used_double(e4b, start, len);
1518
1519 e4b->bd_info->bb_free -= len;
1520 if (e4b->bd_info->bb_first_free == start)
1521 e4b->bd_info->bb_first_free += len;
1522
1523 /* let's maintain fragments counter */
1524 if (start != 0)
1525 mlen = !mb_test_bit(start - 1, EXT4_MB_BITMAP(e4b));
1526 if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
1527 max = !mb_test_bit(start + len, EXT4_MB_BITMAP(e4b));
1528 if (mlen && max)
1529 e4b->bd_info->bb_fragments++;
1530 else if (!mlen && !max)
1531 e4b->bd_info->bb_fragments--;
1532
1533 /* let's maintain buddy itself */
1534 while (len) {
1535 ord = mb_find_order_for_block(e4b, start);
1536
1537 if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1538 /* the whole chunk may be allocated at once! */
1539 mlen = 1 << ord;
1540 buddy = mb_find_buddy(e4b, ord, &max);
1541 BUG_ON((start >> ord) >= max);
1542 mb_set_bit(start >> ord, buddy);
1543 e4b->bd_info->bb_counters[ord]--;
1544 start += mlen;
1545 len -= mlen;
1546 BUG_ON(len < 0);
1547 continue;
1548 }
1549
1550 /* store for history */
1551 if (ret == 0)
1552 ret = len | (ord << 16);
1553
1554 /* we have to split large buddy */
1555 BUG_ON(ord <= 0);
1556 buddy = mb_find_buddy(e4b, ord, &max);
1557 mb_set_bit(start >> ord, buddy);
1558 e4b->bd_info->bb_counters[ord]--;
1559
1560 ord--;
1561 cur = (start >> ord) & ~1U;
1562 buddy = mb_find_buddy(e4b, ord, &max);
1563 mb_clear_bit(cur, buddy);
1564 mb_clear_bit(cur + 1, buddy);
1565 e4b->bd_info->bb_counters[ord]++;
1566 e4b->bd_info->bb_counters[ord]++;
1567 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001568 mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001569
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001570 mb_set_bits(EXT4_MB_BITMAP(e4b), ex->fe_start, len0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001571 mb_check_buddy(e4b);
1572
1573 return ret;
1574}
1575
1576/*
1577 * Must be called under group lock!
1578 */
1579static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
1580 struct ext4_buddy *e4b)
1581{
1582 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1583 int ret;
1584
1585 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
1586 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1587
1588 ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
1589 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
1590 ret = mb_mark_used(e4b, &ac->ac_b_ex);
1591
1592 /* preallocation can change ac_b_ex, thus we store actually
1593 * allocated blocks for history */
1594 ac->ac_f_ex = ac->ac_b_ex;
1595
1596 ac->ac_status = AC_STATUS_FOUND;
1597 ac->ac_tail = ret & 0xffff;
1598 ac->ac_buddy = ret >> 16;
1599
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -05001600 /*
1601 * take the page reference. We want the page to be pinned
1602 * so that we don't get a ext4_mb_init_cache_call for this
1603 * group until we update the bitmap. That would mean we
1604 * double allocate blocks. The reference is dropped
1605 * in ext4_mb_release_context
1606 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001607 ac->ac_bitmap_page = e4b->bd_bitmap_page;
1608 get_page(ac->ac_bitmap_page);
1609 ac->ac_buddy_page = e4b->bd_buddy_page;
1610 get_page(ac->ac_buddy_page);
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05001611 /* on allocation we use ac to track the held semaphore */
1612 ac->alloc_semp = e4b->alloc_semp;
1613 e4b->alloc_semp = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05001614 /* store last allocated for subsequent stream allocation */
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04001615 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001616 spin_lock(&sbi->s_md_lock);
1617 sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
1618 sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
1619 spin_unlock(&sbi->s_md_lock);
1620 }
1621}
1622
1623/*
1624 * regular allocator, for general purposes allocation
1625 */
1626
1627static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
1628 struct ext4_buddy *e4b,
1629 int finish_group)
1630{
1631 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1632 struct ext4_free_extent *bex = &ac->ac_b_ex;
1633 struct ext4_free_extent *gex = &ac->ac_g_ex;
1634 struct ext4_free_extent ex;
1635 int max;
1636
Aneesh Kumar K.V032115f2009-01-05 21:34:30 -05001637 if (ac->ac_status == AC_STATUS_FOUND)
1638 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05001639 /*
1640 * We don't want to scan for a whole year
1641 */
1642 if (ac->ac_found > sbi->s_mb_max_to_scan &&
1643 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1644 ac->ac_status = AC_STATUS_BREAK;
1645 return;
1646 }
1647
1648 /*
1649 * Haven't found good chunk so far, let's continue
1650 */
1651 if (bex->fe_len < gex->fe_len)
1652 return;
1653
1654 if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
1655 && bex->fe_group == e4b->bd_group) {
1656 /* recheck chunk's availability - we don't know
1657 * when it was found (within this lock-unlock
1658 * period or not) */
1659 max = mb_find_extent(e4b, 0, bex->fe_start, gex->fe_len, &ex);
1660 if (max >= gex->fe_len) {
1661 ext4_mb_use_best_found(ac, e4b);
1662 return;
1663 }
1664 }
1665}
1666
1667/*
1668 * The routine checks whether found extent is good enough. If it is,
1669 * then the extent gets marked used and flag is set to the context
1670 * to stop scanning. Otherwise, the extent is compared with the
1671 * previous found extent and if new one is better, then it's stored
1672 * in the context. Later, the best found extent will be used, if
1673 * mballoc can't find good enough extent.
1674 *
1675 * FIXME: real allocation policy is to be designed yet!
1676 */
1677static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
1678 struct ext4_free_extent *ex,
1679 struct ext4_buddy *e4b)
1680{
1681 struct ext4_free_extent *bex = &ac->ac_b_ex;
1682 struct ext4_free_extent *gex = &ac->ac_g_ex;
1683
1684 BUG_ON(ex->fe_len <= 0);
Eric Sandeen8d03c7a2009-03-14 11:51:46 -04001685 BUG_ON(ex->fe_len > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05001686 BUG_ON(ex->fe_start >= EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
1687 BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
1688
1689 ac->ac_found++;
1690
1691 /*
1692 * The special case - take what you catch first
1693 */
1694 if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1695 *bex = *ex;
1696 ext4_mb_use_best_found(ac, e4b);
1697 return;
1698 }
1699
1700 /*
1701 * Let's check whether the chuck is good enough
1702 */
1703 if (ex->fe_len == gex->fe_len) {
1704 *bex = *ex;
1705 ext4_mb_use_best_found(ac, e4b);
1706 return;
1707 }
1708
1709 /*
1710 * If this is first found extent, just store it in the context
1711 */
1712 if (bex->fe_len == 0) {
1713 *bex = *ex;
1714 return;
1715 }
1716
1717 /*
1718 * If new found extent is better, store it in the context
1719 */
1720 if (bex->fe_len < gex->fe_len) {
1721 /* if the request isn't satisfied, any found extent
1722 * larger than previous best one is better */
1723 if (ex->fe_len > bex->fe_len)
1724 *bex = *ex;
1725 } else if (ex->fe_len > gex->fe_len) {
1726 /* if the request is satisfied, then we try to find
1727 * an extent that still satisfy the request, but is
1728 * smaller than previous one */
1729 if (ex->fe_len < bex->fe_len)
1730 *bex = *ex;
1731 }
1732
1733 ext4_mb_check_limits(ac, e4b, 0);
1734}
1735
Eric Sandeen089ceec2009-07-05 22:17:31 -04001736static noinline_for_stack
1737int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001738 struct ext4_buddy *e4b)
1739{
1740 struct ext4_free_extent ex = ac->ac_b_ex;
1741 ext4_group_t group = ex.fe_group;
1742 int max;
1743 int err;
1744
1745 BUG_ON(ex.fe_len <= 0);
1746 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1747 if (err)
1748 return err;
1749
1750 ext4_lock_group(ac->ac_sb, group);
1751 max = mb_find_extent(e4b, 0, ex.fe_start, ex.fe_len, &ex);
1752
1753 if (max > 0) {
1754 ac->ac_b_ex = ex;
1755 ext4_mb_use_best_found(ac, e4b);
1756 }
1757
1758 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001759 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001760
1761 return 0;
1762}
1763
Eric Sandeen089ceec2009-07-05 22:17:31 -04001764static noinline_for_stack
1765int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001766 struct ext4_buddy *e4b)
1767{
1768 ext4_group_t group = ac->ac_g_ex.fe_group;
1769 int max;
1770 int err;
1771 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05001772 struct ext4_free_extent ex;
1773
1774 if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
1775 return 0;
1776
1777 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1778 if (err)
1779 return err;
1780
1781 ext4_lock_group(ac->ac_sb, group);
1782 max = mb_find_extent(e4b, 0, ac->ac_g_ex.fe_start,
1783 ac->ac_g_ex.fe_len, &ex);
1784
1785 if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
1786 ext4_fsblk_t start;
1787
Akinobu Mita5661bd62010-03-03 23:53:39 -05001788 start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
1789 ex.fe_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05001790 /* use do_div to get remainder (would be 64-bit modulo) */
1791 if (do_div(start, sbi->s_stripe) == 0) {
1792 ac->ac_found++;
1793 ac->ac_b_ex = ex;
1794 ext4_mb_use_best_found(ac, e4b);
1795 }
1796 } else if (max >= ac->ac_g_ex.fe_len) {
1797 BUG_ON(ex.fe_len <= 0);
1798 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1799 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1800 ac->ac_found++;
1801 ac->ac_b_ex = ex;
1802 ext4_mb_use_best_found(ac, e4b);
1803 } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
1804 /* Sometimes, caller may want to merge even small
1805 * number of blocks to an existing extent */
1806 BUG_ON(ex.fe_len <= 0);
1807 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1808 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1809 ac->ac_found++;
1810 ac->ac_b_ex = ex;
1811 ext4_mb_use_best_found(ac, e4b);
1812 }
1813 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001814 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001815
1816 return 0;
1817}
1818
1819/*
1820 * The routine scans buddy structures (not bitmap!) from given order
1821 * to max order and tries to find big enough chunk to satisfy the req
1822 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001823static noinline_for_stack
1824void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001825 struct ext4_buddy *e4b)
1826{
1827 struct super_block *sb = ac->ac_sb;
1828 struct ext4_group_info *grp = e4b->bd_info;
1829 void *buddy;
1830 int i;
1831 int k;
1832 int max;
1833
1834 BUG_ON(ac->ac_2order <= 0);
1835 for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
1836 if (grp->bb_counters[i] == 0)
1837 continue;
1838
1839 buddy = mb_find_buddy(e4b, i, &max);
1840 BUG_ON(buddy == NULL);
1841
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001842 k = mb_find_next_zero_bit(buddy, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001843 BUG_ON(k >= max);
1844
1845 ac->ac_found++;
1846
1847 ac->ac_b_ex.fe_len = 1 << i;
1848 ac->ac_b_ex.fe_start = k << i;
1849 ac->ac_b_ex.fe_group = e4b->bd_group;
1850
1851 ext4_mb_use_best_found(ac, e4b);
1852
1853 BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
1854
1855 if (EXT4_SB(sb)->s_mb_stats)
1856 atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
1857
1858 break;
1859 }
1860}
1861
1862/*
1863 * The routine scans the group and measures all found extents.
1864 * In order to optimize scanning, caller must pass number of
1865 * free blocks in the group, so the routine can know upper limit.
1866 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001867static noinline_for_stack
1868void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001869 struct ext4_buddy *e4b)
1870{
1871 struct super_block *sb = ac->ac_sb;
1872 void *bitmap = EXT4_MB_BITMAP(e4b);
1873 struct ext4_free_extent ex;
1874 int i;
1875 int free;
1876
1877 free = e4b->bd_info->bb_free;
1878 BUG_ON(free <= 0);
1879
1880 i = e4b->bd_info->bb_first_free;
1881
1882 while (free && ac->ac_status == AC_STATUS_CONTINUE) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001883 i = mb_find_next_zero_bit(bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05001884 EXT4_BLOCKS_PER_GROUP(sb), i);
1885 if (i >= EXT4_BLOCKS_PER_GROUP(sb)) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001886 /*
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001887 * IF we have corrupt bitmap, we won't find any
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001888 * free blocks even though group info says we
1889 * we have free blocks
1890 */
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001891 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
1892 "%d free blocks as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001893 "group info. But bitmap says 0",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001894 free);
Alex Tomasc9de5602008-01-29 00:19:52 -05001895 break;
1896 }
1897
1898 mb_find_extent(e4b, 0, i, ac->ac_g_ex.fe_len, &ex);
1899 BUG_ON(ex.fe_len <= 0);
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001900 if (free < ex.fe_len) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001901 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
1902 "%d free blocks as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001903 "group info. But got %d blocks",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001904 free, ex.fe_len);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001905 /*
1906 * The number of free blocks differs. This mostly
1907 * indicate that the bitmap is corrupt. So exit
1908 * without claiming the space.
1909 */
1910 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001911 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001912
1913 ext4_mb_measure_extent(ac, &ex, e4b);
1914
1915 i += ex.fe_len;
1916 free -= ex.fe_len;
1917 }
1918
1919 ext4_mb_check_limits(ac, e4b, 1);
1920}
1921
1922/*
1923 * This is a special case for storages like raid5
Eric Sandeen506bf2d2010-07-27 11:56:06 -04001924 * we try to find stripe-aligned chunks for stripe-size-multiple requests
Alex Tomasc9de5602008-01-29 00:19:52 -05001925 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001926static noinline_for_stack
1927void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001928 struct ext4_buddy *e4b)
1929{
1930 struct super_block *sb = ac->ac_sb;
1931 struct ext4_sb_info *sbi = EXT4_SB(sb);
1932 void *bitmap = EXT4_MB_BITMAP(e4b);
1933 struct ext4_free_extent ex;
1934 ext4_fsblk_t first_group_block;
1935 ext4_fsblk_t a;
1936 ext4_grpblk_t i;
1937 int max;
1938
1939 BUG_ON(sbi->s_stripe == 0);
1940
1941 /* find first stripe-aligned block in group */
Akinobu Mita5661bd62010-03-03 23:53:39 -05001942 first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
1943
Alex Tomasc9de5602008-01-29 00:19:52 -05001944 a = first_group_block + sbi->s_stripe - 1;
1945 do_div(a, sbi->s_stripe);
1946 i = (a * sbi->s_stripe) - first_group_block;
1947
1948 while (i < EXT4_BLOCKS_PER_GROUP(sb)) {
1949 if (!mb_test_bit(i, bitmap)) {
1950 max = mb_find_extent(e4b, 0, i, sbi->s_stripe, &ex);
1951 if (max >= sbi->s_stripe) {
1952 ac->ac_found++;
1953 ac->ac_b_ex = ex;
1954 ext4_mb_use_best_found(ac, e4b);
1955 break;
1956 }
1957 }
1958 i += sbi->s_stripe;
1959 }
1960}
1961
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001962/* This is now called BEFORE we load the buddy bitmap. */
Alex Tomasc9de5602008-01-29 00:19:52 -05001963static int ext4_mb_good_group(struct ext4_allocation_context *ac,
1964 ext4_group_t group, int cr)
1965{
1966 unsigned free, fragments;
Theodore Ts'oa4912122009-03-12 12:18:34 -04001967 int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05001968 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
1969
1970 BUG_ON(cr < 0 || cr >= 4);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001971
1972 /* We only do this if the grp has never been initialized */
1973 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
1974 int ret = ext4_mb_init_group(ac->ac_sb, group);
1975 if (ret)
1976 return 0;
1977 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001978
1979 free = grp->bb_free;
1980 fragments = grp->bb_fragments;
1981 if (free == 0)
1982 return 0;
1983 if (fragments == 0)
1984 return 0;
1985
1986 switch (cr) {
1987 case 0:
1988 BUG_ON(ac->ac_2order == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001989
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001990 if (grp->bb_largest_free_order < ac->ac_2order)
1991 return 0;
1992
Theodore Ts'oa4912122009-03-12 12:18:34 -04001993 /* Avoid using the first bg of a flexgroup for data files */
1994 if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
1995 (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
1996 ((group % flex_size) == 0))
1997 return 0;
1998
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001999 return 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002000 case 1:
2001 if ((free / fragments) >= ac->ac_g_ex.fe_len)
2002 return 1;
2003 break;
2004 case 2:
2005 if (free >= ac->ac_g_ex.fe_len)
2006 return 1;
2007 break;
2008 case 3:
2009 return 1;
2010 default:
2011 BUG();
2012 }
2013
2014 return 0;
2015}
2016
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002017static noinline_for_stack int
2018ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05002019{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002020 ext4_group_t ngroups, group, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002021 int cr;
2022 int err = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002023 struct ext4_sb_info *sbi;
2024 struct super_block *sb;
2025 struct ext4_buddy e4b;
Alex Tomasc9de5602008-01-29 00:19:52 -05002026
2027 sb = ac->ac_sb;
2028 sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -04002029 ngroups = ext4_get_groups_count(sb);
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002030 /* non-extent files are limited to low blocks/groups */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002031 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002032 ngroups = sbi->s_blockfile_groups;
2033
Alex Tomasc9de5602008-01-29 00:19:52 -05002034 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
2035
2036 /* first, try the goal */
2037 err = ext4_mb_find_by_goal(ac, &e4b);
2038 if (err || ac->ac_status == AC_STATUS_FOUND)
2039 goto out;
2040
2041 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2042 goto out;
2043
2044 /*
2045 * ac->ac2_order is set only if the fe_len is a power of 2
2046 * if ac2_order is set we also set criteria to 0 so that we
2047 * try exact allocation using buddy.
2048 */
2049 i = fls(ac->ac_g_ex.fe_len);
2050 ac->ac_2order = 0;
2051 /*
2052 * We search using buddy data only if the order of the request
2053 * is greater than equal to the sbi_s_mb_order2_reqs
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002054 * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
Alex Tomasc9de5602008-01-29 00:19:52 -05002055 */
2056 if (i >= sbi->s_mb_order2_reqs) {
2057 /*
2058 * This should tell if fe_len is exactly power of 2
2059 */
2060 if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
2061 ac->ac_2order = i - 1;
2062 }
2063
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002064 /* if stream allocation is enabled, use global goal */
2065 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002066 /* TBD: may be hot point */
2067 spin_lock(&sbi->s_md_lock);
2068 ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
2069 ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
2070 spin_unlock(&sbi->s_md_lock);
2071 }
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002072
Alex Tomasc9de5602008-01-29 00:19:52 -05002073 /* Let's just scan groups to find more-less suitable blocks */
2074 cr = ac->ac_2order ? 0 : 1;
2075 /*
2076 * cr == 0 try to get exact allocation,
2077 * cr == 3 try to get anything
2078 */
2079repeat:
2080 for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
2081 ac->ac_criteria = cr;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04002082 /*
2083 * searching for the right group start
2084 * from the goal value specified
2085 */
2086 group = ac->ac_g_ex.fe_group;
2087
Theodore Ts'o8df96752009-05-01 08:50:38 -04002088 for (i = 0; i < ngroups; group++, i++) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04002089 if (group == ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -05002090 group = 0;
2091
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002092 /* This now checks without needing the buddy page */
2093 if (!ext4_mb_good_group(ac, group, cr))
Alex Tomasc9de5602008-01-29 00:19:52 -05002094 continue;
2095
Alex Tomasc9de5602008-01-29 00:19:52 -05002096 err = ext4_mb_load_buddy(sb, group, &e4b);
2097 if (err)
2098 goto out;
2099
2100 ext4_lock_group(sb, group);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002101
2102 /*
2103 * We need to check again after locking the
2104 * block group
2105 */
Alex Tomasc9de5602008-01-29 00:19:52 -05002106 if (!ext4_mb_good_group(ac, group, cr)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002107 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002108 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002109 continue;
2110 }
2111
2112 ac->ac_groups_scanned++;
Theodore Ts'o75507ef2009-05-01 12:58:36 -04002113 if (cr == 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002114 ext4_mb_simple_scan_group(ac, &e4b);
Eric Sandeen506bf2d2010-07-27 11:56:06 -04002115 else if (cr == 1 && sbi->s_stripe &&
2116 !(ac->ac_g_ex.fe_len % sbi->s_stripe))
Alex Tomasc9de5602008-01-29 00:19:52 -05002117 ext4_mb_scan_aligned(ac, &e4b);
2118 else
2119 ext4_mb_complex_scan_group(ac, &e4b);
2120
2121 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002122 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002123
2124 if (ac->ac_status != AC_STATUS_CONTINUE)
2125 break;
2126 }
2127 }
2128
2129 if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
2130 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2131 /*
2132 * We've been searching too long. Let's try to allocate
2133 * the best chunk we've found so far
2134 */
2135
2136 ext4_mb_try_best_found(ac, &e4b);
2137 if (ac->ac_status != AC_STATUS_FOUND) {
2138 /*
2139 * Someone more lucky has already allocated it.
2140 * The only thing we can do is just take first
2141 * found block(s)
2142 printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n");
2143 */
2144 ac->ac_b_ex.fe_group = 0;
2145 ac->ac_b_ex.fe_start = 0;
2146 ac->ac_b_ex.fe_len = 0;
2147 ac->ac_status = AC_STATUS_CONTINUE;
2148 ac->ac_flags |= EXT4_MB_HINT_FIRST;
2149 cr = 3;
2150 atomic_inc(&sbi->s_mb_lost_chunks);
2151 goto repeat;
2152 }
2153 }
2154out:
2155 return err;
2156}
2157
Alex Tomasc9de5602008-01-29 00:19:52 -05002158static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2159{
2160 struct super_block *sb = seq->private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002161 ext4_group_t group;
2162
Theodore Ts'o8df96752009-05-01 08:50:38 -04002163 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002164 return NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002165 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002166 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002167}
2168
2169static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2170{
2171 struct super_block *sb = seq->private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002172 ext4_group_t group;
2173
2174 ++*pos;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002175 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002176 return NULL;
2177 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002178 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002179}
2180
2181static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2182{
2183 struct super_block *sb = seq->private;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002184 ext4_group_t group = (ext4_group_t) ((unsigned long) v);
Alex Tomasc9de5602008-01-29 00:19:52 -05002185 int i;
2186 int err;
2187 struct ext4_buddy e4b;
2188 struct sg {
2189 struct ext4_group_info info;
Eric Sandeena36b4492009-08-25 22:36:45 -04002190 ext4_grpblk_t counters[16];
Alex Tomasc9de5602008-01-29 00:19:52 -05002191 } sg;
2192
2193 group--;
2194 if (group == 0)
2195 seq_printf(seq, "#%-5s: %-5s %-5s %-5s "
2196 "[ %-5s %-5s %-5s %-5s %-5s %-5s %-5s "
2197 "%-5s %-5s %-5s %-5s %-5s %-5s %-5s ]\n",
2198 "group", "free", "frags", "first",
2199 "2^0", "2^1", "2^2", "2^3", "2^4", "2^5", "2^6",
2200 "2^7", "2^8", "2^9", "2^10", "2^11", "2^12", "2^13");
2201
2202 i = (sb->s_blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2203 sizeof(struct ext4_group_info);
2204 err = ext4_mb_load_buddy(sb, group, &e4b);
2205 if (err) {
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002206 seq_printf(seq, "#%-5u: I/O error\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002207 return 0;
2208 }
2209 ext4_lock_group(sb, group);
2210 memcpy(&sg, ext4_get_group_info(sb, group), i);
2211 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002212 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002213
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002214 seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
Alex Tomasc9de5602008-01-29 00:19:52 -05002215 sg.info.bb_fragments, sg.info.bb_first_free);
2216 for (i = 0; i <= 13; i++)
2217 seq_printf(seq, " %-5u", i <= sb->s_blocksize_bits + 1 ?
2218 sg.info.bb_counters[i] : 0);
2219 seq_printf(seq, " ]\n");
2220
2221 return 0;
2222}
2223
2224static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2225{
2226}
2227
Tobias Klauser7f1346a2009-09-05 09:28:54 -04002228static const struct seq_operations ext4_mb_seq_groups_ops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002229 .start = ext4_mb_seq_groups_start,
2230 .next = ext4_mb_seq_groups_next,
2231 .stop = ext4_mb_seq_groups_stop,
2232 .show = ext4_mb_seq_groups_show,
2233};
2234
2235static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)
2236{
2237 struct super_block *sb = PDE(inode)->data;
2238 int rc;
2239
2240 rc = seq_open(file, &ext4_mb_seq_groups_ops);
2241 if (rc == 0) {
Joe Perchesa271fe82010-07-27 11:56:04 -04002242 struct seq_file *m = file->private_data;
Alex Tomasc9de5602008-01-29 00:19:52 -05002243 m->private = sb;
2244 }
2245 return rc;
2246
2247}
2248
Tobias Klauser7f1346a2009-09-05 09:28:54 -04002249static const struct file_operations ext4_mb_seq_groups_fops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002250 .owner = THIS_MODULE,
2251 .open = ext4_mb_seq_groups_open,
2252 .read = seq_read,
2253 .llseek = seq_lseek,
2254 .release = seq_release,
2255};
2256
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002257static struct kmem_cache *get_groupinfo_cache(int blocksize_bits)
2258{
2259 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2260 struct kmem_cache *cachep = ext4_groupinfo_caches[cache_index];
2261
2262 BUG_ON(!cachep);
2263 return cachep;
2264}
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002265
2266/* Create and initialize ext4_group_info data for the given group. */
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002267int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002268 struct ext4_group_desc *desc)
2269{
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002270 int i;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002271 int metalen = 0;
2272 struct ext4_sb_info *sbi = EXT4_SB(sb);
2273 struct ext4_group_info **meta_group_info;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002274 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002275
2276 /*
2277 * First check if this group is the first of a reserved block.
2278 * If it's true, we have to allocate a new table of pointers
2279 * to ext4_group_info structures
2280 */
2281 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
2282 metalen = sizeof(*meta_group_info) <<
2283 EXT4_DESC_PER_BLOCK_BITS(sb);
2284 meta_group_info = kmalloc(metalen, GFP_KERNEL);
2285 if (meta_group_info == NULL) {
2286 printk(KERN_ERR "EXT4-fs: can't allocate mem for a "
2287 "buddy group\n");
2288 goto exit_meta_group_info;
2289 }
2290 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] =
2291 meta_group_info;
2292 }
2293
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002294 meta_group_info =
2295 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)];
2296 i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
2297
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002298 meta_group_info[i] = kmem_cache_alloc(cachep, GFP_KERNEL);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002299 if (meta_group_info[i] == NULL) {
2300 printk(KERN_ERR "EXT4-fs: can't allocate buddy mem\n");
2301 goto exit_group_info;
2302 }
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002303 memset(meta_group_info[i], 0, kmem_cache_size(cachep));
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002304 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
2305 &(meta_group_info[i]->bb_state));
2306
2307 /*
2308 * initialize bb_free to be able to skip
2309 * empty groups without initialization
2310 */
2311 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2312 meta_group_info[i]->bb_free =
2313 ext4_free_blocks_after_init(sb, group, desc);
2314 } else {
2315 meta_group_info[i]->bb_free =
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05002316 ext4_free_blks_count(sb, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002317 }
2318
2319 INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002320 init_rwsem(&meta_group_info[i]->alloc_sem);
Venkatesh Pallipadi64e290e2010-03-04 22:25:21 -05002321 meta_group_info[i]->bb_free_root = RB_ROOT;
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002322 meta_group_info[i]->bb_largest_free_order = -1; /* uninit */
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002323
2324#ifdef DOUBLE_CHECK
2325 {
2326 struct buffer_head *bh;
2327 meta_group_info[i]->bb_bitmap =
2328 kmalloc(sb->s_blocksize, GFP_KERNEL);
2329 BUG_ON(meta_group_info[i]->bb_bitmap == NULL);
2330 bh = ext4_read_block_bitmap(sb, group);
2331 BUG_ON(bh == NULL);
2332 memcpy(meta_group_info[i]->bb_bitmap, bh->b_data,
2333 sb->s_blocksize);
2334 put_bh(bh);
2335 }
2336#endif
2337
2338 return 0;
2339
2340exit_group_info:
2341 /* If a meta_group_info table has been allocated, release it now */
2342 if (group % EXT4_DESC_PER_BLOCK(sb) == 0)
2343 kfree(sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)]);
2344exit_meta_group_info:
2345 return -ENOMEM;
2346} /* ext4_mb_add_groupinfo */
2347
Alex Tomasc9de5602008-01-29 00:19:52 -05002348static int ext4_mb_init_backend(struct super_block *sb)
2349{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002350 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002351 ext4_group_t i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002352 struct ext4_sb_info *sbi = EXT4_SB(sb);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002353 struct ext4_super_block *es = sbi->s_es;
2354 int num_meta_group_infos;
2355 int num_meta_group_infos_max;
2356 int array_size;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002357 struct ext4_group_desc *desc;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002358 struct kmem_cache *cachep;
Alex Tomasc9de5602008-01-29 00:19:52 -05002359
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002360 /* This is the number of blocks used by GDT */
Theodore Ts'o8df96752009-05-01 08:50:38 -04002361 num_meta_group_infos = (ngroups + EXT4_DESC_PER_BLOCK(sb) -
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002362 1) >> EXT4_DESC_PER_BLOCK_BITS(sb);
2363
2364 /*
2365 * This is the total number of blocks used by GDT including
2366 * the number of reserved blocks for GDT.
2367 * The s_group_info array is allocated with this value
2368 * to allow a clean online resize without a complex
2369 * manipulation of pointer.
2370 * The drawback is the unused memory when no resize
2371 * occurs but it's very low in terms of pages
2372 * (see comments below)
2373 * Need to handle this properly when META_BG resizing is allowed
2374 */
2375 num_meta_group_infos_max = num_meta_group_infos +
2376 le16_to_cpu(es->s_reserved_gdt_blocks);
2377
2378 /*
2379 * array_size is the size of s_group_info array. We round it
2380 * to the next power of two because this approximation is done
2381 * internally by kmalloc so we can have some more memory
2382 * for free here (e.g. may be used for META_BG resize).
2383 */
2384 array_size = 1;
2385 while (array_size < sizeof(*sbi->s_group_info) *
2386 num_meta_group_infos_max)
2387 array_size = array_size << 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002388 /* An 8TB filesystem with 64-bit pointers requires a 4096 byte
2389 * kmalloc. A 128kb malloc should suffice for a 256TB filesystem.
2390 * So a two level scheme suffices for now. */
Eric Sandeen4596fe02011-03-21 21:25:13 -04002391 sbi->s_group_info = kzalloc(array_size, GFP_KERNEL);
Alex Tomasc9de5602008-01-29 00:19:52 -05002392 if (sbi->s_group_info == NULL) {
2393 printk(KERN_ERR "EXT4-fs: can't allocate buddy meta group\n");
2394 return -ENOMEM;
2395 }
2396 sbi->s_buddy_cache = new_inode(sb);
2397 if (sbi->s_buddy_cache == NULL) {
2398 printk(KERN_ERR "EXT4-fs: can't get new inode\n");
2399 goto err_freesgi;
2400 }
Christoph Hellwig85fe4022010-10-23 11:19:54 -04002401 sbi->s_buddy_cache->i_ino = get_next_ino();
Alex Tomasc9de5602008-01-29 00:19:52 -05002402 EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002403 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002404 desc = ext4_get_group_desc(sb, i, NULL);
2405 if (desc == NULL) {
2406 printk(KERN_ERR
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002407 "EXT4-fs: can't read descriptor %u\n", i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002408 goto err_freebuddy;
2409 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002410 if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
2411 goto err_freebuddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05002412 }
2413
2414 return 0;
2415
2416err_freebuddy:
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002417 cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Roel Kluinf1fa3342008-04-29 22:01:15 -04002418 while (i-- > 0)
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002419 kmem_cache_free(cachep, ext4_get_group_info(sb, i));
Alex Tomasc9de5602008-01-29 00:19:52 -05002420 i = num_meta_group_infos;
Roel Kluinf1fa3342008-04-29 22:01:15 -04002421 while (i-- > 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002422 kfree(sbi->s_group_info[i]);
2423 iput(sbi->s_buddy_cache);
2424err_freesgi:
2425 kfree(sbi->s_group_info);
2426 return -ENOMEM;
2427}
2428
Eric Sandeen2892c152011-02-12 08:12:18 -05002429static void ext4_groupinfo_destroy_slabs(void)
2430{
2431 int i;
2432
2433 for (i = 0; i < NR_GRPINFO_CACHES; i++) {
2434 if (ext4_groupinfo_caches[i])
2435 kmem_cache_destroy(ext4_groupinfo_caches[i]);
2436 ext4_groupinfo_caches[i] = NULL;
2437 }
2438}
2439
2440static int ext4_groupinfo_create_slab(size_t size)
2441{
2442 static DEFINE_MUTEX(ext4_grpinfo_slab_create_mutex);
2443 int slab_size;
2444 int blocksize_bits = order_base_2(size);
2445 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2446 struct kmem_cache *cachep;
2447
2448 if (cache_index >= NR_GRPINFO_CACHES)
2449 return -EINVAL;
2450
2451 if (unlikely(cache_index < 0))
2452 cache_index = 0;
2453
2454 mutex_lock(&ext4_grpinfo_slab_create_mutex);
2455 if (ext4_groupinfo_caches[cache_index]) {
2456 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2457 return 0; /* Already created */
2458 }
2459
2460 slab_size = offsetof(struct ext4_group_info,
2461 bb_counters[blocksize_bits + 2]);
2462
2463 cachep = kmem_cache_create(ext4_groupinfo_slab_names[cache_index],
2464 slab_size, 0, SLAB_RECLAIM_ACCOUNT,
2465 NULL);
2466
2467 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2468 if (!cachep) {
2469 printk(KERN_EMERG "EXT4: no memory for groupinfo slab cache\n");
2470 return -ENOMEM;
2471 }
2472
2473 ext4_groupinfo_caches[cache_index] = cachep;
2474
2475 return 0;
2476}
2477
Alex Tomasc9de5602008-01-29 00:19:52 -05002478int ext4_mb_init(struct super_block *sb, int needs_recovery)
2479{
2480 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002481 unsigned i, j;
Alex Tomasc9de5602008-01-29 00:19:52 -05002482 unsigned offset;
2483 unsigned max;
Shen Feng74767c52008-07-11 19:27:31 -04002484 int ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002485
Eric Sandeen19278052009-08-25 22:36:25 -04002486 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_offsets);
Alex Tomasc9de5602008-01-29 00:19:52 -05002487
2488 sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
2489 if (sbi->s_mb_offsets == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002490 ret = -ENOMEM;
2491 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002492 }
Yasunori Gotoff7ef322008-12-17 00:48:39 -05002493
Eric Sandeen19278052009-08-25 22:36:25 -04002494 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_maxs);
Alex Tomasc9de5602008-01-29 00:19:52 -05002495 sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
2496 if (sbi->s_mb_maxs == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002497 ret = -ENOMEM;
2498 goto out;
2499 }
2500
Eric Sandeen2892c152011-02-12 08:12:18 -05002501 ret = ext4_groupinfo_create_slab(sb->s_blocksize);
2502 if (ret < 0)
2503 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002504
2505 /* order 0 is regular bitmap */
2506 sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
2507 sbi->s_mb_offsets[0] = 0;
2508
2509 i = 1;
2510 offset = 0;
2511 max = sb->s_blocksize << 2;
2512 do {
2513 sbi->s_mb_offsets[i] = offset;
2514 sbi->s_mb_maxs[i] = max;
2515 offset += 1 << (sb->s_blocksize_bits - i);
2516 max = max >> 1;
2517 i++;
2518 } while (i <= sb->s_blocksize_bits + 1);
2519
2520 /* init file for buddy data */
Shen Feng74767c52008-07-11 19:27:31 -04002521 ret = ext4_mb_init_backend(sb);
2522 if (ret != 0) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002523 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002524 }
2525
2526 spin_lock_init(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05002527 spin_lock_init(&sbi->s_bal_lock);
2528
2529 sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
2530 sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
2531 sbi->s_mb_stats = MB_DEFAULT_STATS;
2532 sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
2533 sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
Alex Tomasc9de5602008-01-29 00:19:52 -05002534 sbi->s_mb_group_prealloc = MB_DEFAULT_GROUP_PREALLOC;
2535
Eric Sandeen730c2132008-09-13 15:23:29 -04002536 sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002537 if (sbi->s_locality_groups == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002538 ret = -ENOMEM;
2539 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002540 }
Eric Sandeen730c2132008-09-13 15:23:29 -04002541 for_each_possible_cpu(i) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002542 struct ext4_locality_group *lg;
Eric Sandeen730c2132008-09-13 15:23:29 -04002543 lg = per_cpu_ptr(sbi->s_locality_groups, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002544 mutex_init(&lg->lg_mutex);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002545 for (j = 0; j < PREALLOC_TB_SIZE; j++)
2546 INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
Alex Tomasc9de5602008-01-29 00:19:52 -05002547 spin_lock_init(&lg->lg_prealloc_lock);
2548 }
2549
Theodore Ts'o296c3552009-09-30 00:32:42 -04002550 if (sbi->s_proc)
2551 proc_create_data("mb_groups", S_IRUGO, sbi->s_proc,
2552 &ext4_mb_seq_groups_fops, sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002553
Frank Mayhar03901312009-01-07 00:06:22 -05002554 if (sbi->s_journal)
2555 sbi->s_journal->j_commit_callback = release_blocks_on_commit;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002556out:
2557 if (ret) {
2558 kfree(sbi->s_mb_offsets);
2559 kfree(sbi->s_mb_maxs);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002560 }
2561 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002562}
2563
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002564/* need to called with the ext4 group lock held */
Alex Tomasc9de5602008-01-29 00:19:52 -05002565static void ext4_mb_cleanup_pa(struct ext4_group_info *grp)
2566{
2567 struct ext4_prealloc_space *pa;
2568 struct list_head *cur, *tmp;
2569 int count = 0;
2570
2571 list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
2572 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
2573 list_del(&pa->pa_group_list);
2574 count++;
Aneesh Kumar K.V688f05a2008-10-13 12:14:14 -04002575 kmem_cache_free(ext4_pspace_cachep, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05002576 }
2577 if (count)
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002578 mb_debug(1, "mballoc: %u PAs left\n", count);
Alex Tomasc9de5602008-01-29 00:19:52 -05002579
2580}
2581
2582int ext4_mb_release(struct super_block *sb)
2583{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002584 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002585 ext4_group_t i;
2586 int num_meta_group_infos;
2587 struct ext4_group_info *grinfo;
2588 struct ext4_sb_info *sbi = EXT4_SB(sb);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002589 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Alex Tomasc9de5602008-01-29 00:19:52 -05002590
Alex Tomasc9de5602008-01-29 00:19:52 -05002591 if (sbi->s_group_info) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04002592 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002593 grinfo = ext4_get_group_info(sb, i);
2594#ifdef DOUBLE_CHECK
2595 kfree(grinfo->bb_bitmap);
2596#endif
2597 ext4_lock_group(sb, i);
2598 ext4_mb_cleanup_pa(grinfo);
2599 ext4_unlock_group(sb, i);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002600 kmem_cache_free(cachep, grinfo);
Alex Tomasc9de5602008-01-29 00:19:52 -05002601 }
Theodore Ts'o8df96752009-05-01 08:50:38 -04002602 num_meta_group_infos = (ngroups +
Alex Tomasc9de5602008-01-29 00:19:52 -05002603 EXT4_DESC_PER_BLOCK(sb) - 1) >>
2604 EXT4_DESC_PER_BLOCK_BITS(sb);
2605 for (i = 0; i < num_meta_group_infos; i++)
2606 kfree(sbi->s_group_info[i]);
2607 kfree(sbi->s_group_info);
2608 }
2609 kfree(sbi->s_mb_offsets);
2610 kfree(sbi->s_mb_maxs);
2611 if (sbi->s_buddy_cache)
2612 iput(sbi->s_buddy_cache);
2613 if (sbi->s_mb_stats) {
2614 printk(KERN_INFO
2615 "EXT4-fs: mballoc: %u blocks %u reqs (%u success)\n",
2616 atomic_read(&sbi->s_bal_allocated),
2617 atomic_read(&sbi->s_bal_reqs),
2618 atomic_read(&sbi->s_bal_success));
2619 printk(KERN_INFO
2620 "EXT4-fs: mballoc: %u extents scanned, %u goal hits, "
2621 "%u 2^N hits, %u breaks, %u lost\n",
2622 atomic_read(&sbi->s_bal_ex_scanned),
2623 atomic_read(&sbi->s_bal_goals),
2624 atomic_read(&sbi->s_bal_2orders),
2625 atomic_read(&sbi->s_bal_breaks),
2626 atomic_read(&sbi->s_mb_lost_chunks));
2627 printk(KERN_INFO
2628 "EXT4-fs: mballoc: %lu generated and it took %Lu\n",
2629 sbi->s_mb_buddies_generated++,
2630 sbi->s_mb_generation_time);
2631 printk(KERN_INFO
2632 "EXT4-fs: mballoc: %u preallocated, %u discarded\n",
2633 atomic_read(&sbi->s_mb_preallocated),
2634 atomic_read(&sbi->s_mb_discarded));
2635 }
2636
Eric Sandeen730c2132008-09-13 15:23:29 -04002637 free_percpu(sbi->s_locality_groups);
Theodore Ts'o296c3552009-09-30 00:32:42 -04002638 if (sbi->s_proc)
2639 remove_proc_entry("mb_groups", sbi->s_proc);
Alex Tomasc9de5602008-01-29 00:19:52 -05002640
2641 return 0;
2642}
2643
Lukas Czerner77ca6cd2010-10-27 21:30:11 -04002644static inline int ext4_issue_discard(struct super_block *sb,
Jiaying Zhang5c521832010-07-27 11:56:05 -04002645 ext4_group_t block_group, ext4_grpblk_t block, int count)
2646{
Jiaying Zhang5c521832010-07-27 11:56:05 -04002647 ext4_fsblk_t discard_block;
2648
2649 discard_block = block + ext4_group_first_block_no(sb, block_group);
2650 trace_ext4_discard_blocks(sb,
2651 (unsigned long long) discard_block, count);
Lukas Czerner93259632011-01-10 12:09:59 -05002652 return sb_issue_discard(sb, discard_block, count, GFP_NOFS, 0);
Jiaying Zhang5c521832010-07-27 11:56:05 -04002653}
2654
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002655/*
2656 * This function is called by the jbd2 layer once the commit has finished,
2657 * so we know we can free the blocks that were released with that commit.
2658 */
2659static void release_blocks_on_commit(journal_t *journal, transaction_t *txn)
Alex Tomasc9de5602008-01-29 00:19:52 -05002660{
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002661 struct super_block *sb = journal->j_private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002662 struct ext4_buddy e4b;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002663 struct ext4_group_info *db;
Theodore Ts'od9f34502011-04-30 13:47:24 -04002664 int err, count = 0, count2 = 0;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002665 struct ext4_free_data *entry;
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002666 struct list_head *l, *ltmp;
Alex Tomasc9de5602008-01-29 00:19:52 -05002667
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002668 list_for_each_safe(l, ltmp, &txn->t_private_list) {
2669 entry = list_entry(l, struct ext4_free_data, list);
Alex Tomasc9de5602008-01-29 00:19:52 -05002670
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002671 mb_debug(1, "gonna free %u blocks in group %u (0x%p):",
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002672 entry->count, entry->group, entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05002673
Theodore Ts'od9f34502011-04-30 13:47:24 -04002674 if (test_opt(sb, DISCARD))
2675 ext4_issue_discard(sb, entry->group,
2676 entry->start_blk, entry->count);
Theodore Ts'ob90f6872010-04-20 16:51:59 -04002677
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002678 err = ext4_mb_load_buddy(sb, entry->group, &e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002679 /* we expect to find existing buddy because it's pinned */
2680 BUG_ON(err != 0);
2681
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002682 db = e4b.bd_info;
Alex Tomasc9de5602008-01-29 00:19:52 -05002683 /* there are blocks to put in buddy to make them really free */
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002684 count += entry->count;
Alex Tomasc9de5602008-01-29 00:19:52 -05002685 count2++;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002686 ext4_lock_group(sb, entry->group);
2687 /* Take it out of per group rb tree */
2688 rb_erase(&entry->node, &(db->bb_free_root));
2689 mb_free_blocks(NULL, &e4b, entry->start_blk, entry->count);
2690
2691 if (!db->bb_free_root.rb_node) {
2692 /* No more items in the per group rb tree
2693 * balance refcounts from ext4_mb_free_metadata()
2694 */
2695 page_cache_release(e4b.bd_buddy_page);
2696 page_cache_release(e4b.bd_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05002697 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002698 ext4_unlock_group(sb, entry->group);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002699 kmem_cache_free(ext4_free_ext_cachep, entry);
Jing Zhange39e07f2010-05-14 00:00:00 -04002700 ext4_mb_unload_buddy(&e4b);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002701 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002702
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002703 mb_debug(1, "freed %u blocks in %u structures\n", count, count2);
Alex Tomasc9de5602008-01-29 00:19:52 -05002704}
2705
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002706#ifdef CONFIG_EXT4_DEBUG
2707u8 mb_enable_debug __read_mostly;
2708
2709static struct dentry *debugfs_dir;
2710static struct dentry *debugfs_debug;
2711
2712static void __init ext4_create_debugfs_entry(void)
2713{
2714 debugfs_dir = debugfs_create_dir("ext4", NULL);
2715 if (debugfs_dir)
2716 debugfs_debug = debugfs_create_u8("mballoc-debug",
2717 S_IRUGO | S_IWUSR,
2718 debugfs_dir,
2719 &mb_enable_debug);
2720}
2721
2722static void ext4_remove_debugfs_entry(void)
2723{
2724 debugfs_remove(debugfs_debug);
2725 debugfs_remove(debugfs_dir);
2726}
2727
2728#else
2729
2730static void __init ext4_create_debugfs_entry(void)
2731{
2732}
2733
2734static void ext4_remove_debugfs_entry(void)
2735{
2736}
2737
2738#endif
2739
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04002740int __init ext4_init_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05002741{
Theodore Ts'o16828082010-10-27 21:30:09 -04002742 ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space,
2743 SLAB_RECLAIM_ACCOUNT);
Alex Tomasc9de5602008-01-29 00:19:52 -05002744 if (ext4_pspace_cachep == NULL)
2745 return -ENOMEM;
2746
Theodore Ts'o16828082010-10-27 21:30:09 -04002747 ext4_ac_cachep = KMEM_CACHE(ext4_allocation_context,
2748 SLAB_RECLAIM_ACCOUNT);
Eric Sandeen256bdb42008-02-10 01:13:33 -05002749 if (ext4_ac_cachep == NULL) {
2750 kmem_cache_destroy(ext4_pspace_cachep);
2751 return -ENOMEM;
2752 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002753
Theodore Ts'o16828082010-10-27 21:30:09 -04002754 ext4_free_ext_cachep = KMEM_CACHE(ext4_free_data,
2755 SLAB_RECLAIM_ACCOUNT);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002756 if (ext4_free_ext_cachep == NULL) {
2757 kmem_cache_destroy(ext4_pspace_cachep);
2758 kmem_cache_destroy(ext4_ac_cachep);
2759 return -ENOMEM;
2760 }
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002761 ext4_create_debugfs_entry();
Alex Tomasc9de5602008-01-29 00:19:52 -05002762 return 0;
2763}
2764
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04002765void ext4_exit_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05002766{
Theodore Ts'o60e66792010-05-17 07:00:00 -04002767 /*
Jesper Dangaard Brouer3e03f9c2009-07-05 22:29:27 -04002768 * Wait for completion of call_rcu()'s on ext4_pspace_cachep
2769 * before destroying the slab cache.
2770 */
2771 rcu_barrier();
Alex Tomasc9de5602008-01-29 00:19:52 -05002772 kmem_cache_destroy(ext4_pspace_cachep);
Eric Sandeen256bdb42008-02-10 01:13:33 -05002773 kmem_cache_destroy(ext4_ac_cachep);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002774 kmem_cache_destroy(ext4_free_ext_cachep);
Eric Sandeen2892c152011-02-12 08:12:18 -05002775 ext4_groupinfo_destroy_slabs();
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002776 ext4_remove_debugfs_entry();
Alex Tomasc9de5602008-01-29 00:19:52 -05002777}
2778
2779
2780/*
Uwe Kleine-König73b2c712010-07-30 21:02:47 +02002781 * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
Alex Tomasc9de5602008-01-29 00:19:52 -05002782 * Returns 0 if success or error code
2783 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002784static noinline_for_stack int
2785ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
Theodore Ts'o498e5f22008-11-05 00:14:04 -05002786 handle_t *handle, unsigned int reserv_blks)
Alex Tomasc9de5602008-01-29 00:19:52 -05002787{
2788 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002789 struct ext4_group_desc *gdp;
2790 struct buffer_head *gdp_bh;
2791 struct ext4_sb_info *sbi;
2792 struct super_block *sb;
2793 ext4_fsblk_t block;
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002794 int err, len;
Alex Tomasc9de5602008-01-29 00:19:52 -05002795
2796 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
2797 BUG_ON(ac->ac_b_ex.fe_len <= 0);
2798
2799 sb = ac->ac_sb;
2800 sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002801
2802 err = -EIO;
Theodore Ts'o574ca172008-07-11 19:27:31 -04002803 bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002804 if (!bitmap_bh)
2805 goto out_err;
2806
2807 err = ext4_journal_get_write_access(handle, bitmap_bh);
2808 if (err)
2809 goto out_err;
2810
2811 err = -EIO;
2812 gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
2813 if (!gdp)
2814 goto out_err;
2815
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002816 ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
Thadeu Lima de Souza Cascardo9fd97842009-01-26 19:26:26 -05002817 ext4_free_blks_count(sb, gdp));
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04002818
Alex Tomasc9de5602008-01-29 00:19:52 -05002819 err = ext4_journal_get_write_access(handle, gdp_bh);
2820 if (err)
2821 goto out_err;
2822
Akinobu Mitabda00de2010-03-03 23:53:25 -05002823 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002824
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002825 len = ac->ac_b_ex.fe_len;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002826 if (!ext4_data_block_valid(sbi, block, len)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002827 ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002828 "fs metadata\n", block, block+len);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002829 /* File system mounted not to panic on error
2830 * Fix the bitmap and repeat the block allocation
2831 * We leak some of the blocks here.
2832 */
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002833 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
2834 mb_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
2835 ac->ac_b_ex.fe_len);
2836 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Frank Mayhar03901312009-01-07 00:06:22 -05002837 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002838 if (!err)
2839 err = -EAGAIN;
2840 goto out_err;
Alex Tomasc9de5602008-01-29 00:19:52 -05002841 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002842
2843 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002844#ifdef AGGRESSIVE_CHECK
2845 {
2846 int i;
2847 for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
2848 BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
2849 bitmap_bh->b_data));
2850 }
2851 }
2852#endif
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002853 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 -05002854 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2855 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05002856 ext4_free_blks_set(sb, gdp,
2857 ext4_free_blocks_after_init(sb,
2858 ac->ac_b_ex.fe_group, gdp));
Alex Tomasc9de5602008-01-29 00:19:52 -05002859 }
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05002860 len = ext4_free_blks_count(sb, gdp) - ac->ac_b_ex.fe_len;
2861 ext4_free_blks_set(sb, gdp, len);
Alex Tomasc9de5602008-01-29 00:19:52 -05002862 gdp->bg_checksum = ext4_group_desc_csum(sbi, ac->ac_b_ex.fe_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002863
2864 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002865 percpu_counter_sub(&sbi->s_freeblocks_counter, ac->ac_b_ex.fe_len);
Mingming Caod2a17632008-07-14 17:52:37 -04002866 /*
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002867 * Now reduce the dirty block count also. Should not go negative
Mingming Caod2a17632008-07-14 17:52:37 -04002868 */
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002869 if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
2870 /* release all the reserved blocks if non delalloc */
2871 percpu_counter_sub(&sbi->s_dirtyblocks_counter, reserv_blks);
Alex Tomasc9de5602008-01-29 00:19:52 -05002872
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002873 if (sbi->s_log_groups_per_flex) {
2874 ext4_group_t flex_group = ext4_flex_group(sbi,
2875 ac->ac_b_ex.fe_group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -05002876 atomic_sub(ac->ac_b_ex.fe_len,
2877 &sbi->s_flex_groups[flex_group].free_blocks);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002878 }
2879
Frank Mayhar03901312009-01-07 00:06:22 -05002880 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002881 if (err)
2882 goto out_err;
Frank Mayhar03901312009-01-07 00:06:22 -05002883 err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002884
2885out_err:
Theodore Ts'oa0375152010-06-11 23:14:04 -04002886 ext4_mark_super_dirty(sb);
Aneesh Kumar K.V42a10ad2008-02-10 01:07:28 -05002887 brelse(bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002888 return err;
2889}
2890
2891/*
2892 * here we normalize request for locality group
2893 * Group request are normalized to s_strip size if we set the same via mount
2894 * option. If not we set it to s_mb_group_prealloc which can be configured via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002895 * /sys/fs/ext4/<partition>/mb_group_prealloc
Alex Tomasc9de5602008-01-29 00:19:52 -05002896 *
2897 * XXX: should we try to preallocate more than the group has now?
2898 */
2899static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
2900{
2901 struct super_block *sb = ac->ac_sb;
2902 struct ext4_locality_group *lg = ac->ac_lg;
2903
2904 BUG_ON(lg == NULL);
2905 if (EXT4_SB(sb)->s_stripe)
2906 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_stripe;
2907 else
2908 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002909 mb_debug(1, "#%u: goal %u blocks for locality group\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05002910 current->pid, ac->ac_g_ex.fe_len);
2911}
2912
2913/*
2914 * Normalization means making request better in terms of
2915 * size and alignment
2916 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002917static noinline_for_stack void
2918ext4_mb_normalize_request(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002919 struct ext4_allocation_request *ar)
2920{
2921 int bsbits, max;
2922 ext4_lblk_t end;
Alex Tomasc9de5602008-01-29 00:19:52 -05002923 loff_t size, orig_size, start_off;
Andi Kleen5a0790c2010-06-14 13:28:03 -04002924 ext4_lblk_t start;
Alex Tomasc9de5602008-01-29 00:19:52 -05002925 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04002926 struct ext4_prealloc_space *pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05002927
2928 /* do normalize only data requests, metadata requests
2929 do not need preallocation */
2930 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
2931 return;
2932
2933 /* sometime caller may want exact blocks */
2934 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2935 return;
2936
2937 /* caller may indicate that preallocation isn't
2938 * required (it's a tail, for example) */
2939 if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
2940 return;
2941
2942 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
2943 ext4_mb_normalize_group_request(ac);
2944 return ;
2945 }
2946
2947 bsbits = ac->ac_sb->s_blocksize_bits;
2948
2949 /* first, let's learn actual file size
2950 * given current request is allocated */
2951 size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len;
2952 size = size << bsbits;
2953 if (size < i_size_read(ac->ac_inode))
2954 size = i_size_read(ac->ac_inode);
Andi Kleen5a0790c2010-06-14 13:28:03 -04002955 orig_size = size;
Alex Tomasc9de5602008-01-29 00:19:52 -05002956
Valerie Clement19304792008-05-13 19:31:14 -04002957 /* max size of free chunks */
2958 max = 2 << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05002959
Valerie Clement19304792008-05-13 19:31:14 -04002960#define NRL_CHECK_SIZE(req, size, max, chunk_size) \
2961 (req <= (size) || max <= (chunk_size))
Alex Tomasc9de5602008-01-29 00:19:52 -05002962
2963 /* first, try to predict filesize */
2964 /* XXX: should this table be tunable? */
2965 start_off = 0;
2966 if (size <= 16 * 1024) {
2967 size = 16 * 1024;
2968 } else if (size <= 32 * 1024) {
2969 size = 32 * 1024;
2970 } else if (size <= 64 * 1024) {
2971 size = 64 * 1024;
2972 } else if (size <= 128 * 1024) {
2973 size = 128 * 1024;
2974 } else if (size <= 256 * 1024) {
2975 size = 256 * 1024;
2976 } else if (size <= 512 * 1024) {
2977 size = 512 * 1024;
2978 } else if (size <= 1024 * 1024) {
2979 size = 1024 * 1024;
Valerie Clement19304792008-05-13 19:31:14 -04002980 } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002981 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
Valerie Clement19304792008-05-13 19:31:14 -04002982 (21 - bsbits)) << 21;
2983 size = 2 * 1024 * 1024;
2984 } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002985 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
2986 (22 - bsbits)) << 22;
2987 size = 4 * 1024 * 1024;
2988 } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
Valerie Clement19304792008-05-13 19:31:14 -04002989 (8<<20)>>bsbits, max, 8 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002990 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
2991 (23 - bsbits)) << 23;
2992 size = 8 * 1024 * 1024;
2993 } else {
2994 start_off = (loff_t)ac->ac_o_ex.fe_logical << bsbits;
2995 size = ac->ac_o_ex.fe_len << bsbits;
2996 }
Andi Kleen5a0790c2010-06-14 13:28:03 -04002997 size = size >> bsbits;
2998 start = start_off >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05002999
3000 /* don't cover already allocated blocks in selected range */
3001 if (ar->pleft && start <= ar->lleft) {
3002 size -= ar->lleft + 1 - start;
3003 start = ar->lleft + 1;
3004 }
3005 if (ar->pright && start + size - 1 >= ar->lright)
3006 size -= start + size - ar->lright;
3007
3008 end = start + size;
3009
3010 /* check we don't cross already preallocated blocks */
3011 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003012 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003013 ext4_lblk_t pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05003014
Alex Tomasc9de5602008-01-29 00:19:52 -05003015 if (pa->pa_deleted)
3016 continue;
3017 spin_lock(&pa->pa_lock);
3018 if (pa->pa_deleted) {
3019 spin_unlock(&pa->pa_lock);
3020 continue;
3021 }
3022
3023 pa_end = pa->pa_lstart + pa->pa_len;
3024
3025 /* PA must not overlap original request */
3026 BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
3027 ac->ac_o_ex.fe_logical < pa->pa_lstart));
3028
Eric Sandeen38877f42009-08-17 23:55:24 -04003029 /* skip PAs this normalized request doesn't overlap with */
3030 if (pa->pa_lstart >= end || pa_end <= start) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003031 spin_unlock(&pa->pa_lock);
3032 continue;
3033 }
3034 BUG_ON(pa->pa_lstart <= start && pa_end >= end);
3035
Eric Sandeen38877f42009-08-17 23:55:24 -04003036 /* adjust start or end to be adjacent to this pa */
Alex Tomasc9de5602008-01-29 00:19:52 -05003037 if (pa_end <= ac->ac_o_ex.fe_logical) {
3038 BUG_ON(pa_end < start);
3039 start = pa_end;
Eric Sandeen38877f42009-08-17 23:55:24 -04003040 } else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003041 BUG_ON(pa->pa_lstart > end);
3042 end = pa->pa_lstart;
3043 }
3044 spin_unlock(&pa->pa_lock);
3045 }
3046 rcu_read_unlock();
3047 size = end - start;
3048
3049 /* XXX: extra loop to check we really don't overlap preallocations */
3050 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003051 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003052 ext4_lblk_t pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05003053 spin_lock(&pa->pa_lock);
3054 if (pa->pa_deleted == 0) {
3055 pa_end = pa->pa_lstart + pa->pa_len;
3056 BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
3057 }
3058 spin_unlock(&pa->pa_lock);
3059 }
3060 rcu_read_unlock();
3061
3062 if (start + size <= ac->ac_o_ex.fe_logical &&
3063 start > ac->ac_o_ex.fe_logical) {
3064 printk(KERN_ERR "start %lu, size %lu, fe_logical %lu\n",
3065 (unsigned long) start, (unsigned long) size,
3066 (unsigned long) ac->ac_o_ex.fe_logical);
3067 }
3068 BUG_ON(start + size <= ac->ac_o_ex.fe_logical &&
3069 start > ac->ac_o_ex.fe_logical);
Eric Sandeen8d03c7a2009-03-14 11:51:46 -04003070 BUG_ON(size <= 0 || size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05003071
3072 /* now prepare goal request */
3073
3074 /* XXX: is it better to align blocks WRT to logical
3075 * placement or satisfy big request as is */
3076 ac->ac_g_ex.fe_logical = start;
3077 ac->ac_g_ex.fe_len = size;
3078
3079 /* define goal start in order to merge */
3080 if (ar->pright && (ar->lright == (start + size))) {
3081 /* merge to the right */
3082 ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
3083 &ac->ac_f_ex.fe_group,
3084 &ac->ac_f_ex.fe_start);
3085 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3086 }
3087 if (ar->pleft && (ar->lleft + 1 == start)) {
3088 /* merge to the left */
3089 ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
3090 &ac->ac_f_ex.fe_group,
3091 &ac->ac_f_ex.fe_start);
3092 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3093 }
3094
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003095 mb_debug(1, "goal: %u(was %u) blocks at %u\n", (unsigned) size,
Alex Tomasc9de5602008-01-29 00:19:52 -05003096 (unsigned) orig_size, (unsigned) start);
3097}
3098
3099static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
3100{
3101 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3102
3103 if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
3104 atomic_inc(&sbi->s_bal_reqs);
3105 atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
Curt Wohlgemuth291dae42010-05-16 16:00:00 -04003106 if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
Alex Tomasc9de5602008-01-29 00:19:52 -05003107 atomic_inc(&sbi->s_bal_success);
3108 atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
3109 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
3110 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
3111 atomic_inc(&sbi->s_bal_goals);
3112 if (ac->ac_found > sbi->s_mb_max_to_scan)
3113 atomic_inc(&sbi->s_bal_breaks);
3114 }
3115
Theodore Ts'o296c3552009-09-30 00:32:42 -04003116 if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
3117 trace_ext4_mballoc_alloc(ac);
3118 else
3119 trace_ext4_mballoc_prealloc(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003120}
3121
3122/*
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003123 * Called on failure; free up any blocks from the inode PA for this
3124 * context. We don't need this for MB_GROUP_PA because we only change
3125 * pa_free in ext4_mb_release_context(), but on failure, we've already
3126 * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
3127 */
3128static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
3129{
3130 struct ext4_prealloc_space *pa = ac->ac_pa;
3131 int len;
3132
3133 if (pa && pa->pa_type == MB_INODE_PA) {
3134 len = ac->ac_b_ex.fe_len;
3135 pa->pa_free += len;
3136 }
3137
3138}
3139
3140/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003141 * use blocks preallocated to inode
3142 */
3143static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
3144 struct ext4_prealloc_space *pa)
3145{
3146 ext4_fsblk_t start;
3147 ext4_fsblk_t end;
3148 int len;
3149
3150 /* found preallocated blocks, use them */
3151 start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
3152 end = min(pa->pa_pstart + pa->pa_len, start + ac->ac_o_ex.fe_len);
3153 len = end - start;
3154 ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
3155 &ac->ac_b_ex.fe_start);
3156 ac->ac_b_ex.fe_len = len;
3157 ac->ac_status = AC_STATUS_FOUND;
3158 ac->ac_pa = pa;
3159
3160 BUG_ON(start < pa->pa_pstart);
3161 BUG_ON(start + len > pa->pa_pstart + pa->pa_len);
3162 BUG_ON(pa->pa_free < len);
3163 pa->pa_free -= len;
3164
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003165 mb_debug(1, "use %llu/%u from inode pa %p\n", start, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003166}
3167
3168/*
3169 * use blocks preallocated to locality group
3170 */
3171static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
3172 struct ext4_prealloc_space *pa)
3173{
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04003174 unsigned int len = ac->ac_o_ex.fe_len;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003175
Alex Tomasc9de5602008-01-29 00:19:52 -05003176 ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
3177 &ac->ac_b_ex.fe_group,
3178 &ac->ac_b_ex.fe_start);
3179 ac->ac_b_ex.fe_len = len;
3180 ac->ac_status = AC_STATUS_FOUND;
3181 ac->ac_pa = pa;
3182
3183 /* we don't correct pa_pstart or pa_plen here to avoid
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003184 * possible race when the group is being loaded concurrently
Alex Tomasc9de5602008-01-29 00:19:52 -05003185 * instead we correct pa later, after blocks are marked
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003186 * in on-disk bitmap -- see ext4_mb_release_context()
3187 * Other CPUs are prevented from allocating from this pa by lg_mutex
Alex Tomasc9de5602008-01-29 00:19:52 -05003188 */
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003189 mb_debug(1, "use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003190}
3191
3192/*
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003193 * Return the prealloc space that have minimal distance
3194 * from the goal block. @cpa is the prealloc
3195 * space that is having currently known minimal distance
3196 * from the goal block.
3197 */
3198static struct ext4_prealloc_space *
3199ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
3200 struct ext4_prealloc_space *pa,
3201 struct ext4_prealloc_space *cpa)
3202{
3203 ext4_fsblk_t cur_distance, new_distance;
3204
3205 if (cpa == NULL) {
3206 atomic_inc(&pa->pa_count);
3207 return pa;
3208 }
3209 cur_distance = abs(goal_block - cpa->pa_pstart);
3210 new_distance = abs(goal_block - pa->pa_pstart);
3211
Coly Li5a54b2f2011-02-24 14:10:05 -05003212 if (cur_distance <= new_distance)
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003213 return cpa;
3214
3215 /* drop the previous reference */
3216 atomic_dec(&cpa->pa_count);
3217 atomic_inc(&pa->pa_count);
3218 return pa;
3219}
3220
3221/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003222 * search goal blocks in preallocated space
3223 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003224static noinline_for_stack int
3225ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003226{
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003227 int order, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003228 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3229 struct ext4_locality_group *lg;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003230 struct ext4_prealloc_space *pa, *cpa = NULL;
3231 ext4_fsblk_t goal_block;
Alex Tomasc9de5602008-01-29 00:19:52 -05003232
3233 /* only data can be preallocated */
3234 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3235 return 0;
3236
3237 /* first, try per-file preallocation */
3238 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003239 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003240
3241 /* all fields in this condition don't change,
3242 * so we can skip locking for them */
3243 if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
3244 ac->ac_o_ex.fe_logical >= pa->pa_lstart + pa->pa_len)
3245 continue;
3246
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003247 /* non-extent files can't have physical blocks past 2^32 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003248 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003249 pa->pa_pstart + pa->pa_len > EXT4_MAX_BLOCK_FILE_PHYS)
3250 continue;
3251
Alex Tomasc9de5602008-01-29 00:19:52 -05003252 /* found preallocated blocks, use them */
3253 spin_lock(&pa->pa_lock);
3254 if (pa->pa_deleted == 0 && pa->pa_free) {
3255 atomic_inc(&pa->pa_count);
3256 ext4_mb_use_inode_pa(ac, pa);
3257 spin_unlock(&pa->pa_lock);
3258 ac->ac_criteria = 10;
3259 rcu_read_unlock();
3260 return 1;
3261 }
3262 spin_unlock(&pa->pa_lock);
3263 }
3264 rcu_read_unlock();
3265
3266 /* can we use group allocation? */
3267 if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
3268 return 0;
3269
3270 /* inode may have no locality group for some reason */
3271 lg = ac->ac_lg;
3272 if (lg == NULL)
3273 return 0;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003274 order = fls(ac->ac_o_ex.fe_len) - 1;
3275 if (order > PREALLOC_TB_SIZE - 1)
3276 /* The max size of hash table is PREALLOC_TB_SIZE */
3277 order = PREALLOC_TB_SIZE - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003278
Akinobu Mitabda00de2010-03-03 23:53:25 -05003279 goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003280 /*
3281 * search for the prealloc space that is having
3282 * minimal distance from the goal block.
3283 */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003284 for (i = order; i < PREALLOC_TB_SIZE; i++) {
3285 rcu_read_lock();
3286 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
3287 pa_inode_list) {
3288 spin_lock(&pa->pa_lock);
3289 if (pa->pa_deleted == 0 &&
3290 pa->pa_free >= ac->ac_o_ex.fe_len) {
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003291
3292 cpa = ext4_mb_check_group_pa(goal_block,
3293 pa, cpa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003294 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003295 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003296 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003297 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003298 }
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003299 if (cpa) {
3300 ext4_mb_use_group_pa(ac, cpa);
3301 ac->ac_criteria = 20;
3302 return 1;
3303 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003304 return 0;
3305}
3306
3307/*
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003308 * the function goes through all block freed in the group
3309 * but not yet committed and marks them used in in-core bitmap.
3310 * buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003311 * Need to be called with the ext4 group lock held
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003312 */
3313static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
3314 ext4_group_t group)
3315{
3316 struct rb_node *n;
3317 struct ext4_group_info *grp;
3318 struct ext4_free_data *entry;
3319
3320 grp = ext4_get_group_info(sb, group);
3321 n = rb_first(&(grp->bb_free_root));
3322
3323 while (n) {
3324 entry = rb_entry(n, struct ext4_free_data, node);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003325 mb_set_bits(bitmap, entry->start_blk, entry->count);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003326 n = rb_next(n);
3327 }
3328 return;
3329}
3330
3331/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003332 * the function goes through all preallocation in this group and marks them
3333 * used in in-core bitmap. buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003334 * Need to be called with ext4 group lock held
Alex Tomasc9de5602008-01-29 00:19:52 -05003335 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04003336static noinline_for_stack
3337void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05003338 ext4_group_t group)
3339{
3340 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3341 struct ext4_prealloc_space *pa;
3342 struct list_head *cur;
3343 ext4_group_t groupnr;
3344 ext4_grpblk_t start;
3345 int preallocated = 0;
3346 int count = 0;
3347 int len;
3348
3349 /* all form of preallocation discards first load group,
3350 * so the only competing code is preallocation use.
3351 * we don't need any locking here
3352 * notice we do NOT ignore preallocations with pa_deleted
3353 * otherwise we could leave used blocks available for
3354 * allocation in buddy when concurrent ext4_mb_put_pa()
3355 * is dropping preallocation
3356 */
3357 list_for_each(cur, &grp->bb_prealloc_list) {
3358 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3359 spin_lock(&pa->pa_lock);
3360 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3361 &groupnr, &start);
3362 len = pa->pa_len;
3363 spin_unlock(&pa->pa_lock);
3364 if (unlikely(len == 0))
3365 continue;
3366 BUG_ON(groupnr != group);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003367 mb_set_bits(bitmap, start, len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003368 preallocated += len;
3369 count++;
3370 }
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003371 mb_debug(1, "prellocated %u for group %u\n", preallocated, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003372}
3373
3374static void ext4_mb_pa_callback(struct rcu_head *head)
3375{
3376 struct ext4_prealloc_space *pa;
3377 pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
3378 kmem_cache_free(ext4_pspace_cachep, pa);
3379}
3380
3381/*
3382 * drops a reference to preallocated space descriptor
3383 * if this was the last reference and the space is consumed
3384 */
3385static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
3386 struct super_block *sb, struct ext4_prealloc_space *pa)
3387{
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003388 ext4_group_t grp;
Eric Sandeend33a1972009-03-16 23:25:40 -04003389 ext4_fsblk_t grp_blk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003390
3391 if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0)
3392 return;
3393
3394 /* in this short window concurrent discard can set pa_deleted */
3395 spin_lock(&pa->pa_lock);
3396 if (pa->pa_deleted == 1) {
3397 spin_unlock(&pa->pa_lock);
3398 return;
3399 }
3400
3401 pa->pa_deleted = 1;
3402 spin_unlock(&pa->pa_lock);
3403
Eric Sandeend33a1972009-03-16 23:25:40 -04003404 grp_blk = pa->pa_pstart;
Theodore Ts'o60e66792010-05-17 07:00:00 -04003405 /*
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003406 * If doing group-based preallocation, pa_pstart may be in the
3407 * next group when pa is used up
3408 */
3409 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeend33a1972009-03-16 23:25:40 -04003410 grp_blk--;
3411
3412 ext4_get_group_no_and_offset(sb, grp_blk, &grp, NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003413
3414 /*
3415 * possible race:
3416 *
3417 * P1 (buddy init) P2 (regular allocation)
3418 * find block B in PA
3419 * copy on-disk bitmap to buddy
3420 * mark B in on-disk bitmap
3421 * drop PA from group
3422 * mark all PAs in buddy
3423 *
3424 * thus, P1 initializes buddy with B available. to prevent this
3425 * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
3426 * against that pair
3427 */
3428 ext4_lock_group(sb, grp);
3429 list_del(&pa->pa_group_list);
3430 ext4_unlock_group(sb, grp);
3431
3432 spin_lock(pa->pa_obj_lock);
3433 list_del_rcu(&pa->pa_inode_list);
3434 spin_unlock(pa->pa_obj_lock);
3435
3436 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3437}
3438
3439/*
3440 * creates new preallocated space for given inode
3441 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003442static noinline_for_stack int
3443ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003444{
3445 struct super_block *sb = ac->ac_sb;
3446 struct ext4_prealloc_space *pa;
3447 struct ext4_group_info *grp;
3448 struct ext4_inode_info *ei;
3449
3450 /* preallocate only when found space is larger then requested */
3451 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3452 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3453 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3454
3455 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3456 if (pa == NULL)
3457 return -ENOMEM;
3458
3459 if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
3460 int winl;
3461 int wins;
3462 int win;
3463 int offs;
3464
3465 /* we can't allocate as much as normalizer wants.
3466 * so, found space must get proper lstart
3467 * to cover original request */
3468 BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
3469 BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
3470
3471 /* we're limited by original request in that
3472 * logical block must be covered any way
3473 * winl is window we can move our chunk within */
3474 winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
3475
3476 /* also, we should cover whole original request */
3477 wins = ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len;
3478
3479 /* the smallest one defines real window */
3480 win = min(winl, wins);
3481
3482 offs = ac->ac_o_ex.fe_logical % ac->ac_b_ex.fe_len;
3483 if (offs && offs < win)
3484 win = offs;
3485
3486 ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical - win;
3487 BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
3488 BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
3489 }
3490
3491 /* preallocation can change ac_b_ex, thus we store actually
3492 * allocated blocks for history */
3493 ac->ac_f_ex = ac->ac_b_ex;
3494
3495 pa->pa_lstart = ac->ac_b_ex.fe_logical;
3496 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3497 pa->pa_len = ac->ac_b_ex.fe_len;
3498 pa->pa_free = pa->pa_len;
3499 atomic_set(&pa->pa_count, 1);
3500 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003501 INIT_LIST_HEAD(&pa->pa_inode_list);
3502 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003503 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003504 pa->pa_type = MB_INODE_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003505
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003506 mb_debug(1, "new inode pa %p: %llu/%u for %u\n", pa,
Alex Tomasc9de5602008-01-29 00:19:52 -05003507 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003508 trace_ext4_mb_new_inode_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003509
3510 ext4_mb_use_inode_pa(ac, pa);
3511 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3512
3513 ei = EXT4_I(ac->ac_inode);
3514 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3515
3516 pa->pa_obj_lock = &ei->i_prealloc_lock;
3517 pa->pa_inode = ac->ac_inode;
3518
3519 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3520 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3521 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3522
3523 spin_lock(pa->pa_obj_lock);
3524 list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
3525 spin_unlock(pa->pa_obj_lock);
3526
3527 return 0;
3528}
3529
3530/*
3531 * creates new preallocated space for locality group inodes belongs to
3532 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003533static noinline_for_stack int
3534ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003535{
3536 struct super_block *sb = ac->ac_sb;
3537 struct ext4_locality_group *lg;
3538 struct ext4_prealloc_space *pa;
3539 struct ext4_group_info *grp;
3540
3541 /* preallocate only when found space is larger then requested */
3542 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3543 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3544 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3545
3546 BUG_ON(ext4_pspace_cachep == NULL);
3547 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3548 if (pa == NULL)
3549 return -ENOMEM;
3550
3551 /* preallocation can change ac_b_ex, thus we store actually
3552 * allocated blocks for history */
3553 ac->ac_f_ex = ac->ac_b_ex;
3554
3555 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3556 pa->pa_lstart = pa->pa_pstart;
3557 pa->pa_len = ac->ac_b_ex.fe_len;
3558 pa->pa_free = pa->pa_len;
3559 atomic_set(&pa->pa_count, 1);
3560 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003561 INIT_LIST_HEAD(&pa->pa_inode_list);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003562 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003563 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003564 pa->pa_type = MB_GROUP_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003565
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003566 mb_debug(1, "new group pa %p: %llu/%u for %u\n", pa,
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003567 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
3568 trace_ext4_mb_new_group_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003569
3570 ext4_mb_use_group_pa(ac, pa);
3571 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3572
3573 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3574 lg = ac->ac_lg;
3575 BUG_ON(lg == NULL);
3576
3577 pa->pa_obj_lock = &lg->lg_prealloc_lock;
3578 pa->pa_inode = NULL;
3579
3580 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3581 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3582 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3583
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003584 /*
3585 * We will later add the new pa to the right bucket
3586 * after updating the pa_free in ext4_mb_release_context
3587 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003588 return 0;
3589}
3590
3591static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
3592{
3593 int err;
3594
3595 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
3596 err = ext4_mb_new_group_pa(ac);
3597 else
3598 err = ext4_mb_new_inode_pa(ac);
3599 return err;
3600}
3601
3602/*
3603 * finds all unused blocks in on-disk bitmap, frees them in
3604 * in-core bitmap and buddy.
3605 * @pa must be unlinked from inode and group lists, so that
3606 * nobody else can find/use it.
3607 * the caller MUST hold group/inode locks.
3608 * TODO: optimize the case when there are no in-core structures yet
3609 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003610static noinline_for_stack int
3611ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003612 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05003613{
Alex Tomasc9de5602008-01-29 00:19:52 -05003614 struct super_block *sb = e4b->bd_sb;
3615 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003616 unsigned int end;
3617 unsigned int next;
Alex Tomasc9de5602008-01-29 00:19:52 -05003618 ext4_group_t group;
3619 ext4_grpblk_t bit;
Theodore Ts'oba80b102009-01-03 20:03:21 -05003620 unsigned long long grp_blk_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05003621 int err = 0;
3622 int free = 0;
3623
3624 BUG_ON(pa->pa_deleted == 0);
3625 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
Theodore Ts'oba80b102009-01-03 20:03:21 -05003626 grp_blk_start = pa->pa_pstart - bit;
Alex Tomasc9de5602008-01-29 00:19:52 -05003627 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3628 end = bit + pa->pa_len;
3629
Alex Tomasc9de5602008-01-29 00:19:52 -05003630 while (bit < end) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003631 bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003632 if (bit >= end)
3633 break;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003634 next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003635 mb_debug(1, " free preallocated %u/%u in group %u\n",
Andi Kleen5a0790c2010-06-14 13:28:03 -04003636 (unsigned) ext4_group_first_block_no(sb, group) + bit,
3637 (unsigned) next - bit, (unsigned) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003638 free += next - bit;
3639
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003640 trace_ext4_mballoc_discard(sb, NULL, group, bit, next - bit);
3641 trace_ext4_mb_release_inode_pa(sb, pa->pa_inode, pa,
3642 grp_blk_start + bit, next - bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003643 mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
3644 bit = next + 1;
3645 }
3646 if (free != pa->pa_free) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003647 printk(KERN_CRIT "pa %p: logic %lu, phys. %lu, len %lu\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05003648 pa, (unsigned long) pa->pa_lstart,
3649 (unsigned long) pa->pa_pstart,
3650 (unsigned long) pa->pa_len);
Theodore Ts'oe29136f2010-06-29 12:54:28 -04003651 ext4_grp_locked_error(sb, group, 0, 0, "free %u, pa_free %u",
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003652 free, pa->pa_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05003653 /*
3654 * pa is already deleted so we use the value obtained
3655 * from the bitmap and continue.
3656 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003657 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003658 atomic_add(free, &sbi->s_mb_discarded);
3659
3660 return err;
3661}
3662
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003663static noinline_for_stack int
3664ext4_mb_release_group_pa(struct ext4_buddy *e4b,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003665 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05003666{
Alex Tomasc9de5602008-01-29 00:19:52 -05003667 struct super_block *sb = e4b->bd_sb;
3668 ext4_group_t group;
3669 ext4_grpblk_t bit;
3670
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003671 trace_ext4_mb_release_group_pa(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003672 BUG_ON(pa->pa_deleted == 0);
3673 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3674 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3675 mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
3676 atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003677 trace_ext4_mballoc_discard(sb, NULL, group, bit, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003678
3679 return 0;
3680}
3681
3682/*
3683 * releases all preallocations in given group
3684 *
3685 * first, we need to decide discard policy:
3686 * - when do we discard
3687 * 1) ENOSPC
3688 * - how many do we discard
3689 * 1) how many requested
3690 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003691static noinline_for_stack int
3692ext4_mb_discard_group_preallocations(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -05003693 ext4_group_t group, int needed)
3694{
3695 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3696 struct buffer_head *bitmap_bh = NULL;
3697 struct ext4_prealloc_space *pa, *tmp;
3698 struct list_head list;
3699 struct ext4_buddy e4b;
3700 int err;
3701 int busy = 0;
3702 int free = 0;
3703
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003704 mb_debug(1, "discard preallocation for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003705
3706 if (list_empty(&grp->bb_prealloc_list))
3707 return 0;
3708
Theodore Ts'o574ca172008-07-11 19:27:31 -04003709 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003710 if (bitmap_bh == NULL) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003711 ext4_error(sb, "Error reading block bitmap for %u", group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003712 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003713 }
3714
3715 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003716 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003717 ext4_error(sb, "Error loading buddy information for %u", group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003718 put_bh(bitmap_bh);
3719 return 0;
3720 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003721
3722 if (needed == 0)
3723 needed = EXT4_BLOCKS_PER_GROUP(sb) + 1;
3724
Alex Tomasc9de5602008-01-29 00:19:52 -05003725 INIT_LIST_HEAD(&list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003726repeat:
3727 ext4_lock_group(sb, group);
3728 list_for_each_entry_safe(pa, tmp,
3729 &grp->bb_prealloc_list, pa_group_list) {
3730 spin_lock(&pa->pa_lock);
3731 if (atomic_read(&pa->pa_count)) {
3732 spin_unlock(&pa->pa_lock);
3733 busy = 1;
3734 continue;
3735 }
3736 if (pa->pa_deleted) {
3737 spin_unlock(&pa->pa_lock);
3738 continue;
3739 }
3740
3741 /* seems this one can be freed ... */
3742 pa->pa_deleted = 1;
3743
3744 /* we can trust pa_free ... */
3745 free += pa->pa_free;
3746
3747 spin_unlock(&pa->pa_lock);
3748
3749 list_del(&pa->pa_group_list);
3750 list_add(&pa->u.pa_tmp_list, &list);
3751 }
3752
3753 /* if we still need more blocks and some PAs were used, try again */
3754 if (free < needed && busy) {
3755 busy = 0;
3756 ext4_unlock_group(sb, group);
3757 /*
3758 * Yield the CPU here so that we don't get soft lockup
3759 * in non preempt case.
3760 */
3761 yield();
3762 goto repeat;
3763 }
3764
3765 /* found anything to free? */
3766 if (list_empty(&list)) {
3767 BUG_ON(free != 0);
3768 goto out;
3769 }
3770
3771 /* now free all selected PAs */
3772 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
3773
3774 /* remove from object (inode or locality group) */
3775 spin_lock(pa->pa_obj_lock);
3776 list_del_rcu(&pa->pa_inode_list);
3777 spin_unlock(pa->pa_obj_lock);
3778
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003779 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003780 ext4_mb_release_group_pa(&e4b, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003781 else
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003782 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003783
3784 list_del(&pa->u.pa_tmp_list);
3785 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3786 }
3787
3788out:
3789 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04003790 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05003791 put_bh(bitmap_bh);
3792 return free;
3793}
3794
3795/*
3796 * releases all non-used preallocated blocks for given inode
3797 *
3798 * It's important to discard preallocations under i_data_sem
3799 * We don't want another block to be served from the prealloc
3800 * space when we are discarding the inode prealloc space.
3801 *
3802 * FIXME!! Make sure it is valid at all the call sites
3803 */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003804void ext4_discard_preallocations(struct inode *inode)
Alex Tomasc9de5602008-01-29 00:19:52 -05003805{
3806 struct ext4_inode_info *ei = EXT4_I(inode);
3807 struct super_block *sb = inode->i_sb;
3808 struct buffer_head *bitmap_bh = NULL;
3809 struct ext4_prealloc_space *pa, *tmp;
3810 ext4_group_t group = 0;
3811 struct list_head list;
3812 struct ext4_buddy e4b;
3813 int err;
3814
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003815 if (!S_ISREG(inode->i_mode)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003816 /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
3817 return;
3818 }
3819
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003820 mb_debug(1, "discard preallocation for inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003821 trace_ext4_discard_preallocations(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05003822
3823 INIT_LIST_HEAD(&list);
3824
3825repeat:
3826 /* first, collect all pa's in the inode */
3827 spin_lock(&ei->i_prealloc_lock);
3828 while (!list_empty(&ei->i_prealloc_list)) {
3829 pa = list_entry(ei->i_prealloc_list.next,
3830 struct ext4_prealloc_space, pa_inode_list);
3831 BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
3832 spin_lock(&pa->pa_lock);
3833 if (atomic_read(&pa->pa_count)) {
3834 /* this shouldn't happen often - nobody should
3835 * use preallocation while we're discarding it */
3836 spin_unlock(&pa->pa_lock);
3837 spin_unlock(&ei->i_prealloc_lock);
3838 printk(KERN_ERR "uh-oh! used pa while discarding\n");
3839 WARN_ON(1);
3840 schedule_timeout_uninterruptible(HZ);
3841 goto repeat;
3842
3843 }
3844 if (pa->pa_deleted == 0) {
3845 pa->pa_deleted = 1;
3846 spin_unlock(&pa->pa_lock);
3847 list_del_rcu(&pa->pa_inode_list);
3848 list_add(&pa->u.pa_tmp_list, &list);
3849 continue;
3850 }
3851
3852 /* someone is deleting pa right now */
3853 spin_unlock(&pa->pa_lock);
3854 spin_unlock(&ei->i_prealloc_lock);
3855
3856 /* we have to wait here because pa_deleted
3857 * doesn't mean pa is already unlinked from
3858 * the list. as we might be called from
3859 * ->clear_inode() the inode will get freed
3860 * and concurrent thread which is unlinking
3861 * pa from inode's list may access already
3862 * freed memory, bad-bad-bad */
3863
3864 /* XXX: if this happens too often, we can
3865 * add a flag to force wait only in case
3866 * of ->clear_inode(), but not in case of
3867 * regular truncate */
3868 schedule_timeout_uninterruptible(HZ);
3869 goto repeat;
3870 }
3871 spin_unlock(&ei->i_prealloc_lock);
3872
3873 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003874 BUG_ON(pa->pa_type != MB_INODE_PA);
Alex Tomasc9de5602008-01-29 00:19:52 -05003875 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
3876
3877 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003878 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003879 ext4_error(sb, "Error loading buddy information for %u",
3880 group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003881 continue;
3882 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003883
Theodore Ts'o574ca172008-07-11 19:27:31 -04003884 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003885 if (bitmap_bh == NULL) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003886 ext4_error(sb, "Error reading block bitmap for %u",
3887 group);
Jing Zhange39e07f2010-05-14 00:00:00 -04003888 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003889 continue;
Alex Tomasc9de5602008-01-29 00:19:52 -05003890 }
3891
3892 ext4_lock_group(sb, group);
3893 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003894 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003895 ext4_unlock_group(sb, group);
3896
Jing Zhange39e07f2010-05-14 00:00:00 -04003897 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05003898 put_bh(bitmap_bh);
3899
3900 list_del(&pa->u.pa_tmp_list);
3901 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3902 }
3903}
3904
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003905#ifdef CONFIG_EXT4_DEBUG
Alex Tomasc9de5602008-01-29 00:19:52 -05003906static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
3907{
3908 struct super_block *sb = ac->ac_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -04003909 ext4_group_t ngroups, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003910
Theodore Ts'o4dd89fc2011-02-27 17:23:47 -05003911 if (!mb_enable_debug ||
3912 (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED))
Eric Sandeene3570632010-07-27 11:56:08 -04003913 return;
3914
Alex Tomasc9de5602008-01-29 00:19:52 -05003915 printk(KERN_ERR "EXT4-fs: Can't allocate:"
3916 " Allocation context details:\n");
3917 printk(KERN_ERR "EXT4-fs: status %d flags %d\n",
3918 ac->ac_status, ac->ac_flags);
3919 printk(KERN_ERR "EXT4-fs: orig %lu/%lu/%lu@%lu, goal %lu/%lu/%lu@%lu, "
3920 "best %lu/%lu/%lu@%lu cr %d\n",
3921 (unsigned long)ac->ac_o_ex.fe_group,
3922 (unsigned long)ac->ac_o_ex.fe_start,
3923 (unsigned long)ac->ac_o_ex.fe_len,
3924 (unsigned long)ac->ac_o_ex.fe_logical,
3925 (unsigned long)ac->ac_g_ex.fe_group,
3926 (unsigned long)ac->ac_g_ex.fe_start,
3927 (unsigned long)ac->ac_g_ex.fe_len,
3928 (unsigned long)ac->ac_g_ex.fe_logical,
3929 (unsigned long)ac->ac_b_ex.fe_group,
3930 (unsigned long)ac->ac_b_ex.fe_start,
3931 (unsigned long)ac->ac_b_ex.fe_len,
3932 (unsigned long)ac->ac_b_ex.fe_logical,
3933 (int)ac->ac_criteria);
3934 printk(KERN_ERR "EXT4-fs: %lu scanned, %d found\n", ac->ac_ex_scanned,
3935 ac->ac_found);
3936 printk(KERN_ERR "EXT4-fs: groups: \n");
Theodore Ts'o8df96752009-05-01 08:50:38 -04003937 ngroups = ext4_get_groups_count(sb);
3938 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003939 struct ext4_group_info *grp = ext4_get_group_info(sb, i);
3940 struct ext4_prealloc_space *pa;
3941 ext4_grpblk_t start;
3942 struct list_head *cur;
3943 ext4_lock_group(sb, i);
3944 list_for_each(cur, &grp->bb_prealloc_list) {
3945 pa = list_entry(cur, struct ext4_prealloc_space,
3946 pa_group_list);
3947 spin_lock(&pa->pa_lock);
3948 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3949 NULL, &start);
3950 spin_unlock(&pa->pa_lock);
Akira Fujita1c718502009-07-05 23:04:36 -04003951 printk(KERN_ERR "PA:%u:%d:%u \n", i,
3952 start, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003953 }
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04003954 ext4_unlock_group(sb, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05003955
3956 if (grp->bb_free == 0)
3957 continue;
Akira Fujita1c718502009-07-05 23:04:36 -04003958 printk(KERN_ERR "%u: %d/%d \n",
Alex Tomasc9de5602008-01-29 00:19:52 -05003959 i, grp->bb_free, grp->bb_fragments);
3960 }
3961 printk(KERN_ERR "\n");
3962}
3963#else
3964static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
3965{
3966 return;
3967}
3968#endif
3969
3970/*
3971 * We use locality group preallocation for small size file. The size of the
3972 * file is determined by the current size or the resulting size after
3973 * allocation which ever is larger
3974 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003975 * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
Alex Tomasc9de5602008-01-29 00:19:52 -05003976 */
3977static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
3978{
3979 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3980 int bsbits = ac->ac_sb->s_blocksize_bits;
3981 loff_t size, isize;
3982
3983 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3984 return;
3985
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04003986 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
3987 return;
3988
Alex Tomasc9de5602008-01-29 00:19:52 -05003989 size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len;
Theodore Ts'o50797482009-09-18 13:34:02 -04003990 isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
3991 >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003992
Theodore Ts'o50797482009-09-18 13:34:02 -04003993 if ((size == isize) &&
3994 !ext4_fs_is_busy(sbi) &&
3995 (atomic_read(&ac->ac_inode->i_writecount) == 0)) {
3996 ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
3997 return;
3998 }
3999
Alex Tomasc9de5602008-01-29 00:19:52 -05004000 /* don't use group allocation for large files */
Theodore Ts'o71780572009-09-28 00:06:20 -04004001 size = max(size, isize);
Tao Macc483f12010-03-01 19:06:35 -05004002 if (size > sbi->s_mb_stream_request) {
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004003 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05004004 return;
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004005 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004006
4007 BUG_ON(ac->ac_lg != NULL);
4008 /*
4009 * locality group prealloc space are per cpu. The reason for having
4010 * per cpu locality group is to reduce the contention between block
4011 * request from multiple CPUs.
4012 */
Christoph Lameterca0c9582009-10-03 19:48:22 +09004013 ac->ac_lg = __this_cpu_ptr(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05004014
4015 /* we're going to use group allocation */
4016 ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
4017
4018 /* serialize all allocations in the group */
4019 mutex_lock(&ac->ac_lg->lg_mutex);
4020}
4021
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004022static noinline_for_stack int
4023ext4_mb_initialize_context(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05004024 struct ext4_allocation_request *ar)
4025{
4026 struct super_block *sb = ar->inode->i_sb;
4027 struct ext4_sb_info *sbi = EXT4_SB(sb);
4028 struct ext4_super_block *es = sbi->s_es;
4029 ext4_group_t group;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004030 unsigned int len;
4031 ext4_fsblk_t goal;
Alex Tomasc9de5602008-01-29 00:19:52 -05004032 ext4_grpblk_t block;
4033
4034 /* we can't allocate > group size */
4035 len = ar->len;
4036
4037 /* just a dirty hack to filter too big requests */
4038 if (len >= EXT4_BLOCKS_PER_GROUP(sb) - 10)
4039 len = EXT4_BLOCKS_PER_GROUP(sb) - 10;
4040
4041 /* start searching from the goal */
4042 goal = ar->goal;
4043 if (goal < le32_to_cpu(es->s_first_data_block) ||
4044 goal >= ext4_blocks_count(es))
4045 goal = le32_to_cpu(es->s_first_data_block);
4046 ext4_get_group_no_and_offset(sb, goal, &group, &block);
4047
4048 /* set up allocation goals */
Theodore Ts'o833576b2009-07-13 09:45:52 -04004049 memset(ac, 0, sizeof(struct ext4_allocation_context));
Alex Tomasc9de5602008-01-29 00:19:52 -05004050 ac->ac_b_ex.fe_logical = ar->logical;
Alex Tomasc9de5602008-01-29 00:19:52 -05004051 ac->ac_status = AC_STATUS_CONTINUE;
Alex Tomasc9de5602008-01-29 00:19:52 -05004052 ac->ac_sb = sb;
4053 ac->ac_inode = ar->inode;
4054 ac->ac_o_ex.fe_logical = ar->logical;
4055 ac->ac_o_ex.fe_group = group;
4056 ac->ac_o_ex.fe_start = block;
4057 ac->ac_o_ex.fe_len = len;
4058 ac->ac_g_ex.fe_logical = ar->logical;
4059 ac->ac_g_ex.fe_group = group;
4060 ac->ac_g_ex.fe_start = block;
4061 ac->ac_g_ex.fe_len = len;
Alex Tomasc9de5602008-01-29 00:19:52 -05004062 ac->ac_flags = ar->flags;
Alex Tomasc9de5602008-01-29 00:19:52 -05004063
4064 /* we have to define context: we'll we work with a file or
4065 * locality group. this is a policy, actually */
4066 ext4_mb_group_or_file(ac);
4067
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004068 mb_debug(1, "init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, "
Alex Tomasc9de5602008-01-29 00:19:52 -05004069 "left: %u/%u, right %u/%u to %swritable\n",
4070 (unsigned) ar->len, (unsigned) ar->logical,
4071 (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
4072 (unsigned) ar->lleft, (unsigned) ar->pleft,
4073 (unsigned) ar->lright, (unsigned) ar->pright,
4074 atomic_read(&ar->inode->i_writecount) ? "" : "non-");
4075 return 0;
4076
4077}
4078
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004079static noinline_for_stack void
4080ext4_mb_discard_lg_preallocations(struct super_block *sb,
4081 struct ext4_locality_group *lg,
4082 int order, int total_entries)
4083{
4084 ext4_group_t group = 0;
4085 struct ext4_buddy e4b;
4086 struct list_head discard_list;
4087 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004088
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004089 mb_debug(1, "discard locality group preallocation\n");
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004090
4091 INIT_LIST_HEAD(&discard_list);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004092
4093 spin_lock(&lg->lg_prealloc_lock);
4094 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
4095 pa_inode_list) {
4096 spin_lock(&pa->pa_lock);
4097 if (atomic_read(&pa->pa_count)) {
4098 /*
4099 * This is the pa that we just used
4100 * for block allocation. So don't
4101 * free that
4102 */
4103 spin_unlock(&pa->pa_lock);
4104 continue;
4105 }
4106 if (pa->pa_deleted) {
4107 spin_unlock(&pa->pa_lock);
4108 continue;
4109 }
4110 /* only lg prealloc space */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004111 BUG_ON(pa->pa_type != MB_GROUP_PA);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004112
4113 /* seems this one can be freed ... */
4114 pa->pa_deleted = 1;
4115 spin_unlock(&pa->pa_lock);
4116
4117 list_del_rcu(&pa->pa_inode_list);
4118 list_add(&pa->u.pa_tmp_list, &discard_list);
4119
4120 total_entries--;
4121 if (total_entries <= 5) {
4122 /*
4123 * we want to keep only 5 entries
4124 * allowing it to grow to 8. This
4125 * mak sure we don't call discard
4126 * soon for this list.
4127 */
4128 break;
4129 }
4130 }
4131 spin_unlock(&lg->lg_prealloc_lock);
4132
4133 list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
4134
4135 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
4136 if (ext4_mb_load_buddy(sb, group, &e4b)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004137 ext4_error(sb, "Error loading buddy information for %u",
4138 group);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004139 continue;
4140 }
4141 ext4_lock_group(sb, group);
4142 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004143 ext4_mb_release_group_pa(&e4b, pa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004144 ext4_unlock_group(sb, group);
4145
Jing Zhange39e07f2010-05-14 00:00:00 -04004146 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004147 list_del(&pa->u.pa_tmp_list);
4148 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4149 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004150}
4151
4152/*
4153 * We have incremented pa_count. So it cannot be freed at this
4154 * point. Also we hold lg_mutex. So no parallel allocation is
4155 * possible from this lg. That means pa_free cannot be updated.
4156 *
4157 * A parallel ext4_mb_discard_group_preallocations is possible.
4158 * which can cause the lg_prealloc_list to be updated.
4159 */
4160
4161static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
4162{
4163 int order, added = 0, lg_prealloc_count = 1;
4164 struct super_block *sb = ac->ac_sb;
4165 struct ext4_locality_group *lg = ac->ac_lg;
4166 struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
4167
4168 order = fls(pa->pa_free) - 1;
4169 if (order > PREALLOC_TB_SIZE - 1)
4170 /* The max size of hash table is PREALLOC_TB_SIZE */
4171 order = PREALLOC_TB_SIZE - 1;
4172 /* Add the prealloc space to lg */
4173 rcu_read_lock();
4174 list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
4175 pa_inode_list) {
4176 spin_lock(&tmp_pa->pa_lock);
4177 if (tmp_pa->pa_deleted) {
Theodore Ts'oe7c9e3e2009-03-27 19:43:21 -04004178 spin_unlock(&tmp_pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004179 continue;
4180 }
4181 if (!added && pa->pa_free < tmp_pa->pa_free) {
4182 /* Add to the tail of the previous entry */
4183 list_add_tail_rcu(&pa->pa_inode_list,
4184 &tmp_pa->pa_inode_list);
4185 added = 1;
4186 /*
4187 * we want to count the total
4188 * number of entries in the list
4189 */
4190 }
4191 spin_unlock(&tmp_pa->pa_lock);
4192 lg_prealloc_count++;
4193 }
4194 if (!added)
4195 list_add_tail_rcu(&pa->pa_inode_list,
4196 &lg->lg_prealloc_list[order]);
4197 rcu_read_unlock();
4198
4199 /* Now trim the list to be not more than 8 elements */
4200 if (lg_prealloc_count > 8) {
4201 ext4_mb_discard_lg_preallocations(sb, lg,
4202 order, lg_prealloc_count);
4203 return;
4204 }
4205 return ;
4206}
4207
Alex Tomasc9de5602008-01-29 00:19:52 -05004208/*
4209 * release all resource we used in allocation
4210 */
4211static int ext4_mb_release_context(struct ext4_allocation_context *ac)
4212{
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004213 struct ext4_prealloc_space *pa = ac->ac_pa;
4214 if (pa) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004215 if (pa->pa_type == MB_GROUP_PA) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004216 /* see comment in ext4_mb_use_group_pa() */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004217 spin_lock(&pa->pa_lock);
4218 pa->pa_pstart += ac->ac_b_ex.fe_len;
4219 pa->pa_lstart += ac->ac_b_ex.fe_len;
4220 pa->pa_free -= ac->ac_b_ex.fe_len;
4221 pa->pa_len -= ac->ac_b_ex.fe_len;
4222 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004223 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004224 }
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05004225 if (ac->alloc_semp)
4226 up_read(ac->alloc_semp);
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004227 if (pa) {
4228 /*
4229 * We want to add the pa to the right bucket.
4230 * Remove it from the list and while adding
4231 * make sure the list to which we are adding
4232 * doesn't grow big. We need to release
4233 * alloc_semp before calling ext4_mb_add_n_trim()
4234 */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004235 if ((pa->pa_type == MB_GROUP_PA) && likely(pa->pa_free)) {
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004236 spin_lock(pa->pa_obj_lock);
4237 list_del_rcu(&pa->pa_inode_list);
4238 spin_unlock(pa->pa_obj_lock);
4239 ext4_mb_add_n_trim(ac);
4240 }
4241 ext4_mb_put_pa(ac, ac->ac_sb, pa);
4242 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004243 if (ac->ac_bitmap_page)
4244 page_cache_release(ac->ac_bitmap_page);
4245 if (ac->ac_buddy_page)
4246 page_cache_release(ac->ac_buddy_page);
4247 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
4248 mutex_unlock(&ac->ac_lg->lg_mutex);
4249 ext4_mb_collect_stats(ac);
4250 return 0;
4251}
4252
4253static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
4254{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004255 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004256 int ret;
4257 int freed = 0;
4258
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004259 trace_ext4_mb_discard_preallocations(sb, needed);
Theodore Ts'o8df96752009-05-01 08:50:38 -04004260 for (i = 0; i < ngroups && needed > 0; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004261 ret = ext4_mb_discard_group_preallocations(sb, i, needed);
4262 freed += ret;
4263 needed -= ret;
4264 }
4265
4266 return freed;
4267}
4268
4269/*
4270 * Main entry point into mballoc to allocate blocks
4271 * it tries to use preallocation first, then falls back
4272 * to usual allocation
4273 */
4274ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
Aditya Kali6c7a1202010-08-05 16:22:24 -04004275 struct ext4_allocation_request *ar, int *errp)
Alex Tomasc9de5602008-01-29 00:19:52 -05004276{
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004277 int freed;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004278 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004279 struct ext4_sb_info *sbi;
4280 struct super_block *sb;
4281 ext4_fsblk_t block = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01004282 unsigned int inquota = 0;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004283 unsigned int reserv_blks = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004284
4285 sb = ar->inode->i_sb;
4286 sbi = EXT4_SB(sb);
4287
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004288 trace_ext4_request_blocks(ar);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004289
Mingming Cao60e58e02009-01-22 18:13:05 +01004290 /*
4291 * For delayed allocation, we could skip the ENOSPC and
4292 * EDQUOT check, as blocks and quotas have been already
4293 * reserved when data being copied into pagecache.
4294 */
Theodore Ts'of2321092011-01-10 12:12:36 -05004295 if (ext4_test_inode_state(ar->inode, EXT4_STATE_DELALLOC_RESERVED))
Mingming Cao60e58e02009-01-22 18:13:05 +01004296 ar->flags |= EXT4_MB_DELALLOC_RESERVED;
4297 else {
4298 /* Without delayed allocation we need to verify
4299 * there is enough free blocks to do block allocation
4300 * and verify allocation doesn't exceed the quota limits.
Mingming Caod2a17632008-07-14 17:52:37 -04004301 */
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004302 while (ar->len && ext4_claim_free_blocks(sbi, ar->len)) {
4303 /* let others to free the space */
4304 yield();
4305 ar->len = ar->len >> 1;
4306 }
4307 if (!ar->len) {
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -04004308 *errp = -ENOSPC;
4309 return 0;
4310 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004311 reserv_blks = ar->len;
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004312 while (ar->len && dquot_alloc_block(ar->inode, ar->len)) {
Mingming Cao60e58e02009-01-22 18:13:05 +01004313 ar->flags |= EXT4_MB_HINT_NOPREALLOC;
4314 ar->len--;
4315 }
4316 inquota = ar->len;
4317 if (ar->len == 0) {
4318 *errp = -EDQUOT;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004319 goto out;
Mingming Cao60e58e02009-01-22 18:13:05 +01004320 }
Mingming Caod2a17632008-07-14 17:52:37 -04004321 }
Mingming Caod2a17632008-07-14 17:52:37 -04004322
Eric Sandeen256bdb42008-02-10 01:13:33 -05004323 ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o833576b2009-07-13 09:45:52 -04004324 if (!ac) {
Shen Feng363d4252008-07-11 19:27:31 -04004325 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004326 *errp = -ENOMEM;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004327 goto out;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004328 }
4329
Eric Sandeen256bdb42008-02-10 01:13:33 -05004330 *errp = ext4_mb_initialize_context(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004331 if (*errp) {
4332 ar->len = 0;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004333 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05004334 }
4335
Eric Sandeen256bdb42008-02-10 01:13:33 -05004336 ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
4337 if (!ext4_mb_use_preallocated(ac)) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004338 ac->ac_op = EXT4_MB_HISTORY_ALLOC;
4339 ext4_mb_normalize_request(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004340repeat:
4341 /* allocate space in core */
Aditya Kali6c7a1202010-08-05 16:22:24 -04004342 *errp = ext4_mb_regular_allocator(ac);
4343 if (*errp)
4344 goto errout;
Alex Tomasc9de5602008-01-29 00:19:52 -05004345
4346 /* as we've just preallocated more space than
4347 * user requested orinally, we store allocated
4348 * space in a special descriptor */
Eric Sandeen256bdb42008-02-10 01:13:33 -05004349 if (ac->ac_status == AC_STATUS_FOUND &&
4350 ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
4351 ext4_mb_new_preallocation(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004352 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05004353 if (likely(ac->ac_status == AC_STATUS_FOUND)) {
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004354 *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_blks);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004355 if (*errp == -EAGAIN) {
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05004356 /*
4357 * drop the reference that we took
4358 * in ext4_mb_use_best_found
4359 */
4360 ext4_mb_release_context(ac);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004361 ac->ac_b_ex.fe_group = 0;
4362 ac->ac_b_ex.fe_start = 0;
4363 ac->ac_b_ex.fe_len = 0;
4364 ac->ac_status = AC_STATUS_CONTINUE;
4365 goto repeat;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004366 } else if (*errp)
4367 errout:
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05004368 ext4_discard_allocated_blocks(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004369 else {
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004370 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4371 ar->len = ac->ac_b_ex.fe_len;
4372 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004373 } else {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004374 freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004375 if (freed)
4376 goto repeat;
4377 *errp = -ENOSPC;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004378 }
4379
4380 if (*errp) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004381 ac->ac_b_ex.fe_len = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004382 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004383 ext4_mb_show_ac(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004384 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05004385 ext4_mb_release_context(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004386out:
4387 if (ac)
4388 kmem_cache_free(ext4_ac_cachep, ac);
Mingming Cao60e58e02009-01-22 18:13:05 +01004389 if (inquota && ar->len < inquota)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004390 dquot_free_block(ar->inode, inquota - ar->len);
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004391 if (!ar->len) {
Theodore Ts'of2321092011-01-10 12:12:36 -05004392 if (!ext4_test_inode_state(ar->inode,
4393 EXT4_STATE_DELALLOC_RESERVED))
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004394 /* release all the reserved blocks if non delalloc */
4395 percpu_counter_sub(&sbi->s_dirtyblocks_counter,
4396 reserv_blks);
4397 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004398
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004399 trace_ext4_allocate_blocks(ar, (unsigned long long)block);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004400
Alex Tomasc9de5602008-01-29 00:19:52 -05004401 return block;
4402}
Alex Tomasc9de5602008-01-29 00:19:52 -05004403
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004404/*
4405 * We can merge two free data extents only if the physical blocks
4406 * are contiguous, AND the extents were freed by the same transaction,
4407 * AND the blocks are associated with the same group.
4408 */
4409static int can_merge(struct ext4_free_data *entry1,
4410 struct ext4_free_data *entry2)
4411{
4412 if ((entry1->t_tid == entry2->t_tid) &&
4413 (entry1->group == entry2->group) &&
4414 ((entry1->start_blk + entry1->count) == entry2->start_blk))
4415 return 1;
4416 return 0;
4417}
4418
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004419static noinline_for_stack int
4420ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004421 struct ext4_free_data *new_entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05004422{
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004423 ext4_group_t group = e4b->bd_group;
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004424 ext4_grpblk_t block;
4425 struct ext4_free_data *entry;
Alex Tomasc9de5602008-01-29 00:19:52 -05004426 struct ext4_group_info *db = e4b->bd_info;
4427 struct super_block *sb = e4b->bd_sb;
4428 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004429 struct rb_node **n = &db->bb_free_root.rb_node, *node;
4430 struct rb_node *parent = NULL, *new_node;
4431
Frank Mayhar03901312009-01-07 00:06:22 -05004432 BUG_ON(!ext4_handle_valid(handle));
Alex Tomasc9de5602008-01-29 00:19:52 -05004433 BUG_ON(e4b->bd_bitmap_page == NULL);
4434 BUG_ON(e4b->bd_buddy_page == NULL);
4435
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004436 new_node = &new_entry->node;
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004437 block = new_entry->start_blk;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004438
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004439 if (!*n) {
4440 /* first free block exent. We need to
4441 protect buddy cache from being freed,
4442 * otherwise we'll refresh it from
4443 * on-disk bitmap and lose not-yet-available
4444 * blocks */
4445 page_cache_get(e4b->bd_buddy_page);
4446 page_cache_get(e4b->bd_bitmap_page);
4447 }
4448 while (*n) {
4449 parent = *n;
4450 entry = rb_entry(parent, struct ext4_free_data, node);
4451 if (block < entry->start_blk)
4452 n = &(*n)->rb_left;
4453 else if (block >= (entry->start_blk + entry->count))
4454 n = &(*n)->rb_right;
4455 else {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004456 ext4_grp_locked_error(sb, group, 0,
4457 ext4_group_first_block_no(sb, group) + block,
4458 "Block already on to-be-freed list");
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004459 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004460 }
4461 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004462
4463 rb_link_node(new_node, parent, n);
4464 rb_insert_color(new_node, &db->bb_free_root);
4465
4466 /* Now try to see the extent can be merged to left and right */
4467 node = rb_prev(new_node);
4468 if (node) {
4469 entry = rb_entry(node, struct ext4_free_data, node);
4470 if (can_merge(entry, new_entry)) {
4471 new_entry->start_blk = entry->start_blk;
4472 new_entry->count += entry->count;
4473 rb_erase(node, &(db->bb_free_root));
4474 spin_lock(&sbi->s_md_lock);
4475 list_del(&entry->list);
4476 spin_unlock(&sbi->s_md_lock);
4477 kmem_cache_free(ext4_free_ext_cachep, entry);
4478 }
4479 }
4480
4481 node = rb_next(new_node);
4482 if (node) {
4483 entry = rb_entry(node, struct ext4_free_data, node);
4484 if (can_merge(new_entry, entry)) {
4485 new_entry->count += entry->count;
4486 rb_erase(node, &(db->bb_free_root));
4487 spin_lock(&sbi->s_md_lock);
4488 list_del(&entry->list);
4489 spin_unlock(&sbi->s_md_lock);
4490 kmem_cache_free(ext4_free_ext_cachep, entry);
4491 }
4492 }
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04004493 /* Add the extent to transaction's private list */
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004494 spin_lock(&sbi->s_md_lock);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04004495 list_add(&new_entry->list, &handle->h_transaction->t_private_list);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004496 spin_unlock(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004497 return 0;
4498}
4499
Theodore Ts'o44338712009-11-22 07:44:56 -05004500/**
4501 * ext4_free_blocks() -- Free given blocks and update quota
4502 * @handle: handle for this transaction
4503 * @inode: inode
4504 * @block: start physical block to free
4505 * @count: number of blocks to count
4506 * @metadata: Are these metadata blocks
Alex Tomasc9de5602008-01-29 00:19:52 -05004507 */
Theodore Ts'o44338712009-11-22 07:44:56 -05004508void ext4_free_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'oe6362602009-11-23 07:17:05 -05004509 struct buffer_head *bh, ext4_fsblk_t block,
4510 unsigned long count, int flags)
Alex Tomasc9de5602008-01-29 00:19:52 -05004511{
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05004512 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004513 struct super_block *sb = inode->i_sb;
Alex Tomasc9de5602008-01-29 00:19:52 -05004514 struct ext4_group_desc *gdp;
Theodore Ts'o44338712009-11-22 07:44:56 -05004515 unsigned long freed = 0;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004516 unsigned int overflow;
Alex Tomasc9de5602008-01-29 00:19:52 -05004517 ext4_grpblk_t bit;
4518 struct buffer_head *gd_bh;
4519 ext4_group_t block_group;
4520 struct ext4_sb_info *sbi;
4521 struct ext4_buddy e4b;
4522 int err = 0;
4523 int ret;
4524
Theodore Ts'oe6362602009-11-23 07:17:05 -05004525 if (bh) {
4526 if (block)
4527 BUG_ON(block != bh->b_blocknr);
4528 else
4529 block = bh->b_blocknr;
4530 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004531
Alex Tomasc9de5602008-01-29 00:19:52 -05004532 sbi = EXT4_SB(sb);
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004533 if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
4534 !ext4_data_block_valid(sbi, block, count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004535 ext4_error(sb, "Freeing blocks not in datazone - "
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004536 "block = %llu, count = %lu", block, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004537 goto error_return;
4538 }
4539
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004540 ext4_debug("freeing block %llu\n", block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05004541 trace_ext4_free_blocks(inode, block, count, flags);
4542
4543 if (flags & EXT4_FREE_BLOCKS_FORGET) {
4544 struct buffer_head *tbh = bh;
4545 int i;
4546
4547 BUG_ON(bh && (count > 1));
4548
4549 for (i = 0; i < count; i++) {
4550 if (!bh)
4551 tbh = sb_find_get_block(inode->i_sb,
4552 block + i);
Namhyung Kim87783692010-10-27 21:30:11 -04004553 if (unlikely(!tbh))
4554 continue;
Theodore Ts'o60e66792010-05-17 07:00:00 -04004555 ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
Theodore Ts'oe6362602009-11-23 07:17:05 -05004556 inode, tbh, block + i);
4557 }
4558 }
4559
Theodore Ts'o60e66792010-05-17 07:00:00 -04004560 /*
Theodore Ts'oe6362602009-11-23 07:17:05 -05004561 * We need to make sure we don't reuse the freed block until
4562 * after the transaction is committed, which we can do by
4563 * treating the block as metadata, below. We make an
4564 * exception if the inode is to be written in writeback mode
4565 * since writeback mode has weak data consistency guarantees.
4566 */
4567 if (!ext4_should_writeback_data(inode))
4568 flags |= EXT4_FREE_BLOCKS_METADATA;
Alex Tomasc9de5602008-01-29 00:19:52 -05004569
Alex Tomasc9de5602008-01-29 00:19:52 -05004570do_more:
4571 overflow = 0;
4572 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
4573
4574 /*
4575 * Check to see if we are freeing blocks across a group
4576 * boundary.
4577 */
4578 if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4579 overflow = bit + count - EXT4_BLOCKS_PER_GROUP(sb);
4580 count -= overflow;
4581 }
Theodore Ts'o574ca172008-07-11 19:27:31 -04004582 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004583 if (!bitmap_bh) {
4584 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004585 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004586 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004587 gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004588 if (!gdp) {
4589 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004590 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004591 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004592
4593 if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
4594 in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
4595 in_range(block, ext4_inode_table(sb, gdp),
4596 EXT4_SB(sb)->s_itb_per_group) ||
4597 in_range(block + count - 1, ext4_inode_table(sb, gdp),
4598 EXT4_SB(sb)->s_itb_per_group)) {
4599
Eric Sandeen12062dd2010-02-15 14:19:27 -05004600 ext4_error(sb, "Freeing blocks in system zone - "
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004601 "Block = %llu, count = %lu", block, count);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004602 /* err = 0. ext4_std_error should be a no op */
4603 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004604 }
4605
4606 BUFFER_TRACE(bitmap_bh, "getting write access");
4607 err = ext4_journal_get_write_access(handle, bitmap_bh);
4608 if (err)
4609 goto error_return;
4610
4611 /*
4612 * We are about to modify some metadata. Call the journal APIs
4613 * to unshare ->b_data if a currently-committing transaction is
4614 * using it
4615 */
4616 BUFFER_TRACE(gd_bh, "get_write_access");
4617 err = ext4_journal_get_write_access(handle, gd_bh);
4618 if (err)
4619 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004620#ifdef AGGRESSIVE_CHECK
4621 {
4622 int i;
4623 for (i = 0; i < count; i++)
4624 BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
4625 }
4626#endif
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004627 trace_ext4_mballoc_free(sb, inode, block_group, bit, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004628
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05004629 err = ext4_mb_load_buddy(sb, block_group, &e4b);
4630 if (err)
4631 goto error_return;
Theodore Ts'oe6362602009-11-23 07:17:05 -05004632
4633 if ((flags & EXT4_FREE_BLOCKS_METADATA) && ext4_handle_valid(handle)) {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004634 struct ext4_free_data *new_entry;
4635 /*
4636 * blocks being freed are metadata. these blocks shouldn't
4637 * be used until this transaction is committed
4638 */
Theodore Ts'ob72143a2010-12-20 07:26:59 -05004639 new_entry = kmem_cache_alloc(ext4_free_ext_cachep, GFP_NOFS);
4640 if (!new_entry) {
4641 err = -ENOMEM;
4642 goto error_return;
4643 }
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004644 new_entry->start_blk = bit;
4645 new_entry->group = block_group;
4646 new_entry->count = count;
4647 new_entry->t_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004648
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004649 ext4_lock_group(sb, block_group);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004650 mb_clear_bits(bitmap_bh->b_data, bit, count);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004651 ext4_mb_free_metadata(handle, &e4b, new_entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05004652 } else {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004653 /* need to update group_info->bb_free and bitmap
4654 * with group lock held. generate_buddy look at
4655 * them with group lock_held
4656 */
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004657 ext4_lock_group(sb, block_group);
4658 mb_clear_bits(bitmap_bh->b_data, bit, count);
Shen Feng7e5a8cd2008-07-13 21:03:31 -04004659 mb_free_blocks(inode, &e4b, bit, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004660 }
4661
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05004662 ret = ext4_free_blks_count(sb, gdp) + count;
4663 ext4_free_blks_set(sb, gdp, ret);
Alex Tomasc9de5602008-01-29 00:19:52 -05004664 gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004665 ext4_unlock_group(sb, block_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004666 percpu_counter_add(&sbi->s_freeblocks_counter, count);
4667
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004668 if (sbi->s_log_groups_per_flex) {
4669 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -05004670 atomic_add(count, &sbi->s_flex_groups[flex_group].free_blocks);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004671 }
4672
Jing Zhange39e07f2010-05-14 00:00:00 -04004673 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05004674
Theodore Ts'o44338712009-11-22 07:44:56 -05004675 freed += count;
Alex Tomasc9de5602008-01-29 00:19:52 -05004676
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004677 /* We dirtied the bitmap block */
4678 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
4679 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
4680
Alex Tomasc9de5602008-01-29 00:19:52 -05004681 /* And the group descriptor block */
4682 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
Frank Mayhar03901312009-01-07 00:06:22 -05004683 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05004684 if (!err)
4685 err = ret;
4686
4687 if (overflow && !err) {
4688 block += count;
4689 count = overflow;
4690 put_bh(bitmap_bh);
4691 goto do_more;
4692 }
Theodore Ts'oa0375152010-06-11 23:14:04 -04004693 ext4_mark_super_dirty(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004694error_return:
Theodore Ts'o44338712009-11-22 07:44:56 -05004695 if (freed)
Christoph Hellwig5dd40562010-03-03 09:05:00 -05004696 dquot_free_block(inode, freed);
Alex Tomasc9de5602008-01-29 00:19:52 -05004697 brelse(bitmap_bh);
4698 ext4_std_error(sb, err);
Alex Tomasc9de5602008-01-29 00:19:52 -05004699 return;
4700}
Lukas Czerner7360d172010-10-27 21:30:12 -04004701
4702/**
Amir Goldstein2846e822011-05-09 10:46:41 -04004703 * ext4_add_groupblocks() -- Add given blocks to an existing group
4704 * @handle: handle to this transaction
4705 * @sb: super block
4706 * @block: start physcial block to add to the block group
4707 * @count: number of blocks to free
4708 *
4709 * This marks the blocks as free in the bitmap. We ask the
4710 * mballoc to reload the buddy after this by setting group
4711 * EXT4_GROUP_INFO_NEED_INIT_BIT flag
4712 */
4713void ext4_add_groupblocks(handle_t *handle, struct super_block *sb,
4714 ext4_fsblk_t block, unsigned long count)
4715{
4716 struct buffer_head *bitmap_bh = NULL;
4717 struct buffer_head *gd_bh;
4718 ext4_group_t block_group;
4719 ext4_grpblk_t bit;
4720 unsigned int i;
4721 struct ext4_group_desc *desc;
4722 struct ext4_sb_info *sbi = EXT4_SB(sb);
4723 int err = 0, ret, blk_free_count;
4724 ext4_grpblk_t blocks_freed;
4725 struct ext4_group_info *grp;
4726
4727 ext4_debug("Adding block(s) %llu-%llu\n", block, block + count - 1);
4728
4729 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
4730 grp = ext4_get_group_info(sb, block_group);
4731 /*
4732 * Check to see if we are freeing blocks across a group
4733 * boundary.
4734 */
4735 if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4736 goto error_return;
4737 }
4738 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
4739 if (!bitmap_bh)
4740 goto error_return;
4741 desc = ext4_get_group_desc(sb, block_group, &gd_bh);
4742 if (!desc)
4743 goto error_return;
4744
4745 if (in_range(ext4_block_bitmap(sb, desc), block, count) ||
4746 in_range(ext4_inode_bitmap(sb, desc), block, count) ||
4747 in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) ||
4748 in_range(block + count - 1, ext4_inode_table(sb, desc),
4749 sbi->s_itb_per_group)) {
4750 ext4_error(sb, "Adding blocks in system zones - "
4751 "Block = %llu, count = %lu",
4752 block, count);
4753 goto error_return;
4754 }
4755
4756 /*
4757 * We are about to add blocks to the bitmap,
4758 * so we need undo access.
4759 */
4760 BUFFER_TRACE(bitmap_bh, "getting undo access");
4761 err = ext4_journal_get_undo_access(handle, bitmap_bh);
4762 if (err)
4763 goto error_return;
4764
4765 /*
4766 * We are about to modify some metadata. Call the journal APIs
4767 * to unshare ->b_data if a currently-committing transaction is
4768 * using it
4769 */
4770 BUFFER_TRACE(gd_bh, "get_write_access");
4771 err = ext4_journal_get_write_access(handle, gd_bh);
4772 if (err)
4773 goto error_return;
4774 /*
4775 * make sure we don't allow a parallel init on other groups in the
4776 * same buddy cache
4777 */
4778 down_write(&grp->alloc_sem);
4779 for (i = 0, blocks_freed = 0; i < count; i++) {
4780 BUFFER_TRACE(bitmap_bh, "clear bit");
4781 if (!ext4_clear_bit_atomic(ext4_group_lock_ptr(sb, block_group),
4782 bit + i, bitmap_bh->b_data)) {
4783 ext4_error(sb, "bit already cleared for block %llu",
4784 (ext4_fsblk_t)(block + i));
4785 BUFFER_TRACE(bitmap_bh, "bit already cleared");
4786 } else {
4787 blocks_freed++;
4788 }
4789 }
4790 ext4_lock_group(sb, block_group);
4791 blk_free_count = blocks_freed + ext4_free_blks_count(sb, desc);
4792 ext4_free_blks_set(sb, desc, blk_free_count);
4793 desc->bg_checksum = ext4_group_desc_csum(sbi, block_group, desc);
4794 ext4_unlock_group(sb, block_group);
4795 percpu_counter_add(&sbi->s_freeblocks_counter, blocks_freed);
4796
4797 if (sbi->s_log_groups_per_flex) {
4798 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
4799 atomic_add(blocks_freed,
4800 &sbi->s_flex_groups[flex_group].free_blocks);
4801 }
4802 /*
4803 * request to reload the buddy with the
4804 * new bitmap information
4805 */
4806 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
4807 grp->bb_free += blocks_freed;
4808 up_write(&grp->alloc_sem);
4809
4810 /* We dirtied the bitmap block */
4811 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
4812 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
4813
4814 /* And the group descriptor block */
4815 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
4816 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
4817 if (!err)
4818 err = ret;
4819
4820error_return:
4821 brelse(bitmap_bh);
4822 ext4_std_error(sb, err);
4823 return;
4824}
4825
4826/**
Lukas Czerner7360d172010-10-27 21:30:12 -04004827 * ext4_trim_extent -- function to TRIM one single free extent in the group
4828 * @sb: super block for the file system
4829 * @start: starting block of the free extent in the alloc. group
4830 * @count: number of blocks to TRIM
4831 * @group: alloc. group we are working with
4832 * @e4b: ext4 buddy for the group
4833 *
4834 * Trim "count" blocks starting at "start" in the "group". To assure that no
4835 * one will allocate those blocks, mark it as used in buddy bitmap. This must
4836 * be called with under the group lock.
4837 */
Theodore Ts'od9f34502011-04-30 13:47:24 -04004838static void ext4_trim_extent(struct super_block *sb, int start, int count,
4839 ext4_group_t group, struct ext4_buddy *e4b)
Lukas Czerner7360d172010-10-27 21:30:12 -04004840{
4841 struct ext4_free_extent ex;
Lukas Czerner7360d172010-10-27 21:30:12 -04004842
4843 assert_spin_locked(ext4_group_lock_ptr(sb, group));
4844
4845 ex.fe_start = start;
4846 ex.fe_group = group;
4847 ex.fe_len = count;
4848
4849 /*
4850 * Mark blocks used, so no one can reuse them while
4851 * being trimmed.
4852 */
4853 mb_mark_used(e4b, &ex);
4854 ext4_unlock_group(sb, group);
Theodore Ts'od9f34502011-04-30 13:47:24 -04004855 ext4_issue_discard(sb, group, start, count);
Lukas Czerner7360d172010-10-27 21:30:12 -04004856 ext4_lock_group(sb, group);
4857 mb_free_blocks(NULL, e4b, start, ex.fe_len);
Lukas Czerner7360d172010-10-27 21:30:12 -04004858}
4859
4860/**
4861 * ext4_trim_all_free -- function to trim all free space in alloc. group
4862 * @sb: super block for file system
4863 * @e4b: ext4 buddy
4864 * @start: first group block to examine
4865 * @max: last group block to examine
4866 * @minblocks: minimum extent block count
4867 *
4868 * ext4_trim_all_free walks through group's buddy bitmap searching for free
4869 * extents. When the free block is found, ext4_trim_extent is called to TRIM
4870 * the extent.
4871 *
4872 *
4873 * ext4_trim_all_free walks through group's block bitmap searching for free
4874 * extents. When the free extent is found, mark it as used in group buddy
4875 * bitmap. Then issue a TRIM command on this extent and free the extent in
4876 * the group buddy bitmap. This is done until whole group is scanned.
4877 */
Lukas Czerner0b75a842011-02-23 12:22:49 -05004878static ext4_grpblk_t
4879ext4_trim_all_free(struct super_block *sb, struct ext4_buddy *e4b,
Lukas Czerner7360d172010-10-27 21:30:12 -04004880 ext4_grpblk_t start, ext4_grpblk_t max, ext4_grpblk_t minblocks)
4881{
4882 void *bitmap;
4883 ext4_grpblk_t next, count = 0;
4884 ext4_group_t group;
Lukas Czerner7360d172010-10-27 21:30:12 -04004885
4886 BUG_ON(e4b == NULL);
4887
4888 bitmap = e4b->bd_bitmap;
4889 group = e4b->bd_group;
4890 start = (e4b->bd_info->bb_first_free > start) ?
4891 e4b->bd_info->bb_first_free : start;
4892 ext4_lock_group(sb, group);
4893
4894 while (start < max) {
4895 start = mb_find_next_zero_bit(bitmap, max, start);
4896 if (start >= max)
4897 break;
4898 next = mb_find_next_bit(bitmap, max, start);
4899
4900 if ((next - start) >= minblocks) {
Theodore Ts'od9f34502011-04-30 13:47:24 -04004901 ext4_trim_extent(sb, start,
4902 next - start, group, e4b);
Lukas Czerner7360d172010-10-27 21:30:12 -04004903 count += next - start;
4904 }
4905 start = next + 1;
4906
4907 if (fatal_signal_pending(current)) {
4908 count = -ERESTARTSYS;
4909 break;
4910 }
4911
4912 if (need_resched()) {
4913 ext4_unlock_group(sb, group);
4914 cond_resched();
4915 ext4_lock_group(sb, group);
4916 }
4917
4918 if ((e4b->bd_info->bb_free - count) < minblocks)
4919 break;
4920 }
4921 ext4_unlock_group(sb, group);
4922
4923 ext4_debug("trimmed %d blocks in the group %d\n",
4924 count, group);
4925
Lukas Czerner7360d172010-10-27 21:30:12 -04004926 return count;
4927}
4928
4929/**
4930 * ext4_trim_fs() -- trim ioctl handle function
4931 * @sb: superblock for filesystem
4932 * @range: fstrim_range structure
4933 *
4934 * start: First Byte to trim
4935 * len: number of Bytes to trim from start
4936 * minlen: minimum extent length in Bytes
4937 * ext4_trim_fs goes through all allocation groups containing Bytes from
4938 * start to start+len. For each such a group ext4_trim_all_free function
4939 * is invoked to trim all free space.
4940 */
4941int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range)
4942{
4943 struct ext4_buddy e4b;
4944 ext4_group_t first_group, last_group;
4945 ext4_group_t group, ngroups = ext4_get_groups_count(sb);
4946 ext4_grpblk_t cnt = 0, first_block, last_block;
4947 uint64_t start, len, minlen, trimmed;
Jan Kara0f0a25b2011-01-11 15:16:31 -05004948 ext4_fsblk_t first_data_blk =
4949 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
Lukas Czerner7360d172010-10-27 21:30:12 -04004950 int ret = 0;
4951
4952 start = range->start >> sb->s_blocksize_bits;
4953 len = range->len >> sb->s_blocksize_bits;
4954 minlen = range->minlen >> sb->s_blocksize_bits;
4955 trimmed = 0;
4956
4957 if (unlikely(minlen > EXT4_BLOCKS_PER_GROUP(sb)))
4958 return -EINVAL;
Jan Kara0f0a25b2011-01-11 15:16:31 -05004959 if (start < first_data_blk) {
4960 len -= first_data_blk - start;
4961 start = first_data_blk;
4962 }
Lukas Czerner7360d172010-10-27 21:30:12 -04004963
4964 /* Determine first and last group to examine based on start and len */
4965 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) start,
4966 &first_group, &first_block);
4967 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) (start + len),
4968 &last_group, &last_block);
4969 last_group = (last_group > ngroups - 1) ? ngroups - 1 : last_group;
4970 last_block = EXT4_BLOCKS_PER_GROUP(sb);
4971
4972 if (first_group > last_group)
4973 return -EINVAL;
4974
4975 for (group = first_group; group <= last_group; group++) {
4976 ret = ext4_mb_load_buddy(sb, group, &e4b);
4977 if (ret) {
4978 ext4_error(sb, "Error in loading buddy "
4979 "information for %u", group);
4980 break;
4981 }
4982
Tao Ma0ba08512011-03-23 15:48:11 -04004983 /*
4984 * For all the groups except the last one, last block will
4985 * always be EXT4_BLOCKS_PER_GROUP(sb), so we only need to
4986 * change it for the last group in which case start +
4987 * len < EXT4_BLOCKS_PER_GROUP(sb).
4988 */
4989 if (first_block + len < EXT4_BLOCKS_PER_GROUP(sb))
Jan Karaca6e9092011-01-10 12:30:39 -05004990 last_block = first_block + len;
Tao Ma0ba08512011-03-23 15:48:11 -04004991 len -= last_block - first_block;
Lukas Czerner7360d172010-10-27 21:30:12 -04004992
4993 if (e4b.bd_info->bb_free >= minlen) {
4994 cnt = ext4_trim_all_free(sb, &e4b, first_block,
4995 last_block, minlen);
4996 if (cnt < 0) {
4997 ret = cnt;
4998 ext4_mb_unload_buddy(&e4b);
4999 break;
5000 }
5001 }
5002 ext4_mb_unload_buddy(&e4b);
5003 trimmed += cnt;
5004 first_block = 0;
5005 }
5006 range->len = trimmed * sb->s_blocksize;
5007
5008 return ret;
5009}