blob: 0d42f635dda90502b522b9e0eaa6701f27da8ada [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
Bobi Jam18aadd42012-02-20 17:53:02 -050024#include "ext4_jbd2.h"
Mingming Cao8f6e39a2008-04-29 22:01:31 -040025#include "mballoc.h"
Theodore Ts'o28623c22012-09-05 01:31:50 -040026#include <linux/log2.h>
Theodore Ts'oa0b30c12013-02-09 16:28:20 -050027#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040029#include <trace/events/ext4.h>
30
Theodore Ts'oa0b30c12013-02-09 16:28:20 -050031#ifdef CONFIG_EXT4_DEBUG
32ushort ext4_mballoc_debug __read_mostly;
33
34module_param_named(mballoc_debug, ext4_mballoc_debug, ushort, 0644);
35MODULE_PARM_DESC(mballoc_debug, "Debugging level for ext4's mballoc");
36#endif
37
Alex Tomasc9de5602008-01-29 00:19:52 -050038/*
39 * MUSTDO:
40 * - test ext4_ext_search_left() and ext4_ext_search_right()
41 * - search for metadata in few groups
42 *
43 * TODO v4:
44 * - normalization should take into account whether file is still open
45 * - discard preallocations if no free space left (policy?)
46 * - don't normalize tails
47 * - quota
48 * - reservation for superuser
49 *
50 * TODO v3:
51 * - bitmap read-ahead (proposed by Oleg Drokin aka green)
52 * - track min/max extents in each group for better group selection
53 * - mb_mark_used() may allocate chunk right after splitting buddy
54 * - tree of groups sorted by number of free blocks
55 * - error handling
56 */
57
58/*
59 * The allocation request involve request for multiple number of blocks
60 * near to the goal(block) value specified.
61 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040062 * During initialization phase of the allocator we decide to use the
63 * group preallocation or inode preallocation depending on the size of
64 * the file. The size of the file could be the resulting file size we
65 * would have after allocation, or the current file size, which ever
66 * is larger. If the size is less than sbi->s_mb_stream_request we
67 * select to use the group preallocation. The default value of
68 * s_mb_stream_request is 16 blocks. This can also be tuned via
69 * /sys/fs/ext4/<partition>/mb_stream_req. The value is represented in
70 * terms of number of blocks.
Alex Tomasc9de5602008-01-29 00:19:52 -050071 *
72 * The main motivation for having small file use group preallocation is to
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040073 * ensure that we have small files closer together on the disk.
Alex Tomasc9de5602008-01-29 00:19:52 -050074 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040075 * First stage the allocator looks at the inode prealloc list,
76 * ext4_inode_info->i_prealloc_list, which contains list of prealloc
77 * spaces for this particular inode. The inode prealloc space is
78 * represented as:
Alex Tomasc9de5602008-01-29 00:19:52 -050079 *
80 * pa_lstart -> the logical start block for this prealloc space
81 * pa_pstart -> the physical start block for this prealloc space
Theodore Ts'o53accfa2011-09-09 18:48:51 -040082 * pa_len -> length for this prealloc space (in clusters)
83 * pa_free -> free space available in this prealloc space (in clusters)
Alex Tomasc9de5602008-01-29 00:19:52 -050084 *
85 * The inode preallocation space is used looking at the _logical_ start
86 * block. If only the logical file block falls within the range of prealloc
Tao Macaaf7a22011-07-11 18:42:42 -040087 * space we will consume the particular prealloc space. This makes sure that
88 * we have contiguous physical blocks representing the file blocks
Alex Tomasc9de5602008-01-29 00:19:52 -050089 *
90 * The important thing to be noted in case of inode prealloc space is that
91 * we don't modify the values associated to inode prealloc space except
92 * pa_free.
93 *
94 * If we are not able to find blocks in the inode prealloc space and if we
95 * have the group allocation flag set then we look at the locality group
Tao Macaaf7a22011-07-11 18:42:42 -040096 * prealloc space. These are per CPU prealloc list represented as
Alex Tomasc9de5602008-01-29 00:19:52 -050097 *
98 * ext4_sb_info.s_locality_groups[smp_processor_id()]
99 *
100 * The reason for having a per cpu locality group is to reduce the contention
101 * between CPUs. It is possible to get scheduled at this point.
102 *
103 * The locality group prealloc space is used looking at whether we have
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300104 * enough free space (pa_free) within the prealloc space.
Alex Tomasc9de5602008-01-29 00:19:52 -0500105 *
106 * If we can't allocate blocks via inode prealloc or/and locality group
107 * prealloc then we look at the buddy cache. The buddy cache is represented
108 * by ext4_sb_info.s_buddy_cache (struct inode) whose file offset gets
109 * mapped to the buddy and bitmap information regarding different
110 * groups. The buddy information is attached to buddy cache inode so that
111 * we can access them through the page cache. The information regarding
112 * each group is loaded via ext4_mb_load_buddy. The information involve
113 * block bitmap and buddy information. The information are stored in the
114 * inode as:
115 *
116 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500117 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500118 *
119 *
120 * one block each for bitmap and buddy information. So for each group we
121 * take up 2 blocks. A page can contain blocks_per_page (PAGE_CACHE_SIZE /
122 * blocksize) blocks. So it can have information regarding groups_per_page
123 * which is blocks_per_page/2
124 *
125 * The buddy cache inode is not stored on disk. The inode is thrown
126 * away when the filesystem is unmounted.
127 *
128 * We look for count number of blocks in the buddy cache. If we were able
129 * to locate that many free blocks we return with additional information
130 * regarding rest of the contiguous physical block available
131 *
132 * Before allocating blocks via buddy cache we normalize the request
133 * blocks. This ensure we ask for more blocks that we needed. The extra
134 * blocks that we get after allocation is added to the respective prealloc
135 * list. In case of inode preallocation we follow a list of heuristics
136 * based on file size. This can be found in ext4_mb_normalize_request. If
137 * we are doing a group prealloc we try to normalize the request to
Theodore Ts'o27baebb2011-09-09 19:02:51 -0400138 * sbi->s_mb_group_prealloc. The default value of s_mb_group_prealloc is
139 * dependent on the cluster size; for non-bigalloc file systems, it is
Alex Tomasc9de5602008-01-29 00:19:52 -0500140 * 512 blocks. This can be tuned via
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400141 * /sys/fs/ext4/<partition>/mb_group_prealloc. The value is represented in
Alex Tomasc9de5602008-01-29 00:19:52 -0500142 * terms of number of blocks. If we have mounted the file system with -O
143 * stripe=<value> option the group prealloc request is normalized to the
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400144 * the smallest multiple of the stripe value (sbi->s_stripe) which is
145 * greater than the default mb_group_prealloc.
Alex Tomasc9de5602008-01-29 00:19:52 -0500146 *
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400147 * The regular allocator (using the buddy cache) supports a few tunables.
Alex Tomasc9de5602008-01-29 00:19:52 -0500148 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400149 * /sys/fs/ext4/<partition>/mb_min_to_scan
150 * /sys/fs/ext4/<partition>/mb_max_to_scan
151 * /sys/fs/ext4/<partition>/mb_order2_req
Alex Tomasc9de5602008-01-29 00:19:52 -0500152 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400153 * The regular allocator uses buddy scan only if the request len is power of
Alex Tomasc9de5602008-01-29 00:19:52 -0500154 * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The
155 * value of s_mb_order2_reqs can be tuned via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400156 * /sys/fs/ext4/<partition>/mb_order2_req. If the request len is equal to
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200157 * stripe size (sbi->s_stripe), we try to search for contiguous block in
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400158 * stripe size. This should result in better allocation on RAID setups. If
159 * not, we search in the specific group using bitmap for best extents. The
160 * tunable min_to_scan and max_to_scan control the behaviour here.
Alex Tomasc9de5602008-01-29 00:19:52 -0500161 * min_to_scan indicate how long the mballoc __must__ look for a best
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400162 * extent and max_to_scan indicates how long the mballoc __can__ look for a
Alex Tomasc9de5602008-01-29 00:19:52 -0500163 * best extent in the found extents. Searching for the blocks starts with
164 * the group specified as the goal value in allocation context via
165 * ac_g_ex. Each group is first checked based on the criteria whether it
Tao Macaaf7a22011-07-11 18:42:42 -0400166 * can be used for allocation. ext4_mb_good_group explains how the groups are
Alex Tomasc9de5602008-01-29 00:19:52 -0500167 * checked.
168 *
169 * Both the prealloc space are getting populated as above. So for the first
170 * request we will hit the buddy cache which will result in this prealloc
171 * space getting filled. The prealloc space is then later used for the
172 * subsequent request.
173 */
174
175/*
176 * mballoc operates on the following data:
177 * - on-disk bitmap
178 * - in-core buddy (actually includes buddy and bitmap)
179 * - preallocation descriptors (PAs)
180 *
181 * there are two types of preallocations:
182 * - inode
183 * assiged to specific inode and can be used for this inode only.
184 * it describes part of inode's space preallocated to specific
185 * physical blocks. any block from that preallocated can be used
186 * independent. the descriptor just tracks number of blocks left
187 * unused. so, before taking some block from descriptor, one must
188 * make sure corresponded logical block isn't allocated yet. this
189 * also means that freeing any block within descriptor's range
190 * must discard all preallocated blocks.
191 * - locality group
192 * assigned to specific locality group which does not translate to
193 * permanent set of inodes: inode can join and leave group. space
194 * from this type of preallocation can be used for any inode. thus
195 * it's consumed from the beginning to the end.
196 *
197 * relation between them can be expressed as:
198 * in-core buddy = on-disk bitmap + preallocation descriptors
199 *
200 * this mean blocks mballoc considers used are:
201 * - allocated blocks (persistent)
202 * - preallocated blocks (non-persistent)
203 *
204 * consistency in mballoc world means that at any time a block is either
205 * free or used in ALL structures. notice: "any time" should not be read
206 * literally -- time is discrete and delimited by locks.
207 *
208 * to keep it simple, we don't use block numbers, instead we count number of
209 * blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA.
210 *
211 * all operations can be expressed as:
212 * - init buddy: buddy = on-disk + PAs
213 * - new PA: buddy += N; PA = N
214 * - use inode PA: on-disk += N; PA -= N
215 * - discard inode PA buddy -= on-disk - PA; PA = 0
216 * - use locality group PA on-disk += N; PA -= N
217 * - discard locality group PA buddy -= PA; PA = 0
218 * note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap
219 * is used in real operation because we can't know actual used
220 * bits from PA, only from on-disk bitmap
221 *
222 * if we follow this strict logic, then all operations above should be atomic.
223 * given some of them can block, we'd have to use something like semaphores
224 * killing performance on high-end SMP hardware. let's try to relax it using
225 * the following knowledge:
226 * 1) if buddy is referenced, it's already initialized
227 * 2) while block is used in buddy and the buddy is referenced,
228 * nobody can re-allocate that block
229 * 3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has
230 * bit set and PA claims same block, it's OK. IOW, one can set bit in
231 * on-disk bitmap if buddy has same bit set or/and PA covers corresponded
232 * block
233 *
234 * so, now we're building a concurrency table:
235 * - init buddy vs.
236 * - new PA
237 * blocks for PA are allocated in the buddy, buddy must be referenced
238 * until PA is linked to allocation group to avoid concurrent buddy init
239 * - use inode PA
240 * we need to make sure that either on-disk bitmap or PA has uptodate data
241 * given (3) we care that PA-=N operation doesn't interfere with init
242 * - discard inode PA
243 * the simplest way would be to have buddy initialized by the discard
244 * - use locality group PA
245 * again PA-=N must be serialized with init
246 * - discard locality group PA
247 * the simplest way would be to have buddy initialized by the discard
248 * - new PA vs.
249 * - use inode PA
250 * i_data_sem serializes them
251 * - discard inode PA
252 * discard process must wait until PA isn't used by another process
253 * - use locality group PA
254 * some mutex should serialize them
255 * - discard locality group PA
256 * discard process must wait until PA isn't used by another process
257 * - use inode PA
258 * - use inode PA
259 * i_data_sem or another mutex should serializes them
260 * - discard inode PA
261 * discard process must wait until PA isn't used by another process
262 * - use locality group PA
263 * nothing wrong here -- they're different PAs covering different blocks
264 * - discard locality group PA
265 * discard process must wait until PA isn't used by another process
266 *
267 * now we're ready to make few consequences:
268 * - PA is referenced and while it is no discard is possible
269 * - PA is referenced until block isn't marked in on-disk bitmap
270 * - PA changes only after on-disk bitmap
271 * - discard must not compete with init. either init is done before
272 * any discard or they're serialized somehow
273 * - buddy init as sum of on-disk bitmap and PAs is done atomically
274 *
275 * a special case when we've used PA to emptiness. no need to modify buddy
276 * in this case, but we should care about concurrent init
277 *
278 */
279
280 /*
281 * Logic in few words:
282 *
283 * - allocation:
284 * load group
285 * find blocks
286 * mark bits in on-disk bitmap
287 * release group
288 *
289 * - use preallocation:
290 * find proper PA (per-inode or group)
291 * load group
292 * mark bits in on-disk bitmap
293 * release group
294 * release PA
295 *
296 * - free:
297 * load group
298 * mark bits in on-disk bitmap
299 * release group
300 *
301 * - discard preallocations in group:
302 * mark PAs deleted
303 * move them onto local list
304 * load on-disk bitmap
305 * load group
306 * remove PA from object (inode or locality group)
307 * mark free blocks in-core
308 *
309 * - discard inode's preallocations:
310 */
311
312/*
313 * Locking rules
314 *
315 * Locks:
316 * - bitlock on a group (group)
317 * - object (inode/locality) (object)
318 * - per-pa lock (pa)
319 *
320 * Paths:
321 * - new pa
322 * object
323 * group
324 *
325 * - find and use pa:
326 * pa
327 *
328 * - release consumed pa:
329 * pa
330 * group
331 * object
332 *
333 * - generate in-core bitmap:
334 * group
335 * pa
336 *
337 * - discard all for given object (inode, locality group):
338 * object
339 * pa
340 * group
341 *
342 * - discard all for given group:
343 * group
344 * pa
345 * group
346 * object
347 *
348 */
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500349static struct kmem_cache *ext4_pspace_cachep;
350static struct kmem_cache *ext4_ac_cachep;
Bobi Jam18aadd42012-02-20 17:53:02 -0500351static struct kmem_cache *ext4_free_data_cachep;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400352
353/* We create slab caches for groupinfo data structures based on the
354 * superblock block size. There will be one per mounted filesystem for
355 * each unique s_blocksize_bits */
Eric Sandeen2892c152011-02-12 08:12:18 -0500356#define NR_GRPINFO_CACHES 8
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400357static struct kmem_cache *ext4_groupinfo_caches[NR_GRPINFO_CACHES];
358
Eric Sandeen2892c152011-02-12 08:12:18 -0500359static const char *ext4_groupinfo_slab_names[NR_GRPINFO_CACHES] = {
360 "ext4_groupinfo_1k", "ext4_groupinfo_2k", "ext4_groupinfo_4k",
361 "ext4_groupinfo_8k", "ext4_groupinfo_16k", "ext4_groupinfo_32k",
362 "ext4_groupinfo_64k", "ext4_groupinfo_128k"
363};
364
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500365static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
366 ext4_group_t group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500367static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
368 ext4_group_t group);
Bobi Jam18aadd42012-02-20 17:53:02 -0500369static void ext4_free_data_callback(struct super_block *sb,
370 struct ext4_journal_cb_entry *jce, int rc);
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500371
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500372static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
373{
Alex Tomasc9de5602008-01-29 00:19:52 -0500374#if BITS_PER_LONG == 64
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500375 *bit += ((unsigned long) addr & 7UL) << 3;
376 addr = (void *) ((unsigned long) addr & ~7UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500377#elif BITS_PER_LONG == 32
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500378 *bit += ((unsigned long) addr & 3UL) << 3;
379 addr = (void *) ((unsigned long) addr & ~3UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500380#else
381#error "how many bits you are?!"
382#endif
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500383 return addr;
384}
Alex Tomasc9de5602008-01-29 00:19:52 -0500385
386static inline int mb_test_bit(int bit, void *addr)
387{
388 /*
389 * ext4_test_bit on architecture like powerpc
390 * needs unsigned long aligned address
391 */
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 return ext4_test_bit(bit, addr);
394}
395
396static inline void mb_set_bit(int bit, void *addr)
397{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500398 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500399 ext4_set_bit(bit, addr);
400}
401
Alex Tomasc9de5602008-01-29 00:19:52 -0500402static inline void mb_clear_bit(int bit, void *addr)
403{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500404 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500405 ext4_clear_bit(bit, addr);
406}
407
Andrey Sidoroveabe0442013-04-09 12:22:29 -0400408static inline int mb_test_and_clear_bit(int bit, void *addr)
409{
410 addr = mb_correct_addr_and_bit(&bit, addr);
411 return ext4_test_and_clear_bit(bit, addr);
412}
413
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500414static inline int mb_find_next_zero_bit(void *addr, int max, int start)
415{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400416 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500417 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400418 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500419 start += fix;
420
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400421 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix;
422 if (ret > max)
423 return max;
424 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500425}
426
427static inline int mb_find_next_bit(void *addr, int max, int start)
428{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400429 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500430 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400431 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500432 start += fix;
433
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400434 ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
435 if (ret > max)
436 return max;
437 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500438}
439
Alex Tomasc9de5602008-01-29 00:19:52 -0500440static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
441{
442 char *bb;
443
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500444 BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
Alex Tomasc9de5602008-01-29 00:19:52 -0500445 BUG_ON(max == NULL);
446
447 if (order > e4b->bd_blkbits + 1) {
448 *max = 0;
449 return NULL;
450 }
451
452 /* at order 0 we see each particular block */
Coly Li84b775a2011-02-24 12:51:59 -0500453 if (order == 0) {
454 *max = 1 << (e4b->bd_blkbits + 3);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500455 return e4b->bd_bitmap;
Coly Li84b775a2011-02-24 12:51:59 -0500456 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500457
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500458 bb = e4b->bd_buddy + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
Alex Tomasc9de5602008-01-29 00:19:52 -0500459 *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
460
461 return bb;
462}
463
464#ifdef DOUBLE_CHECK
465static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
466 int first, int count)
467{
468 int i;
469 struct super_block *sb = e4b->bd_sb;
470
471 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
472 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400473 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500474 for (i = 0; i < count; i++) {
475 if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
476 ext4_fsblk_t blocknr;
Akinobu Mita5661bd62010-03-03 23:53:39 -0500477
478 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Theodore Ts'o53accfa2011-09-09 18:48:51 -0400479 blocknr += EXT4_C2B(EXT4_SB(sb), first + i);
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500480 ext4_grp_locked_error(sb, e4b->bd_group,
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400481 inode ? inode->i_ino : 0,
482 blocknr,
483 "freeing block already freed "
484 "(bit %u)",
485 first + i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500486 }
487 mb_clear_bit(first + i, e4b->bd_info->bb_bitmap);
488 }
489}
490
491static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count)
492{
493 int i;
494
495 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
496 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400497 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500498 for (i = 0; i < count; i++) {
499 BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap));
500 mb_set_bit(first + i, e4b->bd_info->bb_bitmap);
501 }
502}
503
504static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
505{
506 if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) {
507 unsigned char *b1, *b2;
508 int i;
509 b1 = (unsigned char *) e4b->bd_info->bb_bitmap;
510 b2 = (unsigned char *) bitmap;
511 for (i = 0; i < e4b->bd_sb->s_blocksize; i++) {
512 if (b1[i] != b2[i]) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -0400513 ext4_msg(e4b->bd_sb, KERN_ERR,
514 "corruption in group %u "
515 "at byte %u(%u): %x in copy != %x "
516 "on disk/prealloc",
517 e4b->bd_group, i, i * 8, b1[i], b2[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500518 BUG();
519 }
520 }
521 }
522}
523
524#else
525static inline void mb_free_blocks_double(struct inode *inode,
526 struct ext4_buddy *e4b, int first, int count)
527{
528 return;
529}
530static inline void mb_mark_used_double(struct ext4_buddy *e4b,
531 int first, int count)
532{
533 return;
534}
535static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
536{
537 return;
538}
539#endif
540
541#ifdef AGGRESSIVE_CHECK
542
543#define MB_CHECK_ASSERT(assert) \
544do { \
545 if (!(assert)) { \
546 printk(KERN_EMERG \
547 "Assertion failure in %s() at %s:%d: \"%s\"\n", \
548 function, file, line, # assert); \
549 BUG(); \
550 } \
551} while (0)
552
553static int __mb_check_buddy(struct ext4_buddy *e4b, char *file,
554 const char *function, int line)
555{
556 struct super_block *sb = e4b->bd_sb;
557 int order = e4b->bd_blkbits + 1;
558 int max;
559 int max2;
560 int i;
561 int j;
562 int k;
563 int count;
564 struct ext4_group_info *grp;
565 int fragments = 0;
566 int fstart;
567 struct list_head *cur;
568 void *buddy;
569 void *buddy2;
570
Alex Tomasc9de5602008-01-29 00:19:52 -0500571 {
572 static int mb_check_counter;
573 if (mb_check_counter++ % 100 != 0)
574 return 0;
575 }
576
577 while (order > 1) {
578 buddy = mb_find_buddy(e4b, order, &max);
579 MB_CHECK_ASSERT(buddy);
580 buddy2 = mb_find_buddy(e4b, order - 1, &max2);
581 MB_CHECK_ASSERT(buddy2);
582 MB_CHECK_ASSERT(buddy != buddy2);
583 MB_CHECK_ASSERT(max * 2 == max2);
584
585 count = 0;
586 for (i = 0; i < max; i++) {
587
588 if (mb_test_bit(i, buddy)) {
589 /* only single bit in buddy2 may be 1 */
590 if (!mb_test_bit(i << 1, buddy2)) {
591 MB_CHECK_ASSERT(
592 mb_test_bit((i<<1)+1, buddy2));
593 } else if (!mb_test_bit((i << 1) + 1, buddy2)) {
594 MB_CHECK_ASSERT(
595 mb_test_bit(i << 1, buddy2));
596 }
597 continue;
598 }
599
Robin Dong0a10da72011-10-26 08:48:54 -0400600 /* both bits in buddy2 must be 1 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500601 MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2));
602 MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2));
603
604 for (j = 0; j < (1 << order); j++) {
605 k = (i * (1 << order)) + j;
606 MB_CHECK_ASSERT(
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500607 !mb_test_bit(k, e4b->bd_bitmap));
Alex Tomasc9de5602008-01-29 00:19:52 -0500608 }
609 count++;
610 }
611 MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count);
612 order--;
613 }
614
615 fstart = -1;
616 buddy = mb_find_buddy(e4b, 0, &max);
617 for (i = 0; i < max; i++) {
618 if (!mb_test_bit(i, buddy)) {
619 MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free);
620 if (fstart == -1) {
621 fragments++;
622 fstart = i;
623 }
624 continue;
625 }
626 fstart = -1;
627 /* check used bits only */
628 for (j = 0; j < e4b->bd_blkbits + 1; j++) {
629 buddy2 = mb_find_buddy(e4b, j, &max2);
630 k = i >> j;
631 MB_CHECK_ASSERT(k < max2);
632 MB_CHECK_ASSERT(mb_test_bit(k, buddy2));
633 }
634 }
635 MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info));
636 MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments);
637
638 grp = ext4_get_group_info(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500639 list_for_each(cur, &grp->bb_prealloc_list) {
640 ext4_group_t groupnr;
641 struct ext4_prealloc_space *pa;
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400642 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
643 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k);
Alex Tomasc9de5602008-01-29 00:19:52 -0500644 MB_CHECK_ASSERT(groupnr == e4b->bd_group);
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400645 for (i = 0; i < pa->pa_len; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500646 MB_CHECK_ASSERT(mb_test_bit(k + i, buddy));
647 }
648 return 0;
649}
650#undef MB_CHECK_ASSERT
651#define mb_check_buddy(e4b) __mb_check_buddy(e4b, \
Harvey Harrison46e665e2008-04-17 10:38:59 -0400652 __FILE__, __func__, __LINE__)
Alex Tomasc9de5602008-01-29 00:19:52 -0500653#else
654#define mb_check_buddy(e4b)
655#endif
656
Coly Li7c786052011-02-24 13:24:25 -0500657/*
658 * Divide blocks started from @first with length @len into
659 * smaller chunks with power of 2 blocks.
660 * Clear the bits in bitmap which the blocks of the chunk(s) covered,
661 * then increase bb_counters[] for corresponded chunk size.
662 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500663static void ext4_mb_mark_free_simple(struct super_block *sb,
Eric Sandeena36b4492009-08-25 22:36:45 -0400664 void *buddy, ext4_grpblk_t first, ext4_grpblk_t len,
Alex Tomasc9de5602008-01-29 00:19:52 -0500665 struct ext4_group_info *grp)
666{
667 struct ext4_sb_info *sbi = EXT4_SB(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400668 ext4_grpblk_t min;
669 ext4_grpblk_t max;
670 ext4_grpblk_t chunk;
Alex Tomasc9de5602008-01-29 00:19:52 -0500671 unsigned short border;
672
Theodore Ts'o7137d7a2011-09-09 18:38:51 -0400673 BUG_ON(len > EXT4_CLUSTERS_PER_GROUP(sb));
Alex Tomasc9de5602008-01-29 00:19:52 -0500674
675 border = 2 << sb->s_blocksize_bits;
676
677 while (len > 0) {
678 /* find how many blocks can be covered since this position */
679 max = ffs(first | border) - 1;
680
681 /* find how many blocks of power 2 we need to mark */
682 min = fls(len) - 1;
683
684 if (max < min)
685 min = max;
686 chunk = 1 << min;
687
688 /* mark multiblock chunks only */
689 grp->bb_counters[min]++;
690 if (min > 0)
691 mb_clear_bit(first >> min,
692 buddy + sbi->s_mb_offsets[min]);
693
694 len -= chunk;
695 first += chunk;
696 }
697}
698
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400699/*
700 * Cache the order of the largest free extent we have available in this block
701 * group.
702 */
703static void
704mb_set_largest_free_order(struct super_block *sb, struct ext4_group_info *grp)
705{
706 int i;
707 int bits;
708
709 grp->bb_largest_free_order = -1; /* uninit */
710
711 bits = sb->s_blocksize_bits + 1;
712 for (i = bits; i >= 0; i--) {
713 if (grp->bb_counters[i] > 0) {
714 grp->bb_largest_free_order = i;
715 break;
716 }
717 }
718}
719
Eric Sandeen089ceec2009-07-05 22:17:31 -0400720static noinline_for_stack
721void ext4_mb_generate_buddy(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -0500722 void *buddy, void *bitmap, ext4_group_t group)
723{
724 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -0400725 ext4_grpblk_t max = EXT4_CLUSTERS_PER_GROUP(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400726 ext4_grpblk_t i = 0;
727 ext4_grpblk_t first;
728 ext4_grpblk_t len;
Alex Tomasc9de5602008-01-29 00:19:52 -0500729 unsigned free = 0;
730 unsigned fragments = 0;
731 unsigned long long period = get_cycles();
732
733 /* initialize buddy from bitmap which is aggregation
734 * of on-disk bitmap and preallocations */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500735 i = mb_find_next_zero_bit(bitmap, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -0500736 grp->bb_first_free = i;
737 while (i < max) {
738 fragments++;
739 first = i;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500740 i = mb_find_next_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500741 len = i - first;
742 free += len;
743 if (len > 1)
744 ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
745 else
746 grp->bb_counters[0]++;
747 if (i < max)
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500748 i = mb_find_next_zero_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500749 }
750 grp->bb_fragments = fragments;
751
752 if (free != grp->bb_free) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400753 ext4_grp_locked_error(sb, group, 0, 0,
Darrick J. Wong163a2032013-08-28 17:35:51 -0400754 "%u clusters in bitmap, %u in gd; "
755 "block bitmap corrupt.",
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400756 free, grp->bb_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500757 /*
Darrick J. Wong163a2032013-08-28 17:35:51 -0400758 * If we intend to continue, we consider group descriptor
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500759 * corrupt and update bb_free using bitmap value
760 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500761 grp->bb_free = free;
Darrick J. Wong163a2032013-08-28 17:35:51 -0400762 set_bit(EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT, &grp->bb_state);
Alex Tomasc9de5602008-01-29 00:19:52 -0500763 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400764 mb_set_largest_free_order(sb, grp);
Alex Tomasc9de5602008-01-29 00:19:52 -0500765
766 clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
767
768 period = get_cycles() - period;
769 spin_lock(&EXT4_SB(sb)->s_bal_lock);
770 EXT4_SB(sb)->s_mb_buddies_generated++;
771 EXT4_SB(sb)->s_mb_generation_time += period;
772 spin_unlock(&EXT4_SB(sb)->s_bal_lock);
773}
774
Andrey Sidoroveabe0442013-04-09 12:22:29 -0400775static void mb_regenerate_buddy(struct ext4_buddy *e4b)
776{
777 int count;
778 int order = 1;
779 void *buddy;
780
781 while ((buddy = mb_find_buddy(e4b, order++, &count))) {
782 ext4_set_bits(buddy, 0, count);
783 }
784 e4b->bd_info->bb_fragments = 0;
785 memset(e4b->bd_info->bb_counters, 0,
786 sizeof(*e4b->bd_info->bb_counters) *
787 (e4b->bd_sb->s_blocksize_bits + 2));
788
789 ext4_mb_generate_buddy(e4b->bd_sb, e4b->bd_buddy,
790 e4b->bd_bitmap, e4b->bd_group);
791}
792
Alex Tomasc9de5602008-01-29 00:19:52 -0500793/* The buddy information is attached the buddy cache inode
794 * for convenience. The information regarding each group
795 * is loaded via ext4_mb_load_buddy. The information involve
796 * block bitmap and buddy information. The information are
797 * stored in the inode as
798 *
799 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500800 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500801 *
802 *
803 * one block each for bitmap and buddy information.
804 * So for each group we take up 2 blocks. A page can
805 * contain blocks_per_page (PAGE_CACHE_SIZE / blocksize) blocks.
806 * So it can have information regarding groups_per_page which
807 * is blocks_per_page/2
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400808 *
809 * Locking note: This routine takes the block group lock of all groups
810 * for this page; do not hold this lock when calling this routine!
Alex Tomasc9de5602008-01-29 00:19:52 -0500811 */
812
813static int ext4_mb_init_cache(struct page *page, char *incore)
814{
Theodore Ts'o8df96752009-05-01 08:50:38 -0400815 ext4_group_t ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -0500816 int blocksize;
817 int blocks_per_page;
818 int groups_per_page;
819 int err = 0;
820 int i;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500821 ext4_group_t first_group, group;
Alex Tomasc9de5602008-01-29 00:19:52 -0500822 int first_block;
823 struct super_block *sb;
824 struct buffer_head *bhs;
Darrick J. Wongfa77dcf2012-04-29 18:35:10 -0400825 struct buffer_head **bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -0500826 struct inode *inode;
827 char *data;
828 char *bitmap;
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400829 struct ext4_group_info *grinfo;
Alex Tomasc9de5602008-01-29 00:19:52 -0500830
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400831 mb_debug(1, "init page %lu\n", page->index);
Alex Tomasc9de5602008-01-29 00:19:52 -0500832
833 inode = page->mapping->host;
834 sb = inode->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400835 ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -0500836 blocksize = 1 << inode->i_blkbits;
837 blocks_per_page = PAGE_CACHE_SIZE / blocksize;
838
839 groups_per_page = blocks_per_page >> 1;
840 if (groups_per_page == 0)
841 groups_per_page = 1;
842
843 /* allocate buffer_heads to read bitmaps */
844 if (groups_per_page > 1) {
Alex Tomasc9de5602008-01-29 00:19:52 -0500845 i = sizeof(struct buffer_head *) * groups_per_page;
846 bh = kzalloc(i, GFP_NOFS);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500847 if (bh == NULL) {
848 err = -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -0500849 goto out;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500850 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500851 } else
852 bh = &bhs;
853
854 first_group = page->index * blocks_per_page / 2;
855
856 /* read all groups the page covers into the cache */
Theodore Ts'o813e5722012-02-20 17:52:46 -0500857 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
858 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500859 break;
860
Theodore Ts'o813e5722012-02-20 17:52:46 -0500861 grinfo = ext4_get_group_info(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400862 /*
863 * If page is uptodate then we came here after online resize
864 * which added some new uninitialized group info structs, so
865 * we must skip all initialized uptodate buddies on the page,
866 * which may be currently in use by an allocating task.
867 */
868 if (PageUptodate(page) && !EXT4_MB_GRP_NEED_INIT(grinfo)) {
869 bh[i] = NULL;
870 continue;
871 }
Theodore Ts'o813e5722012-02-20 17:52:46 -0500872 if (!(bh[i] = ext4_read_block_bitmap_nowait(sb, group))) {
873 err = -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -0500874 goto out;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500875 }
Theodore Ts'o813e5722012-02-20 17:52:46 -0500876 mb_debug(1, "read bitmap for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500877 }
878
879 /* wait for I/O completion */
Theodore Ts'o813e5722012-02-20 17:52:46 -0500880 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
881 if (bh[i] && ext4_wait_block_bitmap(sb, group, bh[i])) {
882 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -0500883 goto out;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500884 }
885 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500886
887 first_block = page->index * blocks_per_page;
888 for (i = 0; i < blocks_per_page; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -0500889 group = (first_block + i) >> 1;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400890 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500891 break;
892
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400893 if (!bh[group - first_group])
894 /* skip initialized uptodate buddy */
895 continue;
896
Alex Tomasc9de5602008-01-29 00:19:52 -0500897 /*
898 * data carry information regarding this
899 * particular group in the format specified
900 * above
901 *
902 */
903 data = page_address(page) + (i * blocksize);
904 bitmap = bh[group - first_group]->b_data;
905
906 /*
907 * We place the buddy block and bitmap block
908 * close together
909 */
910 if ((first_block + i) & 1) {
911 /* this is block of buddy */
912 BUG_ON(incore == NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400913 mb_debug(1, "put buddy for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500914 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400915 trace_ext4_mb_buddy_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500916 grinfo = ext4_get_group_info(sb, group);
917 grinfo->bb_fragments = 0;
918 memset(grinfo->bb_counters, 0,
Eric Sandeen19278052009-08-25 22:36:25 -0400919 sizeof(*grinfo->bb_counters) *
920 (sb->s_blocksize_bits+2));
Alex Tomasc9de5602008-01-29 00:19:52 -0500921 /*
922 * incore got set to the group block bitmap below
923 */
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500924 ext4_lock_group(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400925 /* init the buddy */
926 memset(data, 0xff, blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -0500927 ext4_mb_generate_buddy(sb, data, incore, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500928 ext4_unlock_group(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500929 incore = NULL;
930 } else {
931 /* this is block of bitmap */
932 BUG_ON(incore != NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400933 mb_debug(1, "put bitmap for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500934 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400935 trace_ext4_mb_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500936
937 /* see comments in ext4_mb_put_pa() */
938 ext4_lock_group(sb, group);
939 memcpy(data, bitmap, blocksize);
940
941 /* mark all preallocated blks used in in-core bitmap */
942 ext4_mb_generate_from_pa(sb, data, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500943 ext4_mb_generate_from_freelist(sb, data, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500944 ext4_unlock_group(sb, group);
945
946 /* set incore so that the buddy information can be
947 * generated using this
948 */
949 incore = data;
950 }
951 }
952 SetPageUptodate(page);
953
954out:
955 if (bh) {
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400956 for (i = 0; i < groups_per_page; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500957 brelse(bh[i]);
958 if (bh != &bhs)
959 kfree(bh);
960 }
961 return err;
962}
963
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400964/*
Amir Goldstein2de88072011-05-09 21:48:13 -0400965 * Lock the buddy and bitmap pages. This make sure other parallel init_group
966 * on the same buddy page doesn't happen whild holding the buddy page lock.
967 * Return locked buddy and bitmap pages on e4b struct. If buddy and bitmap
968 * are on the same page e4b->bd_buddy_page is NULL and return value is 0.
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400969 */
Amir Goldstein2de88072011-05-09 21:48:13 -0400970static int ext4_mb_get_buddy_page_lock(struct super_block *sb,
971 ext4_group_t group, struct ext4_buddy *e4b)
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400972{
Amir Goldstein2de88072011-05-09 21:48:13 -0400973 struct inode *inode = EXT4_SB(sb)->s_buddy_cache;
974 int block, pnum, poff;
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400975 int blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -0400976 struct page *page;
977
978 e4b->bd_buddy_page = NULL;
979 e4b->bd_bitmap_page = NULL;
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400980
981 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
982 /*
983 * the buddy cache inode stores the block bitmap
984 * and buddy information in consecutive blocks.
985 * So for each group we need two blocks.
986 */
987 block = group * 2;
988 pnum = block / blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -0400989 poff = block % blocks_per_page;
990 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
991 if (!page)
992 return -EIO;
993 BUG_ON(page->mapping != inode->i_mapping);
994 e4b->bd_bitmap_page = page;
995 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400996
Amir Goldstein2de88072011-05-09 21:48:13 -0400997 if (blocks_per_page >= 2) {
998 /* buddy and bitmap are on the same page */
999 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001000 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001001
1002 block++;
1003 pnum = block / blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -04001004 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1005 if (!page)
1006 return -EIO;
1007 BUG_ON(page->mapping != inode->i_mapping);
1008 e4b->bd_buddy_page = page;
1009 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001010}
1011
Amir Goldstein2de88072011-05-09 21:48:13 -04001012static void ext4_mb_put_buddy_page_lock(struct ext4_buddy *e4b)
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001013{
Amir Goldstein2de88072011-05-09 21:48:13 -04001014 if (e4b->bd_bitmap_page) {
1015 unlock_page(e4b->bd_bitmap_page);
1016 page_cache_release(e4b->bd_bitmap_page);
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001017 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001018 if (e4b->bd_buddy_page) {
1019 unlock_page(e4b->bd_buddy_page);
1020 page_cache_release(e4b->bd_buddy_page);
1021 }
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001022}
1023
1024/*
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001025 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1026 * block group lock of all groups for this page; do not hold the BG lock when
1027 * calling this routine!
1028 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001029static noinline_for_stack
1030int ext4_mb_init_group(struct super_block *sb, ext4_group_t group)
1031{
1032
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001033 struct ext4_group_info *this_grp;
Amir Goldstein2de88072011-05-09 21:48:13 -04001034 struct ext4_buddy e4b;
1035 struct page *page;
1036 int ret = 0;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001037
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001038 might_sleep();
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001039 mb_debug(1, "init group %u\n", group);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001040 this_grp = ext4_get_group_info(sb, group);
1041 /*
Aneesh Kumar K.V08c3a812009-09-09 23:50:17 -04001042 * This ensures that we don't reinit the buddy cache
1043 * page which map to the group from which we are already
1044 * allocating. If we are looking at the buddy cache we would
1045 * have taken a reference using ext4_mb_load_buddy and that
Amir Goldstein2de88072011-05-09 21:48:13 -04001046 * would have pinned buddy page to page cache.
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001047 */
Amir Goldstein2de88072011-05-09 21:48:13 -04001048 ret = ext4_mb_get_buddy_page_lock(sb, group, &e4b);
1049 if (ret || !EXT4_MB_GRP_NEED_INIT(this_grp)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001050 /*
1051 * somebody initialized the group
1052 * return without doing anything
1053 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001054 goto err;
1055 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001056
1057 page = e4b.bd_bitmap_page;
1058 ret = ext4_mb_init_cache(page, NULL);
1059 if (ret)
1060 goto err;
1061 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001062 ret = -EIO;
1063 goto err;
1064 }
1065 mark_page_accessed(page);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001066
Amir Goldstein2de88072011-05-09 21:48:13 -04001067 if (e4b.bd_buddy_page == NULL) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001068 /*
1069 * If both the bitmap and buddy are in
1070 * the same page we don't need to force
1071 * init the buddy
1072 */
Amir Goldstein2de88072011-05-09 21:48:13 -04001073 ret = 0;
1074 goto err;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001075 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001076 /* init buddy cache */
1077 page = e4b.bd_buddy_page;
1078 ret = ext4_mb_init_cache(page, e4b.bd_bitmap);
1079 if (ret)
1080 goto err;
1081 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001082 ret = -EIO;
1083 goto err;
1084 }
1085 mark_page_accessed(page);
1086err:
Amir Goldstein2de88072011-05-09 21:48:13 -04001087 ext4_mb_put_buddy_page_lock(&e4b);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001088 return ret;
1089}
1090
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001091/*
1092 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1093 * block group lock of all groups for this page; do not hold the BG lock when
1094 * calling this routine!
1095 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04001096static noinline_for_stack int
1097ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
1098 struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001099{
Alex Tomasc9de5602008-01-29 00:19:52 -05001100 int blocks_per_page;
1101 int block;
1102 int pnum;
1103 int poff;
1104 struct page *page;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001105 int ret;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001106 struct ext4_group_info *grp;
1107 struct ext4_sb_info *sbi = EXT4_SB(sb);
1108 struct inode *inode = sbi->s_buddy_cache;
Alex Tomasc9de5602008-01-29 00:19:52 -05001109
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001110 might_sleep();
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04001111 mb_debug(1, "load group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001112
1113 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001114 grp = ext4_get_group_info(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001115
1116 e4b->bd_blkbits = sb->s_blocksize_bits;
Tao Ma529da702011-07-23 16:07:26 -04001117 e4b->bd_info = grp;
Alex Tomasc9de5602008-01-29 00:19:52 -05001118 e4b->bd_sb = sb;
1119 e4b->bd_group = group;
1120 e4b->bd_buddy_page = NULL;
1121 e4b->bd_bitmap_page = NULL;
1122
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001123 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001124 /*
1125 * we need full data about the group
1126 * to make a good selection
1127 */
1128 ret = ext4_mb_init_group(sb, group);
1129 if (ret)
1130 return ret;
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001131 }
1132
Alex Tomasc9de5602008-01-29 00:19:52 -05001133 /*
1134 * the buddy cache inode stores the block bitmap
1135 * and buddy information in consecutive blocks.
1136 * So for each group we need two blocks.
1137 */
1138 block = group * 2;
1139 pnum = block / blocks_per_page;
1140 poff = block % blocks_per_page;
1141
1142 /* we could use find_or_create_page(), but it locks page
1143 * what we'd like to avoid in fast path ... */
1144 page = find_get_page(inode->i_mapping, pnum);
1145 if (page == NULL || !PageUptodate(page)) {
1146 if (page)
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001147 /*
1148 * drop the page reference and try
1149 * to get the page with lock. If we
1150 * are not uptodate that implies
1151 * somebody just created the page but
1152 * is yet to initialize the same. So
1153 * wait for it to initialize.
1154 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001155 page_cache_release(page);
1156 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1157 if (page) {
1158 BUG_ON(page->mapping != inode->i_mapping);
1159 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001160 ret = ext4_mb_init_cache(page, NULL);
1161 if (ret) {
1162 unlock_page(page);
1163 goto err;
1164 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001165 mb_cmp_bitmaps(e4b, page_address(page) +
1166 (poff * sb->s_blocksize));
1167 }
1168 unlock_page(page);
1169 }
1170 }
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001171 if (page == NULL || !PageUptodate(page)) {
1172 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001173 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001174 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001175 e4b->bd_bitmap_page = page;
1176 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
1177 mark_page_accessed(page);
1178
1179 block++;
1180 pnum = block / blocks_per_page;
1181 poff = block % blocks_per_page;
1182
1183 page = find_get_page(inode->i_mapping, pnum);
1184 if (page == NULL || !PageUptodate(page)) {
1185 if (page)
1186 page_cache_release(page);
1187 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1188 if (page) {
1189 BUG_ON(page->mapping != inode->i_mapping);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001190 if (!PageUptodate(page)) {
1191 ret = ext4_mb_init_cache(page, e4b->bd_bitmap);
1192 if (ret) {
1193 unlock_page(page);
1194 goto err;
1195 }
1196 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001197 unlock_page(page);
1198 }
1199 }
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001200 if (page == NULL || !PageUptodate(page)) {
1201 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001202 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001203 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001204 e4b->bd_buddy_page = page;
1205 e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
1206 mark_page_accessed(page);
1207
1208 BUG_ON(e4b->bd_bitmap_page == NULL);
1209 BUG_ON(e4b->bd_buddy_page == NULL);
1210
1211 return 0;
1212
1213err:
Yang Ruirui26626f112011-04-16 19:17:48 -04001214 if (page)
1215 page_cache_release(page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001216 if (e4b->bd_bitmap_page)
1217 page_cache_release(e4b->bd_bitmap_page);
1218 if (e4b->bd_buddy_page)
1219 page_cache_release(e4b->bd_buddy_page);
1220 e4b->bd_buddy = NULL;
1221 e4b->bd_bitmap = NULL;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001222 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05001223}
1224
Jing Zhange39e07f2010-05-14 00:00:00 -04001225static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001226{
1227 if (e4b->bd_bitmap_page)
1228 page_cache_release(e4b->bd_bitmap_page);
1229 if (e4b->bd_buddy_page)
1230 page_cache_release(e4b->bd_buddy_page);
1231}
1232
1233
1234static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1235{
1236 int order = 1;
1237 void *bb;
1238
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001239 BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
Alex Tomasc9de5602008-01-29 00:19:52 -05001240 BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1241
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001242 bb = e4b->bd_buddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05001243 while (order <= e4b->bd_blkbits + 1) {
1244 block = block >> 1;
1245 if (!mb_test_bit(block, bb)) {
1246 /* this block is part of buddy of order 'order' */
1247 return order;
1248 }
1249 bb += 1 << (e4b->bd_blkbits - order);
1250 order++;
1251 }
1252 return 0;
1253}
1254
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001255static void mb_clear_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001256{
1257 __u32 *addr;
1258
1259 len = cur + len;
1260 while (cur < len) {
1261 if ((cur & 31) == 0 && (len - cur) >= 32) {
1262 /* fast path: clear whole word at once */
1263 addr = bm + (cur >> 3);
1264 *addr = 0;
1265 cur += 32;
1266 continue;
1267 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001268 mb_clear_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001269 cur++;
1270 }
1271}
1272
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001273/* clear bits in given range
1274 * will return first found zero bit if any, -1 otherwise
1275 */
1276static int mb_test_and_clear_bits(void *bm, int cur, int len)
1277{
1278 __u32 *addr;
1279 int zero_bit = -1;
1280
1281 len = cur + len;
1282 while (cur < len) {
1283 if ((cur & 31) == 0 && (len - cur) >= 32) {
1284 /* fast path: clear whole word at once */
1285 addr = bm + (cur >> 3);
1286 if (*addr != (__u32)(-1) && zero_bit == -1)
1287 zero_bit = cur + mb_find_next_zero_bit(addr, 32, 0);
1288 *addr = 0;
1289 cur += 32;
1290 continue;
1291 }
1292 if (!mb_test_and_clear_bit(cur, bm) && zero_bit == -1)
1293 zero_bit = cur;
1294 cur++;
1295 }
1296
1297 return zero_bit;
1298}
1299
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04001300void ext4_set_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001301{
1302 __u32 *addr;
1303
1304 len = cur + len;
1305 while (cur < len) {
1306 if ((cur & 31) == 0 && (len - cur) >= 32) {
1307 /* fast path: set whole word at once */
1308 addr = bm + (cur >> 3);
1309 *addr = 0xffffffff;
1310 cur += 32;
1311 continue;
1312 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001313 mb_set_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001314 cur++;
1315 }
1316}
1317
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001318/*
1319 * _________________________________________________________________ */
1320
1321static inline int mb_buddy_adjust_border(int* bit, void* bitmap, int side)
Alex Tomasc9de5602008-01-29 00:19:52 -05001322{
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001323 if (mb_test_bit(*bit + side, bitmap)) {
1324 mb_clear_bit(*bit, bitmap);
1325 (*bit) -= side;
1326 return 1;
1327 }
1328 else {
1329 (*bit) += side;
1330 mb_set_bit(*bit, bitmap);
1331 return -1;
1332 }
1333}
1334
1335static void mb_buddy_mark_free(struct ext4_buddy *e4b, int first, int last)
1336{
1337 int max;
1338 int order = 1;
1339 void *buddy = mb_find_buddy(e4b, order, &max);
1340
1341 while (buddy) {
1342 void *buddy2;
1343
1344 /* Bits in range [first; last] are known to be set since
1345 * corresponding blocks were allocated. Bits in range
1346 * (first; last) will stay set because they form buddies on
1347 * upper layer. We just deal with borders if they don't
1348 * align with upper layer and then go up.
1349 * Releasing entire group is all about clearing
1350 * single bit of highest order buddy.
1351 */
1352
1353 /* Example:
1354 * ---------------------------------
1355 * | 1 | 1 | 1 | 1 |
1356 * ---------------------------------
1357 * | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
1358 * ---------------------------------
1359 * 0 1 2 3 4 5 6 7
1360 * \_____________________/
1361 *
1362 * Neither [1] nor [6] is aligned to above layer.
1363 * Left neighbour [0] is free, so mark it busy,
1364 * decrease bb_counters and extend range to
1365 * [0; 6]
1366 * Right neighbour [7] is busy. It can't be coaleasced with [6], so
1367 * mark [6] free, increase bb_counters and shrink range to
1368 * [0; 5].
1369 * Then shift range to [0; 2], go up and do the same.
1370 */
1371
1372
1373 if (first & 1)
1374 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&first, buddy, -1);
1375 if (!(last & 1))
1376 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&last, buddy, 1);
1377 if (first > last)
1378 break;
1379 order++;
1380
1381 if (first == last || !(buddy2 = mb_find_buddy(e4b, order, &max))) {
1382 mb_clear_bits(buddy, first, last - first + 1);
1383 e4b->bd_info->bb_counters[order - 1] += last - first + 1;
1384 break;
1385 }
1386 first >>= 1;
1387 last >>= 1;
1388 buddy = buddy2;
1389 }
1390}
1391
1392static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
1393 int first, int count)
1394{
1395 int left_is_free = 0;
1396 int right_is_free = 0;
1397 int block;
1398 int last = first + count - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001399 struct super_block *sb = e4b->bd_sb;
1400
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001401 BUG_ON(last >= (sb->s_blocksize << 3));
Vincent Minetbc8e6742009-05-15 08:33:18 -04001402 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Darrick J. Wong163a2032013-08-28 17:35:51 -04001403 /* Don't bother if the block group is corrupt. */
1404 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info)))
1405 return;
1406
Alex Tomasc9de5602008-01-29 00:19:52 -05001407 mb_check_buddy(e4b);
1408 mb_free_blocks_double(inode, e4b, first, count);
1409
1410 e4b->bd_info->bb_free += count;
1411 if (first < e4b->bd_info->bb_first_free)
1412 e4b->bd_info->bb_first_free = first;
1413
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001414 /* access memory sequentially: check left neighbour,
1415 * clear range and then check right neighbour
1416 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001417 if (first != 0)
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001418 left_is_free = !mb_test_bit(first - 1, e4b->bd_bitmap);
1419 block = mb_test_and_clear_bits(e4b->bd_bitmap, first, count);
1420 if (last + 1 < EXT4_SB(sb)->s_mb_maxs[0])
1421 right_is_free = !mb_test_bit(last + 1, e4b->bd_bitmap);
1422
1423 if (unlikely(block != -1)) {
1424 ext4_fsblk_t blocknr;
1425
1426 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
1427 blocknr += EXT4_C2B(EXT4_SB(sb), block);
1428 ext4_grp_locked_error(sb, e4b->bd_group,
1429 inode ? inode->i_ino : 0,
1430 blocknr,
1431 "freeing already freed block "
Darrick J. Wong163a2032013-08-28 17:35:51 -04001432 "(bit %u); block bitmap corrupt.",
1433 block);
1434 /* Mark the block group as corrupt. */
1435 set_bit(EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT,
1436 &e4b->bd_info->bb_state);
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001437 mb_regenerate_buddy(e4b);
1438 goto done;
1439 }
1440
1441 /* let's maintain fragments counter */
1442 if (left_is_free && right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001443 e4b->bd_info->bb_fragments--;
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001444 else if (!left_is_free && !right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001445 e4b->bd_info->bb_fragments++;
1446
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001447 /* buddy[0] == bd_bitmap is a special case, so handle
1448 * it right away and let mb_buddy_mark_free stay free of
1449 * zero order checks.
1450 * Check if neighbours are to be coaleasced,
1451 * adjust bitmap bb_counters and borders appropriately.
1452 */
1453 if (first & 1) {
1454 first += !left_is_free;
1455 e4b->bd_info->bb_counters[0] += left_is_free ? -1 : 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001456 }
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001457 if (!(last & 1)) {
1458 last -= !right_is_free;
1459 e4b->bd_info->bb_counters[0] += right_is_free ? -1 : 1;
1460 }
1461
1462 if (first <= last)
1463 mb_buddy_mark_free(e4b, first >> 1, last >> 1);
1464
1465done:
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001466 mb_set_largest_free_order(sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001467 mb_check_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001468}
1469
Robin Dong15c006a2012-08-17 10:02:17 -04001470static int mb_find_extent(struct ext4_buddy *e4b, int block,
Alex Tomasc9de5602008-01-29 00:19:52 -05001471 int needed, struct ext4_free_extent *ex)
1472{
1473 int next = block;
Robin Dong15c006a2012-08-17 10:02:17 -04001474 int max, order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001475 void *buddy;
1476
Vincent Minetbc8e6742009-05-15 08:33:18 -04001477 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001478 BUG_ON(ex == NULL);
1479
Robin Dong15c006a2012-08-17 10:02:17 -04001480 buddy = mb_find_buddy(e4b, 0, &max);
Alex Tomasc9de5602008-01-29 00:19:52 -05001481 BUG_ON(buddy == NULL);
1482 BUG_ON(block >= max);
1483 if (mb_test_bit(block, buddy)) {
1484 ex->fe_len = 0;
1485 ex->fe_start = 0;
1486 ex->fe_group = 0;
1487 return 0;
1488 }
1489
Robin Dong15c006a2012-08-17 10:02:17 -04001490 /* find actual order */
1491 order = mb_find_order_for_block(e4b, block);
1492 block = block >> order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001493
1494 ex->fe_len = 1 << order;
1495 ex->fe_start = block << order;
1496 ex->fe_group = e4b->bd_group;
1497
1498 /* calc difference from given start */
1499 next = next - ex->fe_start;
1500 ex->fe_len -= next;
1501 ex->fe_start += next;
1502
1503 while (needed > ex->fe_len &&
Alan Coxd8ec0c32012-11-08 12:19:58 -05001504 mb_find_buddy(e4b, order, &max)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001505
1506 if (block + 1 >= max)
1507 break;
1508
1509 next = (block + 1) * (1 << order);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001510 if (mb_test_bit(next, e4b->bd_bitmap))
Alex Tomasc9de5602008-01-29 00:19:52 -05001511 break;
1512
Robin Dongb051d8d2011-10-26 05:30:30 -04001513 order = mb_find_order_for_block(e4b, next);
Alex Tomasc9de5602008-01-29 00:19:52 -05001514
Alex Tomasc9de5602008-01-29 00:19:52 -05001515 block = next >> order;
1516 ex->fe_len += 1 << order;
1517 }
1518
1519 BUG_ON(ex->fe_start + ex->fe_len > (1 << (e4b->bd_blkbits + 3)));
1520 return ex->fe_len;
1521}
1522
1523static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1524{
1525 int ord;
1526 int mlen = 0;
1527 int max = 0;
1528 int cur;
1529 int start = ex->fe_start;
1530 int len = ex->fe_len;
1531 unsigned ret = 0;
1532 int len0 = len;
1533 void *buddy;
1534
1535 BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1536 BUG_ON(e4b->bd_group != ex->fe_group);
Vincent Minetbc8e6742009-05-15 08:33:18 -04001537 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001538 mb_check_buddy(e4b);
1539 mb_mark_used_double(e4b, start, len);
1540
1541 e4b->bd_info->bb_free -= len;
1542 if (e4b->bd_info->bb_first_free == start)
1543 e4b->bd_info->bb_first_free += len;
1544
1545 /* let's maintain fragments counter */
1546 if (start != 0)
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001547 mlen = !mb_test_bit(start - 1, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001548 if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001549 max = !mb_test_bit(start + len, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001550 if (mlen && max)
1551 e4b->bd_info->bb_fragments++;
1552 else if (!mlen && !max)
1553 e4b->bd_info->bb_fragments--;
1554
1555 /* let's maintain buddy itself */
1556 while (len) {
1557 ord = mb_find_order_for_block(e4b, start);
1558
1559 if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1560 /* the whole chunk may be allocated at once! */
1561 mlen = 1 << ord;
1562 buddy = mb_find_buddy(e4b, ord, &max);
1563 BUG_ON((start >> ord) >= max);
1564 mb_set_bit(start >> ord, buddy);
1565 e4b->bd_info->bb_counters[ord]--;
1566 start += mlen;
1567 len -= mlen;
1568 BUG_ON(len < 0);
1569 continue;
1570 }
1571
1572 /* store for history */
1573 if (ret == 0)
1574 ret = len | (ord << 16);
1575
1576 /* we have to split large buddy */
1577 BUG_ON(ord <= 0);
1578 buddy = mb_find_buddy(e4b, ord, &max);
1579 mb_set_bit(start >> ord, buddy);
1580 e4b->bd_info->bb_counters[ord]--;
1581
1582 ord--;
1583 cur = (start >> ord) & ~1U;
1584 buddy = mb_find_buddy(e4b, ord, &max);
1585 mb_clear_bit(cur, buddy);
1586 mb_clear_bit(cur + 1, buddy);
1587 e4b->bd_info->bb_counters[ord]++;
1588 e4b->bd_info->bb_counters[ord]++;
1589 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001590 mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001591
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001592 ext4_set_bits(e4b->bd_bitmap, ex->fe_start, len0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001593 mb_check_buddy(e4b);
1594
1595 return ret;
1596}
1597
1598/*
1599 * Must be called under group lock!
1600 */
1601static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
1602 struct ext4_buddy *e4b)
1603{
1604 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1605 int ret;
1606
1607 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
1608 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1609
1610 ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
1611 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
1612 ret = mb_mark_used(e4b, &ac->ac_b_ex);
1613
1614 /* preallocation can change ac_b_ex, thus we store actually
1615 * allocated blocks for history */
1616 ac->ac_f_ex = ac->ac_b_ex;
1617
1618 ac->ac_status = AC_STATUS_FOUND;
1619 ac->ac_tail = ret & 0xffff;
1620 ac->ac_buddy = ret >> 16;
1621
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -05001622 /*
1623 * take the page reference. We want the page to be pinned
1624 * so that we don't get a ext4_mb_init_cache_call for this
1625 * group until we update the bitmap. That would mean we
1626 * double allocate blocks. The reference is dropped
1627 * in ext4_mb_release_context
1628 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001629 ac->ac_bitmap_page = e4b->bd_bitmap_page;
1630 get_page(ac->ac_bitmap_page);
1631 ac->ac_buddy_page = e4b->bd_buddy_page;
1632 get_page(ac->ac_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001633 /* store last allocated for subsequent stream allocation */
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04001634 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001635 spin_lock(&sbi->s_md_lock);
1636 sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
1637 sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
1638 spin_unlock(&sbi->s_md_lock);
1639 }
1640}
1641
1642/*
1643 * regular allocator, for general purposes allocation
1644 */
1645
1646static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
1647 struct ext4_buddy *e4b,
1648 int finish_group)
1649{
1650 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1651 struct ext4_free_extent *bex = &ac->ac_b_ex;
1652 struct ext4_free_extent *gex = &ac->ac_g_ex;
1653 struct ext4_free_extent ex;
1654 int max;
1655
Aneesh Kumar K.V032115f2009-01-05 21:34:30 -05001656 if (ac->ac_status == AC_STATUS_FOUND)
1657 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05001658 /*
1659 * We don't want to scan for a whole year
1660 */
1661 if (ac->ac_found > sbi->s_mb_max_to_scan &&
1662 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1663 ac->ac_status = AC_STATUS_BREAK;
1664 return;
1665 }
1666
1667 /*
1668 * Haven't found good chunk so far, let's continue
1669 */
1670 if (bex->fe_len < gex->fe_len)
1671 return;
1672
1673 if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
1674 && bex->fe_group == e4b->bd_group) {
1675 /* recheck chunk's availability - we don't know
1676 * when it was found (within this lock-unlock
1677 * period or not) */
Robin Dong15c006a2012-08-17 10:02:17 -04001678 max = mb_find_extent(e4b, bex->fe_start, gex->fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001679 if (max >= gex->fe_len) {
1680 ext4_mb_use_best_found(ac, e4b);
1681 return;
1682 }
1683 }
1684}
1685
1686/*
1687 * The routine checks whether found extent is good enough. If it is,
1688 * then the extent gets marked used and flag is set to the context
1689 * to stop scanning. Otherwise, the extent is compared with the
1690 * previous found extent and if new one is better, then it's stored
1691 * in the context. Later, the best found extent will be used, if
1692 * mballoc can't find good enough extent.
1693 *
1694 * FIXME: real allocation policy is to be designed yet!
1695 */
1696static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
1697 struct ext4_free_extent *ex,
1698 struct ext4_buddy *e4b)
1699{
1700 struct ext4_free_extent *bex = &ac->ac_b_ex;
1701 struct ext4_free_extent *gex = &ac->ac_g_ex;
1702
1703 BUG_ON(ex->fe_len <= 0);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001704 BUG_ON(ex->fe_len > EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
1705 BUG_ON(ex->fe_start >= EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05001706 BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
1707
1708 ac->ac_found++;
1709
1710 /*
1711 * The special case - take what you catch first
1712 */
1713 if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1714 *bex = *ex;
1715 ext4_mb_use_best_found(ac, e4b);
1716 return;
1717 }
1718
1719 /*
1720 * Let's check whether the chuck is good enough
1721 */
1722 if (ex->fe_len == gex->fe_len) {
1723 *bex = *ex;
1724 ext4_mb_use_best_found(ac, e4b);
1725 return;
1726 }
1727
1728 /*
1729 * If this is first found extent, just store it in the context
1730 */
1731 if (bex->fe_len == 0) {
1732 *bex = *ex;
1733 return;
1734 }
1735
1736 /*
1737 * If new found extent is better, store it in the context
1738 */
1739 if (bex->fe_len < gex->fe_len) {
1740 /* if the request isn't satisfied, any found extent
1741 * larger than previous best one is better */
1742 if (ex->fe_len > bex->fe_len)
1743 *bex = *ex;
1744 } else if (ex->fe_len > gex->fe_len) {
1745 /* if the request is satisfied, then we try to find
1746 * an extent that still satisfy the request, but is
1747 * smaller than previous one */
1748 if (ex->fe_len < bex->fe_len)
1749 *bex = *ex;
1750 }
1751
1752 ext4_mb_check_limits(ac, e4b, 0);
1753}
1754
Eric Sandeen089ceec2009-07-05 22:17:31 -04001755static noinline_for_stack
1756int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001757 struct ext4_buddy *e4b)
1758{
1759 struct ext4_free_extent ex = ac->ac_b_ex;
1760 ext4_group_t group = ex.fe_group;
1761 int max;
1762 int err;
1763
1764 BUG_ON(ex.fe_len <= 0);
1765 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1766 if (err)
1767 return err;
1768
1769 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04001770 max = mb_find_extent(e4b, ex.fe_start, ex.fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001771
1772 if (max > 0) {
1773 ac->ac_b_ex = ex;
1774 ext4_mb_use_best_found(ac, e4b);
1775 }
1776
1777 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001778 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001779
1780 return 0;
1781}
1782
Eric Sandeen089ceec2009-07-05 22:17:31 -04001783static noinline_for_stack
1784int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001785 struct ext4_buddy *e4b)
1786{
1787 ext4_group_t group = ac->ac_g_ex.fe_group;
1788 int max;
1789 int err;
1790 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04001791 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001792 struct ext4_free_extent ex;
1793
1794 if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
1795 return 0;
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04001796 if (grp->bb_free == 0)
1797 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05001798
1799 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1800 if (err)
1801 return err;
1802
Darrick J. Wong163a2032013-08-28 17:35:51 -04001803 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info))) {
1804 ext4_mb_unload_buddy(e4b);
1805 return 0;
1806 }
1807
Alex Tomasc9de5602008-01-29 00:19:52 -05001808 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04001809 max = mb_find_extent(e4b, ac->ac_g_ex.fe_start,
Alex Tomasc9de5602008-01-29 00:19:52 -05001810 ac->ac_g_ex.fe_len, &ex);
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05001811 ex.fe_logical = 0xDEADFA11; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05001812
1813 if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
1814 ext4_fsblk_t start;
1815
Akinobu Mita5661bd62010-03-03 23:53:39 -05001816 start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
1817 ex.fe_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05001818 /* use do_div to get remainder (would be 64-bit modulo) */
1819 if (do_div(start, sbi->s_stripe) == 0) {
1820 ac->ac_found++;
1821 ac->ac_b_ex = ex;
1822 ext4_mb_use_best_found(ac, e4b);
1823 }
1824 } else if (max >= ac->ac_g_ex.fe_len) {
1825 BUG_ON(ex.fe_len <= 0);
1826 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1827 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1828 ac->ac_found++;
1829 ac->ac_b_ex = ex;
1830 ext4_mb_use_best_found(ac, e4b);
1831 } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
1832 /* Sometimes, caller may want to merge even small
1833 * number of blocks to an existing extent */
1834 BUG_ON(ex.fe_len <= 0);
1835 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1836 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1837 ac->ac_found++;
1838 ac->ac_b_ex = ex;
1839 ext4_mb_use_best_found(ac, e4b);
1840 }
1841 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001842 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001843
1844 return 0;
1845}
1846
1847/*
1848 * The routine scans buddy structures (not bitmap!) from given order
1849 * to max order and tries to find big enough chunk to satisfy the req
1850 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001851static noinline_for_stack
1852void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001853 struct ext4_buddy *e4b)
1854{
1855 struct super_block *sb = ac->ac_sb;
1856 struct ext4_group_info *grp = e4b->bd_info;
1857 void *buddy;
1858 int i;
1859 int k;
1860 int max;
1861
1862 BUG_ON(ac->ac_2order <= 0);
1863 for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
1864 if (grp->bb_counters[i] == 0)
1865 continue;
1866
1867 buddy = mb_find_buddy(e4b, i, &max);
1868 BUG_ON(buddy == NULL);
1869
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001870 k = mb_find_next_zero_bit(buddy, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001871 BUG_ON(k >= max);
1872
1873 ac->ac_found++;
1874
1875 ac->ac_b_ex.fe_len = 1 << i;
1876 ac->ac_b_ex.fe_start = k << i;
1877 ac->ac_b_ex.fe_group = e4b->bd_group;
1878
1879 ext4_mb_use_best_found(ac, e4b);
1880
1881 BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
1882
1883 if (EXT4_SB(sb)->s_mb_stats)
1884 atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
1885
1886 break;
1887 }
1888}
1889
1890/*
1891 * The routine scans the group and measures all found extents.
1892 * In order to optimize scanning, caller must pass number of
1893 * free blocks in the group, so the routine can know upper limit.
1894 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001895static noinline_for_stack
1896void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001897 struct ext4_buddy *e4b)
1898{
1899 struct super_block *sb = ac->ac_sb;
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001900 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05001901 struct ext4_free_extent ex;
1902 int i;
1903 int free;
1904
1905 free = e4b->bd_info->bb_free;
1906 BUG_ON(free <= 0);
1907
1908 i = e4b->bd_info->bb_first_free;
1909
1910 while (free && ac->ac_status == AC_STATUS_CONTINUE) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001911 i = mb_find_next_zero_bit(bitmap,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001912 EXT4_CLUSTERS_PER_GROUP(sb), i);
1913 if (i >= EXT4_CLUSTERS_PER_GROUP(sb)) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001914 /*
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001915 * IF we have corrupt bitmap, we won't find any
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001916 * free blocks even though group info says we
1917 * we have free blocks
1918 */
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001919 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04001920 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001921 "group info. But bitmap says 0",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001922 free);
Alex Tomasc9de5602008-01-29 00:19:52 -05001923 break;
1924 }
1925
Robin Dong15c006a2012-08-17 10:02:17 -04001926 mb_find_extent(e4b, i, ac->ac_g_ex.fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001927 BUG_ON(ex.fe_len <= 0);
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001928 if (free < ex.fe_len) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001929 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04001930 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001931 "group info. But got %d blocks",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001932 free, ex.fe_len);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001933 /*
1934 * The number of free blocks differs. This mostly
1935 * indicate that the bitmap is corrupt. So exit
1936 * without claiming the space.
1937 */
1938 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001939 }
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05001940 ex.fe_logical = 0xDEADC0DE; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05001941 ext4_mb_measure_extent(ac, &ex, e4b);
1942
1943 i += ex.fe_len;
1944 free -= ex.fe_len;
1945 }
1946
1947 ext4_mb_check_limits(ac, e4b, 1);
1948}
1949
1950/*
1951 * This is a special case for storages like raid5
Eric Sandeen506bf2d2010-07-27 11:56:06 -04001952 * we try to find stripe-aligned chunks for stripe-size-multiple requests
Alex Tomasc9de5602008-01-29 00:19:52 -05001953 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001954static noinline_for_stack
1955void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001956 struct ext4_buddy *e4b)
1957{
1958 struct super_block *sb = ac->ac_sb;
1959 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001960 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05001961 struct ext4_free_extent ex;
1962 ext4_fsblk_t first_group_block;
1963 ext4_fsblk_t a;
1964 ext4_grpblk_t i;
1965 int max;
1966
1967 BUG_ON(sbi->s_stripe == 0);
1968
1969 /* find first stripe-aligned block in group */
Akinobu Mita5661bd62010-03-03 23:53:39 -05001970 first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
1971
Alex Tomasc9de5602008-01-29 00:19:52 -05001972 a = first_group_block + sbi->s_stripe - 1;
1973 do_div(a, sbi->s_stripe);
1974 i = (a * sbi->s_stripe) - first_group_block;
1975
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001976 while (i < EXT4_CLUSTERS_PER_GROUP(sb)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001977 if (!mb_test_bit(i, bitmap)) {
Robin Dong15c006a2012-08-17 10:02:17 -04001978 max = mb_find_extent(e4b, i, sbi->s_stripe, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001979 if (max >= sbi->s_stripe) {
1980 ac->ac_found++;
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05001981 ex.fe_logical = 0xDEADF00D; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05001982 ac->ac_b_ex = ex;
1983 ext4_mb_use_best_found(ac, e4b);
1984 break;
1985 }
1986 }
1987 i += sbi->s_stripe;
1988 }
1989}
1990
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001991/* This is now called BEFORE we load the buddy bitmap. */
Alex Tomasc9de5602008-01-29 00:19:52 -05001992static int ext4_mb_good_group(struct ext4_allocation_context *ac,
1993 ext4_group_t group, int cr)
1994{
1995 unsigned free, fragments;
Theodore Ts'oa4912122009-03-12 12:18:34 -04001996 int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05001997 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
1998
1999 BUG_ON(cr < 0 || cr >= 4);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002000
Theodore Ts'o01fc48e2012-08-17 09:46:17 -04002001 free = grp->bb_free;
2002 if (free == 0)
2003 return 0;
2004 if (cr <= 2 && free < ac->ac_g_ex.fe_len)
2005 return 0;
2006
Darrick J. Wong163a2032013-08-28 17:35:51 -04002007 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(grp)))
2008 return 0;
2009
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002010 /* We only do this if the grp has never been initialized */
2011 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
2012 int ret = ext4_mb_init_group(ac->ac_sb, group);
2013 if (ret)
2014 return 0;
2015 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002016
Alex Tomasc9de5602008-01-29 00:19:52 -05002017 fragments = grp->bb_fragments;
Alex Tomasc9de5602008-01-29 00:19:52 -05002018 if (fragments == 0)
2019 return 0;
2020
2021 switch (cr) {
2022 case 0:
2023 BUG_ON(ac->ac_2order == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05002024
Theodore Ts'oa4912122009-03-12 12:18:34 -04002025 /* Avoid using the first bg of a flexgroup for data files */
2026 if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
2027 (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
2028 ((group % flex_size) == 0))
2029 return 0;
2030
Theodore Ts'o40ae3482013-02-04 15:08:40 -05002031 if ((ac->ac_2order > ac->ac_sb->s_blocksize_bits+1) ||
2032 (free / fragments) >= ac->ac_g_ex.fe_len)
2033 return 1;
2034
2035 if (grp->bb_largest_free_order < ac->ac_2order)
2036 return 0;
2037
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002038 return 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002039 case 1:
2040 if ((free / fragments) >= ac->ac_g_ex.fe_len)
2041 return 1;
2042 break;
2043 case 2:
2044 if (free >= ac->ac_g_ex.fe_len)
2045 return 1;
2046 break;
2047 case 3:
2048 return 1;
2049 default:
2050 BUG();
2051 }
2052
2053 return 0;
2054}
2055
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002056static noinline_for_stack int
2057ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05002058{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002059 ext4_group_t ngroups, group, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002060 int cr;
2061 int err = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002062 struct ext4_sb_info *sbi;
2063 struct super_block *sb;
2064 struct ext4_buddy e4b;
Alex Tomasc9de5602008-01-29 00:19:52 -05002065
2066 sb = ac->ac_sb;
2067 sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -04002068 ngroups = ext4_get_groups_count(sb);
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002069 /* non-extent files are limited to low blocks/groups */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002070 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002071 ngroups = sbi->s_blockfile_groups;
2072
Alex Tomasc9de5602008-01-29 00:19:52 -05002073 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
2074
2075 /* first, try the goal */
2076 err = ext4_mb_find_by_goal(ac, &e4b);
2077 if (err || ac->ac_status == AC_STATUS_FOUND)
2078 goto out;
2079
2080 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2081 goto out;
2082
2083 /*
2084 * ac->ac2_order is set only if the fe_len is a power of 2
2085 * if ac2_order is set we also set criteria to 0 so that we
2086 * try exact allocation using buddy.
2087 */
2088 i = fls(ac->ac_g_ex.fe_len);
2089 ac->ac_2order = 0;
2090 /*
2091 * We search using buddy data only if the order of the request
2092 * is greater than equal to the sbi_s_mb_order2_reqs
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002093 * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
Alex Tomasc9de5602008-01-29 00:19:52 -05002094 */
2095 if (i >= sbi->s_mb_order2_reqs) {
2096 /*
2097 * This should tell if fe_len is exactly power of 2
2098 */
2099 if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
2100 ac->ac_2order = i - 1;
2101 }
2102
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002103 /* if stream allocation is enabled, use global goal */
2104 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002105 /* TBD: may be hot point */
2106 spin_lock(&sbi->s_md_lock);
2107 ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
2108 ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
2109 spin_unlock(&sbi->s_md_lock);
2110 }
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002111
Alex Tomasc9de5602008-01-29 00:19:52 -05002112 /* Let's just scan groups to find more-less suitable blocks */
2113 cr = ac->ac_2order ? 0 : 1;
2114 /*
2115 * cr == 0 try to get exact allocation,
2116 * cr == 3 try to get anything
2117 */
2118repeat:
2119 for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
2120 ac->ac_criteria = cr;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04002121 /*
2122 * searching for the right group start
2123 * from the goal value specified
2124 */
2125 group = ac->ac_g_ex.fe_group;
2126
Theodore Ts'o8df96752009-05-01 08:50:38 -04002127 for (i = 0; i < ngroups; group++, i++) {
Theodore Ts'o2ed57242013-06-12 11:43:02 -04002128 cond_resched();
Lachlan McIlroye6155732013-05-05 23:10:00 -04002129 /*
2130 * Artificially restricted ngroups for non-extent
2131 * files makes group > ngroups possible on first loop.
2132 */
2133 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -05002134 group = 0;
2135
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002136 /* This now checks without needing the buddy page */
2137 if (!ext4_mb_good_group(ac, group, cr))
Alex Tomasc9de5602008-01-29 00:19:52 -05002138 continue;
2139
Alex Tomasc9de5602008-01-29 00:19:52 -05002140 err = ext4_mb_load_buddy(sb, group, &e4b);
2141 if (err)
2142 goto out;
2143
2144 ext4_lock_group(sb, group);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002145
2146 /*
2147 * We need to check again after locking the
2148 * block group
2149 */
Alex Tomasc9de5602008-01-29 00:19:52 -05002150 if (!ext4_mb_good_group(ac, group, cr)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002151 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002152 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002153 continue;
2154 }
2155
2156 ac->ac_groups_scanned++;
Theodore Ts'o40ae3482013-02-04 15:08:40 -05002157 if (cr == 0 && ac->ac_2order < sb->s_blocksize_bits+2)
Alex Tomasc9de5602008-01-29 00:19:52 -05002158 ext4_mb_simple_scan_group(ac, &e4b);
Eric Sandeen506bf2d2010-07-27 11:56:06 -04002159 else if (cr == 1 && sbi->s_stripe &&
2160 !(ac->ac_g_ex.fe_len % sbi->s_stripe))
Alex Tomasc9de5602008-01-29 00:19:52 -05002161 ext4_mb_scan_aligned(ac, &e4b);
2162 else
2163 ext4_mb_complex_scan_group(ac, &e4b);
2164
2165 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002166 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002167
2168 if (ac->ac_status != AC_STATUS_CONTINUE)
2169 break;
2170 }
2171 }
2172
2173 if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
2174 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2175 /*
2176 * We've been searching too long. Let's try to allocate
2177 * the best chunk we've found so far
2178 */
2179
2180 ext4_mb_try_best_found(ac, &e4b);
2181 if (ac->ac_status != AC_STATUS_FOUND) {
2182 /*
2183 * Someone more lucky has already allocated it.
2184 * The only thing we can do is just take first
2185 * found block(s)
2186 printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n");
2187 */
2188 ac->ac_b_ex.fe_group = 0;
2189 ac->ac_b_ex.fe_start = 0;
2190 ac->ac_b_ex.fe_len = 0;
2191 ac->ac_status = AC_STATUS_CONTINUE;
2192 ac->ac_flags |= EXT4_MB_HINT_FIRST;
2193 cr = 3;
2194 atomic_inc(&sbi->s_mb_lost_chunks);
2195 goto repeat;
2196 }
2197 }
2198out:
2199 return err;
2200}
2201
Alex Tomasc9de5602008-01-29 00:19:52 -05002202static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2203{
2204 struct super_block *sb = seq->private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002205 ext4_group_t group;
2206
Theodore Ts'o8df96752009-05-01 08:50:38 -04002207 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002208 return NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002209 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002210 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002211}
2212
2213static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2214{
2215 struct super_block *sb = seq->private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002216 ext4_group_t group;
2217
2218 ++*pos;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002219 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002220 return NULL;
2221 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002222 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002223}
2224
2225static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2226{
2227 struct super_block *sb = seq->private;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002228 ext4_group_t group = (ext4_group_t) ((unsigned long) v);
Alex Tomasc9de5602008-01-29 00:19:52 -05002229 int i;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002230 int err, buddy_loaded = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002231 struct ext4_buddy e4b;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002232 struct ext4_group_info *grinfo;
Alex Tomasc9de5602008-01-29 00:19:52 -05002233 struct sg {
2234 struct ext4_group_info info;
Eric Sandeena36b4492009-08-25 22:36:45 -04002235 ext4_grpblk_t counters[16];
Alex Tomasc9de5602008-01-29 00:19:52 -05002236 } sg;
2237
2238 group--;
2239 if (group == 0)
2240 seq_printf(seq, "#%-5s: %-5s %-5s %-5s "
2241 "[ %-5s %-5s %-5s %-5s %-5s %-5s %-5s "
2242 "%-5s %-5s %-5s %-5s %-5s %-5s %-5s ]\n",
2243 "group", "free", "frags", "first",
2244 "2^0", "2^1", "2^2", "2^3", "2^4", "2^5", "2^6",
2245 "2^7", "2^8", "2^9", "2^10", "2^11", "2^12", "2^13");
2246
2247 i = (sb->s_blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2248 sizeof(struct ext4_group_info);
Aditya Kali1c8457c2012-06-30 19:10:57 -04002249 grinfo = ext4_get_group_info(sb, group);
2250 /* Load the group info in memory only if not already loaded. */
2251 if (unlikely(EXT4_MB_GRP_NEED_INIT(grinfo))) {
2252 err = ext4_mb_load_buddy(sb, group, &e4b);
2253 if (err) {
2254 seq_printf(seq, "#%-5u: I/O error\n", group);
2255 return 0;
2256 }
2257 buddy_loaded = 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002258 }
Aditya Kali1c8457c2012-06-30 19:10:57 -04002259
Alex Tomasc9de5602008-01-29 00:19:52 -05002260 memcpy(&sg, ext4_get_group_info(sb, group), i);
Aditya Kali1c8457c2012-06-30 19:10:57 -04002261
2262 if (buddy_loaded)
2263 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002264
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002265 seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
Alex Tomasc9de5602008-01-29 00:19:52 -05002266 sg.info.bb_fragments, sg.info.bb_first_free);
2267 for (i = 0; i <= 13; i++)
2268 seq_printf(seq, " %-5u", i <= sb->s_blocksize_bits + 1 ?
2269 sg.info.bb_counters[i] : 0);
2270 seq_printf(seq, " ]\n");
2271
2272 return 0;
2273}
2274
2275static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2276{
2277}
2278
Tobias Klauser7f1346a2009-09-05 09:28:54 -04002279static const struct seq_operations ext4_mb_seq_groups_ops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002280 .start = ext4_mb_seq_groups_start,
2281 .next = ext4_mb_seq_groups_next,
2282 .stop = ext4_mb_seq_groups_stop,
2283 .show = ext4_mb_seq_groups_show,
2284};
2285
2286static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)
2287{
Al Virod9dda782013-03-31 18:16:14 -04002288 struct super_block *sb = PDE_DATA(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05002289 int rc;
2290
2291 rc = seq_open(file, &ext4_mb_seq_groups_ops);
2292 if (rc == 0) {
Joe Perchesa271fe82010-07-27 11:56:04 -04002293 struct seq_file *m = file->private_data;
Alex Tomasc9de5602008-01-29 00:19:52 -05002294 m->private = sb;
2295 }
2296 return rc;
2297
2298}
2299
Tobias Klauser7f1346a2009-09-05 09:28:54 -04002300static const struct file_operations ext4_mb_seq_groups_fops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002301 .owner = THIS_MODULE,
2302 .open = ext4_mb_seq_groups_open,
2303 .read = seq_read,
2304 .llseek = seq_lseek,
2305 .release = seq_release,
2306};
2307
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002308static struct kmem_cache *get_groupinfo_cache(int blocksize_bits)
2309{
2310 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2311 struct kmem_cache *cachep = ext4_groupinfo_caches[cache_index];
2312
2313 BUG_ON(!cachep);
2314 return cachep;
2315}
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002316
Theodore Ts'o28623c22012-09-05 01:31:50 -04002317/*
2318 * Allocate the top-level s_group_info array for the specified number
2319 * of groups
2320 */
2321int ext4_mb_alloc_groupinfo(struct super_block *sb, ext4_group_t ngroups)
2322{
2323 struct ext4_sb_info *sbi = EXT4_SB(sb);
2324 unsigned size;
2325 struct ext4_group_info ***new_groupinfo;
2326
2327 size = (ngroups + EXT4_DESC_PER_BLOCK(sb) - 1) >>
2328 EXT4_DESC_PER_BLOCK_BITS(sb);
2329 if (size <= sbi->s_group_info_size)
2330 return 0;
2331
2332 size = roundup_pow_of_two(sizeof(*sbi->s_group_info) * size);
2333 new_groupinfo = ext4_kvzalloc(size, GFP_KERNEL);
2334 if (!new_groupinfo) {
2335 ext4_msg(sb, KERN_ERR, "can't allocate buddy meta group");
2336 return -ENOMEM;
2337 }
2338 if (sbi->s_group_info) {
2339 memcpy(new_groupinfo, sbi->s_group_info,
2340 sbi->s_group_info_size * sizeof(*sbi->s_group_info));
2341 ext4_kvfree(sbi->s_group_info);
2342 }
2343 sbi->s_group_info = new_groupinfo;
2344 sbi->s_group_info_size = size / sizeof(*sbi->s_group_info);
2345 ext4_debug("allocated s_groupinfo array for %d meta_bg's\n",
2346 sbi->s_group_info_size);
2347 return 0;
2348}
2349
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002350/* Create and initialize ext4_group_info data for the given group. */
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002351int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002352 struct ext4_group_desc *desc)
2353{
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002354 int i;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002355 int metalen = 0;
2356 struct ext4_sb_info *sbi = EXT4_SB(sb);
2357 struct ext4_group_info **meta_group_info;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002358 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002359
2360 /*
2361 * First check if this group is the first of a reserved block.
2362 * If it's true, we have to allocate a new table of pointers
2363 * to ext4_group_info structures
2364 */
2365 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
2366 metalen = sizeof(*meta_group_info) <<
2367 EXT4_DESC_PER_BLOCK_BITS(sb);
2368 meta_group_info = kmalloc(metalen, GFP_KERNEL);
2369 if (meta_group_info == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04002370 ext4_msg(sb, KERN_ERR, "can't allocate mem "
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002371 "for a buddy group");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002372 goto exit_meta_group_info;
2373 }
2374 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] =
2375 meta_group_info;
2376 }
2377
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002378 meta_group_info =
2379 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)];
2380 i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
2381
Wei Yongjun85556c92012-09-26 20:43:37 -04002382 meta_group_info[i] = kmem_cache_zalloc(cachep, GFP_KERNEL);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002383 if (meta_group_info[i] == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04002384 ext4_msg(sb, KERN_ERR, "can't allocate buddy mem");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002385 goto exit_group_info;
2386 }
2387 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
2388 &(meta_group_info[i]->bb_state));
2389
2390 /*
2391 * initialize bb_free to be able to skip
2392 * empty groups without initialization
2393 */
2394 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2395 meta_group_info[i]->bb_free =
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04002396 ext4_free_clusters_after_init(sb, group, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002397 } else {
2398 meta_group_info[i]->bb_free =
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002399 ext4_free_group_clusters(sb, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002400 }
2401
2402 INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002403 init_rwsem(&meta_group_info[i]->alloc_sem);
Venkatesh Pallipadi64e290e2010-03-04 22:25:21 -05002404 meta_group_info[i]->bb_free_root = RB_ROOT;
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002405 meta_group_info[i]->bb_largest_free_order = -1; /* uninit */
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002406
2407#ifdef DOUBLE_CHECK
2408 {
2409 struct buffer_head *bh;
2410 meta_group_info[i]->bb_bitmap =
2411 kmalloc(sb->s_blocksize, GFP_KERNEL);
2412 BUG_ON(meta_group_info[i]->bb_bitmap == NULL);
2413 bh = ext4_read_block_bitmap(sb, group);
2414 BUG_ON(bh == NULL);
2415 memcpy(meta_group_info[i]->bb_bitmap, bh->b_data,
2416 sb->s_blocksize);
2417 put_bh(bh);
2418 }
2419#endif
2420
2421 return 0;
2422
2423exit_group_info:
2424 /* If a meta_group_info table has been allocated, release it now */
Tao Macaaf7a22011-07-11 18:42:42 -04002425 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002426 kfree(sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)]);
Tao Macaaf7a22011-07-11 18:42:42 -04002427 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] = NULL;
2428 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002429exit_meta_group_info:
2430 return -ENOMEM;
2431} /* ext4_mb_add_groupinfo */
2432
Alex Tomasc9de5602008-01-29 00:19:52 -05002433static int ext4_mb_init_backend(struct super_block *sb)
2434{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002435 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002436 ext4_group_t i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002437 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002438 int err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002439 struct ext4_group_desc *desc;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002440 struct kmem_cache *cachep;
Alex Tomasc9de5602008-01-29 00:19:52 -05002441
Theodore Ts'o28623c22012-09-05 01:31:50 -04002442 err = ext4_mb_alloc_groupinfo(sb, ngroups);
2443 if (err)
2444 return err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002445
Alex Tomasc9de5602008-01-29 00:19:52 -05002446 sbi->s_buddy_cache = new_inode(sb);
2447 if (sbi->s_buddy_cache == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002448 ext4_msg(sb, KERN_ERR, "can't get new inode");
Alex Tomasc9de5602008-01-29 00:19:52 -05002449 goto err_freesgi;
2450 }
Yu Jian48e60612011-08-01 17:41:39 -04002451 /* To avoid potentially colliding with an valid on-disk inode number,
2452 * use EXT4_BAD_INO for the buddy cache inode number. This inode is
2453 * not in the inode hash, so it should never be found by iget(), but
2454 * this will avoid confusion if it ever shows up during debugging. */
2455 sbi->s_buddy_cache->i_ino = EXT4_BAD_INO;
Alex Tomasc9de5602008-01-29 00:19:52 -05002456 EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002457 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002458 desc = ext4_get_group_desc(sb, i, NULL);
2459 if (desc == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002460 ext4_msg(sb, KERN_ERR, "can't read descriptor %u", i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002461 goto err_freebuddy;
2462 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002463 if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
2464 goto err_freebuddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05002465 }
2466
2467 return 0;
2468
2469err_freebuddy:
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002470 cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Roel Kluinf1fa3342008-04-29 22:01:15 -04002471 while (i-- > 0)
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002472 kmem_cache_free(cachep, ext4_get_group_info(sb, i));
Theodore Ts'o28623c22012-09-05 01:31:50 -04002473 i = sbi->s_group_info_size;
Roel Kluinf1fa3342008-04-29 22:01:15 -04002474 while (i-- > 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002475 kfree(sbi->s_group_info[i]);
2476 iput(sbi->s_buddy_cache);
2477err_freesgi:
Theodore Ts'of18a5f22011-08-01 08:45:38 -04002478 ext4_kvfree(sbi->s_group_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05002479 return -ENOMEM;
2480}
2481
Eric Sandeen2892c152011-02-12 08:12:18 -05002482static void ext4_groupinfo_destroy_slabs(void)
2483{
2484 int i;
2485
2486 for (i = 0; i < NR_GRPINFO_CACHES; i++) {
2487 if (ext4_groupinfo_caches[i])
2488 kmem_cache_destroy(ext4_groupinfo_caches[i]);
2489 ext4_groupinfo_caches[i] = NULL;
2490 }
2491}
2492
2493static int ext4_groupinfo_create_slab(size_t size)
2494{
2495 static DEFINE_MUTEX(ext4_grpinfo_slab_create_mutex);
2496 int slab_size;
2497 int blocksize_bits = order_base_2(size);
2498 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2499 struct kmem_cache *cachep;
2500
2501 if (cache_index >= NR_GRPINFO_CACHES)
2502 return -EINVAL;
2503
2504 if (unlikely(cache_index < 0))
2505 cache_index = 0;
2506
2507 mutex_lock(&ext4_grpinfo_slab_create_mutex);
2508 if (ext4_groupinfo_caches[cache_index]) {
2509 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2510 return 0; /* Already created */
2511 }
2512
2513 slab_size = offsetof(struct ext4_group_info,
2514 bb_counters[blocksize_bits + 2]);
2515
2516 cachep = kmem_cache_create(ext4_groupinfo_slab_names[cache_index],
2517 slab_size, 0, SLAB_RECLAIM_ACCOUNT,
2518 NULL);
2519
Tao Ma823ba012011-07-11 18:26:01 -04002520 ext4_groupinfo_caches[cache_index] = cachep;
2521
Eric Sandeen2892c152011-02-12 08:12:18 -05002522 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2523 if (!cachep) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002524 printk(KERN_EMERG
2525 "EXT4-fs: no memory for groupinfo slab cache\n");
Eric Sandeen2892c152011-02-12 08:12:18 -05002526 return -ENOMEM;
2527 }
2528
Eric Sandeen2892c152011-02-12 08:12:18 -05002529 return 0;
2530}
2531
Akira Fujita9d990122012-05-28 14:19:25 -04002532int ext4_mb_init(struct super_block *sb)
Alex Tomasc9de5602008-01-29 00:19:52 -05002533{
2534 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002535 unsigned i, j;
Alex Tomasc9de5602008-01-29 00:19:52 -05002536 unsigned offset;
2537 unsigned max;
Shen Feng74767c52008-07-11 19:27:31 -04002538 int ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002539
Eric Sandeen19278052009-08-25 22:36:25 -04002540 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_offsets);
Alex Tomasc9de5602008-01-29 00:19:52 -05002541
2542 sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
2543 if (sbi->s_mb_offsets == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002544 ret = -ENOMEM;
2545 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002546 }
Yasunori Gotoff7ef322008-12-17 00:48:39 -05002547
Eric Sandeen19278052009-08-25 22:36:25 -04002548 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_maxs);
Alex Tomasc9de5602008-01-29 00:19:52 -05002549 sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
2550 if (sbi->s_mb_maxs == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002551 ret = -ENOMEM;
2552 goto out;
2553 }
2554
Eric Sandeen2892c152011-02-12 08:12:18 -05002555 ret = ext4_groupinfo_create_slab(sb->s_blocksize);
2556 if (ret < 0)
2557 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002558
2559 /* order 0 is regular bitmap */
2560 sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
2561 sbi->s_mb_offsets[0] = 0;
2562
2563 i = 1;
2564 offset = 0;
2565 max = sb->s_blocksize << 2;
2566 do {
2567 sbi->s_mb_offsets[i] = offset;
2568 sbi->s_mb_maxs[i] = max;
2569 offset += 1 << (sb->s_blocksize_bits - i);
2570 max = max >> 1;
2571 i++;
2572 } while (i <= sb->s_blocksize_bits + 1);
2573
Alex Tomasc9de5602008-01-29 00:19:52 -05002574 spin_lock_init(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05002575 spin_lock_init(&sbi->s_bal_lock);
2576
2577 sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
2578 sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
2579 sbi->s_mb_stats = MB_DEFAULT_STATS;
2580 sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
2581 sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
Theodore Ts'o27baebb2011-09-09 19:02:51 -04002582 /*
2583 * The default group preallocation is 512, which for 4k block
2584 * sizes translates to 2 megabytes. However for bigalloc file
2585 * systems, this is probably too big (i.e, if the cluster size
2586 * is 1 megabyte, then group preallocation size becomes half a
2587 * gigabyte!). As a default, we will keep a two megabyte
2588 * group pralloc size for cluster sizes up to 64k, and after
2589 * that, we will force a minimum group preallocation size of
2590 * 32 clusters. This translates to 8 megs when the cluster
2591 * size is 256k, and 32 megs when the cluster size is 1 meg,
2592 * which seems reasonable as a default.
2593 */
2594 sbi->s_mb_group_prealloc = max(MB_DEFAULT_GROUP_PREALLOC >>
2595 sbi->s_cluster_bits, 32);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04002596 /*
2597 * If there is a s_stripe > 1, then we set the s_mb_group_prealloc
2598 * to the lowest multiple of s_stripe which is bigger than
2599 * the s_mb_group_prealloc as determined above. We want
2600 * the preallocation size to be an exact multiple of the
2601 * RAID stripe size so that preallocations don't fragment
2602 * the stripes.
2603 */
2604 if (sbi->s_stripe > 1) {
2605 sbi->s_mb_group_prealloc = roundup(
2606 sbi->s_mb_group_prealloc, sbi->s_stripe);
2607 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002608
Eric Sandeen730c2132008-09-13 15:23:29 -04002609 sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002610 if (sbi->s_locality_groups == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002611 ret = -ENOMEM;
Tao Ma7aa0bae2011-10-06 10:22:28 -04002612 goto out_free_groupinfo_slab;
Alex Tomasc9de5602008-01-29 00:19:52 -05002613 }
Eric Sandeen730c2132008-09-13 15:23:29 -04002614 for_each_possible_cpu(i) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002615 struct ext4_locality_group *lg;
Eric Sandeen730c2132008-09-13 15:23:29 -04002616 lg = per_cpu_ptr(sbi->s_locality_groups, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002617 mutex_init(&lg->lg_mutex);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002618 for (j = 0; j < PREALLOC_TB_SIZE; j++)
2619 INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
Alex Tomasc9de5602008-01-29 00:19:52 -05002620 spin_lock_init(&lg->lg_prealloc_lock);
2621 }
2622
Yu Jian79a77c52011-08-01 17:41:46 -04002623 /* init file for buddy data */
2624 ret = ext4_mb_init_backend(sb);
Tao Ma7aa0bae2011-10-06 10:22:28 -04002625 if (ret != 0)
2626 goto out_free_locality_groups;
Yu Jian79a77c52011-08-01 17:41:46 -04002627
Theodore Ts'o296c3552009-09-30 00:32:42 -04002628 if (sbi->s_proc)
2629 proc_create_data("mb_groups", S_IRUGO, sbi->s_proc,
2630 &ext4_mb_seq_groups_fops, sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002631
Tao Ma7aa0bae2011-10-06 10:22:28 -04002632 return 0;
2633
2634out_free_locality_groups:
2635 free_percpu(sbi->s_locality_groups);
2636 sbi->s_locality_groups = NULL;
2637out_free_groupinfo_slab:
2638 ext4_groupinfo_destroy_slabs();
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002639out:
Tao Ma7aa0bae2011-10-06 10:22:28 -04002640 kfree(sbi->s_mb_offsets);
2641 sbi->s_mb_offsets = NULL;
2642 kfree(sbi->s_mb_maxs);
2643 sbi->s_mb_maxs = NULL;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002644 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002645}
2646
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002647/* need to called with the ext4 group lock held */
Alex Tomasc9de5602008-01-29 00:19:52 -05002648static void ext4_mb_cleanup_pa(struct ext4_group_info *grp)
2649{
2650 struct ext4_prealloc_space *pa;
2651 struct list_head *cur, *tmp;
2652 int count = 0;
2653
2654 list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
2655 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
2656 list_del(&pa->pa_group_list);
2657 count++;
Aneesh Kumar K.V688f05a2008-10-13 12:14:14 -04002658 kmem_cache_free(ext4_pspace_cachep, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05002659 }
2660 if (count)
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002661 mb_debug(1, "mballoc: %u PAs left\n", count);
Alex Tomasc9de5602008-01-29 00:19:52 -05002662
2663}
2664
2665int ext4_mb_release(struct super_block *sb)
2666{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002667 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002668 ext4_group_t i;
2669 int num_meta_group_infos;
2670 struct ext4_group_info *grinfo;
2671 struct ext4_sb_info *sbi = EXT4_SB(sb);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002672 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Alex Tomasc9de5602008-01-29 00:19:52 -05002673
Salman Qazi95599962012-05-31 23:52:14 -04002674 if (sbi->s_proc)
2675 remove_proc_entry("mb_groups", sbi->s_proc);
2676
Alex Tomasc9de5602008-01-29 00:19:52 -05002677 if (sbi->s_group_info) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04002678 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002679 grinfo = ext4_get_group_info(sb, i);
2680#ifdef DOUBLE_CHECK
2681 kfree(grinfo->bb_bitmap);
2682#endif
2683 ext4_lock_group(sb, i);
2684 ext4_mb_cleanup_pa(grinfo);
2685 ext4_unlock_group(sb, i);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002686 kmem_cache_free(cachep, grinfo);
Alex Tomasc9de5602008-01-29 00:19:52 -05002687 }
Theodore Ts'o8df96752009-05-01 08:50:38 -04002688 num_meta_group_infos = (ngroups +
Alex Tomasc9de5602008-01-29 00:19:52 -05002689 EXT4_DESC_PER_BLOCK(sb) - 1) >>
2690 EXT4_DESC_PER_BLOCK_BITS(sb);
2691 for (i = 0; i < num_meta_group_infos; i++)
2692 kfree(sbi->s_group_info[i]);
Theodore Ts'of18a5f22011-08-01 08:45:38 -04002693 ext4_kvfree(sbi->s_group_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05002694 }
2695 kfree(sbi->s_mb_offsets);
2696 kfree(sbi->s_mb_maxs);
2697 if (sbi->s_buddy_cache)
2698 iput(sbi->s_buddy_cache);
2699 if (sbi->s_mb_stats) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002700 ext4_msg(sb, KERN_INFO,
2701 "mballoc: %u blocks %u reqs (%u success)",
Alex Tomasc9de5602008-01-29 00:19:52 -05002702 atomic_read(&sbi->s_bal_allocated),
2703 atomic_read(&sbi->s_bal_reqs),
2704 atomic_read(&sbi->s_bal_success));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002705 ext4_msg(sb, KERN_INFO,
2706 "mballoc: %u extents scanned, %u goal hits, "
2707 "%u 2^N hits, %u breaks, %u lost",
Alex Tomasc9de5602008-01-29 00:19:52 -05002708 atomic_read(&sbi->s_bal_ex_scanned),
2709 atomic_read(&sbi->s_bal_goals),
2710 atomic_read(&sbi->s_bal_2orders),
2711 atomic_read(&sbi->s_bal_breaks),
2712 atomic_read(&sbi->s_mb_lost_chunks));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002713 ext4_msg(sb, KERN_INFO,
2714 "mballoc: %lu generated and it took %Lu",
Tao Maced156e2011-07-23 16:18:05 -04002715 sbi->s_mb_buddies_generated,
Alex Tomasc9de5602008-01-29 00:19:52 -05002716 sbi->s_mb_generation_time);
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002717 ext4_msg(sb, KERN_INFO,
2718 "mballoc: %u preallocated, %u discarded",
Alex Tomasc9de5602008-01-29 00:19:52 -05002719 atomic_read(&sbi->s_mb_preallocated),
2720 atomic_read(&sbi->s_mb_discarded));
2721 }
2722
Eric Sandeen730c2132008-09-13 15:23:29 -04002723 free_percpu(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05002724
2725 return 0;
2726}
2727
Lukas Czerner77ca6cd2010-10-27 21:30:11 -04002728static inline int ext4_issue_discard(struct super_block *sb,
Theodore Ts'o84130192011-09-09 18:50:51 -04002729 ext4_group_t block_group, ext4_grpblk_t cluster, int count)
Jiaying Zhang5c521832010-07-27 11:56:05 -04002730{
Jiaying Zhang5c521832010-07-27 11:56:05 -04002731 ext4_fsblk_t discard_block;
2732
Theodore Ts'o84130192011-09-09 18:50:51 -04002733 discard_block = (EXT4_C2B(EXT4_SB(sb), cluster) +
2734 ext4_group_first_block_no(sb, block_group));
2735 count = EXT4_C2B(EXT4_SB(sb), count);
Jiaying Zhang5c521832010-07-27 11:56:05 -04002736 trace_ext4_discard_blocks(sb,
2737 (unsigned long long) discard_block, count);
Lukas Czerner93259632011-01-10 12:09:59 -05002738 return sb_issue_discard(sb, discard_block, count, GFP_NOFS, 0);
Jiaying Zhang5c521832010-07-27 11:56:05 -04002739}
2740
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002741/*
2742 * This function is called by the jbd2 layer once the commit has finished,
2743 * so we know we can free the blocks that were released with that commit.
2744 */
Bobi Jam18aadd42012-02-20 17:53:02 -05002745static void ext4_free_data_callback(struct super_block *sb,
2746 struct ext4_journal_cb_entry *jce,
2747 int rc)
Alex Tomasc9de5602008-01-29 00:19:52 -05002748{
Bobi Jam18aadd42012-02-20 17:53:02 -05002749 struct ext4_free_data *entry = (struct ext4_free_data *)jce;
Alex Tomasc9de5602008-01-29 00:19:52 -05002750 struct ext4_buddy e4b;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002751 struct ext4_group_info *db;
Theodore Ts'od9f34502011-04-30 13:47:24 -04002752 int err, count = 0, count2 = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002753
Bobi Jam18aadd42012-02-20 17:53:02 -05002754 mb_debug(1, "gonna free %u blocks in group %u (0x%p):",
2755 entry->efd_count, entry->efd_group, entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05002756
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05002757 if (test_opt(sb, DISCARD)) {
2758 err = ext4_issue_discard(sb, entry->efd_group,
2759 entry->efd_start_cluster,
2760 entry->efd_count);
2761 if (err && err != -EOPNOTSUPP)
2762 ext4_msg(sb, KERN_WARNING, "discard request in"
2763 " group:%d block:%d count:%d failed"
2764 " with %d", entry->efd_group,
2765 entry->efd_start_cluster,
2766 entry->efd_count, err);
2767 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002768
Bobi Jam18aadd42012-02-20 17:53:02 -05002769 err = ext4_mb_load_buddy(sb, entry->efd_group, &e4b);
2770 /* we expect to find existing buddy because it's pinned */
2771 BUG_ON(err != 0);
Theodore Ts'ob90f6872010-04-20 16:51:59 -04002772
Alex Tomasc9de5602008-01-29 00:19:52 -05002773
Bobi Jam18aadd42012-02-20 17:53:02 -05002774 db = e4b.bd_info;
2775 /* there are blocks to put in buddy to make them really free */
2776 count += entry->efd_count;
2777 count2++;
2778 ext4_lock_group(sb, entry->efd_group);
2779 /* Take it out of per group rb tree */
2780 rb_erase(&entry->efd_node, &(db->bb_free_root));
2781 mb_free_blocks(NULL, &e4b, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002782
Bobi Jam18aadd42012-02-20 17:53:02 -05002783 /*
2784 * Clear the trimmed flag for the group so that the next
2785 * ext4_trim_fs can trim it.
2786 * If the volume is mounted with -o discard, online discard
2787 * is supported and the free blocks will be trimmed online.
2788 */
2789 if (!test_opt(sb, DISCARD))
2790 EXT4_MB_GRP_CLEAR_TRIMMED(db);
2791
2792 if (!db->bb_free_root.rb_node) {
2793 /* No more items in the per group rb tree
2794 * balance refcounts from ext4_mb_free_metadata()
Tao Ma3d56b8d2011-07-11 00:03:38 -04002795 */
Bobi Jam18aadd42012-02-20 17:53:02 -05002796 page_cache_release(e4b.bd_buddy_page);
2797 page_cache_release(e4b.bd_bitmap_page);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002798 }
Bobi Jam18aadd42012-02-20 17:53:02 -05002799 ext4_unlock_group(sb, entry->efd_group);
2800 kmem_cache_free(ext4_free_data_cachep, entry);
2801 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002802
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002803 mb_debug(1, "freed %u blocks in %u structures\n", count, count2);
Alex Tomasc9de5602008-01-29 00:19:52 -05002804}
2805
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04002806int __init ext4_init_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05002807{
Theodore Ts'o16828082010-10-27 21:30:09 -04002808 ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space,
2809 SLAB_RECLAIM_ACCOUNT);
Alex Tomasc9de5602008-01-29 00:19:52 -05002810 if (ext4_pspace_cachep == NULL)
2811 return -ENOMEM;
2812
Theodore Ts'o16828082010-10-27 21:30:09 -04002813 ext4_ac_cachep = KMEM_CACHE(ext4_allocation_context,
2814 SLAB_RECLAIM_ACCOUNT);
Eric Sandeen256bdb42008-02-10 01:13:33 -05002815 if (ext4_ac_cachep == NULL) {
2816 kmem_cache_destroy(ext4_pspace_cachep);
2817 return -ENOMEM;
2818 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002819
Bobi Jam18aadd42012-02-20 17:53:02 -05002820 ext4_free_data_cachep = KMEM_CACHE(ext4_free_data,
2821 SLAB_RECLAIM_ACCOUNT);
2822 if (ext4_free_data_cachep == NULL) {
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002823 kmem_cache_destroy(ext4_pspace_cachep);
2824 kmem_cache_destroy(ext4_ac_cachep);
2825 return -ENOMEM;
2826 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002827 return 0;
2828}
2829
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04002830void ext4_exit_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05002831{
Theodore Ts'o60e66792010-05-17 07:00:00 -04002832 /*
Jesper Dangaard Brouer3e03f9c2009-07-05 22:29:27 -04002833 * Wait for completion of call_rcu()'s on ext4_pspace_cachep
2834 * before destroying the slab cache.
2835 */
2836 rcu_barrier();
Alex Tomasc9de5602008-01-29 00:19:52 -05002837 kmem_cache_destroy(ext4_pspace_cachep);
Eric Sandeen256bdb42008-02-10 01:13:33 -05002838 kmem_cache_destroy(ext4_ac_cachep);
Bobi Jam18aadd42012-02-20 17:53:02 -05002839 kmem_cache_destroy(ext4_free_data_cachep);
Eric Sandeen2892c152011-02-12 08:12:18 -05002840 ext4_groupinfo_destroy_slabs();
Alex Tomasc9de5602008-01-29 00:19:52 -05002841}
2842
2843
2844/*
Uwe Kleine-König73b2c712010-07-30 21:02:47 +02002845 * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
Alex Tomasc9de5602008-01-29 00:19:52 -05002846 * Returns 0 if success or error code
2847 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002848static noinline_for_stack int
2849ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002850 handle_t *handle, unsigned int reserv_clstrs)
Alex Tomasc9de5602008-01-29 00:19:52 -05002851{
2852 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002853 struct ext4_group_desc *gdp;
2854 struct buffer_head *gdp_bh;
2855 struct ext4_sb_info *sbi;
2856 struct super_block *sb;
2857 ext4_fsblk_t block;
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002858 int err, len;
Alex Tomasc9de5602008-01-29 00:19:52 -05002859
2860 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
2861 BUG_ON(ac->ac_b_ex.fe_len <= 0);
2862
2863 sb = ac->ac_sb;
2864 sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002865
2866 err = -EIO;
Theodore Ts'o574ca172008-07-11 19:27:31 -04002867 bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002868 if (!bitmap_bh)
2869 goto out_err;
2870
2871 err = ext4_journal_get_write_access(handle, bitmap_bh);
2872 if (err)
2873 goto out_err;
2874
2875 err = -EIO;
2876 gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
2877 if (!gdp)
2878 goto out_err;
2879
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002880 ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002881 ext4_free_group_clusters(sb, gdp));
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04002882
Alex Tomasc9de5602008-01-29 00:19:52 -05002883 err = ext4_journal_get_write_access(handle, gdp_bh);
2884 if (err)
2885 goto out_err;
2886
Akinobu Mitabda00de2010-03-03 23:53:25 -05002887 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002888
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002889 len = EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002890 if (!ext4_data_block_valid(sbi, block, len)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002891 ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
Theodore Ts'o1084f252012-03-19 23:13:43 -04002892 "fs metadata", block, block+len);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002893 /* File system mounted not to panic on error
2894 * Fix the bitmap and repeat the block allocation
2895 * We leak some of the blocks here.
2896 */
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002897 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04002898 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
2899 ac->ac_b_ex.fe_len);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002900 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Frank Mayhar03901312009-01-07 00:06:22 -05002901 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04002902 if (!err)
2903 err = -EAGAIN;
2904 goto out_err;
Alex Tomasc9de5602008-01-29 00:19:52 -05002905 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002906
2907 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002908#ifdef AGGRESSIVE_CHECK
2909 {
2910 int i;
2911 for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
2912 BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
2913 bitmap_bh->b_data));
2914 }
2915 }
2916#endif
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04002917 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
2918 ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05002919 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2920 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002921 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04002922 ext4_free_clusters_after_init(sb,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002923 ac->ac_b_ex.fe_group, gdp));
Alex Tomasc9de5602008-01-29 00:19:52 -05002924 }
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002925 len = ext4_free_group_clusters(sb, gdp) - ac->ac_b_ex.fe_len;
2926 ext4_free_group_clusters_set(sb, gdp, len);
Tao Ma79f1ba42012-10-22 00:34:32 -04002927 ext4_block_bitmap_csum_set(sb, ac->ac_b_ex.fe_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04002928 ext4_group_desc_csum_set(sb, ac->ac_b_ex.fe_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002929
2930 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04002931 percpu_counter_sub(&sbi->s_freeclusters_counter, ac->ac_b_ex.fe_len);
Mingming Caod2a17632008-07-14 17:52:37 -04002932 /*
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002933 * Now reduce the dirty block count also. Should not go negative
Mingming Caod2a17632008-07-14 17:52:37 -04002934 */
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002935 if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
2936 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04002937 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
2938 reserv_clstrs);
Alex Tomasc9de5602008-01-29 00:19:52 -05002939
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002940 if (sbi->s_log_groups_per_flex) {
2941 ext4_group_t flex_group = ext4_flex_group(sbi,
2942 ac->ac_b_ex.fe_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04002943 atomic64_sub(ac->ac_b_ex.fe_len,
2944 &sbi->s_flex_groups[flex_group].free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002945 }
2946
Frank Mayhar03901312009-01-07 00:06:22 -05002947 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002948 if (err)
2949 goto out_err;
Frank Mayhar03901312009-01-07 00:06:22 -05002950 err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002951
2952out_err:
Aneesh Kumar K.V42a10ad2008-02-10 01:07:28 -05002953 brelse(bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002954 return err;
2955}
2956
2957/*
2958 * here we normalize request for locality group
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04002959 * Group request are normalized to s_mb_group_prealloc, which goes to
2960 * s_strip if we set the same via mount option.
2961 * s_mb_group_prealloc can be configured via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002962 * /sys/fs/ext4/<partition>/mb_group_prealloc
Alex Tomasc9de5602008-01-29 00:19:52 -05002963 *
2964 * XXX: should we try to preallocate more than the group has now?
2965 */
2966static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
2967{
2968 struct super_block *sb = ac->ac_sb;
2969 struct ext4_locality_group *lg = ac->ac_lg;
2970
2971 BUG_ON(lg == NULL);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04002972 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002973 mb_debug(1, "#%u: goal %u blocks for locality group\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05002974 current->pid, ac->ac_g_ex.fe_len);
2975}
2976
2977/*
2978 * Normalization means making request better in terms of
2979 * size and alignment
2980 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002981static noinline_for_stack void
2982ext4_mb_normalize_request(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002983 struct ext4_allocation_request *ar)
2984{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002985 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002986 int bsbits, max;
2987 ext4_lblk_t end;
Curt Wohlgemuth1592d2c2012-02-20 17:53:03 -05002988 loff_t size, start_off;
2989 loff_t orig_size __maybe_unused;
Andi Kleen5a0790c2010-06-14 13:28:03 -04002990 ext4_lblk_t start;
Alex Tomasc9de5602008-01-29 00:19:52 -05002991 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04002992 struct ext4_prealloc_space *pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05002993
2994 /* do normalize only data requests, metadata requests
2995 do not need preallocation */
2996 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
2997 return;
2998
2999 /* sometime caller may want exact blocks */
3000 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
3001 return;
3002
3003 /* caller may indicate that preallocation isn't
3004 * required (it's a tail, for example) */
3005 if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
3006 return;
3007
3008 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
3009 ext4_mb_normalize_group_request(ac);
3010 return ;
3011 }
3012
3013 bsbits = ac->ac_sb->s_blocksize_bits;
3014
3015 /* first, let's learn actual file size
3016 * given current request is allocated */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003017 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003018 size = size << bsbits;
3019 if (size < i_size_read(ac->ac_inode))
3020 size = i_size_read(ac->ac_inode);
Andi Kleen5a0790c2010-06-14 13:28:03 -04003021 orig_size = size;
Alex Tomasc9de5602008-01-29 00:19:52 -05003022
Valerie Clement19304792008-05-13 19:31:14 -04003023 /* max size of free chunks */
3024 max = 2 << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003025
Valerie Clement19304792008-05-13 19:31:14 -04003026#define NRL_CHECK_SIZE(req, size, max, chunk_size) \
3027 (req <= (size) || max <= (chunk_size))
Alex Tomasc9de5602008-01-29 00:19:52 -05003028
3029 /* first, try to predict filesize */
3030 /* XXX: should this table be tunable? */
3031 start_off = 0;
3032 if (size <= 16 * 1024) {
3033 size = 16 * 1024;
3034 } else if (size <= 32 * 1024) {
3035 size = 32 * 1024;
3036 } else if (size <= 64 * 1024) {
3037 size = 64 * 1024;
3038 } else if (size <= 128 * 1024) {
3039 size = 128 * 1024;
3040 } else if (size <= 256 * 1024) {
3041 size = 256 * 1024;
3042 } else if (size <= 512 * 1024) {
3043 size = 512 * 1024;
3044 } else if (size <= 1024 * 1024) {
3045 size = 1024 * 1024;
Valerie Clement19304792008-05-13 19:31:14 -04003046 } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003047 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
Valerie Clement19304792008-05-13 19:31:14 -04003048 (21 - bsbits)) << 21;
3049 size = 2 * 1024 * 1024;
3050 } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003051 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3052 (22 - bsbits)) << 22;
3053 size = 4 * 1024 * 1024;
3054 } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
Valerie Clement19304792008-05-13 19:31:14 -04003055 (8<<20)>>bsbits, max, 8 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003056 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3057 (23 - bsbits)) << 23;
3058 size = 8 * 1024 * 1024;
3059 } else {
3060 start_off = (loff_t)ac->ac_o_ex.fe_logical << bsbits;
3061 size = ac->ac_o_ex.fe_len << bsbits;
3062 }
Andi Kleen5a0790c2010-06-14 13:28:03 -04003063 size = size >> bsbits;
3064 start = start_off >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003065
3066 /* don't cover already allocated blocks in selected range */
3067 if (ar->pleft && start <= ar->lleft) {
3068 size -= ar->lleft + 1 - start;
3069 start = ar->lleft + 1;
3070 }
3071 if (ar->pright && start + size - 1 >= ar->lright)
3072 size -= start + size - ar->lright;
3073
3074 end = start + size;
3075
3076 /* check we don't cross already preallocated blocks */
3077 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003078 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003079 ext4_lblk_t pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05003080
Alex Tomasc9de5602008-01-29 00:19:52 -05003081 if (pa->pa_deleted)
3082 continue;
3083 spin_lock(&pa->pa_lock);
3084 if (pa->pa_deleted) {
3085 spin_unlock(&pa->pa_lock);
3086 continue;
3087 }
3088
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003089 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3090 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003091
3092 /* PA must not overlap original request */
3093 BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
3094 ac->ac_o_ex.fe_logical < pa->pa_lstart));
3095
Eric Sandeen38877f42009-08-17 23:55:24 -04003096 /* skip PAs this normalized request doesn't overlap with */
3097 if (pa->pa_lstart >= end || pa_end <= start) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003098 spin_unlock(&pa->pa_lock);
3099 continue;
3100 }
3101 BUG_ON(pa->pa_lstart <= start && pa_end >= end);
3102
Eric Sandeen38877f42009-08-17 23:55:24 -04003103 /* adjust start or end to be adjacent to this pa */
Alex Tomasc9de5602008-01-29 00:19:52 -05003104 if (pa_end <= ac->ac_o_ex.fe_logical) {
3105 BUG_ON(pa_end < start);
3106 start = pa_end;
Eric Sandeen38877f42009-08-17 23:55:24 -04003107 } else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003108 BUG_ON(pa->pa_lstart > end);
3109 end = pa->pa_lstart;
3110 }
3111 spin_unlock(&pa->pa_lock);
3112 }
3113 rcu_read_unlock();
3114 size = end - start;
3115
3116 /* XXX: extra loop to check we really don't overlap preallocations */
3117 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003118 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003119 ext4_lblk_t pa_end;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003120
Alex Tomasc9de5602008-01-29 00:19:52 -05003121 spin_lock(&pa->pa_lock);
3122 if (pa->pa_deleted == 0) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003123 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3124 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003125 BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
3126 }
3127 spin_unlock(&pa->pa_lock);
3128 }
3129 rcu_read_unlock();
3130
3131 if (start + size <= ac->ac_o_ex.fe_logical &&
3132 start > ac->ac_o_ex.fe_logical) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003133 ext4_msg(ac->ac_sb, KERN_ERR,
3134 "start %lu, size %lu, fe_logical %lu",
3135 (unsigned long) start, (unsigned long) size,
3136 (unsigned long) ac->ac_o_ex.fe_logical);
Alex Tomasc9de5602008-01-29 00:19:52 -05003137 }
3138 BUG_ON(start + size <= ac->ac_o_ex.fe_logical &&
3139 start > ac->ac_o_ex.fe_logical);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04003140 BUG_ON(size <= 0 || size > EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05003141
3142 /* now prepare goal request */
3143
3144 /* XXX: is it better to align blocks WRT to logical
3145 * placement or satisfy big request as is */
3146 ac->ac_g_ex.fe_logical = start;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003147 ac->ac_g_ex.fe_len = EXT4_NUM_B2C(sbi, size);
Alex Tomasc9de5602008-01-29 00:19:52 -05003148
3149 /* define goal start in order to merge */
3150 if (ar->pright && (ar->lright == (start + size))) {
3151 /* merge to the right */
3152 ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
3153 &ac->ac_f_ex.fe_group,
3154 &ac->ac_f_ex.fe_start);
3155 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3156 }
3157 if (ar->pleft && (ar->lleft + 1 == start)) {
3158 /* merge to the left */
3159 ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
3160 &ac->ac_f_ex.fe_group,
3161 &ac->ac_f_ex.fe_start);
3162 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3163 }
3164
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003165 mb_debug(1, "goal: %u(was %u) blocks at %u\n", (unsigned) size,
Alex Tomasc9de5602008-01-29 00:19:52 -05003166 (unsigned) orig_size, (unsigned) start);
3167}
3168
3169static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
3170{
3171 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3172
3173 if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
3174 atomic_inc(&sbi->s_bal_reqs);
3175 atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
Curt Wohlgemuth291dae42010-05-16 16:00:00 -04003176 if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
Alex Tomasc9de5602008-01-29 00:19:52 -05003177 atomic_inc(&sbi->s_bal_success);
3178 atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
3179 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
3180 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
3181 atomic_inc(&sbi->s_bal_goals);
3182 if (ac->ac_found > sbi->s_mb_max_to_scan)
3183 atomic_inc(&sbi->s_bal_breaks);
3184 }
3185
Theodore Ts'o296c3552009-09-30 00:32:42 -04003186 if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
3187 trace_ext4_mballoc_alloc(ac);
3188 else
3189 trace_ext4_mballoc_prealloc(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003190}
3191
3192/*
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003193 * Called on failure; free up any blocks from the inode PA for this
3194 * context. We don't need this for MB_GROUP_PA because we only change
3195 * pa_free in ext4_mb_release_context(), but on failure, we've already
3196 * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
3197 */
3198static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
3199{
3200 struct ext4_prealloc_space *pa = ac->ac_pa;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003201
Zheng Liu400db9d2012-05-28 17:53:53 -04003202 if (pa && pa->pa_type == MB_INODE_PA)
3203 pa->pa_free += ac->ac_b_ex.fe_len;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003204}
3205
3206/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003207 * use blocks preallocated to inode
3208 */
3209static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
3210 struct ext4_prealloc_space *pa)
3211{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003212 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003213 ext4_fsblk_t start;
3214 ext4_fsblk_t end;
3215 int len;
3216
3217 /* found preallocated blocks, use them */
3218 start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003219 end = min(pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len),
3220 start + EXT4_C2B(sbi, ac->ac_o_ex.fe_len));
3221 len = EXT4_NUM_B2C(sbi, end - start);
Alex Tomasc9de5602008-01-29 00:19:52 -05003222 ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
3223 &ac->ac_b_ex.fe_start);
3224 ac->ac_b_ex.fe_len = len;
3225 ac->ac_status = AC_STATUS_FOUND;
3226 ac->ac_pa = pa;
3227
3228 BUG_ON(start < pa->pa_pstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003229 BUG_ON(end > pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len));
Alex Tomasc9de5602008-01-29 00:19:52 -05003230 BUG_ON(pa->pa_free < len);
3231 pa->pa_free -= len;
3232
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003233 mb_debug(1, "use %llu/%u from inode pa %p\n", start, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003234}
3235
3236/*
3237 * use blocks preallocated to locality group
3238 */
3239static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
3240 struct ext4_prealloc_space *pa)
3241{
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04003242 unsigned int len = ac->ac_o_ex.fe_len;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003243
Alex Tomasc9de5602008-01-29 00:19:52 -05003244 ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
3245 &ac->ac_b_ex.fe_group,
3246 &ac->ac_b_ex.fe_start);
3247 ac->ac_b_ex.fe_len = len;
3248 ac->ac_status = AC_STATUS_FOUND;
3249 ac->ac_pa = pa;
3250
3251 /* we don't correct pa_pstart or pa_plen here to avoid
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003252 * possible race when the group is being loaded concurrently
Alex Tomasc9de5602008-01-29 00:19:52 -05003253 * instead we correct pa later, after blocks are marked
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003254 * in on-disk bitmap -- see ext4_mb_release_context()
3255 * Other CPUs are prevented from allocating from this pa by lg_mutex
Alex Tomasc9de5602008-01-29 00:19:52 -05003256 */
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003257 mb_debug(1, "use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003258}
3259
3260/*
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003261 * Return the prealloc space that have minimal distance
3262 * from the goal block. @cpa is the prealloc
3263 * space that is having currently known minimal distance
3264 * from the goal block.
3265 */
3266static struct ext4_prealloc_space *
3267ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
3268 struct ext4_prealloc_space *pa,
3269 struct ext4_prealloc_space *cpa)
3270{
3271 ext4_fsblk_t cur_distance, new_distance;
3272
3273 if (cpa == NULL) {
3274 atomic_inc(&pa->pa_count);
3275 return pa;
3276 }
3277 cur_distance = abs(goal_block - cpa->pa_pstart);
3278 new_distance = abs(goal_block - pa->pa_pstart);
3279
Coly Li5a54b2f2011-02-24 14:10:05 -05003280 if (cur_distance <= new_distance)
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003281 return cpa;
3282
3283 /* drop the previous reference */
3284 atomic_dec(&cpa->pa_count);
3285 atomic_inc(&pa->pa_count);
3286 return pa;
3287}
3288
3289/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003290 * search goal blocks in preallocated space
3291 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003292static noinline_for_stack int
3293ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003294{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003295 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003296 int order, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003297 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3298 struct ext4_locality_group *lg;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003299 struct ext4_prealloc_space *pa, *cpa = NULL;
3300 ext4_fsblk_t goal_block;
Alex Tomasc9de5602008-01-29 00:19:52 -05003301
3302 /* only data can be preallocated */
3303 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3304 return 0;
3305
3306 /* first, try per-file preallocation */
3307 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003308 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003309
3310 /* all fields in this condition don't change,
3311 * so we can skip locking for them */
3312 if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003313 ac->ac_o_ex.fe_logical >= (pa->pa_lstart +
3314 EXT4_C2B(sbi, pa->pa_len)))
Alex Tomasc9de5602008-01-29 00:19:52 -05003315 continue;
3316
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003317 /* non-extent files can't have physical blocks past 2^32 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003318 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003319 (pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len) >
3320 EXT4_MAX_BLOCK_FILE_PHYS))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003321 continue;
3322
Alex Tomasc9de5602008-01-29 00:19:52 -05003323 /* found preallocated blocks, use them */
3324 spin_lock(&pa->pa_lock);
3325 if (pa->pa_deleted == 0 && pa->pa_free) {
3326 atomic_inc(&pa->pa_count);
3327 ext4_mb_use_inode_pa(ac, pa);
3328 spin_unlock(&pa->pa_lock);
3329 ac->ac_criteria = 10;
3330 rcu_read_unlock();
3331 return 1;
3332 }
3333 spin_unlock(&pa->pa_lock);
3334 }
3335 rcu_read_unlock();
3336
3337 /* can we use group allocation? */
3338 if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
3339 return 0;
3340
3341 /* inode may have no locality group for some reason */
3342 lg = ac->ac_lg;
3343 if (lg == NULL)
3344 return 0;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003345 order = fls(ac->ac_o_ex.fe_len) - 1;
3346 if (order > PREALLOC_TB_SIZE - 1)
3347 /* The max size of hash table is PREALLOC_TB_SIZE */
3348 order = PREALLOC_TB_SIZE - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003349
Akinobu Mitabda00de2010-03-03 23:53:25 -05003350 goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003351 /*
3352 * search for the prealloc space that is having
3353 * minimal distance from the goal block.
3354 */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003355 for (i = order; i < PREALLOC_TB_SIZE; i++) {
3356 rcu_read_lock();
3357 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
3358 pa_inode_list) {
3359 spin_lock(&pa->pa_lock);
3360 if (pa->pa_deleted == 0 &&
3361 pa->pa_free >= ac->ac_o_ex.fe_len) {
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003362
3363 cpa = ext4_mb_check_group_pa(goal_block,
3364 pa, cpa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003365 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003366 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003367 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003368 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003369 }
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003370 if (cpa) {
3371 ext4_mb_use_group_pa(ac, cpa);
3372 ac->ac_criteria = 20;
3373 return 1;
3374 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003375 return 0;
3376}
3377
3378/*
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003379 * the function goes through all block freed in the group
3380 * but not yet committed and marks them used in in-core bitmap.
3381 * buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003382 * Need to be called with the ext4 group lock held
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003383 */
3384static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
3385 ext4_group_t group)
3386{
3387 struct rb_node *n;
3388 struct ext4_group_info *grp;
3389 struct ext4_free_data *entry;
3390
3391 grp = ext4_get_group_info(sb, group);
3392 n = rb_first(&(grp->bb_free_root));
3393
3394 while (n) {
Bobi Jam18aadd42012-02-20 17:53:02 -05003395 entry = rb_entry(n, struct ext4_free_data, efd_node);
3396 ext4_set_bits(bitmap, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003397 n = rb_next(n);
3398 }
3399 return;
3400}
3401
3402/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003403 * the function goes through all preallocation in this group and marks them
3404 * used in in-core bitmap. buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003405 * Need to be called with ext4 group lock held
Alex Tomasc9de5602008-01-29 00:19:52 -05003406 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04003407static noinline_for_stack
3408void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05003409 ext4_group_t group)
3410{
3411 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3412 struct ext4_prealloc_space *pa;
3413 struct list_head *cur;
3414 ext4_group_t groupnr;
3415 ext4_grpblk_t start;
3416 int preallocated = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003417 int len;
3418
3419 /* all form of preallocation discards first load group,
3420 * so the only competing code is preallocation use.
3421 * we don't need any locking here
3422 * notice we do NOT ignore preallocations with pa_deleted
3423 * otherwise we could leave used blocks available for
3424 * allocation in buddy when concurrent ext4_mb_put_pa()
3425 * is dropping preallocation
3426 */
3427 list_for_each(cur, &grp->bb_prealloc_list) {
3428 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3429 spin_lock(&pa->pa_lock);
3430 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3431 &groupnr, &start);
3432 len = pa->pa_len;
3433 spin_unlock(&pa->pa_lock);
3434 if (unlikely(len == 0))
3435 continue;
3436 BUG_ON(groupnr != group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003437 ext4_set_bits(bitmap, start, len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003438 preallocated += len;
Alex Tomasc9de5602008-01-29 00:19:52 -05003439 }
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003440 mb_debug(1, "prellocated %u for group %u\n", preallocated, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003441}
3442
3443static void ext4_mb_pa_callback(struct rcu_head *head)
3444{
3445 struct ext4_prealloc_space *pa;
3446 pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
Junho Ryu4e8d2132013-12-03 18:10:28 -05003447
3448 BUG_ON(atomic_read(&pa->pa_count));
3449 BUG_ON(pa->pa_deleted == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05003450 kmem_cache_free(ext4_pspace_cachep, pa);
3451}
3452
3453/*
3454 * drops a reference to preallocated space descriptor
3455 * if this was the last reference and the space is consumed
3456 */
3457static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
3458 struct super_block *sb, struct ext4_prealloc_space *pa)
3459{
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003460 ext4_group_t grp;
Eric Sandeend33a1972009-03-16 23:25:40 -04003461 ext4_fsblk_t grp_blk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003462
Alex Tomasc9de5602008-01-29 00:19:52 -05003463 /* in this short window concurrent discard can set pa_deleted */
3464 spin_lock(&pa->pa_lock);
Junho Ryu4e8d2132013-12-03 18:10:28 -05003465 if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0) {
3466 spin_unlock(&pa->pa_lock);
3467 return;
3468 }
3469
Alex Tomasc9de5602008-01-29 00:19:52 -05003470 if (pa->pa_deleted == 1) {
3471 spin_unlock(&pa->pa_lock);
3472 return;
3473 }
3474
3475 pa->pa_deleted = 1;
3476 spin_unlock(&pa->pa_lock);
3477
Eric Sandeend33a1972009-03-16 23:25:40 -04003478 grp_blk = pa->pa_pstart;
Theodore Ts'o60e66792010-05-17 07:00:00 -04003479 /*
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003480 * If doing group-based preallocation, pa_pstart may be in the
3481 * next group when pa is used up
3482 */
3483 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeend33a1972009-03-16 23:25:40 -04003484 grp_blk--;
3485
Lukas Czernerbd862982013-04-03 23:32:34 -04003486 grp = ext4_get_group_number(sb, grp_blk);
Alex Tomasc9de5602008-01-29 00:19:52 -05003487
3488 /*
3489 * possible race:
3490 *
3491 * P1 (buddy init) P2 (regular allocation)
3492 * find block B in PA
3493 * copy on-disk bitmap to buddy
3494 * mark B in on-disk bitmap
3495 * drop PA from group
3496 * mark all PAs in buddy
3497 *
3498 * thus, P1 initializes buddy with B available. to prevent this
3499 * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
3500 * against that pair
3501 */
3502 ext4_lock_group(sb, grp);
3503 list_del(&pa->pa_group_list);
3504 ext4_unlock_group(sb, grp);
3505
3506 spin_lock(pa->pa_obj_lock);
3507 list_del_rcu(&pa->pa_inode_list);
3508 spin_unlock(pa->pa_obj_lock);
3509
3510 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3511}
3512
3513/*
3514 * creates new preallocated space for given inode
3515 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003516static noinline_for_stack int
3517ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003518{
3519 struct super_block *sb = ac->ac_sb;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003520 struct ext4_sb_info *sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003521 struct ext4_prealloc_space *pa;
3522 struct ext4_group_info *grp;
3523 struct ext4_inode_info *ei;
3524
3525 /* preallocate only when found space is larger then requested */
3526 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3527 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3528 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3529
3530 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3531 if (pa == NULL)
3532 return -ENOMEM;
3533
3534 if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
3535 int winl;
3536 int wins;
3537 int win;
3538 int offs;
3539
3540 /* we can't allocate as much as normalizer wants.
3541 * so, found space must get proper lstart
3542 * to cover original request */
3543 BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
3544 BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
3545
3546 /* we're limited by original request in that
3547 * logical block must be covered any way
3548 * winl is window we can move our chunk within */
3549 winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
3550
3551 /* also, we should cover whole original request */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003552 wins = EXT4_C2B(sbi, ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003553
3554 /* the smallest one defines real window */
3555 win = min(winl, wins);
3556
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003557 offs = ac->ac_o_ex.fe_logical %
3558 EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003559 if (offs && offs < win)
3560 win = offs;
3561
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003562 ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical -
Lukas Czerner810da242013-03-02 17:18:58 -05003563 EXT4_NUM_B2C(sbi, win);
Alex Tomasc9de5602008-01-29 00:19:52 -05003564 BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
3565 BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
3566 }
3567
3568 /* preallocation can change ac_b_ex, thus we store actually
3569 * allocated blocks for history */
3570 ac->ac_f_ex = ac->ac_b_ex;
3571
3572 pa->pa_lstart = ac->ac_b_ex.fe_logical;
3573 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3574 pa->pa_len = ac->ac_b_ex.fe_len;
3575 pa->pa_free = pa->pa_len;
3576 atomic_set(&pa->pa_count, 1);
3577 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003578 INIT_LIST_HEAD(&pa->pa_inode_list);
3579 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003580 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003581 pa->pa_type = MB_INODE_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003582
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003583 mb_debug(1, "new inode pa %p: %llu/%u for %u\n", pa,
Alex Tomasc9de5602008-01-29 00:19:52 -05003584 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003585 trace_ext4_mb_new_inode_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003586
3587 ext4_mb_use_inode_pa(ac, pa);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003588 atomic_add(pa->pa_free, &sbi->s_mb_preallocated);
Alex Tomasc9de5602008-01-29 00:19:52 -05003589
3590 ei = EXT4_I(ac->ac_inode);
3591 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3592
3593 pa->pa_obj_lock = &ei->i_prealloc_lock;
3594 pa->pa_inode = ac->ac_inode;
3595
3596 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3597 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3598 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3599
3600 spin_lock(pa->pa_obj_lock);
3601 list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
3602 spin_unlock(pa->pa_obj_lock);
3603
3604 return 0;
3605}
3606
3607/*
3608 * creates new preallocated space for locality group inodes belongs to
3609 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003610static noinline_for_stack int
3611ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003612{
3613 struct super_block *sb = ac->ac_sb;
3614 struct ext4_locality_group *lg;
3615 struct ext4_prealloc_space *pa;
3616 struct ext4_group_info *grp;
3617
3618 /* preallocate only when found space is larger then requested */
3619 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3620 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3621 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3622
3623 BUG_ON(ext4_pspace_cachep == NULL);
3624 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3625 if (pa == NULL)
3626 return -ENOMEM;
3627
3628 /* preallocation can change ac_b_ex, thus we store actually
3629 * allocated blocks for history */
3630 ac->ac_f_ex = ac->ac_b_ex;
3631
3632 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3633 pa->pa_lstart = pa->pa_pstart;
3634 pa->pa_len = ac->ac_b_ex.fe_len;
3635 pa->pa_free = pa->pa_len;
3636 atomic_set(&pa->pa_count, 1);
3637 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003638 INIT_LIST_HEAD(&pa->pa_inode_list);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003639 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003640 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003641 pa->pa_type = MB_GROUP_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003642
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003643 mb_debug(1, "new group pa %p: %llu/%u for %u\n", pa,
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003644 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
3645 trace_ext4_mb_new_group_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003646
3647 ext4_mb_use_group_pa(ac, pa);
3648 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3649
3650 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3651 lg = ac->ac_lg;
3652 BUG_ON(lg == NULL);
3653
3654 pa->pa_obj_lock = &lg->lg_prealloc_lock;
3655 pa->pa_inode = NULL;
3656
3657 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3658 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3659 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3660
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003661 /*
3662 * We will later add the new pa to the right bucket
3663 * after updating the pa_free in ext4_mb_release_context
3664 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003665 return 0;
3666}
3667
3668static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
3669{
3670 int err;
3671
3672 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
3673 err = ext4_mb_new_group_pa(ac);
3674 else
3675 err = ext4_mb_new_inode_pa(ac);
3676 return err;
3677}
3678
3679/*
3680 * finds all unused blocks in on-disk bitmap, frees them in
3681 * in-core bitmap and buddy.
3682 * @pa must be unlinked from inode and group lists, so that
3683 * nobody else can find/use it.
3684 * the caller MUST hold group/inode locks.
3685 * TODO: optimize the case when there are no in-core structures yet
3686 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003687static noinline_for_stack int
3688ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003689 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05003690{
Alex Tomasc9de5602008-01-29 00:19:52 -05003691 struct super_block *sb = e4b->bd_sb;
3692 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003693 unsigned int end;
3694 unsigned int next;
Alex Tomasc9de5602008-01-29 00:19:52 -05003695 ext4_group_t group;
3696 ext4_grpblk_t bit;
Theodore Ts'oba80b102009-01-03 20:03:21 -05003697 unsigned long long grp_blk_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05003698 int err = 0;
3699 int free = 0;
3700
3701 BUG_ON(pa->pa_deleted == 0);
3702 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003703 grp_blk_start = pa->pa_pstart - EXT4_C2B(sbi, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003704 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3705 end = bit + pa->pa_len;
3706
Alex Tomasc9de5602008-01-29 00:19:52 -05003707 while (bit < end) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003708 bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003709 if (bit >= end)
3710 break;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003711 next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003712 mb_debug(1, " free preallocated %u/%u in group %u\n",
Andi Kleen5a0790c2010-06-14 13:28:03 -04003713 (unsigned) ext4_group_first_block_no(sb, group) + bit,
3714 (unsigned) next - bit, (unsigned) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003715 free += next - bit;
3716
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003717 trace_ext4_mballoc_discard(sb, NULL, group, bit, next - bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003718 trace_ext4_mb_release_inode_pa(pa, (grp_blk_start +
3719 EXT4_C2B(sbi, bit)),
Lukas Czernera9c667f2011-06-06 09:51:52 -04003720 next - bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003721 mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
3722 bit = next + 1;
3723 }
3724 if (free != pa->pa_free) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003725 ext4_msg(e4b->bd_sb, KERN_CRIT,
3726 "pa %p: logic %lu, phys. %lu, len %lu",
3727 pa, (unsigned long) pa->pa_lstart,
3728 (unsigned long) pa->pa_pstart,
3729 (unsigned long) pa->pa_len);
Theodore Ts'oe29136f2010-06-29 12:54:28 -04003730 ext4_grp_locked_error(sb, group, 0, 0, "free %u, pa_free %u",
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003731 free, pa->pa_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05003732 /*
3733 * pa is already deleted so we use the value obtained
3734 * from the bitmap and continue.
3735 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003736 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003737 atomic_add(free, &sbi->s_mb_discarded);
3738
3739 return err;
3740}
3741
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003742static noinline_for_stack int
3743ext4_mb_release_group_pa(struct ext4_buddy *e4b,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003744 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05003745{
Alex Tomasc9de5602008-01-29 00:19:52 -05003746 struct super_block *sb = e4b->bd_sb;
3747 ext4_group_t group;
3748 ext4_grpblk_t bit;
3749
Yongqiang Yang60e07cf2011-12-18 15:49:54 -05003750 trace_ext4_mb_release_group_pa(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003751 BUG_ON(pa->pa_deleted == 0);
3752 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3753 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3754 mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
3755 atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003756 trace_ext4_mballoc_discard(sb, NULL, group, bit, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003757
3758 return 0;
3759}
3760
3761/*
3762 * releases all preallocations in given group
3763 *
3764 * first, we need to decide discard policy:
3765 * - when do we discard
3766 * 1) ENOSPC
3767 * - how many do we discard
3768 * 1) how many requested
3769 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003770static noinline_for_stack int
3771ext4_mb_discard_group_preallocations(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -05003772 ext4_group_t group, int needed)
3773{
3774 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3775 struct buffer_head *bitmap_bh = NULL;
3776 struct ext4_prealloc_space *pa, *tmp;
3777 struct list_head list;
3778 struct ext4_buddy e4b;
3779 int err;
3780 int busy = 0;
3781 int free = 0;
3782
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003783 mb_debug(1, "discard preallocation for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003784
3785 if (list_empty(&grp->bb_prealloc_list))
3786 return 0;
3787
Theodore Ts'o574ca172008-07-11 19:27:31 -04003788 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003789 if (bitmap_bh == NULL) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003790 ext4_error(sb, "Error reading block bitmap for %u", group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003791 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003792 }
3793
3794 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003795 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003796 ext4_error(sb, "Error loading buddy information for %u", group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003797 put_bh(bitmap_bh);
3798 return 0;
3799 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003800
3801 if (needed == 0)
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04003802 needed = EXT4_CLUSTERS_PER_GROUP(sb) + 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003803
Alex Tomasc9de5602008-01-29 00:19:52 -05003804 INIT_LIST_HEAD(&list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003805repeat:
3806 ext4_lock_group(sb, group);
3807 list_for_each_entry_safe(pa, tmp,
3808 &grp->bb_prealloc_list, pa_group_list) {
3809 spin_lock(&pa->pa_lock);
3810 if (atomic_read(&pa->pa_count)) {
3811 spin_unlock(&pa->pa_lock);
3812 busy = 1;
3813 continue;
3814 }
3815 if (pa->pa_deleted) {
3816 spin_unlock(&pa->pa_lock);
3817 continue;
3818 }
3819
3820 /* seems this one can be freed ... */
3821 pa->pa_deleted = 1;
3822
3823 /* we can trust pa_free ... */
3824 free += pa->pa_free;
3825
3826 spin_unlock(&pa->pa_lock);
3827
3828 list_del(&pa->pa_group_list);
3829 list_add(&pa->u.pa_tmp_list, &list);
3830 }
3831
3832 /* if we still need more blocks and some PAs were used, try again */
3833 if (free < needed && busy) {
3834 busy = 0;
3835 ext4_unlock_group(sb, group);
Lukas Czernerbb8b20e2013-03-10 22:28:09 -04003836 cond_resched();
Alex Tomasc9de5602008-01-29 00:19:52 -05003837 goto repeat;
3838 }
3839
3840 /* found anything to free? */
3841 if (list_empty(&list)) {
3842 BUG_ON(free != 0);
3843 goto out;
3844 }
3845
3846 /* now free all selected PAs */
3847 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
3848
3849 /* remove from object (inode or locality group) */
3850 spin_lock(pa->pa_obj_lock);
3851 list_del_rcu(&pa->pa_inode_list);
3852 spin_unlock(pa->pa_obj_lock);
3853
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003854 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003855 ext4_mb_release_group_pa(&e4b, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003856 else
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003857 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003858
3859 list_del(&pa->u.pa_tmp_list);
3860 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3861 }
3862
3863out:
3864 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04003865 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05003866 put_bh(bitmap_bh);
3867 return free;
3868}
3869
3870/*
3871 * releases all non-used preallocated blocks for given inode
3872 *
3873 * It's important to discard preallocations under i_data_sem
3874 * We don't want another block to be served from the prealloc
3875 * space when we are discarding the inode prealloc space.
3876 *
3877 * FIXME!! Make sure it is valid at all the call sites
3878 */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003879void ext4_discard_preallocations(struct inode *inode)
Alex Tomasc9de5602008-01-29 00:19:52 -05003880{
3881 struct ext4_inode_info *ei = EXT4_I(inode);
3882 struct super_block *sb = inode->i_sb;
3883 struct buffer_head *bitmap_bh = NULL;
3884 struct ext4_prealloc_space *pa, *tmp;
3885 ext4_group_t group = 0;
3886 struct list_head list;
3887 struct ext4_buddy e4b;
3888 int err;
3889
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003890 if (!S_ISREG(inode->i_mode)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003891 /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
3892 return;
3893 }
3894
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003895 mb_debug(1, "discard preallocation for inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003896 trace_ext4_discard_preallocations(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05003897
3898 INIT_LIST_HEAD(&list);
3899
3900repeat:
3901 /* first, collect all pa's in the inode */
3902 spin_lock(&ei->i_prealloc_lock);
3903 while (!list_empty(&ei->i_prealloc_list)) {
3904 pa = list_entry(ei->i_prealloc_list.next,
3905 struct ext4_prealloc_space, pa_inode_list);
3906 BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
3907 spin_lock(&pa->pa_lock);
3908 if (atomic_read(&pa->pa_count)) {
3909 /* this shouldn't happen often - nobody should
3910 * use preallocation while we're discarding it */
3911 spin_unlock(&pa->pa_lock);
3912 spin_unlock(&ei->i_prealloc_lock);
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003913 ext4_msg(sb, KERN_ERR,
3914 "uh-oh! used pa while discarding");
Alex Tomasc9de5602008-01-29 00:19:52 -05003915 WARN_ON(1);
3916 schedule_timeout_uninterruptible(HZ);
3917 goto repeat;
3918
3919 }
3920 if (pa->pa_deleted == 0) {
3921 pa->pa_deleted = 1;
3922 spin_unlock(&pa->pa_lock);
3923 list_del_rcu(&pa->pa_inode_list);
3924 list_add(&pa->u.pa_tmp_list, &list);
3925 continue;
3926 }
3927
3928 /* someone is deleting pa right now */
3929 spin_unlock(&pa->pa_lock);
3930 spin_unlock(&ei->i_prealloc_lock);
3931
3932 /* we have to wait here because pa_deleted
3933 * doesn't mean pa is already unlinked from
3934 * the list. as we might be called from
3935 * ->clear_inode() the inode will get freed
3936 * and concurrent thread which is unlinking
3937 * pa from inode's list may access already
3938 * freed memory, bad-bad-bad */
3939
3940 /* XXX: if this happens too often, we can
3941 * add a flag to force wait only in case
3942 * of ->clear_inode(), but not in case of
3943 * regular truncate */
3944 schedule_timeout_uninterruptible(HZ);
3945 goto repeat;
3946 }
3947 spin_unlock(&ei->i_prealloc_lock);
3948
3949 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003950 BUG_ON(pa->pa_type != MB_INODE_PA);
Lukas Czernerbd862982013-04-03 23:32:34 -04003951 group = ext4_get_group_number(sb, pa->pa_pstart);
Alex Tomasc9de5602008-01-29 00:19:52 -05003952
3953 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003954 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003955 ext4_error(sb, "Error loading buddy information for %u",
3956 group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003957 continue;
3958 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003959
Theodore Ts'o574ca172008-07-11 19:27:31 -04003960 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003961 if (bitmap_bh == NULL) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003962 ext4_error(sb, "Error reading block bitmap for %u",
3963 group);
Jing Zhange39e07f2010-05-14 00:00:00 -04003964 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003965 continue;
Alex Tomasc9de5602008-01-29 00:19:52 -05003966 }
3967
3968 ext4_lock_group(sb, group);
3969 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003970 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003971 ext4_unlock_group(sb, group);
3972
Jing Zhange39e07f2010-05-14 00:00:00 -04003973 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05003974 put_bh(bitmap_bh);
3975
3976 list_del(&pa->u.pa_tmp_list);
3977 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3978 }
3979}
3980
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003981#ifdef CONFIG_EXT4_DEBUG
Alex Tomasc9de5602008-01-29 00:19:52 -05003982static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
3983{
3984 struct super_block *sb = ac->ac_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -04003985 ext4_group_t ngroups, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003986
Theodore Ts'oa0b30c12013-02-09 16:28:20 -05003987 if (!ext4_mballoc_debug ||
Theodore Ts'o4dd89fc2011-02-27 17:23:47 -05003988 (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED))
Eric Sandeene3570632010-07-27 11:56:08 -04003989 return;
3990
Joe Perches7f6a11e2012-03-19 23:09:43 -04003991 ext4_msg(ac->ac_sb, KERN_ERR, "Can't allocate:"
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003992 " Allocation context details:");
Joe Perches7f6a11e2012-03-19 23:09:43 -04003993 ext4_msg(ac->ac_sb, KERN_ERR, "status %d flags %d",
Alex Tomasc9de5602008-01-29 00:19:52 -05003994 ac->ac_status, ac->ac_flags);
Joe Perches7f6a11e2012-03-19 23:09:43 -04003995 ext4_msg(ac->ac_sb, KERN_ERR, "orig %lu/%lu/%lu@%lu, "
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003996 "goal %lu/%lu/%lu@%lu, "
3997 "best %lu/%lu/%lu@%lu cr %d",
Alex Tomasc9de5602008-01-29 00:19:52 -05003998 (unsigned long)ac->ac_o_ex.fe_group,
3999 (unsigned long)ac->ac_o_ex.fe_start,
4000 (unsigned long)ac->ac_o_ex.fe_len,
4001 (unsigned long)ac->ac_o_ex.fe_logical,
4002 (unsigned long)ac->ac_g_ex.fe_group,
4003 (unsigned long)ac->ac_g_ex.fe_start,
4004 (unsigned long)ac->ac_g_ex.fe_len,
4005 (unsigned long)ac->ac_g_ex.fe_logical,
4006 (unsigned long)ac->ac_b_ex.fe_group,
4007 (unsigned long)ac->ac_b_ex.fe_start,
4008 (unsigned long)ac->ac_b_ex.fe_len,
4009 (unsigned long)ac->ac_b_ex.fe_logical,
4010 (int)ac->ac_criteria);
Joe Perches7f6a11e2012-03-19 23:09:43 -04004011 ext4_msg(ac->ac_sb, KERN_ERR, "%lu scanned, %d found",
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004012 ac->ac_ex_scanned, ac->ac_found);
Joe Perches7f6a11e2012-03-19 23:09:43 -04004013 ext4_msg(ac->ac_sb, KERN_ERR, "groups: ");
Theodore Ts'o8df96752009-05-01 08:50:38 -04004014 ngroups = ext4_get_groups_count(sb);
4015 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004016 struct ext4_group_info *grp = ext4_get_group_info(sb, i);
4017 struct ext4_prealloc_space *pa;
4018 ext4_grpblk_t start;
4019 struct list_head *cur;
4020 ext4_lock_group(sb, i);
4021 list_for_each(cur, &grp->bb_prealloc_list) {
4022 pa = list_entry(cur, struct ext4_prealloc_space,
4023 pa_group_list);
4024 spin_lock(&pa->pa_lock);
4025 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
4026 NULL, &start);
4027 spin_unlock(&pa->pa_lock);
Akira Fujita1c718502009-07-05 23:04:36 -04004028 printk(KERN_ERR "PA:%u:%d:%u \n", i,
4029 start, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004030 }
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04004031 ext4_unlock_group(sb, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05004032
4033 if (grp->bb_free == 0)
4034 continue;
Akira Fujita1c718502009-07-05 23:04:36 -04004035 printk(KERN_ERR "%u: %d/%d \n",
Alex Tomasc9de5602008-01-29 00:19:52 -05004036 i, grp->bb_free, grp->bb_fragments);
4037 }
4038 printk(KERN_ERR "\n");
4039}
4040#else
4041static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
4042{
4043 return;
4044}
4045#endif
4046
4047/*
4048 * We use locality group preallocation for small size file. The size of the
4049 * file is determined by the current size or the resulting size after
4050 * allocation which ever is larger
4051 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004052 * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
Alex Tomasc9de5602008-01-29 00:19:52 -05004053 */
4054static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
4055{
4056 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
4057 int bsbits = ac->ac_sb->s_blocksize_bits;
4058 loff_t size, isize;
4059
4060 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
4061 return;
4062
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004063 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
4064 return;
4065
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004066 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Theodore Ts'o50797482009-09-18 13:34:02 -04004067 isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
4068 >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05004069
Theodore Ts'o50797482009-09-18 13:34:02 -04004070 if ((size == isize) &&
4071 !ext4_fs_is_busy(sbi) &&
4072 (atomic_read(&ac->ac_inode->i_writecount) == 0)) {
4073 ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
4074 return;
4075 }
4076
Robin Dongebbe0272011-10-26 05:14:27 -04004077 if (sbi->s_mb_group_prealloc <= 0) {
4078 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
4079 return;
4080 }
4081
Alex Tomasc9de5602008-01-29 00:19:52 -05004082 /* don't use group allocation for large files */
Theodore Ts'o71780572009-09-28 00:06:20 -04004083 size = max(size, isize);
Tao Macc483f12010-03-01 19:06:35 -05004084 if (size > sbi->s_mb_stream_request) {
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004085 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05004086 return;
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004087 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004088
4089 BUG_ON(ac->ac_lg != NULL);
4090 /*
4091 * locality group prealloc space are per cpu. The reason for having
4092 * per cpu locality group is to reduce the contention between block
4093 * request from multiple CPUs.
4094 */
Christoph Lameterca0c9582009-10-03 19:48:22 +09004095 ac->ac_lg = __this_cpu_ptr(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05004096
4097 /* we're going to use group allocation */
4098 ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
4099
4100 /* serialize all allocations in the group */
4101 mutex_lock(&ac->ac_lg->lg_mutex);
4102}
4103
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004104static noinline_for_stack int
4105ext4_mb_initialize_context(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05004106 struct ext4_allocation_request *ar)
4107{
4108 struct super_block *sb = ar->inode->i_sb;
4109 struct ext4_sb_info *sbi = EXT4_SB(sb);
4110 struct ext4_super_block *es = sbi->s_es;
4111 ext4_group_t group;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004112 unsigned int len;
4113 ext4_fsblk_t goal;
Alex Tomasc9de5602008-01-29 00:19:52 -05004114 ext4_grpblk_t block;
4115
4116 /* we can't allocate > group size */
4117 len = ar->len;
4118
4119 /* just a dirty hack to filter too big requests */
Theodore Ts'o40ae3482013-02-04 15:08:40 -05004120 if (len >= EXT4_CLUSTERS_PER_GROUP(sb))
4121 len = EXT4_CLUSTERS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004122
4123 /* start searching from the goal */
4124 goal = ar->goal;
4125 if (goal < le32_to_cpu(es->s_first_data_block) ||
4126 goal >= ext4_blocks_count(es))
4127 goal = le32_to_cpu(es->s_first_data_block);
4128 ext4_get_group_no_and_offset(sb, goal, &group, &block);
4129
4130 /* set up allocation goals */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004131 ac->ac_b_ex.fe_logical = EXT4_LBLK_CMASK(sbi, ar->logical);
Alex Tomasc9de5602008-01-29 00:19:52 -05004132 ac->ac_status = AC_STATUS_CONTINUE;
Alex Tomasc9de5602008-01-29 00:19:52 -05004133 ac->ac_sb = sb;
4134 ac->ac_inode = ar->inode;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004135 ac->ac_o_ex.fe_logical = ac->ac_b_ex.fe_logical;
Alex Tomasc9de5602008-01-29 00:19:52 -05004136 ac->ac_o_ex.fe_group = group;
4137 ac->ac_o_ex.fe_start = block;
4138 ac->ac_o_ex.fe_len = len;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004139 ac->ac_g_ex = ac->ac_o_ex;
Alex Tomasc9de5602008-01-29 00:19:52 -05004140 ac->ac_flags = ar->flags;
Alex Tomasc9de5602008-01-29 00:19:52 -05004141
4142 /* we have to define context: we'll we work with a file or
4143 * locality group. this is a policy, actually */
4144 ext4_mb_group_or_file(ac);
4145
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004146 mb_debug(1, "init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, "
Alex Tomasc9de5602008-01-29 00:19:52 -05004147 "left: %u/%u, right %u/%u to %swritable\n",
4148 (unsigned) ar->len, (unsigned) ar->logical,
4149 (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
4150 (unsigned) ar->lleft, (unsigned) ar->pleft,
4151 (unsigned) ar->lright, (unsigned) ar->pright,
4152 atomic_read(&ar->inode->i_writecount) ? "" : "non-");
4153 return 0;
4154
4155}
4156
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004157static noinline_for_stack void
4158ext4_mb_discard_lg_preallocations(struct super_block *sb,
4159 struct ext4_locality_group *lg,
4160 int order, int total_entries)
4161{
4162 ext4_group_t group = 0;
4163 struct ext4_buddy e4b;
4164 struct list_head discard_list;
4165 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004166
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004167 mb_debug(1, "discard locality group preallocation\n");
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004168
4169 INIT_LIST_HEAD(&discard_list);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004170
4171 spin_lock(&lg->lg_prealloc_lock);
4172 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
4173 pa_inode_list) {
4174 spin_lock(&pa->pa_lock);
4175 if (atomic_read(&pa->pa_count)) {
4176 /*
4177 * This is the pa that we just used
4178 * for block allocation. So don't
4179 * free that
4180 */
4181 spin_unlock(&pa->pa_lock);
4182 continue;
4183 }
4184 if (pa->pa_deleted) {
4185 spin_unlock(&pa->pa_lock);
4186 continue;
4187 }
4188 /* only lg prealloc space */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004189 BUG_ON(pa->pa_type != MB_GROUP_PA);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004190
4191 /* seems this one can be freed ... */
4192 pa->pa_deleted = 1;
4193 spin_unlock(&pa->pa_lock);
4194
4195 list_del_rcu(&pa->pa_inode_list);
4196 list_add(&pa->u.pa_tmp_list, &discard_list);
4197
4198 total_entries--;
4199 if (total_entries <= 5) {
4200 /*
4201 * we want to keep only 5 entries
4202 * allowing it to grow to 8. This
4203 * mak sure we don't call discard
4204 * soon for this list.
4205 */
4206 break;
4207 }
4208 }
4209 spin_unlock(&lg->lg_prealloc_lock);
4210
4211 list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
4212
Lukas Czernerbd862982013-04-03 23:32:34 -04004213 group = ext4_get_group_number(sb, pa->pa_pstart);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004214 if (ext4_mb_load_buddy(sb, group, &e4b)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004215 ext4_error(sb, "Error loading buddy information for %u",
4216 group);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004217 continue;
4218 }
4219 ext4_lock_group(sb, group);
4220 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004221 ext4_mb_release_group_pa(&e4b, pa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004222 ext4_unlock_group(sb, group);
4223
Jing Zhange39e07f2010-05-14 00:00:00 -04004224 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004225 list_del(&pa->u.pa_tmp_list);
4226 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4227 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004228}
4229
4230/*
4231 * We have incremented pa_count. So it cannot be freed at this
4232 * point. Also we hold lg_mutex. So no parallel allocation is
4233 * possible from this lg. That means pa_free cannot be updated.
4234 *
4235 * A parallel ext4_mb_discard_group_preallocations is possible.
4236 * which can cause the lg_prealloc_list to be updated.
4237 */
4238
4239static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
4240{
4241 int order, added = 0, lg_prealloc_count = 1;
4242 struct super_block *sb = ac->ac_sb;
4243 struct ext4_locality_group *lg = ac->ac_lg;
4244 struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
4245
4246 order = fls(pa->pa_free) - 1;
4247 if (order > PREALLOC_TB_SIZE - 1)
4248 /* The max size of hash table is PREALLOC_TB_SIZE */
4249 order = PREALLOC_TB_SIZE - 1;
4250 /* Add the prealloc space to lg */
Niu Yaweif1167002013-02-01 21:31:27 -05004251 spin_lock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004252 list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
4253 pa_inode_list) {
4254 spin_lock(&tmp_pa->pa_lock);
4255 if (tmp_pa->pa_deleted) {
Theodore Ts'oe7c9e3e2009-03-27 19:43:21 -04004256 spin_unlock(&tmp_pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004257 continue;
4258 }
4259 if (!added && pa->pa_free < tmp_pa->pa_free) {
4260 /* Add to the tail of the previous entry */
4261 list_add_tail_rcu(&pa->pa_inode_list,
4262 &tmp_pa->pa_inode_list);
4263 added = 1;
4264 /*
4265 * we want to count the total
4266 * number of entries in the list
4267 */
4268 }
4269 spin_unlock(&tmp_pa->pa_lock);
4270 lg_prealloc_count++;
4271 }
4272 if (!added)
4273 list_add_tail_rcu(&pa->pa_inode_list,
4274 &lg->lg_prealloc_list[order]);
Niu Yaweif1167002013-02-01 21:31:27 -05004275 spin_unlock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004276
4277 /* Now trim the list to be not more than 8 elements */
4278 if (lg_prealloc_count > 8) {
4279 ext4_mb_discard_lg_preallocations(sb, lg,
Niu Yaweif1167002013-02-01 21:31:27 -05004280 order, lg_prealloc_count);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004281 return;
4282 }
4283 return ;
4284}
4285
Alex Tomasc9de5602008-01-29 00:19:52 -05004286/*
4287 * release all resource we used in allocation
4288 */
4289static int ext4_mb_release_context(struct ext4_allocation_context *ac)
4290{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004291 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004292 struct ext4_prealloc_space *pa = ac->ac_pa;
4293 if (pa) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004294 if (pa->pa_type == MB_GROUP_PA) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004295 /* see comment in ext4_mb_use_group_pa() */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004296 spin_lock(&pa->pa_lock);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004297 pa->pa_pstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
4298 pa->pa_lstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004299 pa->pa_free -= ac->ac_b_ex.fe_len;
4300 pa->pa_len -= ac->ac_b_ex.fe_len;
4301 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004302 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004303 }
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004304 if (pa) {
4305 /*
4306 * We want to add the pa to the right bucket.
4307 * Remove it from the list and while adding
4308 * make sure the list to which we are adding
Amir Goldstein44183d42011-05-09 21:52:36 -04004309 * doesn't grow big.
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004310 */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004311 if ((pa->pa_type == MB_GROUP_PA) && likely(pa->pa_free)) {
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004312 spin_lock(pa->pa_obj_lock);
4313 list_del_rcu(&pa->pa_inode_list);
4314 spin_unlock(pa->pa_obj_lock);
4315 ext4_mb_add_n_trim(ac);
4316 }
4317 ext4_mb_put_pa(ac, ac->ac_sb, pa);
4318 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004319 if (ac->ac_bitmap_page)
4320 page_cache_release(ac->ac_bitmap_page);
4321 if (ac->ac_buddy_page)
4322 page_cache_release(ac->ac_buddy_page);
4323 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
4324 mutex_unlock(&ac->ac_lg->lg_mutex);
4325 ext4_mb_collect_stats(ac);
4326 return 0;
4327}
4328
4329static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
4330{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004331 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004332 int ret;
4333 int freed = 0;
4334
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004335 trace_ext4_mb_discard_preallocations(sb, needed);
Theodore Ts'o8df96752009-05-01 08:50:38 -04004336 for (i = 0; i < ngroups && needed > 0; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004337 ret = ext4_mb_discard_group_preallocations(sb, i, needed);
4338 freed += ret;
4339 needed -= ret;
4340 }
4341
4342 return freed;
4343}
4344
4345/*
4346 * Main entry point into mballoc to allocate blocks
4347 * it tries to use preallocation first, then falls back
4348 * to usual allocation
4349 */
4350ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
Aditya Kali6c7a1202010-08-05 16:22:24 -04004351 struct ext4_allocation_request *ar, int *errp)
Alex Tomasc9de5602008-01-29 00:19:52 -05004352{
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004353 int freed;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004354 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004355 struct ext4_sb_info *sbi;
4356 struct super_block *sb;
4357 ext4_fsblk_t block = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01004358 unsigned int inquota = 0;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004359 unsigned int reserv_clstrs = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004360
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04004361 might_sleep();
Alex Tomasc9de5602008-01-29 00:19:52 -05004362 sb = ar->inode->i_sb;
4363 sbi = EXT4_SB(sb);
4364
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004365 trace_ext4_request_blocks(ar);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004366
Dmitry Monakhov45dc63e2011-10-20 20:07:23 -04004367 /* Allow to use superuser reservation for quota file */
4368 if (IS_NOQUOTA(ar->inode))
4369 ar->flags |= EXT4_MB_USE_ROOT_BLOCKS;
4370
Mingming Cao60e58e02009-01-22 18:13:05 +01004371 /*
4372 * For delayed allocation, we could skip the ENOSPC and
4373 * EDQUOT check, as blocks and quotas have been already
4374 * reserved when data being copied into pagecache.
4375 */
Theodore Ts'of2321092011-01-10 12:12:36 -05004376 if (ext4_test_inode_state(ar->inode, EXT4_STATE_DELALLOC_RESERVED))
Mingming Cao60e58e02009-01-22 18:13:05 +01004377 ar->flags |= EXT4_MB_DELALLOC_RESERVED;
4378 else {
4379 /* Without delayed allocation we need to verify
4380 * there is enough free blocks to do block allocation
4381 * and verify allocation doesn't exceed the quota limits.
Mingming Caod2a17632008-07-14 17:52:37 -04004382 */
Allison Henderson55f020d2011-05-25 07:41:26 -04004383 while (ar->len &&
Theodore Ts'oe7d5f312011-09-09 19:14:51 -04004384 ext4_claim_free_clusters(sbi, ar->len, ar->flags)) {
Allison Henderson55f020d2011-05-25 07:41:26 -04004385
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004386 /* let others to free the space */
Lukas Czernerbb8b20e2013-03-10 22:28:09 -04004387 cond_resched();
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004388 ar->len = ar->len >> 1;
4389 }
4390 if (!ar->len) {
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -04004391 *errp = -ENOSPC;
4392 return 0;
4393 }
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004394 reserv_clstrs = ar->len;
Allison Henderson55f020d2011-05-25 07:41:26 -04004395 if (ar->flags & EXT4_MB_USE_ROOT_BLOCKS) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004396 dquot_alloc_block_nofail(ar->inode,
4397 EXT4_C2B(sbi, ar->len));
Allison Henderson55f020d2011-05-25 07:41:26 -04004398 } else {
4399 while (ar->len &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004400 dquot_alloc_block(ar->inode,
4401 EXT4_C2B(sbi, ar->len))) {
Allison Henderson55f020d2011-05-25 07:41:26 -04004402
4403 ar->flags |= EXT4_MB_HINT_NOPREALLOC;
4404 ar->len--;
4405 }
Mingming Cao60e58e02009-01-22 18:13:05 +01004406 }
4407 inquota = ar->len;
4408 if (ar->len == 0) {
4409 *errp = -EDQUOT;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004410 goto out;
Mingming Cao60e58e02009-01-22 18:13:05 +01004411 }
Mingming Caod2a17632008-07-14 17:52:37 -04004412 }
Mingming Caod2a17632008-07-14 17:52:37 -04004413
Wei Yongjun85556c92012-09-26 20:43:37 -04004414 ac = kmem_cache_zalloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o833576b2009-07-13 09:45:52 -04004415 if (!ac) {
Shen Feng363d4252008-07-11 19:27:31 -04004416 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004417 *errp = -ENOMEM;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004418 goto out;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004419 }
4420
Eric Sandeen256bdb42008-02-10 01:13:33 -05004421 *errp = ext4_mb_initialize_context(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004422 if (*errp) {
4423 ar->len = 0;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004424 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05004425 }
4426
Eric Sandeen256bdb42008-02-10 01:13:33 -05004427 ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
4428 if (!ext4_mb_use_preallocated(ac)) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004429 ac->ac_op = EXT4_MB_HISTORY_ALLOC;
4430 ext4_mb_normalize_request(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004431repeat:
4432 /* allocate space in core */
Aditya Kali6c7a1202010-08-05 16:22:24 -04004433 *errp = ext4_mb_regular_allocator(ac);
Alexey Khoroshilov2c00ef32013-07-01 08:12:36 -04004434 if (*errp)
4435 goto discard_and_exit;
4436
4437 /* as we've just preallocated more space than
4438 * user requested originally, we store allocated
4439 * space in a special descriptor */
4440 if (ac->ac_status == AC_STATUS_FOUND &&
4441 ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
4442 *errp = ext4_mb_new_preallocation(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004443 if (*errp) {
Alexey Khoroshilov2c00ef32013-07-01 08:12:36 -04004444 discard_and_exit:
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004445 ext4_discard_allocated_blocks(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004446 goto errout;
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004447 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004448 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05004449 if (likely(ac->ac_status == AC_STATUS_FOUND)) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004450 *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_clstrs);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004451 if (*errp == -EAGAIN) {
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05004452 /*
4453 * drop the reference that we took
4454 * in ext4_mb_use_best_found
4455 */
4456 ext4_mb_release_context(ac);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004457 ac->ac_b_ex.fe_group = 0;
4458 ac->ac_b_ex.fe_start = 0;
4459 ac->ac_b_ex.fe_len = 0;
4460 ac->ac_status = AC_STATUS_CONTINUE;
4461 goto repeat;
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004462 } else if (*errp) {
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05004463 ext4_discard_allocated_blocks(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004464 goto errout;
4465 } else {
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004466 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4467 ar->len = ac->ac_b_ex.fe_len;
4468 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004469 } else {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004470 freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004471 if (freed)
4472 goto repeat;
4473 *errp = -ENOSPC;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004474 }
4475
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004476errout:
Aditya Kali6c7a1202010-08-05 16:22:24 -04004477 if (*errp) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004478 ac->ac_b_ex.fe_len = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004479 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004480 ext4_mb_show_ac(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004481 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05004482 ext4_mb_release_context(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004483out:
4484 if (ac)
4485 kmem_cache_free(ext4_ac_cachep, ac);
Mingming Cao60e58e02009-01-22 18:13:05 +01004486 if (inquota && ar->len < inquota)
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004487 dquot_free_block(ar->inode, EXT4_C2B(sbi, inquota - ar->len));
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004488 if (!ar->len) {
Theodore Ts'of2321092011-01-10 12:12:36 -05004489 if (!ext4_test_inode_state(ar->inode,
4490 EXT4_STATE_DELALLOC_RESERVED))
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004491 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04004492 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004493 reserv_clstrs);
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004494 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004495
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004496 trace_ext4_allocate_blocks(ar, (unsigned long long)block);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004497
Alex Tomasc9de5602008-01-29 00:19:52 -05004498 return block;
4499}
Alex Tomasc9de5602008-01-29 00:19:52 -05004500
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004501/*
4502 * We can merge two free data extents only if the physical blocks
4503 * are contiguous, AND the extents were freed by the same transaction,
4504 * AND the blocks are associated with the same group.
4505 */
4506static int can_merge(struct ext4_free_data *entry1,
4507 struct ext4_free_data *entry2)
4508{
Bobi Jam18aadd42012-02-20 17:53:02 -05004509 if ((entry1->efd_tid == entry2->efd_tid) &&
4510 (entry1->efd_group == entry2->efd_group) &&
4511 ((entry1->efd_start_cluster + entry1->efd_count) == entry2->efd_start_cluster))
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004512 return 1;
4513 return 0;
4514}
4515
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004516static noinline_for_stack int
4517ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004518 struct ext4_free_data *new_entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05004519{
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004520 ext4_group_t group = e4b->bd_group;
Theodore Ts'o84130192011-09-09 18:50:51 -04004521 ext4_grpblk_t cluster;
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004522 struct ext4_free_data *entry;
Alex Tomasc9de5602008-01-29 00:19:52 -05004523 struct ext4_group_info *db = e4b->bd_info;
4524 struct super_block *sb = e4b->bd_sb;
4525 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004526 struct rb_node **n = &db->bb_free_root.rb_node, *node;
4527 struct rb_node *parent = NULL, *new_node;
4528
Frank Mayhar03901312009-01-07 00:06:22 -05004529 BUG_ON(!ext4_handle_valid(handle));
Alex Tomasc9de5602008-01-29 00:19:52 -05004530 BUG_ON(e4b->bd_bitmap_page == NULL);
4531 BUG_ON(e4b->bd_buddy_page == NULL);
4532
Bobi Jam18aadd42012-02-20 17:53:02 -05004533 new_node = &new_entry->efd_node;
4534 cluster = new_entry->efd_start_cluster;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004535
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004536 if (!*n) {
4537 /* first free block exent. We need to
4538 protect buddy cache from being freed,
4539 * otherwise we'll refresh it from
4540 * on-disk bitmap and lose not-yet-available
4541 * blocks */
4542 page_cache_get(e4b->bd_buddy_page);
4543 page_cache_get(e4b->bd_bitmap_page);
4544 }
4545 while (*n) {
4546 parent = *n;
Bobi Jam18aadd42012-02-20 17:53:02 -05004547 entry = rb_entry(parent, struct ext4_free_data, efd_node);
4548 if (cluster < entry->efd_start_cluster)
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004549 n = &(*n)->rb_left;
Bobi Jam18aadd42012-02-20 17:53:02 -05004550 else if (cluster >= (entry->efd_start_cluster + entry->efd_count))
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004551 n = &(*n)->rb_right;
4552 else {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004553 ext4_grp_locked_error(sb, group, 0,
Theodore Ts'o84130192011-09-09 18:50:51 -04004554 ext4_group_first_block_no(sb, group) +
4555 EXT4_C2B(sbi, cluster),
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004556 "Block already on to-be-freed list");
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004557 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004558 }
4559 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004560
4561 rb_link_node(new_node, parent, n);
4562 rb_insert_color(new_node, &db->bb_free_root);
4563
4564 /* Now try to see the extent can be merged to left and right */
4565 node = rb_prev(new_node);
4566 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004567 entry = rb_entry(node, struct ext4_free_data, efd_node);
Dmitry Monakhov5d3ee202013-04-03 22:08:52 -04004568 if (can_merge(entry, new_entry) &&
4569 ext4_journal_callback_try_del(handle, &entry->efd_jce)) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004570 new_entry->efd_start_cluster = entry->efd_start_cluster;
4571 new_entry->efd_count += entry->efd_count;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004572 rb_erase(node, &(db->bb_free_root));
Bobi Jam18aadd42012-02-20 17:53:02 -05004573 kmem_cache_free(ext4_free_data_cachep, entry);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004574 }
4575 }
4576
4577 node = rb_next(new_node);
4578 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004579 entry = rb_entry(node, struct ext4_free_data, efd_node);
Dmitry Monakhov5d3ee202013-04-03 22:08:52 -04004580 if (can_merge(new_entry, entry) &&
4581 ext4_journal_callback_try_del(handle, &entry->efd_jce)) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004582 new_entry->efd_count += entry->efd_count;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004583 rb_erase(node, &(db->bb_free_root));
Bobi Jam18aadd42012-02-20 17:53:02 -05004584 kmem_cache_free(ext4_free_data_cachep, entry);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004585 }
4586 }
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04004587 /* Add the extent to transaction's private list */
Bobi Jam18aadd42012-02-20 17:53:02 -05004588 ext4_journal_callback_add(handle, ext4_free_data_callback,
4589 &new_entry->efd_jce);
Alex Tomasc9de5602008-01-29 00:19:52 -05004590 return 0;
4591}
4592
Theodore Ts'o44338712009-11-22 07:44:56 -05004593/**
4594 * ext4_free_blocks() -- Free given blocks and update quota
4595 * @handle: handle for this transaction
4596 * @inode: inode
4597 * @block: start physical block to free
4598 * @count: number of blocks to count
Yongqiang Yang5def1362011-06-05 23:26:40 -04004599 * @flags: flags used by ext4_free_blocks
Alex Tomasc9de5602008-01-29 00:19:52 -05004600 */
Theodore Ts'o44338712009-11-22 07:44:56 -05004601void ext4_free_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'oe6362602009-11-23 07:17:05 -05004602 struct buffer_head *bh, ext4_fsblk_t block,
4603 unsigned long count, int flags)
Alex Tomasc9de5602008-01-29 00:19:52 -05004604{
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05004605 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004606 struct super_block *sb = inode->i_sb;
Alex Tomasc9de5602008-01-29 00:19:52 -05004607 struct ext4_group_desc *gdp;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004608 unsigned int overflow;
Alex Tomasc9de5602008-01-29 00:19:52 -05004609 ext4_grpblk_t bit;
4610 struct buffer_head *gd_bh;
4611 ext4_group_t block_group;
4612 struct ext4_sb_info *sbi;
Jan Kara7d734532013-08-17 09:36:54 -04004613 struct ext4_inode_info *ei = EXT4_I(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05004614 struct ext4_buddy e4b;
Theodore Ts'o84130192011-09-09 18:50:51 -04004615 unsigned int count_clusters;
Alex Tomasc9de5602008-01-29 00:19:52 -05004616 int err = 0;
4617 int ret;
4618
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04004619 might_sleep();
Theodore Ts'oe6362602009-11-23 07:17:05 -05004620 if (bh) {
4621 if (block)
4622 BUG_ON(block != bh->b_blocknr);
4623 else
4624 block = bh->b_blocknr;
4625 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004626
Alex Tomasc9de5602008-01-29 00:19:52 -05004627 sbi = EXT4_SB(sb);
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004628 if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
4629 !ext4_data_block_valid(sbi, block, count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004630 ext4_error(sb, "Freeing blocks not in datazone - "
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004631 "block = %llu, count = %lu", block, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004632 goto error_return;
4633 }
4634
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004635 ext4_debug("freeing block %llu\n", block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05004636 trace_ext4_free_blocks(inode, block, count, flags);
4637
4638 if (flags & EXT4_FREE_BLOCKS_FORGET) {
4639 struct buffer_head *tbh = bh;
4640 int i;
4641
4642 BUG_ON(bh && (count > 1));
4643
4644 for (i = 0; i < count; i++) {
Theodore Ts'o2ed57242013-06-12 11:43:02 -04004645 cond_resched();
Theodore Ts'oe6362602009-11-23 07:17:05 -05004646 if (!bh)
4647 tbh = sb_find_get_block(inode->i_sb,
4648 block + i);
Theodore Ts'o2ed57242013-06-12 11:43:02 -04004649 if (!tbh)
Namhyung Kim87783692010-10-27 21:30:11 -04004650 continue;
Theodore Ts'o60e66792010-05-17 07:00:00 -04004651 ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
Theodore Ts'oe6362602009-11-23 07:17:05 -05004652 inode, tbh, block + i);
4653 }
4654 }
4655
Theodore Ts'o60e66792010-05-17 07:00:00 -04004656 /*
Theodore Ts'oe6362602009-11-23 07:17:05 -05004657 * We need to make sure we don't reuse the freed block until
4658 * after the transaction is committed, which we can do by
4659 * treating the block as metadata, below. We make an
4660 * exception if the inode is to be written in writeback mode
4661 * since writeback mode has weak data consistency guarantees.
4662 */
4663 if (!ext4_should_writeback_data(inode))
4664 flags |= EXT4_FREE_BLOCKS_METADATA;
Alex Tomasc9de5602008-01-29 00:19:52 -05004665
Theodore Ts'o84130192011-09-09 18:50:51 -04004666 /*
4667 * If the extent to be freed does not begin on a cluster
4668 * boundary, we need to deal with partial clusters at the
4669 * beginning and end of the extent. Normally we will free
4670 * blocks at the beginning or the end unless we are explicitly
4671 * requested to avoid doing so.
4672 */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004673 overflow = EXT4_PBLK_COFF(sbi, block);
Theodore Ts'o84130192011-09-09 18:50:51 -04004674 if (overflow) {
4675 if (flags & EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER) {
4676 overflow = sbi->s_cluster_ratio - overflow;
4677 block += overflow;
4678 if (count > overflow)
4679 count -= overflow;
4680 else
4681 return;
4682 } else {
4683 block -= overflow;
4684 count += overflow;
4685 }
4686 }
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004687 overflow = EXT4_LBLK_COFF(sbi, count);
Theodore Ts'o84130192011-09-09 18:50:51 -04004688 if (overflow) {
4689 if (flags & EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER) {
4690 if (count > overflow)
4691 count -= overflow;
4692 else
4693 return;
4694 } else
4695 count += sbi->s_cluster_ratio - overflow;
4696 }
4697
Alex Tomasc9de5602008-01-29 00:19:52 -05004698do_more:
4699 overflow = 0;
4700 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
4701
Darrick J. Wong163a2032013-08-28 17:35:51 -04004702 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(
4703 ext4_get_group_info(sb, block_group))))
4704 return;
4705
Alex Tomasc9de5602008-01-29 00:19:52 -05004706 /*
4707 * Check to see if we are freeing blocks across a group
4708 * boundary.
4709 */
Theodore Ts'o84130192011-09-09 18:50:51 -04004710 if (EXT4_C2B(sbi, bit) + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4711 overflow = EXT4_C2B(sbi, bit) + count -
4712 EXT4_BLOCKS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004713 count -= overflow;
4714 }
Lukas Czerner810da242013-03-02 17:18:58 -05004715 count_clusters = EXT4_NUM_B2C(sbi, count);
Theodore Ts'o574ca172008-07-11 19:27:31 -04004716 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004717 if (!bitmap_bh) {
4718 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004719 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004720 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004721 gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004722 if (!gdp) {
4723 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004724 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004725 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004726
4727 if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
4728 in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
4729 in_range(block, ext4_inode_table(sb, gdp),
Theodore Ts'o84130192011-09-09 18:50:51 -04004730 EXT4_SB(sb)->s_itb_per_group) ||
Alex Tomasc9de5602008-01-29 00:19:52 -05004731 in_range(block + count - 1, ext4_inode_table(sb, gdp),
Theodore Ts'o84130192011-09-09 18:50:51 -04004732 EXT4_SB(sb)->s_itb_per_group)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004733
Eric Sandeen12062dd2010-02-15 14:19:27 -05004734 ext4_error(sb, "Freeing blocks in system zone - "
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004735 "Block = %llu, count = %lu", block, count);
Aneesh Kumar K.V519deca2008-05-15 14:43:20 -04004736 /* err = 0. ext4_std_error should be a no op */
4737 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004738 }
4739
4740 BUFFER_TRACE(bitmap_bh, "getting write access");
4741 err = ext4_journal_get_write_access(handle, bitmap_bh);
4742 if (err)
4743 goto error_return;
4744
4745 /*
4746 * We are about to modify some metadata. Call the journal APIs
4747 * to unshare ->b_data if a currently-committing transaction is
4748 * using it
4749 */
4750 BUFFER_TRACE(gd_bh, "get_write_access");
4751 err = ext4_journal_get_write_access(handle, gd_bh);
4752 if (err)
4753 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004754#ifdef AGGRESSIVE_CHECK
4755 {
4756 int i;
Theodore Ts'o84130192011-09-09 18:50:51 -04004757 for (i = 0; i < count_clusters; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -05004758 BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
4759 }
4760#endif
Theodore Ts'o84130192011-09-09 18:50:51 -04004761 trace_ext4_mballoc_free(sb, inode, block_group, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05004762
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05004763 err = ext4_mb_load_buddy(sb, block_group, &e4b);
4764 if (err)
4765 goto error_return;
Theodore Ts'oe6362602009-11-23 07:17:05 -05004766
4767 if ((flags & EXT4_FREE_BLOCKS_METADATA) && ext4_handle_valid(handle)) {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004768 struct ext4_free_data *new_entry;
4769 /*
4770 * blocks being freed are metadata. these blocks shouldn't
4771 * be used until this transaction is committed
4772 */
Theodore Ts'oe7676a72013-07-13 00:40:35 -04004773 retry:
Bobi Jam18aadd42012-02-20 17:53:02 -05004774 new_entry = kmem_cache_alloc(ext4_free_data_cachep, GFP_NOFS);
Theodore Ts'ob72143a2010-12-20 07:26:59 -05004775 if (!new_entry) {
Theodore Ts'oe7676a72013-07-13 00:40:35 -04004776 /*
4777 * We use a retry loop because
4778 * ext4_free_blocks() is not allowed to fail.
4779 */
4780 cond_resched();
4781 congestion_wait(BLK_RW_ASYNC, HZ/50);
4782 goto retry;
Theodore Ts'ob72143a2010-12-20 07:26:59 -05004783 }
Bobi Jam18aadd42012-02-20 17:53:02 -05004784 new_entry->efd_start_cluster = bit;
4785 new_entry->efd_group = block_group;
4786 new_entry->efd_count = count_clusters;
4787 new_entry->efd_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004788
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004789 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04004790 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004791 ext4_mb_free_metadata(handle, &e4b, new_entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05004792 } else {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004793 /* need to update group_info->bb_free and bitmap
4794 * with group lock held. generate_buddy look at
4795 * them with group lock_held
4796 */
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05004797 if (test_opt(sb, DISCARD)) {
4798 err = ext4_issue_discard(sb, block_group, bit, count);
4799 if (err && err != -EOPNOTSUPP)
4800 ext4_msg(sb, KERN_WARNING, "discard request in"
4801 " group:%d block:%d count:%lu failed"
4802 " with %d", block_group, bit, count,
4803 err);
Lukas Czerner8f9ff182013-10-30 11:10:52 -04004804 } else
4805 EXT4_MB_GRP_CLEAR_TRIMMED(e4b.bd_info);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05004806
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004807 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04004808 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
4809 mb_free_blocks(inode, &e4b, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05004810 }
4811
Theodore Ts'o021b65b2011-09-09 19:08:51 -04004812 ret = ext4_free_group_clusters(sb, gdp) + count_clusters;
4813 ext4_free_group_clusters_set(sb, gdp, ret);
Tao Ma79f1ba42012-10-22 00:34:32 -04004814 ext4_block_bitmap_csum_set(sb, block_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004815 ext4_group_desc_csum_set(sb, block_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004816 ext4_unlock_group(sb, block_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004817
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004818 if (sbi->s_log_groups_per_flex) {
4819 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04004820 atomic64_add(count_clusters,
4821 &sbi->s_flex_groups[flex_group].free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004822 }
4823
Jan Kara7d734532013-08-17 09:36:54 -04004824 if (flags & EXT4_FREE_BLOCKS_RESERVE && ei->i_reserved_data_blocks) {
4825 percpu_counter_add(&sbi->s_dirtyclusters_counter,
4826 count_clusters);
4827 spin_lock(&ei->i_block_reservation_lock);
4828 if (flags & EXT4_FREE_BLOCKS_METADATA)
4829 ei->i_reserved_meta_blocks += count_clusters;
4830 else
4831 ei->i_reserved_data_blocks += count_clusters;
4832 spin_unlock(&ei->i_block_reservation_lock);
4833 if (!(flags & EXT4_FREE_BLOCKS_NO_QUOT_UPDATE))
4834 dquot_reclaim_block(inode,
4835 EXT4_C2B(sbi, count_clusters));
4836 } else if (!(flags & EXT4_FREE_BLOCKS_NO_QUOT_UPDATE))
Aditya Kali7b415bf2011-09-09 19:04:51 -04004837 dquot_free_block(inode, EXT4_C2B(sbi, count_clusters));
Jan Kara7d734532013-08-17 09:36:54 -04004838 percpu_counter_add(&sbi->s_freeclusters_counter, count_clusters);
4839
4840 ext4_mb_unload_buddy(&e4b);
Aditya Kali7b415bf2011-09-09 19:04:51 -04004841
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004842 /* We dirtied the bitmap block */
4843 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
4844 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
4845
Alex Tomasc9de5602008-01-29 00:19:52 -05004846 /* And the group descriptor block */
4847 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
Frank Mayhar03901312009-01-07 00:06:22 -05004848 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05004849 if (!err)
4850 err = ret;
4851
4852 if (overflow && !err) {
4853 block += count;
4854 count = overflow;
4855 put_bh(bitmap_bh);
4856 goto do_more;
4857 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004858error_return:
4859 brelse(bitmap_bh);
4860 ext4_std_error(sb, err);
Alex Tomasc9de5602008-01-29 00:19:52 -05004861 return;
4862}
Lukas Czerner7360d172010-10-27 21:30:12 -04004863
4864/**
Yongqiang Yang05291552011-07-26 21:43:56 -04004865 * ext4_group_add_blocks() -- Add given blocks to an existing group
Amir Goldstein2846e822011-05-09 10:46:41 -04004866 * @handle: handle to this transaction
4867 * @sb: super block
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004868 * @block: start physical block to add to the block group
Amir Goldstein2846e822011-05-09 10:46:41 -04004869 * @count: number of blocks to free
4870 *
Amir Goldsteine73a3472011-05-09 21:40:01 -04004871 * This marks the blocks as free in the bitmap and buddy.
Amir Goldstein2846e822011-05-09 10:46:41 -04004872 */
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004873int ext4_group_add_blocks(handle_t *handle, struct super_block *sb,
Amir Goldstein2846e822011-05-09 10:46:41 -04004874 ext4_fsblk_t block, unsigned long count)
4875{
4876 struct buffer_head *bitmap_bh = NULL;
4877 struct buffer_head *gd_bh;
4878 ext4_group_t block_group;
4879 ext4_grpblk_t bit;
4880 unsigned int i;
4881 struct ext4_group_desc *desc;
4882 struct ext4_sb_info *sbi = EXT4_SB(sb);
Amir Goldsteine73a3472011-05-09 21:40:01 -04004883 struct ext4_buddy e4b;
Amir Goldstein2846e822011-05-09 10:46:41 -04004884 int err = 0, ret, blk_free_count;
4885 ext4_grpblk_t blocks_freed;
Amir Goldstein2846e822011-05-09 10:46:41 -04004886
4887 ext4_debug("Adding block(s) %llu-%llu\n", block, block + count - 1);
4888
Yongqiang Yang4740b832011-07-26 21:51:08 -04004889 if (count == 0)
4890 return 0;
4891
Amir Goldstein2846e822011-05-09 10:46:41 -04004892 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
Amir Goldstein2846e822011-05-09 10:46:41 -04004893 /*
4894 * Check to see if we are freeing blocks across a group
4895 * boundary.
4896 */
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004897 if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4898 ext4_warning(sb, "too much blocks added to group %u\n",
4899 block_group);
4900 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04004901 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004902 }
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04004903
Amir Goldstein2846e822011-05-09 10:46:41 -04004904 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004905 if (!bitmap_bh) {
4906 err = -EIO;
Amir Goldstein2846e822011-05-09 10:46:41 -04004907 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004908 }
4909
Amir Goldstein2846e822011-05-09 10:46:41 -04004910 desc = ext4_get_group_desc(sb, block_group, &gd_bh);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004911 if (!desc) {
4912 err = -EIO;
Amir Goldstein2846e822011-05-09 10:46:41 -04004913 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004914 }
Amir Goldstein2846e822011-05-09 10:46:41 -04004915
4916 if (in_range(ext4_block_bitmap(sb, desc), block, count) ||
4917 in_range(ext4_inode_bitmap(sb, desc), block, count) ||
4918 in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) ||
4919 in_range(block + count - 1, ext4_inode_table(sb, desc),
4920 sbi->s_itb_per_group)) {
4921 ext4_error(sb, "Adding blocks in system zones - "
4922 "Block = %llu, count = %lu",
4923 block, count);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004924 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04004925 goto error_return;
4926 }
4927
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04004928 BUFFER_TRACE(bitmap_bh, "getting write access");
4929 err = ext4_journal_get_write_access(handle, bitmap_bh);
Amir Goldstein2846e822011-05-09 10:46:41 -04004930 if (err)
4931 goto error_return;
4932
4933 /*
4934 * We are about to modify some metadata. Call the journal APIs
4935 * to unshare ->b_data if a currently-committing transaction is
4936 * using it
4937 */
4938 BUFFER_TRACE(gd_bh, "get_write_access");
4939 err = ext4_journal_get_write_access(handle, gd_bh);
4940 if (err)
4941 goto error_return;
Amir Goldsteine73a3472011-05-09 21:40:01 -04004942
Amir Goldstein2846e822011-05-09 10:46:41 -04004943 for (i = 0, blocks_freed = 0; i < count; i++) {
4944 BUFFER_TRACE(bitmap_bh, "clear bit");
Amir Goldsteine73a3472011-05-09 21:40:01 -04004945 if (!mb_test_bit(bit + i, bitmap_bh->b_data)) {
Amir Goldstein2846e822011-05-09 10:46:41 -04004946 ext4_error(sb, "bit already cleared for block %llu",
4947 (ext4_fsblk_t)(block + i));
4948 BUFFER_TRACE(bitmap_bh, "bit already cleared");
4949 } else {
4950 blocks_freed++;
4951 }
4952 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04004953
4954 err = ext4_mb_load_buddy(sb, block_group, &e4b);
4955 if (err)
4956 goto error_return;
4957
4958 /*
4959 * need to update group_info->bb_free and bitmap
4960 * with group lock held. generate_buddy look at
4961 * them with group lock_held
4962 */
Amir Goldstein2846e822011-05-09 10:46:41 -04004963 ext4_lock_group(sb, block_group);
Amir Goldsteine73a3472011-05-09 21:40:01 -04004964 mb_clear_bits(bitmap_bh->b_data, bit, count);
4965 mb_free_blocks(NULL, &e4b, bit, count);
Theodore Ts'o021b65b2011-09-09 19:08:51 -04004966 blk_free_count = blocks_freed + ext4_free_group_clusters(sb, desc);
4967 ext4_free_group_clusters_set(sb, desc, blk_free_count);
Tao Ma79f1ba42012-10-22 00:34:32 -04004968 ext4_block_bitmap_csum_set(sb, block_group, desc, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004969 ext4_group_desc_csum_set(sb, block_group, desc);
Amir Goldstein2846e822011-05-09 10:46:41 -04004970 ext4_unlock_group(sb, block_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04004971 percpu_counter_add(&sbi->s_freeclusters_counter,
Lukas Czerner810da242013-03-02 17:18:58 -05004972 EXT4_NUM_B2C(sbi, blocks_freed));
Amir Goldstein2846e822011-05-09 10:46:41 -04004973
4974 if (sbi->s_log_groups_per_flex) {
4975 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04004976 atomic64_add(EXT4_NUM_B2C(sbi, blocks_freed),
4977 &sbi->s_flex_groups[flex_group].free_clusters);
Amir Goldstein2846e822011-05-09 10:46:41 -04004978 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04004979
4980 ext4_mb_unload_buddy(&e4b);
Amir Goldstein2846e822011-05-09 10:46:41 -04004981
4982 /* We dirtied the bitmap block */
4983 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
4984 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
4985
4986 /* And the group descriptor block */
4987 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
4988 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
4989 if (!err)
4990 err = ret;
4991
4992error_return:
4993 brelse(bitmap_bh);
4994 ext4_std_error(sb, err);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004995 return err;
Amir Goldstein2846e822011-05-09 10:46:41 -04004996}
4997
4998/**
Lukas Czerner7360d172010-10-27 21:30:12 -04004999 * ext4_trim_extent -- function to TRIM one single free extent in the group
5000 * @sb: super block for the file system
5001 * @start: starting block of the free extent in the alloc. group
5002 * @count: number of blocks to TRIM
5003 * @group: alloc. group we are working with
5004 * @e4b: ext4 buddy for the group
5005 *
5006 * Trim "count" blocks starting at "start" in the "group". To assure that no
5007 * one will allocate those blocks, mark it as used in buddy bitmap. This must
5008 * be called with under the group lock.
5009 */
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005010static int ext4_trim_extent(struct super_block *sb, int start, int count,
Theodore Ts'od9f34502011-04-30 13:47:24 -04005011 ext4_group_t group, struct ext4_buddy *e4b)
Lukas Czerner7360d172010-10-27 21:30:12 -04005012{
5013 struct ext4_free_extent ex;
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005014 int ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005015
Tao Mab3d4c2b2011-07-11 00:01:52 -04005016 trace_ext4_trim_extent(sb, group, start, count);
5017
Lukas Czerner7360d172010-10-27 21:30:12 -04005018 assert_spin_locked(ext4_group_lock_ptr(sb, group));
5019
5020 ex.fe_start = start;
5021 ex.fe_group = group;
5022 ex.fe_len = count;
5023
5024 /*
5025 * Mark blocks used, so no one can reuse them while
5026 * being trimmed.
5027 */
5028 mb_mark_used(e4b, &ex);
5029 ext4_unlock_group(sb, group);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005030 ret = ext4_issue_discard(sb, group, start, count);
Lukas Czerner7360d172010-10-27 21:30:12 -04005031 ext4_lock_group(sb, group);
5032 mb_free_blocks(NULL, e4b, start, ex.fe_len);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005033 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04005034}
5035
5036/**
5037 * ext4_trim_all_free -- function to trim all free space in alloc. group
5038 * @sb: super block for file system
Tao Ma22612282011-07-11 00:04:34 -04005039 * @group: group to be trimmed
Lukas Czerner7360d172010-10-27 21:30:12 -04005040 * @start: first group block to examine
5041 * @max: last group block to examine
5042 * @minblocks: minimum extent block count
5043 *
5044 * ext4_trim_all_free walks through group's buddy bitmap searching for free
5045 * extents. When the free block is found, ext4_trim_extent is called to TRIM
5046 * the extent.
5047 *
5048 *
5049 * ext4_trim_all_free walks through group's block bitmap searching for free
5050 * extents. When the free extent is found, mark it as used in group buddy
5051 * bitmap. Then issue a TRIM command on this extent and free the extent in
5052 * the group buddy bitmap. This is done until whole group is scanned.
5053 */
Lukas Czerner0b75a842011-02-23 12:22:49 -05005054static ext4_grpblk_t
Lukas Czerner78944082011-05-24 18:16:27 -04005055ext4_trim_all_free(struct super_block *sb, ext4_group_t group,
5056 ext4_grpblk_t start, ext4_grpblk_t max,
5057 ext4_grpblk_t minblocks)
Lukas Czerner7360d172010-10-27 21:30:12 -04005058{
5059 void *bitmap;
Tao Ma169ddc32011-07-11 00:00:07 -04005060 ext4_grpblk_t next, count = 0, free_count = 0;
Lukas Czerner78944082011-05-24 18:16:27 -04005061 struct ext4_buddy e4b;
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005062 int ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005063
Tao Mab3d4c2b2011-07-11 00:01:52 -04005064 trace_ext4_trim_all_free(sb, group, start, max);
5065
Lukas Czerner78944082011-05-24 18:16:27 -04005066 ret = ext4_mb_load_buddy(sb, group, &e4b);
5067 if (ret) {
5068 ext4_error(sb, "Error in loading buddy "
5069 "information for %u", group);
5070 return ret;
5071 }
Lukas Czerner78944082011-05-24 18:16:27 -04005072 bitmap = e4b.bd_bitmap;
Lukas Czerner28739ee2011-05-24 18:28:07 -04005073
5074 ext4_lock_group(sb, group);
Tao Ma3d56b8d2011-07-11 00:03:38 -04005075 if (EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) &&
5076 minblocks >= atomic_read(&EXT4_SB(sb)->s_last_trim_minblks))
5077 goto out;
5078
Lukas Czerner78944082011-05-24 18:16:27 -04005079 start = (e4b.bd_info->bb_first_free > start) ?
5080 e4b.bd_info->bb_first_free : start;
Lukas Czerner7360d172010-10-27 21:30:12 -04005081
Lukas Czerner913eed832012-03-21 21:22:22 -04005082 while (start <= max) {
5083 start = mb_find_next_zero_bit(bitmap, max + 1, start);
5084 if (start > max)
Lukas Czerner7360d172010-10-27 21:30:12 -04005085 break;
Lukas Czerner913eed832012-03-21 21:22:22 -04005086 next = mb_find_next_bit(bitmap, max + 1, start);
Lukas Czerner7360d172010-10-27 21:30:12 -04005087
5088 if ((next - start) >= minblocks) {
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005089 ret = ext4_trim_extent(sb, start,
5090 next - start, group, &e4b);
5091 if (ret && ret != -EOPNOTSUPP)
5092 break;
5093 ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005094 count += next - start;
5095 }
Tao Ma169ddc32011-07-11 00:00:07 -04005096 free_count += next - start;
Lukas Czerner7360d172010-10-27 21:30:12 -04005097 start = next + 1;
5098
5099 if (fatal_signal_pending(current)) {
5100 count = -ERESTARTSYS;
5101 break;
5102 }
5103
5104 if (need_resched()) {
5105 ext4_unlock_group(sb, group);
5106 cond_resched();
5107 ext4_lock_group(sb, group);
5108 }
5109
Tao Ma169ddc32011-07-11 00:00:07 -04005110 if ((e4b.bd_info->bb_free - free_count) < minblocks)
Lukas Czerner7360d172010-10-27 21:30:12 -04005111 break;
5112 }
Tao Ma3d56b8d2011-07-11 00:03:38 -04005113
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005114 if (!ret) {
5115 ret = count;
Tao Ma3d56b8d2011-07-11 00:03:38 -04005116 EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005117 }
Tao Ma3d56b8d2011-07-11 00:03:38 -04005118out:
Lukas Czerner7360d172010-10-27 21:30:12 -04005119 ext4_unlock_group(sb, group);
Lukas Czerner78944082011-05-24 18:16:27 -04005120 ext4_mb_unload_buddy(&e4b);
Lukas Czerner7360d172010-10-27 21:30:12 -04005121
5122 ext4_debug("trimmed %d blocks in the group %d\n",
5123 count, group);
5124
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005125 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04005126}
5127
5128/**
5129 * ext4_trim_fs() -- trim ioctl handle function
5130 * @sb: superblock for filesystem
5131 * @range: fstrim_range structure
5132 *
5133 * start: First Byte to trim
5134 * len: number of Bytes to trim from start
5135 * minlen: minimum extent length in Bytes
5136 * ext4_trim_fs goes through all allocation groups containing Bytes from
5137 * start to start+len. For each such a group ext4_trim_all_free function
5138 * is invoked to trim all free space.
5139 */
5140int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range)
5141{
Lukas Czerner78944082011-05-24 18:16:27 -04005142 struct ext4_group_info *grp;
Lukas Czerner913eed832012-03-21 21:22:22 -04005143 ext4_group_t group, first_group, last_group;
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005144 ext4_grpblk_t cnt = 0, first_cluster, last_cluster;
Lukas Czerner913eed832012-03-21 21:22:22 -04005145 uint64_t start, end, minlen, trimmed = 0;
Jan Kara0f0a25b2011-01-11 15:16:31 -05005146 ext4_fsblk_t first_data_blk =
5147 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
Lukas Czerner913eed832012-03-21 21:22:22 -04005148 ext4_fsblk_t max_blks = ext4_blocks_count(EXT4_SB(sb)->s_es);
Lukas Czerner7360d172010-10-27 21:30:12 -04005149 int ret = 0;
5150
5151 start = range->start >> sb->s_blocksize_bits;
Lukas Czerner913eed832012-03-21 21:22:22 -04005152 end = start + (range->len >> sb->s_blocksize_bits) - 1;
Lukas Czerneraaf7d732012-09-26 22:21:21 -04005153 minlen = EXT4_NUM_B2C(EXT4_SB(sb),
5154 range->minlen >> sb->s_blocksize_bits);
Lukas Czerner7360d172010-10-27 21:30:12 -04005155
Lukas Czerner5de35e82012-10-22 18:01:19 -04005156 if (minlen > EXT4_CLUSTERS_PER_GROUP(sb) ||
5157 start >= max_blks ||
5158 range->len < sb->s_blocksize)
Lukas Czerner7360d172010-10-27 21:30:12 -04005159 return -EINVAL;
Lukas Czerner913eed832012-03-21 21:22:22 -04005160 if (end >= max_blks)
5161 end = max_blks - 1;
5162 if (end <= first_data_blk)
Tao Ma22f10452011-07-10 23:52:37 -04005163 goto out;
Lukas Czerner913eed832012-03-21 21:22:22 -04005164 if (start < first_data_blk)
Jan Kara0f0a25b2011-01-11 15:16:31 -05005165 start = first_data_blk;
Lukas Czerner7360d172010-10-27 21:30:12 -04005166
Lukas Czerner913eed832012-03-21 21:22:22 -04005167 /* Determine first and last group to examine based on start and end */
Lukas Czerner7360d172010-10-27 21:30:12 -04005168 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) start,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005169 &first_group, &first_cluster);
Lukas Czerner913eed832012-03-21 21:22:22 -04005170 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) end,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005171 &last_group, &last_cluster);
Lukas Czerner7360d172010-10-27 21:30:12 -04005172
Lukas Czerner913eed832012-03-21 21:22:22 -04005173 /* end now represents the last cluster to discard in this group */
5174 end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
Lukas Czerner7360d172010-10-27 21:30:12 -04005175
5176 for (group = first_group; group <= last_group; group++) {
Lukas Czerner78944082011-05-24 18:16:27 -04005177 grp = ext4_get_group_info(sb, group);
5178 /* We only do this if the grp has never been initialized */
5179 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
5180 ret = ext4_mb_init_group(sb, group);
5181 if (ret)
5182 break;
Lukas Czerner7360d172010-10-27 21:30:12 -04005183 }
5184
Tao Ma0ba08512011-03-23 15:48:11 -04005185 /*
Lukas Czerner913eed832012-03-21 21:22:22 -04005186 * For all the groups except the last one, last cluster will
5187 * always be EXT4_CLUSTERS_PER_GROUP(sb)-1, so we only need to
5188 * change it for the last group, note that last_cluster is
5189 * already computed earlier by ext4_get_group_no_and_offset()
Tao Ma0ba08512011-03-23 15:48:11 -04005190 */
Lukas Czerner913eed832012-03-21 21:22:22 -04005191 if (group == last_group)
5192 end = last_cluster;
Lukas Czerner7360d172010-10-27 21:30:12 -04005193
Lukas Czerner78944082011-05-24 18:16:27 -04005194 if (grp->bb_free >= minlen) {
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005195 cnt = ext4_trim_all_free(sb, group, first_cluster,
Lukas Czerner913eed832012-03-21 21:22:22 -04005196 end, minlen);
Lukas Czerner7360d172010-10-27 21:30:12 -04005197 if (cnt < 0) {
5198 ret = cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04005199 break;
5200 }
Lukas Czerner21e7fd22012-03-21 21:24:22 -04005201 trimmed += cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04005202 }
Lukas Czerner913eed832012-03-21 21:22:22 -04005203
5204 /*
5205 * For every group except the first one, we are sure
5206 * that the first cluster to discard will be cluster #0.
5207 */
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005208 first_cluster = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005209 }
Lukas Czerner7360d172010-10-27 21:30:12 -04005210
Tao Ma3d56b8d2011-07-11 00:03:38 -04005211 if (!ret)
5212 atomic_set(&EXT4_SB(sb)->s_last_trim_minblks, minlen);
5213
Tao Ma22f10452011-07-10 23:52:37 -04005214out:
Lukas Czerneraaf7d732012-09-26 22:21:21 -04005215 range->len = EXT4_C2B(EXT4_SB(sb), trimmed) << sb->s_blocksize_bits;
Lukas Czerner7360d172010-10-27 21:30:12 -04005216 return ret;
5217}