blob: 6f51f016f80b41598233437799ddd0961a3dd446 [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;
Chandan Rajendra64375992016-11-14 21:04:37 -0500671 unsigned int border;
Alex Tomasc9de5602008-01-29 00:19:52 -0500672
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);
Namjae Jeone43bb4e2014-06-26 10:11:53 -0400725 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -0400726 ext4_grpblk_t max = EXT4_CLUSTERS_PER_GROUP(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400727 ext4_grpblk_t i = 0;
728 ext4_grpblk_t first;
729 ext4_grpblk_t len;
Alex Tomasc9de5602008-01-29 00:19:52 -0500730 unsigned free = 0;
731 unsigned fragments = 0;
732 unsigned long long period = get_cycles();
733
734 /* initialize buddy from bitmap which is aggregation
735 * of on-disk bitmap and preallocations */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500736 i = mb_find_next_zero_bit(bitmap, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -0500737 grp->bb_first_free = i;
738 while (i < max) {
739 fragments++;
740 first = i;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500741 i = mb_find_next_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500742 len = i - first;
743 free += len;
744 if (len > 1)
745 ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
746 else
747 grp->bb_counters[0]++;
748 if (i < max)
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500749 i = mb_find_next_zero_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500750 }
751 grp->bb_fragments = fragments;
752
753 if (free != grp->bb_free) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400754 ext4_grp_locked_error(sb, group, 0, 0,
Theodore Ts'o94d4c062014-07-05 19:15:50 -0400755 "block bitmap and bg descriptor "
756 "inconsistent: %u vs %u free clusters",
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400757 free, grp->bb_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500758 /*
Darrick J. Wong163a2032013-08-28 17:35:51 -0400759 * If we intend to continue, we consider group descriptor
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500760 * corrupt and update bb_free using bitmap value
761 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500762 grp->bb_free = free;
Namjae Jeone43bb4e2014-06-26 10:11:53 -0400763 if (!EXT4_MB_GRP_BBITMAP_CORRUPT(grp))
764 percpu_counter_sub(&sbi->s_freeclusters_counter,
765 grp->bb_free);
Darrick J. Wong163a2032013-08-28 17:35:51 -0400766 set_bit(EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT, &grp->bb_state);
Alex Tomasc9de5602008-01-29 00:19:52 -0500767 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400768 mb_set_largest_free_order(sb, grp);
Alex Tomasc9de5602008-01-29 00:19:52 -0500769
770 clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
771
772 period = get_cycles() - period;
773 spin_lock(&EXT4_SB(sb)->s_bal_lock);
774 EXT4_SB(sb)->s_mb_buddies_generated++;
775 EXT4_SB(sb)->s_mb_generation_time += period;
776 spin_unlock(&EXT4_SB(sb)->s_bal_lock);
777}
778
Andrey Sidoroveabe0442013-04-09 12:22:29 -0400779static void mb_regenerate_buddy(struct ext4_buddy *e4b)
780{
781 int count;
782 int order = 1;
783 void *buddy;
784
785 while ((buddy = mb_find_buddy(e4b, order++, &count))) {
786 ext4_set_bits(buddy, 0, count);
787 }
788 e4b->bd_info->bb_fragments = 0;
789 memset(e4b->bd_info->bb_counters, 0,
790 sizeof(*e4b->bd_info->bb_counters) *
791 (e4b->bd_sb->s_blocksize_bits + 2));
792
793 ext4_mb_generate_buddy(e4b->bd_sb, e4b->bd_buddy,
794 e4b->bd_bitmap, e4b->bd_group);
795}
796
Alex Tomasc9de5602008-01-29 00:19:52 -0500797/* The buddy information is attached the buddy cache inode
798 * for convenience. The information regarding each group
799 * is loaded via ext4_mb_load_buddy. The information involve
800 * block bitmap and buddy information. The information are
801 * stored in the inode as
802 *
803 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500804 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500805 *
806 *
807 * one block each for bitmap and buddy information.
808 * So for each group we take up 2 blocks. A page can
809 * contain blocks_per_page (PAGE_CACHE_SIZE / blocksize) blocks.
810 * So it can have information regarding groups_per_page which
811 * is blocks_per_page/2
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400812 *
813 * Locking note: This routine takes the block group lock of all groups
814 * for this page; do not hold this lock when calling this routine!
Alex Tomasc9de5602008-01-29 00:19:52 -0500815 */
816
817static int ext4_mb_init_cache(struct page *page, char *incore)
818{
Theodore Ts'o8df96752009-05-01 08:50:38 -0400819 ext4_group_t ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -0500820 int blocksize;
821 int blocks_per_page;
822 int groups_per_page;
823 int err = 0;
824 int i;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500825 ext4_group_t first_group, group;
Alex Tomasc9de5602008-01-29 00:19:52 -0500826 int first_block;
827 struct super_block *sb;
828 struct buffer_head *bhs;
Darrick J. Wongfa77dcf2012-04-29 18:35:10 -0400829 struct buffer_head **bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -0500830 struct inode *inode;
831 char *data;
832 char *bitmap;
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400833 struct ext4_group_info *grinfo;
Alex Tomasc9de5602008-01-29 00:19:52 -0500834
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400835 mb_debug(1, "init page %lu\n", page->index);
Alex Tomasc9de5602008-01-29 00:19:52 -0500836
837 inode = page->mapping->host;
838 sb = inode->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400839 ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -0500840 blocksize = 1 << inode->i_blkbits;
841 blocks_per_page = PAGE_CACHE_SIZE / blocksize;
842
843 groups_per_page = blocks_per_page >> 1;
844 if (groups_per_page == 0)
845 groups_per_page = 1;
846
847 /* allocate buffer_heads to read bitmaps */
848 if (groups_per_page > 1) {
Alex Tomasc9de5602008-01-29 00:19:52 -0500849 i = sizeof(struct buffer_head *) * groups_per_page;
850 bh = kzalloc(i, GFP_NOFS);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500851 if (bh == NULL) {
852 err = -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -0500853 goto out;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500854 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500855 } else
856 bh = &bhs;
857
858 first_group = page->index * blocks_per_page / 2;
859
860 /* read all groups the page covers into the cache */
Theodore Ts'o813e5722012-02-20 17:52:46 -0500861 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
862 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500863 break;
864
Theodore Ts'o813e5722012-02-20 17:52:46 -0500865 grinfo = ext4_get_group_info(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400866 /*
867 * If page is uptodate then we came here after online resize
868 * which added some new uninitialized group info structs, so
869 * we must skip all initialized uptodate buddies on the page,
870 * which may be currently in use by an allocating task.
871 */
872 if (PageUptodate(page) && !EXT4_MB_GRP_NEED_INIT(grinfo)) {
873 bh[i] = NULL;
874 continue;
875 }
Theodore Ts'o813e5722012-02-20 17:52:46 -0500876 if (!(bh[i] = ext4_read_block_bitmap_nowait(sb, group))) {
877 err = -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -0500878 goto out;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500879 }
Theodore Ts'o813e5722012-02-20 17:52:46 -0500880 mb_debug(1, "read bitmap for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500881 }
882
883 /* wait for I/O completion */
Theodore Ts'o813e5722012-02-20 17:52:46 -0500884 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
885 if (bh[i] && ext4_wait_block_bitmap(sb, group, bh[i])) {
886 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -0500887 goto out;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500888 }
889 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500890
891 first_block = page->index * blocks_per_page;
892 for (i = 0; i < blocks_per_page; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -0500893 group = (first_block + i) >> 1;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400894 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500895 break;
896
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400897 if (!bh[group - first_group])
898 /* skip initialized uptodate buddy */
899 continue;
900
Alex Tomasc9de5602008-01-29 00:19:52 -0500901 /*
902 * data carry information regarding this
903 * particular group in the format specified
904 * above
905 *
906 */
907 data = page_address(page) + (i * blocksize);
908 bitmap = bh[group - first_group]->b_data;
909
910 /*
911 * We place the buddy block and bitmap block
912 * close together
913 */
914 if ((first_block + i) & 1) {
915 /* this is block of buddy */
916 BUG_ON(incore == NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400917 mb_debug(1, "put buddy for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500918 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400919 trace_ext4_mb_buddy_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500920 grinfo = ext4_get_group_info(sb, group);
921 grinfo->bb_fragments = 0;
922 memset(grinfo->bb_counters, 0,
Eric Sandeen19278052009-08-25 22:36:25 -0400923 sizeof(*grinfo->bb_counters) *
924 (sb->s_blocksize_bits+2));
Alex Tomasc9de5602008-01-29 00:19:52 -0500925 /*
926 * incore got set to the group block bitmap below
927 */
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500928 ext4_lock_group(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400929 /* init the buddy */
930 memset(data, 0xff, blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -0500931 ext4_mb_generate_buddy(sb, data, incore, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500932 ext4_unlock_group(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500933 incore = NULL;
934 } else {
935 /* this is block of bitmap */
936 BUG_ON(incore != NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400937 mb_debug(1, "put bitmap for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500938 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400939 trace_ext4_mb_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500940
941 /* see comments in ext4_mb_put_pa() */
942 ext4_lock_group(sb, group);
943 memcpy(data, bitmap, blocksize);
944
945 /* mark all preallocated blks used in in-core bitmap */
946 ext4_mb_generate_from_pa(sb, data, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500947 ext4_mb_generate_from_freelist(sb, data, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500948 ext4_unlock_group(sb, group);
949
950 /* set incore so that the buddy information can be
951 * generated using this
952 */
953 incore = data;
954 }
955 }
956 SetPageUptodate(page);
957
958out:
959 if (bh) {
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400960 for (i = 0; i < groups_per_page; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500961 brelse(bh[i]);
962 if (bh != &bhs)
963 kfree(bh);
964 }
965 return err;
966}
967
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400968/*
Amir Goldstein2de88072011-05-09 21:48:13 -0400969 * Lock the buddy and bitmap pages. This make sure other parallel init_group
970 * on the same buddy page doesn't happen whild holding the buddy page lock.
971 * Return locked buddy and bitmap pages on e4b struct. If buddy and bitmap
972 * are on the same page e4b->bd_buddy_page is NULL and return value is 0.
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400973 */
Amir Goldstein2de88072011-05-09 21:48:13 -0400974static int ext4_mb_get_buddy_page_lock(struct super_block *sb,
975 ext4_group_t group, struct ext4_buddy *e4b)
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400976{
Amir Goldstein2de88072011-05-09 21:48:13 -0400977 struct inode *inode = EXT4_SB(sb)->s_buddy_cache;
978 int block, pnum, poff;
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400979 int blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -0400980 struct page *page;
981
982 e4b->bd_buddy_page = NULL;
983 e4b->bd_bitmap_page = NULL;
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400984
985 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
986 /*
987 * the buddy cache inode stores the block bitmap
988 * and buddy information in consecutive blocks.
989 * So for each group we need two blocks.
990 */
991 block = group * 2;
992 pnum = block / blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -0400993 poff = block % blocks_per_page;
994 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
995 if (!page)
Younger Liuc57ab392014-04-10 23:03:43 -0400996 return -ENOMEM;
Amir Goldstein2de88072011-05-09 21:48:13 -0400997 BUG_ON(page->mapping != inode->i_mapping);
998 e4b->bd_bitmap_page = page;
999 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001000
Amir Goldstein2de88072011-05-09 21:48:13 -04001001 if (blocks_per_page >= 2) {
1002 /* buddy and bitmap are on the same page */
1003 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001004 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001005
1006 block++;
1007 pnum = block / blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -04001008 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1009 if (!page)
Younger Liuc57ab392014-04-10 23:03:43 -04001010 return -ENOMEM;
Amir Goldstein2de88072011-05-09 21:48:13 -04001011 BUG_ON(page->mapping != inode->i_mapping);
1012 e4b->bd_buddy_page = page;
1013 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001014}
1015
Amir Goldstein2de88072011-05-09 21:48:13 -04001016static void ext4_mb_put_buddy_page_lock(struct ext4_buddy *e4b)
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001017{
Amir Goldstein2de88072011-05-09 21:48:13 -04001018 if (e4b->bd_bitmap_page) {
1019 unlock_page(e4b->bd_bitmap_page);
1020 page_cache_release(e4b->bd_bitmap_page);
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001021 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001022 if (e4b->bd_buddy_page) {
1023 unlock_page(e4b->bd_buddy_page);
1024 page_cache_release(e4b->bd_buddy_page);
1025 }
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001026}
1027
1028/*
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001029 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1030 * block group lock of all groups for this page; do not hold the BG lock when
1031 * calling this routine!
1032 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001033static noinline_for_stack
1034int ext4_mb_init_group(struct super_block *sb, ext4_group_t group)
1035{
1036
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001037 struct ext4_group_info *this_grp;
Amir Goldstein2de88072011-05-09 21:48:13 -04001038 struct ext4_buddy e4b;
1039 struct page *page;
1040 int ret = 0;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001041
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001042 might_sleep();
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001043 mb_debug(1, "init group %u\n", group);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001044 this_grp = ext4_get_group_info(sb, group);
1045 /*
Aneesh Kumar K.V08c3a812009-09-09 23:50:17 -04001046 * This ensures that we don't reinit the buddy cache
1047 * page which map to the group from which we are already
1048 * allocating. If we are looking at the buddy cache we would
1049 * have taken a reference using ext4_mb_load_buddy and that
Amir Goldstein2de88072011-05-09 21:48:13 -04001050 * would have pinned buddy page to page cache.
Mel Gorman2457aec2014-06-04 16:10:31 -07001051 * The call to ext4_mb_get_buddy_page_lock will mark the
1052 * page accessed.
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001053 */
Amir Goldstein2de88072011-05-09 21:48:13 -04001054 ret = ext4_mb_get_buddy_page_lock(sb, group, &e4b);
1055 if (ret || !EXT4_MB_GRP_NEED_INIT(this_grp)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001056 /*
1057 * somebody initialized the group
1058 * return without doing anything
1059 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001060 goto err;
1061 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001062
1063 page = e4b.bd_bitmap_page;
1064 ret = ext4_mb_init_cache(page, NULL);
1065 if (ret)
1066 goto err;
1067 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001068 ret = -EIO;
1069 goto err;
1070 }
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001071
Amir Goldstein2de88072011-05-09 21:48:13 -04001072 if (e4b.bd_buddy_page == NULL) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001073 /*
1074 * If both the bitmap and buddy are in
1075 * the same page we don't need to force
1076 * init the buddy
1077 */
Amir Goldstein2de88072011-05-09 21:48:13 -04001078 ret = 0;
1079 goto err;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001080 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001081 /* init buddy cache */
1082 page = e4b.bd_buddy_page;
1083 ret = ext4_mb_init_cache(page, e4b.bd_bitmap);
1084 if (ret)
1085 goto err;
1086 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001087 ret = -EIO;
1088 goto err;
1089 }
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001090err:
Amir Goldstein2de88072011-05-09 21:48:13 -04001091 ext4_mb_put_buddy_page_lock(&e4b);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001092 return ret;
1093}
1094
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001095/*
1096 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1097 * block group lock of all groups for this page; do not hold the BG lock when
1098 * calling this routine!
1099 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04001100static noinline_for_stack int
1101ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
1102 struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001103{
Alex Tomasc9de5602008-01-29 00:19:52 -05001104 int blocks_per_page;
1105 int block;
1106 int pnum;
1107 int poff;
1108 struct page *page;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001109 int ret;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001110 struct ext4_group_info *grp;
1111 struct ext4_sb_info *sbi = EXT4_SB(sb);
1112 struct inode *inode = sbi->s_buddy_cache;
Alex Tomasc9de5602008-01-29 00:19:52 -05001113
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001114 might_sleep();
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04001115 mb_debug(1, "load group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001116
1117 blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001118 grp = ext4_get_group_info(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001119
1120 e4b->bd_blkbits = sb->s_blocksize_bits;
Tao Ma529da702011-07-23 16:07:26 -04001121 e4b->bd_info = grp;
Alex Tomasc9de5602008-01-29 00:19:52 -05001122 e4b->bd_sb = sb;
1123 e4b->bd_group = group;
1124 e4b->bd_buddy_page = NULL;
1125 e4b->bd_bitmap_page = NULL;
1126
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001127 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001128 /*
1129 * we need full data about the group
1130 * to make a good selection
1131 */
1132 ret = ext4_mb_init_group(sb, group);
1133 if (ret)
1134 return ret;
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001135 }
1136
Alex Tomasc9de5602008-01-29 00:19:52 -05001137 /*
1138 * the buddy cache inode stores the block bitmap
1139 * and buddy information in consecutive blocks.
1140 * So for each group we need two blocks.
1141 */
1142 block = group * 2;
1143 pnum = block / blocks_per_page;
1144 poff = block % blocks_per_page;
1145
1146 /* we could use find_or_create_page(), but it locks page
1147 * what we'd like to avoid in fast path ... */
Mel Gorman2457aec2014-06-04 16:10:31 -07001148 page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
Alex Tomasc9de5602008-01-29 00:19:52 -05001149 if (page == NULL || !PageUptodate(page)) {
1150 if (page)
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001151 /*
1152 * drop the page reference and try
1153 * to get the page with lock. If we
1154 * are not uptodate that implies
1155 * somebody just created the page but
1156 * is yet to initialize the same. So
1157 * wait for it to initialize.
1158 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001159 page_cache_release(page);
1160 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1161 if (page) {
1162 BUG_ON(page->mapping != inode->i_mapping);
1163 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001164 ret = ext4_mb_init_cache(page, NULL);
1165 if (ret) {
1166 unlock_page(page);
1167 goto err;
1168 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001169 mb_cmp_bitmaps(e4b, page_address(page) +
1170 (poff * sb->s_blocksize));
1171 }
1172 unlock_page(page);
1173 }
1174 }
Younger Liuc57ab392014-04-10 23:03:43 -04001175 if (page == NULL) {
1176 ret = -ENOMEM;
1177 goto err;
1178 }
1179 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001180 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001181 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001182 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001183
1184 /* Pages marked accessed already */
Alex Tomasc9de5602008-01-29 00:19:52 -05001185 e4b->bd_bitmap_page = page;
1186 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -05001187
1188 block++;
1189 pnum = block / blocks_per_page;
1190 poff = block % blocks_per_page;
1191
Mel Gorman2457aec2014-06-04 16:10:31 -07001192 page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
Alex Tomasc9de5602008-01-29 00:19:52 -05001193 if (page == NULL || !PageUptodate(page)) {
1194 if (page)
1195 page_cache_release(page);
1196 page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1197 if (page) {
1198 BUG_ON(page->mapping != inode->i_mapping);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001199 if (!PageUptodate(page)) {
1200 ret = ext4_mb_init_cache(page, e4b->bd_bitmap);
1201 if (ret) {
1202 unlock_page(page);
1203 goto err;
1204 }
1205 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001206 unlock_page(page);
1207 }
1208 }
Younger Liuc57ab392014-04-10 23:03:43 -04001209 if (page == NULL) {
1210 ret = -ENOMEM;
1211 goto err;
1212 }
1213 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001214 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001215 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001216 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001217
1218 /* Pages marked accessed already */
Alex Tomasc9de5602008-01-29 00:19:52 -05001219 e4b->bd_buddy_page = page;
1220 e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -05001221
1222 BUG_ON(e4b->bd_bitmap_page == NULL);
1223 BUG_ON(e4b->bd_buddy_page == NULL);
1224
1225 return 0;
1226
1227err:
Yang Ruirui26626f112011-04-16 19:17:48 -04001228 if (page)
1229 page_cache_release(page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001230 if (e4b->bd_bitmap_page)
1231 page_cache_release(e4b->bd_bitmap_page);
1232 if (e4b->bd_buddy_page)
1233 page_cache_release(e4b->bd_buddy_page);
1234 e4b->bd_buddy = NULL;
1235 e4b->bd_bitmap = NULL;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001236 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05001237}
1238
Jing Zhange39e07f2010-05-14 00:00:00 -04001239static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001240{
1241 if (e4b->bd_bitmap_page)
1242 page_cache_release(e4b->bd_bitmap_page);
1243 if (e4b->bd_buddy_page)
1244 page_cache_release(e4b->bd_buddy_page);
1245}
1246
1247
1248static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1249{
1250 int order = 1;
Nicolai Stangec7f90912016-05-05 17:38:03 -04001251 int bb_incr = 1 << (e4b->bd_blkbits - 1);
Alex Tomasc9de5602008-01-29 00:19:52 -05001252 void *bb;
1253
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001254 BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
Alex Tomasc9de5602008-01-29 00:19:52 -05001255 BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1256
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001257 bb = e4b->bd_buddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05001258 while (order <= e4b->bd_blkbits + 1) {
1259 block = block >> 1;
1260 if (!mb_test_bit(block, bb)) {
1261 /* this block is part of buddy of order 'order' */
1262 return order;
1263 }
Nicolai Stangec7f90912016-05-05 17:38:03 -04001264 bb += bb_incr;
1265 bb_incr >>= 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001266 order++;
1267 }
1268 return 0;
1269}
1270
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001271static void mb_clear_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001272{
1273 __u32 *addr;
1274
1275 len = cur + len;
1276 while (cur < len) {
1277 if ((cur & 31) == 0 && (len - cur) >= 32) {
1278 /* fast path: clear whole word at once */
1279 addr = bm + (cur >> 3);
1280 *addr = 0;
1281 cur += 32;
1282 continue;
1283 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001284 mb_clear_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001285 cur++;
1286 }
1287}
1288
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001289/* clear bits in given range
1290 * will return first found zero bit if any, -1 otherwise
1291 */
1292static int mb_test_and_clear_bits(void *bm, int cur, int len)
1293{
1294 __u32 *addr;
1295 int zero_bit = -1;
1296
1297 len = cur + len;
1298 while (cur < len) {
1299 if ((cur & 31) == 0 && (len - cur) >= 32) {
1300 /* fast path: clear whole word at once */
1301 addr = bm + (cur >> 3);
1302 if (*addr != (__u32)(-1) && zero_bit == -1)
1303 zero_bit = cur + mb_find_next_zero_bit(addr, 32, 0);
1304 *addr = 0;
1305 cur += 32;
1306 continue;
1307 }
1308 if (!mb_test_and_clear_bit(cur, bm) && zero_bit == -1)
1309 zero_bit = cur;
1310 cur++;
1311 }
1312
1313 return zero_bit;
1314}
1315
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04001316void ext4_set_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001317{
1318 __u32 *addr;
1319
1320 len = cur + len;
1321 while (cur < len) {
1322 if ((cur & 31) == 0 && (len - cur) >= 32) {
1323 /* fast path: set whole word at once */
1324 addr = bm + (cur >> 3);
1325 *addr = 0xffffffff;
1326 cur += 32;
1327 continue;
1328 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001329 mb_set_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001330 cur++;
1331 }
1332}
1333
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001334/*
1335 * _________________________________________________________________ */
1336
1337static inline int mb_buddy_adjust_border(int* bit, void* bitmap, int side)
Alex Tomasc9de5602008-01-29 00:19:52 -05001338{
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001339 if (mb_test_bit(*bit + side, bitmap)) {
1340 mb_clear_bit(*bit, bitmap);
1341 (*bit) -= side;
1342 return 1;
1343 }
1344 else {
1345 (*bit) += side;
1346 mb_set_bit(*bit, bitmap);
1347 return -1;
1348 }
1349}
1350
1351static void mb_buddy_mark_free(struct ext4_buddy *e4b, int first, int last)
1352{
1353 int max;
1354 int order = 1;
1355 void *buddy = mb_find_buddy(e4b, order, &max);
1356
1357 while (buddy) {
1358 void *buddy2;
1359
1360 /* Bits in range [first; last] are known to be set since
1361 * corresponding blocks were allocated. Bits in range
1362 * (first; last) will stay set because they form buddies on
1363 * upper layer. We just deal with borders if they don't
1364 * align with upper layer and then go up.
1365 * Releasing entire group is all about clearing
1366 * single bit of highest order buddy.
1367 */
1368
1369 /* Example:
1370 * ---------------------------------
1371 * | 1 | 1 | 1 | 1 |
1372 * ---------------------------------
1373 * | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
1374 * ---------------------------------
1375 * 0 1 2 3 4 5 6 7
1376 * \_____________________/
1377 *
1378 * Neither [1] nor [6] is aligned to above layer.
1379 * Left neighbour [0] is free, so mark it busy,
1380 * decrease bb_counters and extend range to
1381 * [0; 6]
1382 * Right neighbour [7] is busy. It can't be coaleasced with [6], so
1383 * mark [6] free, increase bb_counters and shrink range to
1384 * [0; 5].
1385 * Then shift range to [0; 2], go up and do the same.
1386 */
1387
1388
1389 if (first & 1)
1390 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&first, buddy, -1);
1391 if (!(last & 1))
1392 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&last, buddy, 1);
1393 if (first > last)
1394 break;
1395 order++;
1396
1397 if (first == last || !(buddy2 = mb_find_buddy(e4b, order, &max))) {
1398 mb_clear_bits(buddy, first, last - first + 1);
1399 e4b->bd_info->bb_counters[order - 1] += last - first + 1;
1400 break;
1401 }
1402 first >>= 1;
1403 last >>= 1;
1404 buddy = buddy2;
1405 }
1406}
1407
1408static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
1409 int first, int count)
1410{
1411 int left_is_free = 0;
1412 int right_is_free = 0;
1413 int block;
1414 int last = first + count - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001415 struct super_block *sb = e4b->bd_sb;
1416
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04001417 if (WARN_ON(count == 0))
1418 return;
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001419 BUG_ON(last >= (sb->s_blocksize << 3));
Vincent Minetbc8e6742009-05-15 08:33:18 -04001420 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Darrick J. Wong163a2032013-08-28 17:35:51 -04001421 /* Don't bother if the block group is corrupt. */
1422 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info)))
1423 return;
1424
Alex Tomasc9de5602008-01-29 00:19:52 -05001425 mb_check_buddy(e4b);
1426 mb_free_blocks_double(inode, e4b, first, count);
1427
1428 e4b->bd_info->bb_free += count;
1429 if (first < e4b->bd_info->bb_first_free)
1430 e4b->bd_info->bb_first_free = first;
1431
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001432 /* access memory sequentially: check left neighbour,
1433 * clear range and then check right neighbour
1434 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001435 if (first != 0)
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001436 left_is_free = !mb_test_bit(first - 1, e4b->bd_bitmap);
1437 block = mb_test_and_clear_bits(e4b->bd_bitmap, first, count);
1438 if (last + 1 < EXT4_SB(sb)->s_mb_maxs[0])
1439 right_is_free = !mb_test_bit(last + 1, e4b->bd_bitmap);
1440
1441 if (unlikely(block != -1)) {
Namjae Jeone43bb4e2014-06-26 10:11:53 -04001442 struct ext4_sb_info *sbi = EXT4_SB(sb);
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001443 ext4_fsblk_t blocknr;
1444
1445 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
1446 blocknr += EXT4_C2B(EXT4_SB(sb), block);
1447 ext4_grp_locked_error(sb, e4b->bd_group,
1448 inode ? inode->i_ino : 0,
1449 blocknr,
1450 "freeing already freed block "
Darrick J. Wong163a2032013-08-28 17:35:51 -04001451 "(bit %u); block bitmap corrupt.",
1452 block);
Namjae Jeone43bb4e2014-06-26 10:11:53 -04001453 if (!EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info))
1454 percpu_counter_sub(&sbi->s_freeclusters_counter,
1455 e4b->bd_info->bb_free);
Darrick J. Wong163a2032013-08-28 17:35:51 -04001456 /* Mark the block group as corrupt. */
1457 set_bit(EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT,
1458 &e4b->bd_info->bb_state);
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001459 mb_regenerate_buddy(e4b);
1460 goto done;
1461 }
1462
1463 /* let's maintain fragments counter */
1464 if (left_is_free && right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001465 e4b->bd_info->bb_fragments--;
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001466 else if (!left_is_free && !right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001467 e4b->bd_info->bb_fragments++;
1468
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001469 /* buddy[0] == bd_bitmap is a special case, so handle
1470 * it right away and let mb_buddy_mark_free stay free of
1471 * zero order checks.
1472 * Check if neighbours are to be coaleasced,
1473 * adjust bitmap bb_counters and borders appropriately.
1474 */
1475 if (first & 1) {
1476 first += !left_is_free;
1477 e4b->bd_info->bb_counters[0] += left_is_free ? -1 : 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001478 }
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001479 if (!(last & 1)) {
1480 last -= !right_is_free;
1481 e4b->bd_info->bb_counters[0] += right_is_free ? -1 : 1;
1482 }
1483
1484 if (first <= last)
1485 mb_buddy_mark_free(e4b, first >> 1, last >> 1);
1486
1487done:
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001488 mb_set_largest_free_order(sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001489 mb_check_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001490}
1491
Robin Dong15c006a2012-08-17 10:02:17 -04001492static int mb_find_extent(struct ext4_buddy *e4b, int block,
Alex Tomasc9de5602008-01-29 00:19:52 -05001493 int needed, struct ext4_free_extent *ex)
1494{
1495 int next = block;
Robin Dong15c006a2012-08-17 10:02:17 -04001496 int max, order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001497 void *buddy;
1498
Vincent Minetbc8e6742009-05-15 08:33:18 -04001499 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001500 BUG_ON(ex == NULL);
1501
Robin Dong15c006a2012-08-17 10:02:17 -04001502 buddy = mb_find_buddy(e4b, 0, &max);
Alex Tomasc9de5602008-01-29 00:19:52 -05001503 BUG_ON(buddy == NULL);
1504 BUG_ON(block >= max);
1505 if (mb_test_bit(block, buddy)) {
1506 ex->fe_len = 0;
1507 ex->fe_start = 0;
1508 ex->fe_group = 0;
1509 return 0;
1510 }
1511
Robin Dong15c006a2012-08-17 10:02:17 -04001512 /* find actual order */
1513 order = mb_find_order_for_block(e4b, block);
1514 block = block >> order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001515
1516 ex->fe_len = 1 << order;
1517 ex->fe_start = block << order;
1518 ex->fe_group = e4b->bd_group;
1519
1520 /* calc difference from given start */
1521 next = next - ex->fe_start;
1522 ex->fe_len -= next;
1523 ex->fe_start += next;
1524
1525 while (needed > ex->fe_len &&
Alan Coxd8ec0c32012-11-08 12:19:58 -05001526 mb_find_buddy(e4b, order, &max)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001527
1528 if (block + 1 >= max)
1529 break;
1530
1531 next = (block + 1) * (1 << order);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001532 if (mb_test_bit(next, e4b->bd_bitmap))
Alex Tomasc9de5602008-01-29 00:19:52 -05001533 break;
1534
Robin Dongb051d8d2011-10-26 05:30:30 -04001535 order = mb_find_order_for_block(e4b, next);
Alex Tomasc9de5602008-01-29 00:19:52 -05001536
Alex Tomasc9de5602008-01-29 00:19:52 -05001537 block = next >> order;
1538 ex->fe_len += 1 << order;
1539 }
1540
1541 BUG_ON(ex->fe_start + ex->fe_len > (1 << (e4b->bd_blkbits + 3)));
1542 return ex->fe_len;
1543}
1544
1545static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1546{
1547 int ord;
1548 int mlen = 0;
1549 int max = 0;
1550 int cur;
1551 int start = ex->fe_start;
1552 int len = ex->fe_len;
1553 unsigned ret = 0;
1554 int len0 = len;
1555 void *buddy;
1556
1557 BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1558 BUG_ON(e4b->bd_group != ex->fe_group);
Vincent Minetbc8e6742009-05-15 08:33:18 -04001559 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001560 mb_check_buddy(e4b);
1561 mb_mark_used_double(e4b, start, len);
1562
1563 e4b->bd_info->bb_free -= len;
1564 if (e4b->bd_info->bb_first_free == start)
1565 e4b->bd_info->bb_first_free += len;
1566
1567 /* let's maintain fragments counter */
1568 if (start != 0)
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001569 mlen = !mb_test_bit(start - 1, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001570 if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001571 max = !mb_test_bit(start + len, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001572 if (mlen && max)
1573 e4b->bd_info->bb_fragments++;
1574 else if (!mlen && !max)
1575 e4b->bd_info->bb_fragments--;
1576
1577 /* let's maintain buddy itself */
1578 while (len) {
1579 ord = mb_find_order_for_block(e4b, start);
1580
1581 if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1582 /* the whole chunk may be allocated at once! */
1583 mlen = 1 << ord;
1584 buddy = mb_find_buddy(e4b, ord, &max);
1585 BUG_ON((start >> ord) >= max);
1586 mb_set_bit(start >> ord, buddy);
1587 e4b->bd_info->bb_counters[ord]--;
1588 start += mlen;
1589 len -= mlen;
1590 BUG_ON(len < 0);
1591 continue;
1592 }
1593
1594 /* store for history */
1595 if (ret == 0)
1596 ret = len | (ord << 16);
1597
1598 /* we have to split large buddy */
1599 BUG_ON(ord <= 0);
1600 buddy = mb_find_buddy(e4b, ord, &max);
1601 mb_set_bit(start >> ord, buddy);
1602 e4b->bd_info->bb_counters[ord]--;
1603
1604 ord--;
1605 cur = (start >> ord) & ~1U;
1606 buddy = mb_find_buddy(e4b, ord, &max);
1607 mb_clear_bit(cur, buddy);
1608 mb_clear_bit(cur + 1, buddy);
1609 e4b->bd_info->bb_counters[ord]++;
1610 e4b->bd_info->bb_counters[ord]++;
1611 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001612 mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001613
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001614 ext4_set_bits(e4b->bd_bitmap, ex->fe_start, len0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001615 mb_check_buddy(e4b);
1616
1617 return ret;
1618}
1619
1620/*
1621 * Must be called under group lock!
1622 */
1623static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
1624 struct ext4_buddy *e4b)
1625{
1626 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1627 int ret;
1628
1629 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
1630 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1631
1632 ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
1633 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
1634 ret = mb_mark_used(e4b, &ac->ac_b_ex);
1635
1636 /* preallocation can change ac_b_ex, thus we store actually
1637 * allocated blocks for history */
1638 ac->ac_f_ex = ac->ac_b_ex;
1639
1640 ac->ac_status = AC_STATUS_FOUND;
1641 ac->ac_tail = ret & 0xffff;
1642 ac->ac_buddy = ret >> 16;
1643
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -05001644 /*
1645 * take the page reference. We want the page to be pinned
1646 * so that we don't get a ext4_mb_init_cache_call for this
1647 * group until we update the bitmap. That would mean we
1648 * double allocate blocks. The reference is dropped
1649 * in ext4_mb_release_context
1650 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001651 ac->ac_bitmap_page = e4b->bd_bitmap_page;
1652 get_page(ac->ac_bitmap_page);
1653 ac->ac_buddy_page = e4b->bd_buddy_page;
1654 get_page(ac->ac_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001655 /* store last allocated for subsequent stream allocation */
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04001656 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001657 spin_lock(&sbi->s_md_lock);
1658 sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
1659 sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
1660 spin_unlock(&sbi->s_md_lock);
1661 }
1662}
1663
1664/*
1665 * regular allocator, for general purposes allocation
1666 */
1667
1668static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
1669 struct ext4_buddy *e4b,
1670 int finish_group)
1671{
1672 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1673 struct ext4_free_extent *bex = &ac->ac_b_ex;
1674 struct ext4_free_extent *gex = &ac->ac_g_ex;
1675 struct ext4_free_extent ex;
1676 int max;
1677
Aneesh Kumar K.V032115f2009-01-05 21:34:30 -05001678 if (ac->ac_status == AC_STATUS_FOUND)
1679 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05001680 /*
1681 * We don't want to scan for a whole year
1682 */
1683 if (ac->ac_found > sbi->s_mb_max_to_scan &&
1684 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1685 ac->ac_status = AC_STATUS_BREAK;
1686 return;
1687 }
1688
1689 /*
1690 * Haven't found good chunk so far, let's continue
1691 */
1692 if (bex->fe_len < gex->fe_len)
1693 return;
1694
1695 if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
1696 && bex->fe_group == e4b->bd_group) {
1697 /* recheck chunk's availability - we don't know
1698 * when it was found (within this lock-unlock
1699 * period or not) */
Robin Dong15c006a2012-08-17 10:02:17 -04001700 max = mb_find_extent(e4b, bex->fe_start, gex->fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001701 if (max >= gex->fe_len) {
1702 ext4_mb_use_best_found(ac, e4b);
1703 return;
1704 }
1705 }
1706}
1707
1708/*
1709 * The routine checks whether found extent is good enough. If it is,
1710 * then the extent gets marked used and flag is set to the context
1711 * to stop scanning. Otherwise, the extent is compared with the
1712 * previous found extent and if new one is better, then it's stored
1713 * in the context. Later, the best found extent will be used, if
1714 * mballoc can't find good enough extent.
1715 *
1716 * FIXME: real allocation policy is to be designed yet!
1717 */
1718static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
1719 struct ext4_free_extent *ex,
1720 struct ext4_buddy *e4b)
1721{
1722 struct ext4_free_extent *bex = &ac->ac_b_ex;
1723 struct ext4_free_extent *gex = &ac->ac_g_ex;
1724
1725 BUG_ON(ex->fe_len <= 0);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001726 BUG_ON(ex->fe_len > EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
1727 BUG_ON(ex->fe_start >= EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05001728 BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
1729
1730 ac->ac_found++;
1731
1732 /*
1733 * The special case - take what you catch first
1734 */
1735 if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1736 *bex = *ex;
1737 ext4_mb_use_best_found(ac, e4b);
1738 return;
1739 }
1740
1741 /*
1742 * Let's check whether the chuck is good enough
1743 */
1744 if (ex->fe_len == gex->fe_len) {
1745 *bex = *ex;
1746 ext4_mb_use_best_found(ac, e4b);
1747 return;
1748 }
1749
1750 /*
1751 * If this is first found extent, just store it in the context
1752 */
1753 if (bex->fe_len == 0) {
1754 *bex = *ex;
1755 return;
1756 }
1757
1758 /*
1759 * If new found extent is better, store it in the context
1760 */
1761 if (bex->fe_len < gex->fe_len) {
1762 /* if the request isn't satisfied, any found extent
1763 * larger than previous best one is better */
1764 if (ex->fe_len > bex->fe_len)
1765 *bex = *ex;
1766 } else if (ex->fe_len > gex->fe_len) {
1767 /* if the request is satisfied, then we try to find
1768 * an extent that still satisfy the request, but is
1769 * smaller than previous one */
1770 if (ex->fe_len < bex->fe_len)
1771 *bex = *ex;
1772 }
1773
1774 ext4_mb_check_limits(ac, e4b, 0);
1775}
1776
Eric Sandeen089ceec2009-07-05 22:17:31 -04001777static noinline_for_stack
1778int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001779 struct ext4_buddy *e4b)
1780{
1781 struct ext4_free_extent ex = ac->ac_b_ex;
1782 ext4_group_t group = ex.fe_group;
1783 int max;
1784 int err;
1785
1786 BUG_ON(ex.fe_len <= 0);
1787 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1788 if (err)
1789 return err;
1790
1791 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04001792 max = mb_find_extent(e4b, ex.fe_start, ex.fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001793
1794 if (max > 0) {
1795 ac->ac_b_ex = ex;
1796 ext4_mb_use_best_found(ac, e4b);
1797 }
1798
1799 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001800 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001801
1802 return 0;
1803}
1804
Eric Sandeen089ceec2009-07-05 22:17:31 -04001805static noinline_for_stack
1806int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001807 struct ext4_buddy *e4b)
1808{
1809 ext4_group_t group = ac->ac_g_ex.fe_group;
1810 int max;
1811 int err;
1812 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04001813 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001814 struct ext4_free_extent ex;
1815
1816 if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
1817 return 0;
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04001818 if (grp->bb_free == 0)
1819 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05001820
1821 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1822 if (err)
1823 return err;
1824
Darrick J. Wong163a2032013-08-28 17:35:51 -04001825 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info))) {
1826 ext4_mb_unload_buddy(e4b);
1827 return 0;
1828 }
1829
Alex Tomasc9de5602008-01-29 00:19:52 -05001830 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04001831 max = mb_find_extent(e4b, ac->ac_g_ex.fe_start,
Alex Tomasc9de5602008-01-29 00:19:52 -05001832 ac->ac_g_ex.fe_len, &ex);
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05001833 ex.fe_logical = 0xDEADFA11; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05001834
1835 if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
1836 ext4_fsblk_t start;
1837
Akinobu Mita5661bd62010-03-03 23:53:39 -05001838 start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
1839 ex.fe_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05001840 /* use do_div to get remainder (would be 64-bit modulo) */
1841 if (do_div(start, sbi->s_stripe) == 0) {
1842 ac->ac_found++;
1843 ac->ac_b_ex = ex;
1844 ext4_mb_use_best_found(ac, e4b);
1845 }
1846 } else if (max >= ac->ac_g_ex.fe_len) {
1847 BUG_ON(ex.fe_len <= 0);
1848 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1849 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1850 ac->ac_found++;
1851 ac->ac_b_ex = ex;
1852 ext4_mb_use_best_found(ac, e4b);
1853 } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
1854 /* Sometimes, caller may want to merge even small
1855 * number of blocks to an existing extent */
1856 BUG_ON(ex.fe_len <= 0);
1857 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1858 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1859 ac->ac_found++;
1860 ac->ac_b_ex = ex;
1861 ext4_mb_use_best_found(ac, e4b);
1862 }
1863 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001864 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001865
1866 return 0;
1867}
1868
1869/*
1870 * The routine scans buddy structures (not bitmap!) from given order
1871 * to max order and tries to find big enough chunk to satisfy the req
1872 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001873static noinline_for_stack
1874void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001875 struct ext4_buddy *e4b)
1876{
1877 struct super_block *sb = ac->ac_sb;
1878 struct ext4_group_info *grp = e4b->bd_info;
1879 void *buddy;
1880 int i;
1881 int k;
1882 int max;
1883
1884 BUG_ON(ac->ac_2order <= 0);
1885 for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
1886 if (grp->bb_counters[i] == 0)
1887 continue;
1888
1889 buddy = mb_find_buddy(e4b, i, &max);
1890 BUG_ON(buddy == NULL);
1891
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001892 k = mb_find_next_zero_bit(buddy, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001893 BUG_ON(k >= max);
1894
1895 ac->ac_found++;
1896
1897 ac->ac_b_ex.fe_len = 1 << i;
1898 ac->ac_b_ex.fe_start = k << i;
1899 ac->ac_b_ex.fe_group = e4b->bd_group;
1900
1901 ext4_mb_use_best_found(ac, e4b);
1902
1903 BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
1904
1905 if (EXT4_SB(sb)->s_mb_stats)
1906 atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
1907
1908 break;
1909 }
1910}
1911
1912/*
1913 * The routine scans the group and measures all found extents.
1914 * In order to optimize scanning, caller must pass number of
1915 * free blocks in the group, so the routine can know upper limit.
1916 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001917static noinline_for_stack
1918void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001919 struct ext4_buddy *e4b)
1920{
1921 struct super_block *sb = ac->ac_sb;
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001922 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05001923 struct ext4_free_extent ex;
1924 int i;
1925 int free;
1926
1927 free = e4b->bd_info->bb_free;
1928 BUG_ON(free <= 0);
1929
1930 i = e4b->bd_info->bb_first_free;
1931
1932 while (free && ac->ac_status == AC_STATUS_CONTINUE) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001933 i = mb_find_next_zero_bit(bitmap,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001934 EXT4_CLUSTERS_PER_GROUP(sb), i);
1935 if (i >= EXT4_CLUSTERS_PER_GROUP(sb)) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001936 /*
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001937 * IF we have corrupt bitmap, we won't find any
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001938 * free blocks even though group info says we
1939 * we have free blocks
1940 */
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001941 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04001942 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001943 "group info. But bitmap says 0",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001944 free);
Alex Tomasc9de5602008-01-29 00:19:52 -05001945 break;
1946 }
1947
Robin Dong15c006a2012-08-17 10:02:17 -04001948 mb_find_extent(e4b, i, ac->ac_g_ex.fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001949 BUG_ON(ex.fe_len <= 0);
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001950 if (free < ex.fe_len) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001951 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04001952 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001953 "group info. But got %d blocks",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001954 free, ex.fe_len);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001955 /*
1956 * The number of free blocks differs. This mostly
1957 * indicate that the bitmap is corrupt. So exit
1958 * without claiming the space.
1959 */
1960 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001961 }
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05001962 ex.fe_logical = 0xDEADC0DE; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05001963 ext4_mb_measure_extent(ac, &ex, e4b);
1964
1965 i += ex.fe_len;
1966 free -= ex.fe_len;
1967 }
1968
1969 ext4_mb_check_limits(ac, e4b, 1);
1970}
1971
1972/*
1973 * This is a special case for storages like raid5
Eric Sandeen506bf2d2010-07-27 11:56:06 -04001974 * we try to find stripe-aligned chunks for stripe-size-multiple requests
Alex Tomasc9de5602008-01-29 00:19:52 -05001975 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001976static noinline_for_stack
1977void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001978 struct ext4_buddy *e4b)
1979{
1980 struct super_block *sb = ac->ac_sb;
1981 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001982 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05001983 struct ext4_free_extent ex;
1984 ext4_fsblk_t first_group_block;
1985 ext4_fsblk_t a;
1986 ext4_grpblk_t i;
1987 int max;
1988
1989 BUG_ON(sbi->s_stripe == 0);
1990
1991 /* find first stripe-aligned block in group */
Akinobu Mita5661bd62010-03-03 23:53:39 -05001992 first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
1993
Alex Tomasc9de5602008-01-29 00:19:52 -05001994 a = first_group_block + sbi->s_stripe - 1;
1995 do_div(a, sbi->s_stripe);
1996 i = (a * sbi->s_stripe) - first_group_block;
1997
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001998 while (i < EXT4_CLUSTERS_PER_GROUP(sb)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001999 if (!mb_test_bit(i, bitmap)) {
Robin Dong15c006a2012-08-17 10:02:17 -04002000 max = mb_find_extent(e4b, i, sbi->s_stripe, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002001 if (max >= sbi->s_stripe) {
2002 ac->ac_found++;
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05002003 ex.fe_logical = 0xDEADF00D; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05002004 ac->ac_b_ex = ex;
2005 ext4_mb_use_best_found(ac, e4b);
2006 break;
2007 }
2008 }
2009 i += sbi->s_stripe;
2010 }
2011}
2012
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002013/* This is now called BEFORE we load the buddy bitmap. */
Alex Tomasc9de5602008-01-29 00:19:52 -05002014static int ext4_mb_good_group(struct ext4_allocation_context *ac,
2015 ext4_group_t group, int cr)
2016{
2017 unsigned free, fragments;
Theodore Ts'oa4912122009-03-12 12:18:34 -04002018 int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05002019 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
2020
2021 BUG_ON(cr < 0 || cr >= 4);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002022
Theodore Ts'o01fc48e2012-08-17 09:46:17 -04002023 free = grp->bb_free;
2024 if (free == 0)
2025 return 0;
2026 if (cr <= 2 && free < ac->ac_g_ex.fe_len)
2027 return 0;
2028
Darrick J. Wong163a2032013-08-28 17:35:51 -04002029 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(grp)))
2030 return 0;
2031
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002032 /* We only do this if the grp has never been initialized */
2033 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
2034 int ret = ext4_mb_init_group(ac->ac_sb, group);
2035 if (ret)
2036 return 0;
2037 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002038
Alex Tomasc9de5602008-01-29 00:19:52 -05002039 fragments = grp->bb_fragments;
Alex Tomasc9de5602008-01-29 00:19:52 -05002040 if (fragments == 0)
2041 return 0;
2042
2043 switch (cr) {
2044 case 0:
2045 BUG_ON(ac->ac_2order == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05002046
Theodore Ts'oa4912122009-03-12 12:18:34 -04002047 /* Avoid using the first bg of a flexgroup for data files */
2048 if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
2049 (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
2050 ((group % flex_size) == 0))
2051 return 0;
2052
Theodore Ts'o40ae3482013-02-04 15:08:40 -05002053 if ((ac->ac_2order > ac->ac_sb->s_blocksize_bits+1) ||
2054 (free / fragments) >= ac->ac_g_ex.fe_len)
2055 return 1;
2056
2057 if (grp->bb_largest_free_order < ac->ac_2order)
2058 return 0;
2059
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002060 return 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002061 case 1:
2062 if ((free / fragments) >= ac->ac_g_ex.fe_len)
2063 return 1;
2064 break;
2065 case 2:
2066 if (free >= ac->ac_g_ex.fe_len)
2067 return 1;
2068 break;
2069 case 3:
2070 return 1;
2071 default:
2072 BUG();
2073 }
2074
2075 return 0;
2076}
2077
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002078static noinline_for_stack int
2079ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05002080{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002081 ext4_group_t ngroups, group, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002082 int cr;
2083 int err = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002084 struct ext4_sb_info *sbi;
2085 struct super_block *sb;
2086 struct ext4_buddy e4b;
Alex Tomasc9de5602008-01-29 00:19:52 -05002087
2088 sb = ac->ac_sb;
2089 sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -04002090 ngroups = ext4_get_groups_count(sb);
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002091 /* non-extent files are limited to low blocks/groups */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002092 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002093 ngroups = sbi->s_blockfile_groups;
2094
Alex Tomasc9de5602008-01-29 00:19:52 -05002095 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
2096
2097 /* first, try the goal */
2098 err = ext4_mb_find_by_goal(ac, &e4b);
2099 if (err || ac->ac_status == AC_STATUS_FOUND)
2100 goto out;
2101
2102 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2103 goto out;
2104
2105 /*
2106 * ac->ac2_order is set only if the fe_len is a power of 2
2107 * if ac2_order is set we also set criteria to 0 so that we
2108 * try exact allocation using buddy.
2109 */
2110 i = fls(ac->ac_g_ex.fe_len);
2111 ac->ac_2order = 0;
2112 /*
2113 * We search using buddy data only if the order of the request
2114 * is greater than equal to the sbi_s_mb_order2_reqs
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002115 * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
Jan Karaf59fbdd2017-10-07 22:37:59 +00002116 * We also support searching for power-of-two requests only for
2117 * requests upto maximum buddy size we have constructed.
Alex Tomasc9de5602008-01-29 00:19:52 -05002118 */
Jan Karaf59fbdd2017-10-07 22:37:59 +00002119 if (i >= sbi->s_mb_order2_reqs && i <= sb->s_blocksize_bits + 2) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002120 /*
2121 * This should tell if fe_len is exactly power of 2
2122 */
2123 if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
2124 ac->ac_2order = i - 1;
2125 }
2126
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002127 /* if stream allocation is enabled, use global goal */
2128 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002129 /* TBD: may be hot point */
2130 spin_lock(&sbi->s_md_lock);
2131 ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
2132 ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
2133 spin_unlock(&sbi->s_md_lock);
2134 }
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002135
Alex Tomasc9de5602008-01-29 00:19:52 -05002136 /* Let's just scan groups to find more-less suitable blocks */
2137 cr = ac->ac_2order ? 0 : 1;
2138 /*
2139 * cr == 0 try to get exact allocation,
2140 * cr == 3 try to get anything
2141 */
2142repeat:
2143 for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
2144 ac->ac_criteria = cr;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04002145 /*
2146 * searching for the right group start
2147 * from the goal value specified
2148 */
2149 group = ac->ac_g_ex.fe_group;
2150
Theodore Ts'o8df96752009-05-01 08:50:38 -04002151 for (i = 0; i < ngroups; group++, i++) {
Theodore Ts'o2ed57242013-06-12 11:43:02 -04002152 cond_resched();
Lachlan McIlroye6155732013-05-05 23:10:00 -04002153 /*
2154 * Artificially restricted ngroups for non-extent
2155 * files makes group > ngroups possible on first loop.
2156 */
2157 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -05002158 group = 0;
2159
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002160 /* This now checks without needing the buddy page */
2161 if (!ext4_mb_good_group(ac, group, cr))
Alex Tomasc9de5602008-01-29 00:19:52 -05002162 continue;
2163
Alex Tomasc9de5602008-01-29 00:19:52 -05002164 err = ext4_mb_load_buddy(sb, group, &e4b);
2165 if (err)
2166 goto out;
2167
2168 ext4_lock_group(sb, group);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002169
2170 /*
2171 * We need to check again after locking the
2172 * block group
2173 */
Alex Tomasc9de5602008-01-29 00:19:52 -05002174 if (!ext4_mb_good_group(ac, group, cr)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002175 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002176 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002177 continue;
2178 }
2179
2180 ac->ac_groups_scanned++;
Jan Karaf59fbdd2017-10-07 22:37:59 +00002181 if (cr == 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002182 ext4_mb_simple_scan_group(ac, &e4b);
Eric Sandeen506bf2d2010-07-27 11:56:06 -04002183 else if (cr == 1 && sbi->s_stripe &&
2184 !(ac->ac_g_ex.fe_len % sbi->s_stripe))
Alex Tomasc9de5602008-01-29 00:19:52 -05002185 ext4_mb_scan_aligned(ac, &e4b);
2186 else
2187 ext4_mb_complex_scan_group(ac, &e4b);
2188
2189 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002190 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002191
2192 if (ac->ac_status != AC_STATUS_CONTINUE)
2193 break;
2194 }
2195 }
2196
2197 if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
2198 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2199 /*
2200 * We've been searching too long. Let's try to allocate
2201 * the best chunk we've found so far
2202 */
2203
2204 ext4_mb_try_best_found(ac, &e4b);
2205 if (ac->ac_status != AC_STATUS_FOUND) {
2206 /*
2207 * Someone more lucky has already allocated it.
2208 * The only thing we can do is just take first
2209 * found block(s)
2210 printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n");
2211 */
2212 ac->ac_b_ex.fe_group = 0;
2213 ac->ac_b_ex.fe_start = 0;
2214 ac->ac_b_ex.fe_len = 0;
2215 ac->ac_status = AC_STATUS_CONTINUE;
2216 ac->ac_flags |= EXT4_MB_HINT_FIRST;
2217 cr = 3;
2218 atomic_inc(&sbi->s_mb_lost_chunks);
2219 goto repeat;
2220 }
2221 }
2222out:
2223 return err;
2224}
2225
Alex Tomasc9de5602008-01-29 00:19:52 -05002226static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2227{
2228 struct super_block *sb = seq->private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002229 ext4_group_t group;
2230
Theodore Ts'o8df96752009-05-01 08:50:38 -04002231 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002232 return NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002233 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002234 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002235}
2236
2237static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2238{
2239 struct super_block *sb = seq->private;
Alex Tomasc9de5602008-01-29 00:19:52 -05002240 ext4_group_t group;
2241
2242 ++*pos;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002243 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002244 return NULL;
2245 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002246 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002247}
2248
2249static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2250{
2251 struct super_block *sb = seq->private;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002252 ext4_group_t group = (ext4_group_t) ((unsigned long) v);
Alex Tomasc9de5602008-01-29 00:19:52 -05002253 int i;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002254 int err, buddy_loaded = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002255 struct ext4_buddy e4b;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002256 struct ext4_group_info *grinfo;
Alex Tomasc9de5602008-01-29 00:19:52 -05002257 struct sg {
2258 struct ext4_group_info info;
Chandan Rajendra9a01b9e2016-11-14 21:26:26 -05002259 ext4_grpblk_t counters[EXT4_MAX_BLOCK_LOG_SIZE + 2];
Alex Tomasc9de5602008-01-29 00:19:52 -05002260 } sg;
2261
2262 group--;
2263 if (group == 0)
2264 seq_printf(seq, "#%-5s: %-5s %-5s %-5s "
2265 "[ %-5s %-5s %-5s %-5s %-5s %-5s %-5s "
2266 "%-5s %-5s %-5s %-5s %-5s %-5s %-5s ]\n",
2267 "group", "free", "frags", "first",
2268 "2^0", "2^1", "2^2", "2^3", "2^4", "2^5", "2^6",
2269 "2^7", "2^8", "2^9", "2^10", "2^11", "2^12", "2^13");
2270
2271 i = (sb->s_blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2272 sizeof(struct ext4_group_info);
Aditya Kali1c8457c2012-06-30 19:10:57 -04002273 grinfo = ext4_get_group_info(sb, group);
2274 /* Load the group info in memory only if not already loaded. */
2275 if (unlikely(EXT4_MB_GRP_NEED_INIT(grinfo))) {
2276 err = ext4_mb_load_buddy(sb, group, &e4b);
2277 if (err) {
2278 seq_printf(seq, "#%-5u: I/O error\n", group);
2279 return 0;
2280 }
2281 buddy_loaded = 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002282 }
Aditya Kali1c8457c2012-06-30 19:10:57 -04002283
Alex Tomasc9de5602008-01-29 00:19:52 -05002284 memcpy(&sg, ext4_get_group_info(sb, group), i);
Aditya Kali1c8457c2012-06-30 19:10:57 -04002285
2286 if (buddy_loaded)
2287 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002288
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002289 seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
Alex Tomasc9de5602008-01-29 00:19:52 -05002290 sg.info.bb_fragments, sg.info.bb_first_free);
2291 for (i = 0; i <= 13; i++)
2292 seq_printf(seq, " %-5u", i <= sb->s_blocksize_bits + 1 ?
2293 sg.info.bb_counters[i] : 0);
2294 seq_printf(seq, " ]\n");
2295
2296 return 0;
2297}
2298
2299static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2300{
2301}
2302
Tobias Klauser7f1346a2009-09-05 09:28:54 -04002303static const struct seq_operations ext4_mb_seq_groups_ops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002304 .start = ext4_mb_seq_groups_start,
2305 .next = ext4_mb_seq_groups_next,
2306 .stop = ext4_mb_seq_groups_stop,
2307 .show = ext4_mb_seq_groups_show,
2308};
2309
2310static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)
2311{
Al Virod9dda782013-03-31 18:16:14 -04002312 struct super_block *sb = PDE_DATA(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05002313 int rc;
2314
2315 rc = seq_open(file, &ext4_mb_seq_groups_ops);
2316 if (rc == 0) {
Joe Perchesa271fe82010-07-27 11:56:04 -04002317 struct seq_file *m = file->private_data;
Alex Tomasc9de5602008-01-29 00:19:52 -05002318 m->private = sb;
2319 }
2320 return rc;
2321
2322}
2323
Tobias Klauser7f1346a2009-09-05 09:28:54 -04002324static const struct file_operations ext4_mb_seq_groups_fops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002325 .owner = THIS_MODULE,
2326 .open = ext4_mb_seq_groups_open,
2327 .read = seq_read,
2328 .llseek = seq_lseek,
2329 .release = seq_release,
2330};
2331
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002332static struct kmem_cache *get_groupinfo_cache(int blocksize_bits)
2333{
2334 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2335 struct kmem_cache *cachep = ext4_groupinfo_caches[cache_index];
2336
2337 BUG_ON(!cachep);
2338 return cachep;
2339}
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002340
Theodore Ts'o28623c22012-09-05 01:31:50 -04002341/*
2342 * Allocate the top-level s_group_info array for the specified number
2343 * of groups
2344 */
2345int ext4_mb_alloc_groupinfo(struct super_block *sb, ext4_group_t ngroups)
2346{
2347 struct ext4_sb_info *sbi = EXT4_SB(sb);
2348 unsigned size;
2349 struct ext4_group_info ***new_groupinfo;
2350
2351 size = (ngroups + EXT4_DESC_PER_BLOCK(sb) - 1) >>
2352 EXT4_DESC_PER_BLOCK_BITS(sb);
2353 if (size <= sbi->s_group_info_size)
2354 return 0;
2355
2356 size = roundup_pow_of_two(sizeof(*sbi->s_group_info) * size);
2357 new_groupinfo = ext4_kvzalloc(size, GFP_KERNEL);
2358 if (!new_groupinfo) {
2359 ext4_msg(sb, KERN_ERR, "can't allocate buddy meta group");
2360 return -ENOMEM;
2361 }
2362 if (sbi->s_group_info) {
2363 memcpy(new_groupinfo, sbi->s_group_info,
2364 sbi->s_group_info_size * sizeof(*sbi->s_group_info));
2365 ext4_kvfree(sbi->s_group_info);
2366 }
2367 sbi->s_group_info = new_groupinfo;
2368 sbi->s_group_info_size = size / sizeof(*sbi->s_group_info);
2369 ext4_debug("allocated s_groupinfo array for %d meta_bg's\n",
2370 sbi->s_group_info_size);
2371 return 0;
2372}
2373
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002374/* Create and initialize ext4_group_info data for the given group. */
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002375int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002376 struct ext4_group_desc *desc)
2377{
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002378 int i;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002379 int metalen = 0;
2380 struct ext4_sb_info *sbi = EXT4_SB(sb);
2381 struct ext4_group_info **meta_group_info;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002382 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002383
2384 /*
2385 * First check if this group is the first of a reserved block.
2386 * If it's true, we have to allocate a new table of pointers
2387 * to ext4_group_info structures
2388 */
2389 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
2390 metalen = sizeof(*meta_group_info) <<
2391 EXT4_DESC_PER_BLOCK_BITS(sb);
2392 meta_group_info = kmalloc(metalen, GFP_KERNEL);
2393 if (meta_group_info == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04002394 ext4_msg(sb, KERN_ERR, "can't allocate mem "
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002395 "for a buddy group");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002396 goto exit_meta_group_info;
2397 }
2398 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] =
2399 meta_group_info;
2400 }
2401
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002402 meta_group_info =
2403 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)];
2404 i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
2405
Wei Yongjun85556c92012-09-26 20:43:37 -04002406 meta_group_info[i] = kmem_cache_zalloc(cachep, GFP_KERNEL);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002407 if (meta_group_info[i] == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04002408 ext4_msg(sb, KERN_ERR, "can't allocate buddy mem");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002409 goto exit_group_info;
2410 }
2411 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
2412 &(meta_group_info[i]->bb_state));
2413
2414 /*
2415 * initialize bb_free to be able to skip
2416 * empty groups without initialization
2417 */
2418 if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2419 meta_group_info[i]->bb_free =
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04002420 ext4_free_clusters_after_init(sb, group, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002421 } else {
2422 meta_group_info[i]->bb_free =
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002423 ext4_free_group_clusters(sb, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002424 }
2425
2426 INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002427 init_rwsem(&meta_group_info[i]->alloc_sem);
Venkatesh Pallipadi64e290e2010-03-04 22:25:21 -05002428 meta_group_info[i]->bb_free_root = RB_ROOT;
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002429 meta_group_info[i]->bb_largest_free_order = -1; /* uninit */
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002430
2431#ifdef DOUBLE_CHECK
2432 {
2433 struct buffer_head *bh;
2434 meta_group_info[i]->bb_bitmap =
2435 kmalloc(sb->s_blocksize, GFP_KERNEL);
2436 BUG_ON(meta_group_info[i]->bb_bitmap == NULL);
2437 bh = ext4_read_block_bitmap(sb, group);
2438 BUG_ON(bh == NULL);
2439 memcpy(meta_group_info[i]->bb_bitmap, bh->b_data,
2440 sb->s_blocksize);
2441 put_bh(bh);
2442 }
2443#endif
2444
2445 return 0;
2446
2447exit_group_info:
2448 /* If a meta_group_info table has been allocated, release it now */
Tao Macaaf7a22011-07-11 18:42:42 -04002449 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002450 kfree(sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)]);
Tao Macaaf7a22011-07-11 18:42:42 -04002451 sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] = NULL;
2452 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002453exit_meta_group_info:
2454 return -ENOMEM;
2455} /* ext4_mb_add_groupinfo */
2456
Alex Tomasc9de5602008-01-29 00:19:52 -05002457static int ext4_mb_init_backend(struct super_block *sb)
2458{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002459 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002460 ext4_group_t i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002461 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002462 int err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002463 struct ext4_group_desc *desc;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002464 struct kmem_cache *cachep;
Alex Tomasc9de5602008-01-29 00:19:52 -05002465
Theodore Ts'o28623c22012-09-05 01:31:50 -04002466 err = ext4_mb_alloc_groupinfo(sb, ngroups);
2467 if (err)
2468 return err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002469
Alex Tomasc9de5602008-01-29 00:19:52 -05002470 sbi->s_buddy_cache = new_inode(sb);
2471 if (sbi->s_buddy_cache == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002472 ext4_msg(sb, KERN_ERR, "can't get new inode");
Alex Tomasc9de5602008-01-29 00:19:52 -05002473 goto err_freesgi;
2474 }
Yu Jian48e60612011-08-01 17:41:39 -04002475 /* To avoid potentially colliding with an valid on-disk inode number,
2476 * use EXT4_BAD_INO for the buddy cache inode number. This inode is
2477 * not in the inode hash, so it should never be found by iget(), but
2478 * this will avoid confusion if it ever shows up during debugging. */
2479 sbi->s_buddy_cache->i_ino = EXT4_BAD_INO;
Alex Tomasc9de5602008-01-29 00:19:52 -05002480 EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002481 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002482 desc = ext4_get_group_desc(sb, i, NULL);
2483 if (desc == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002484 ext4_msg(sb, KERN_ERR, "can't read descriptor %u", i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002485 goto err_freebuddy;
2486 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002487 if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
2488 goto err_freebuddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05002489 }
2490
2491 return 0;
2492
2493err_freebuddy:
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002494 cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Roel Kluinf1fa3342008-04-29 22:01:15 -04002495 while (i-- > 0)
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002496 kmem_cache_free(cachep, ext4_get_group_info(sb, i));
Theodore Ts'o28623c22012-09-05 01:31:50 -04002497 i = sbi->s_group_info_size;
Roel Kluinf1fa3342008-04-29 22:01:15 -04002498 while (i-- > 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002499 kfree(sbi->s_group_info[i]);
2500 iput(sbi->s_buddy_cache);
2501err_freesgi:
Theodore Ts'of18a5f22011-08-01 08:45:38 -04002502 ext4_kvfree(sbi->s_group_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05002503 return -ENOMEM;
2504}
2505
Eric Sandeen2892c152011-02-12 08:12:18 -05002506static void ext4_groupinfo_destroy_slabs(void)
2507{
2508 int i;
2509
2510 for (i = 0; i < NR_GRPINFO_CACHES; i++) {
2511 if (ext4_groupinfo_caches[i])
2512 kmem_cache_destroy(ext4_groupinfo_caches[i]);
2513 ext4_groupinfo_caches[i] = NULL;
2514 }
2515}
2516
2517static int ext4_groupinfo_create_slab(size_t size)
2518{
2519 static DEFINE_MUTEX(ext4_grpinfo_slab_create_mutex);
2520 int slab_size;
2521 int blocksize_bits = order_base_2(size);
2522 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2523 struct kmem_cache *cachep;
2524
2525 if (cache_index >= NR_GRPINFO_CACHES)
2526 return -EINVAL;
2527
2528 if (unlikely(cache_index < 0))
2529 cache_index = 0;
2530
2531 mutex_lock(&ext4_grpinfo_slab_create_mutex);
2532 if (ext4_groupinfo_caches[cache_index]) {
2533 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2534 return 0; /* Already created */
2535 }
2536
2537 slab_size = offsetof(struct ext4_group_info,
2538 bb_counters[blocksize_bits + 2]);
2539
2540 cachep = kmem_cache_create(ext4_groupinfo_slab_names[cache_index],
2541 slab_size, 0, SLAB_RECLAIM_ACCOUNT,
2542 NULL);
2543
Tao Ma823ba012011-07-11 18:26:01 -04002544 ext4_groupinfo_caches[cache_index] = cachep;
2545
Eric Sandeen2892c152011-02-12 08:12:18 -05002546 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2547 if (!cachep) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002548 printk(KERN_EMERG
2549 "EXT4-fs: no memory for groupinfo slab cache\n");
Eric Sandeen2892c152011-02-12 08:12:18 -05002550 return -ENOMEM;
2551 }
2552
Eric Sandeen2892c152011-02-12 08:12:18 -05002553 return 0;
2554}
2555
Akira Fujita9d990122012-05-28 14:19:25 -04002556int ext4_mb_init(struct super_block *sb)
Alex Tomasc9de5602008-01-29 00:19:52 -05002557{
2558 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002559 unsigned i, j;
Nicolai Stangeaee24402016-05-05 19:46:19 -04002560 unsigned offset, offset_incr;
Alex Tomasc9de5602008-01-29 00:19:52 -05002561 unsigned max;
Shen Feng74767c52008-07-11 19:27:31 -04002562 int ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002563
Eric Sandeen19278052009-08-25 22:36:25 -04002564 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_offsets);
Alex Tomasc9de5602008-01-29 00:19:52 -05002565
2566 sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
2567 if (sbi->s_mb_offsets == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002568 ret = -ENOMEM;
2569 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002570 }
Yasunori Gotoff7ef322008-12-17 00:48:39 -05002571
Eric Sandeen19278052009-08-25 22:36:25 -04002572 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_maxs);
Alex Tomasc9de5602008-01-29 00:19:52 -05002573 sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
2574 if (sbi->s_mb_maxs == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002575 ret = -ENOMEM;
2576 goto out;
2577 }
2578
Eric Sandeen2892c152011-02-12 08:12:18 -05002579 ret = ext4_groupinfo_create_slab(sb->s_blocksize);
2580 if (ret < 0)
2581 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002582
2583 /* order 0 is regular bitmap */
2584 sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
2585 sbi->s_mb_offsets[0] = 0;
2586
2587 i = 1;
2588 offset = 0;
Nicolai Stangeaee24402016-05-05 19:46:19 -04002589 offset_incr = 1 << (sb->s_blocksize_bits - 1);
Alex Tomasc9de5602008-01-29 00:19:52 -05002590 max = sb->s_blocksize << 2;
2591 do {
2592 sbi->s_mb_offsets[i] = offset;
2593 sbi->s_mb_maxs[i] = max;
Nicolai Stangeaee24402016-05-05 19:46:19 -04002594 offset += offset_incr;
2595 offset_incr = offset_incr >> 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002596 max = max >> 1;
2597 i++;
2598 } while (i <= sb->s_blocksize_bits + 1);
2599
Alex Tomasc9de5602008-01-29 00:19:52 -05002600 spin_lock_init(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05002601 spin_lock_init(&sbi->s_bal_lock);
2602
2603 sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
2604 sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
2605 sbi->s_mb_stats = MB_DEFAULT_STATS;
2606 sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
2607 sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
Theodore Ts'o27baebb2011-09-09 19:02:51 -04002608 /*
2609 * The default group preallocation is 512, which for 4k block
2610 * sizes translates to 2 megabytes. However for bigalloc file
2611 * systems, this is probably too big (i.e, if the cluster size
2612 * is 1 megabyte, then group preallocation size becomes half a
2613 * gigabyte!). As a default, we will keep a two megabyte
2614 * group pralloc size for cluster sizes up to 64k, and after
2615 * that, we will force a minimum group preallocation size of
2616 * 32 clusters. This translates to 8 megs when the cluster
2617 * size is 256k, and 32 megs when the cluster size is 1 meg,
2618 * which seems reasonable as a default.
2619 */
2620 sbi->s_mb_group_prealloc = max(MB_DEFAULT_GROUP_PREALLOC >>
2621 sbi->s_cluster_bits, 32);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04002622 /*
2623 * If there is a s_stripe > 1, then we set the s_mb_group_prealloc
2624 * to the lowest multiple of s_stripe which is bigger than
2625 * the s_mb_group_prealloc as determined above. We want
2626 * the preallocation size to be an exact multiple of the
2627 * RAID stripe size so that preallocations don't fragment
2628 * the stripes.
2629 */
2630 if (sbi->s_stripe > 1) {
2631 sbi->s_mb_group_prealloc = roundup(
2632 sbi->s_mb_group_prealloc, sbi->s_stripe);
2633 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002634
Eric Sandeen730c2132008-09-13 15:23:29 -04002635 sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002636 if (sbi->s_locality_groups == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002637 ret = -ENOMEM;
Andrey Tsyvarev029b10c2014-05-12 12:34:21 -04002638 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002639 }
Eric Sandeen730c2132008-09-13 15:23:29 -04002640 for_each_possible_cpu(i) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002641 struct ext4_locality_group *lg;
Eric Sandeen730c2132008-09-13 15:23:29 -04002642 lg = per_cpu_ptr(sbi->s_locality_groups, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002643 mutex_init(&lg->lg_mutex);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002644 for (j = 0; j < PREALLOC_TB_SIZE; j++)
2645 INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
Alex Tomasc9de5602008-01-29 00:19:52 -05002646 spin_lock_init(&lg->lg_prealloc_lock);
2647 }
2648
Yu Jian79a77c52011-08-01 17:41:46 -04002649 /* init file for buddy data */
2650 ret = ext4_mb_init_backend(sb);
Tao Ma7aa0bae2011-10-06 10:22:28 -04002651 if (ret != 0)
2652 goto out_free_locality_groups;
Yu Jian79a77c52011-08-01 17:41:46 -04002653
Theodore Ts'o296c3552009-09-30 00:32:42 -04002654 if (sbi->s_proc)
2655 proc_create_data("mb_groups", S_IRUGO, sbi->s_proc,
2656 &ext4_mb_seq_groups_fops, sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002657
Tao Ma7aa0bae2011-10-06 10:22:28 -04002658 return 0;
2659
2660out_free_locality_groups:
2661 free_percpu(sbi->s_locality_groups);
2662 sbi->s_locality_groups = NULL;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002663out:
Tao Ma7aa0bae2011-10-06 10:22:28 -04002664 kfree(sbi->s_mb_offsets);
2665 sbi->s_mb_offsets = NULL;
2666 kfree(sbi->s_mb_maxs);
2667 sbi->s_mb_maxs = NULL;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002668 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002669}
2670
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002671/* need to called with the ext4 group lock held */
Alex Tomasc9de5602008-01-29 00:19:52 -05002672static void ext4_mb_cleanup_pa(struct ext4_group_info *grp)
2673{
2674 struct ext4_prealloc_space *pa;
2675 struct list_head *cur, *tmp;
2676 int count = 0;
2677
2678 list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
2679 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
2680 list_del(&pa->pa_group_list);
2681 count++;
Aneesh Kumar K.V688f05a2008-10-13 12:14:14 -04002682 kmem_cache_free(ext4_pspace_cachep, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05002683 }
2684 if (count)
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002685 mb_debug(1, "mballoc: %u PAs left\n", count);
Alex Tomasc9de5602008-01-29 00:19:52 -05002686
2687}
2688
2689int ext4_mb_release(struct super_block *sb)
2690{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002691 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002692 ext4_group_t i;
2693 int num_meta_group_infos;
2694 struct ext4_group_info *grinfo;
2695 struct ext4_sb_info *sbi = EXT4_SB(sb);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002696 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Alex Tomasc9de5602008-01-29 00:19:52 -05002697
Salman Qazi95599962012-05-31 23:52:14 -04002698 if (sbi->s_proc)
2699 remove_proc_entry("mb_groups", sbi->s_proc);
2700
Alex Tomasc9de5602008-01-29 00:19:52 -05002701 if (sbi->s_group_info) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04002702 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002703 grinfo = ext4_get_group_info(sb, i);
2704#ifdef DOUBLE_CHECK
2705 kfree(grinfo->bb_bitmap);
2706#endif
2707 ext4_lock_group(sb, i);
2708 ext4_mb_cleanup_pa(grinfo);
2709 ext4_unlock_group(sb, i);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002710 kmem_cache_free(cachep, grinfo);
Alex Tomasc9de5602008-01-29 00:19:52 -05002711 }
Theodore Ts'o8df96752009-05-01 08:50:38 -04002712 num_meta_group_infos = (ngroups +
Alex Tomasc9de5602008-01-29 00:19:52 -05002713 EXT4_DESC_PER_BLOCK(sb) - 1) >>
2714 EXT4_DESC_PER_BLOCK_BITS(sb);
2715 for (i = 0; i < num_meta_group_infos; i++)
2716 kfree(sbi->s_group_info[i]);
Theodore Ts'of18a5f22011-08-01 08:45:38 -04002717 ext4_kvfree(sbi->s_group_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05002718 }
2719 kfree(sbi->s_mb_offsets);
2720 kfree(sbi->s_mb_maxs);
2721 if (sbi->s_buddy_cache)
2722 iput(sbi->s_buddy_cache);
2723 if (sbi->s_mb_stats) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002724 ext4_msg(sb, KERN_INFO,
2725 "mballoc: %u blocks %u reqs (%u success)",
Alex Tomasc9de5602008-01-29 00:19:52 -05002726 atomic_read(&sbi->s_bal_allocated),
2727 atomic_read(&sbi->s_bal_reqs),
2728 atomic_read(&sbi->s_bal_success));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002729 ext4_msg(sb, KERN_INFO,
2730 "mballoc: %u extents scanned, %u goal hits, "
2731 "%u 2^N hits, %u breaks, %u lost",
Alex Tomasc9de5602008-01-29 00:19:52 -05002732 atomic_read(&sbi->s_bal_ex_scanned),
2733 atomic_read(&sbi->s_bal_goals),
2734 atomic_read(&sbi->s_bal_2orders),
2735 atomic_read(&sbi->s_bal_breaks),
2736 atomic_read(&sbi->s_mb_lost_chunks));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002737 ext4_msg(sb, KERN_INFO,
2738 "mballoc: %lu generated and it took %Lu",
Tao Maced156e2011-07-23 16:18:05 -04002739 sbi->s_mb_buddies_generated,
Alex Tomasc9de5602008-01-29 00:19:52 -05002740 sbi->s_mb_generation_time);
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002741 ext4_msg(sb, KERN_INFO,
2742 "mballoc: %u preallocated, %u discarded",
Alex Tomasc9de5602008-01-29 00:19:52 -05002743 atomic_read(&sbi->s_mb_preallocated),
2744 atomic_read(&sbi->s_mb_discarded));
2745 }
2746
Eric Sandeen730c2132008-09-13 15:23:29 -04002747 free_percpu(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05002748
2749 return 0;
2750}
2751
Lukas Czerner77ca6cd2010-10-27 21:30:11 -04002752static inline int ext4_issue_discard(struct super_block *sb,
Theodore Ts'o84130192011-09-09 18:50:51 -04002753 ext4_group_t block_group, ext4_grpblk_t cluster, int count)
Jiaying Zhang5c521832010-07-27 11:56:05 -04002754{
Jiaying Zhang5c521832010-07-27 11:56:05 -04002755 ext4_fsblk_t discard_block;
2756
Theodore Ts'o84130192011-09-09 18:50:51 -04002757 discard_block = (EXT4_C2B(EXT4_SB(sb), cluster) +
2758 ext4_group_first_block_no(sb, block_group));
2759 count = EXT4_C2B(EXT4_SB(sb), count);
Jiaying Zhang5c521832010-07-27 11:56:05 -04002760 trace_ext4_discard_blocks(sb,
2761 (unsigned long long) discard_block, count);
Lukas Czerner93259632011-01-10 12:09:59 -05002762 return sb_issue_discard(sb, discard_block, count, GFP_NOFS, 0);
Jiaying Zhang5c521832010-07-27 11:56:05 -04002763}
2764
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002765/*
2766 * This function is called by the jbd2 layer once the commit has finished,
2767 * so we know we can free the blocks that were released with that commit.
2768 */
Bobi Jam18aadd42012-02-20 17:53:02 -05002769static void ext4_free_data_callback(struct super_block *sb,
2770 struct ext4_journal_cb_entry *jce,
2771 int rc)
Alex Tomasc9de5602008-01-29 00:19:52 -05002772{
Bobi Jam18aadd42012-02-20 17:53:02 -05002773 struct ext4_free_data *entry = (struct ext4_free_data *)jce;
Alex Tomasc9de5602008-01-29 00:19:52 -05002774 struct ext4_buddy e4b;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002775 struct ext4_group_info *db;
Theodore Ts'od9f34502011-04-30 13:47:24 -04002776 int err, count = 0, count2 = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002777
Bobi Jam18aadd42012-02-20 17:53:02 -05002778 mb_debug(1, "gonna free %u blocks in group %u (0x%p):",
2779 entry->efd_count, entry->efd_group, entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05002780
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05002781 if (test_opt(sb, DISCARD)) {
2782 err = ext4_issue_discard(sb, entry->efd_group,
2783 entry->efd_start_cluster,
2784 entry->efd_count);
2785 if (err && err != -EOPNOTSUPP)
2786 ext4_msg(sb, KERN_WARNING, "discard request in"
2787 " group:%d block:%d count:%d failed"
2788 " with %d", entry->efd_group,
2789 entry->efd_start_cluster,
2790 entry->efd_count, err);
2791 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002792
Bobi Jam18aadd42012-02-20 17:53:02 -05002793 err = ext4_mb_load_buddy(sb, entry->efd_group, &e4b);
2794 /* we expect to find existing buddy because it's pinned */
2795 BUG_ON(err != 0);
Theodore Ts'ob90f6872010-04-20 16:51:59 -04002796
Alex Tomasc9de5602008-01-29 00:19:52 -05002797
Bobi Jam18aadd42012-02-20 17:53:02 -05002798 db = e4b.bd_info;
2799 /* there are blocks to put in buddy to make them really free */
2800 count += entry->efd_count;
2801 count2++;
2802 ext4_lock_group(sb, entry->efd_group);
2803 /* Take it out of per group rb tree */
2804 rb_erase(&entry->efd_node, &(db->bb_free_root));
2805 mb_free_blocks(NULL, &e4b, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002806
Bobi Jam18aadd42012-02-20 17:53:02 -05002807 /*
2808 * Clear the trimmed flag for the group so that the next
2809 * ext4_trim_fs can trim it.
2810 * If the volume is mounted with -o discard, online discard
2811 * is supported and the free blocks will be trimmed online.
2812 */
2813 if (!test_opt(sb, DISCARD))
2814 EXT4_MB_GRP_CLEAR_TRIMMED(db);
2815
2816 if (!db->bb_free_root.rb_node) {
2817 /* No more items in the per group rb tree
2818 * balance refcounts from ext4_mb_free_metadata()
Tao Ma3d56b8d2011-07-11 00:03:38 -04002819 */
Bobi Jam18aadd42012-02-20 17:53:02 -05002820 page_cache_release(e4b.bd_buddy_page);
2821 page_cache_release(e4b.bd_bitmap_page);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002822 }
Bobi Jam18aadd42012-02-20 17:53:02 -05002823 ext4_unlock_group(sb, entry->efd_group);
2824 kmem_cache_free(ext4_free_data_cachep, entry);
2825 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002826
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002827 mb_debug(1, "freed %u blocks in %u structures\n", count, count2);
Alex Tomasc9de5602008-01-29 00:19:52 -05002828}
2829
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04002830int __init ext4_init_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05002831{
Theodore Ts'o16828082010-10-27 21:30:09 -04002832 ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space,
2833 SLAB_RECLAIM_ACCOUNT);
Alex Tomasc9de5602008-01-29 00:19:52 -05002834 if (ext4_pspace_cachep == NULL)
2835 return -ENOMEM;
2836
Theodore Ts'o16828082010-10-27 21:30:09 -04002837 ext4_ac_cachep = KMEM_CACHE(ext4_allocation_context,
2838 SLAB_RECLAIM_ACCOUNT);
Eric Sandeen256bdb42008-02-10 01:13:33 -05002839 if (ext4_ac_cachep == NULL) {
2840 kmem_cache_destroy(ext4_pspace_cachep);
2841 return -ENOMEM;
2842 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002843
Bobi Jam18aadd42012-02-20 17:53:02 -05002844 ext4_free_data_cachep = KMEM_CACHE(ext4_free_data,
2845 SLAB_RECLAIM_ACCOUNT);
2846 if (ext4_free_data_cachep == NULL) {
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002847 kmem_cache_destroy(ext4_pspace_cachep);
2848 kmem_cache_destroy(ext4_ac_cachep);
2849 return -ENOMEM;
2850 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002851 return 0;
2852}
2853
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04002854void ext4_exit_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05002855{
Theodore Ts'o60e66792010-05-17 07:00:00 -04002856 /*
Jesper Dangaard Brouer3e03f9c2009-07-05 22:29:27 -04002857 * Wait for completion of call_rcu()'s on ext4_pspace_cachep
2858 * before destroying the slab cache.
2859 */
2860 rcu_barrier();
Alex Tomasc9de5602008-01-29 00:19:52 -05002861 kmem_cache_destroy(ext4_pspace_cachep);
Eric Sandeen256bdb42008-02-10 01:13:33 -05002862 kmem_cache_destroy(ext4_ac_cachep);
Bobi Jam18aadd42012-02-20 17:53:02 -05002863 kmem_cache_destroy(ext4_free_data_cachep);
Eric Sandeen2892c152011-02-12 08:12:18 -05002864 ext4_groupinfo_destroy_slabs();
Alex Tomasc9de5602008-01-29 00:19:52 -05002865}
2866
2867
2868/*
Uwe Kleine-König73b2c712010-07-30 21:02:47 +02002869 * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
Alex Tomasc9de5602008-01-29 00:19:52 -05002870 * Returns 0 if success or error code
2871 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002872static noinline_for_stack int
2873ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002874 handle_t *handle, unsigned int reserv_clstrs)
Alex Tomasc9de5602008-01-29 00:19:52 -05002875{
2876 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002877 struct ext4_group_desc *gdp;
2878 struct buffer_head *gdp_bh;
2879 struct ext4_sb_info *sbi;
2880 struct super_block *sb;
2881 ext4_fsblk_t block;
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04002882 int err, len;
Alex Tomasc9de5602008-01-29 00:19:52 -05002883
2884 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
2885 BUG_ON(ac->ac_b_ex.fe_len <= 0);
2886
2887 sb = ac->ac_sb;
2888 sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002889
2890 err = -EIO;
Theodore Ts'o574ca172008-07-11 19:27:31 -04002891 bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002892 if (!bitmap_bh)
2893 goto out_err;
2894
liang xie5d601252014-05-12 22:06:43 -04002895 BUFFER_TRACE(bitmap_bh, "getting write access");
Alex Tomasc9de5602008-01-29 00:19:52 -05002896 err = ext4_journal_get_write_access(handle, bitmap_bh);
2897 if (err)
2898 goto out_err;
2899
2900 err = -EIO;
2901 gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
2902 if (!gdp)
2903 goto out_err;
2904
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002905 ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002906 ext4_free_group_clusters(sb, gdp));
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04002907
liang xie5d601252014-05-12 22:06:43 -04002908 BUFFER_TRACE(gdp_bh, "get_write_access");
Alex Tomasc9de5602008-01-29 00:19:52 -05002909 err = ext4_journal_get_write_access(handle, gdp_bh);
2910 if (err)
2911 goto out_err;
2912
Akinobu Mitabda00de2010-03-03 23:53:25 -05002913 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002914
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002915 len = EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002916 if (!ext4_data_block_valid(sbi, block, len)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05002917 ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
Theodore Ts'o1084f252012-03-19 23:13:43 -04002918 "fs metadata", block, block+len);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04002919 /* File system mounted not to panic on error
2920 * Fix the bitmap and repeat the block allocation
2921 * We leak some of the blocks here.
2922 */
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002923 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04002924 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
2925 ac->ac_b_ex.fe_len);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002926 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Frank Mayhar03901312009-01-07 00:06:22 -05002927 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04002928 if (!err)
2929 err = -EAGAIN;
2930 goto out_err;
Alex Tomasc9de5602008-01-29 00:19:52 -05002931 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002932
2933 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002934#ifdef AGGRESSIVE_CHECK
2935 {
2936 int i;
2937 for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
2938 BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
2939 bitmap_bh->b_data));
2940 }
2941 }
2942#endif
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04002943 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
2944 ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05002945 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2946 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002947 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04002948 ext4_free_clusters_after_init(sb,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002949 ac->ac_b_ex.fe_group, gdp));
Alex Tomasc9de5602008-01-29 00:19:52 -05002950 }
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002951 len = ext4_free_group_clusters(sb, gdp) - ac->ac_b_ex.fe_len;
2952 ext4_free_group_clusters_set(sb, gdp, len);
Tao Ma79f1ba42012-10-22 00:34:32 -04002953 ext4_block_bitmap_csum_set(sb, ac->ac_b_ex.fe_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04002954 ext4_group_desc_csum_set(sb, ac->ac_b_ex.fe_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002955
2956 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04002957 percpu_counter_sub(&sbi->s_freeclusters_counter, ac->ac_b_ex.fe_len);
Mingming Caod2a17632008-07-14 17:52:37 -04002958 /*
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002959 * Now reduce the dirty block count also. Should not go negative
Mingming Caod2a17632008-07-14 17:52:37 -04002960 */
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002961 if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
2962 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04002963 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
2964 reserv_clstrs);
Alex Tomasc9de5602008-01-29 00:19:52 -05002965
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002966 if (sbi->s_log_groups_per_flex) {
2967 ext4_group_t flex_group = ext4_flex_group(sbi,
2968 ac->ac_b_ex.fe_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04002969 atomic64_sub(ac->ac_b_ex.fe_len,
2970 &sbi->s_flex_groups[flex_group].free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002971 }
2972
Frank Mayhar03901312009-01-07 00:06:22 -05002973 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002974 if (err)
2975 goto out_err;
Frank Mayhar03901312009-01-07 00:06:22 -05002976 err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002977
2978out_err:
Aneesh Kumar K.V42a10ad2008-02-10 01:07:28 -05002979 brelse(bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05002980 return err;
2981}
2982
2983/*
2984 * here we normalize request for locality group
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04002985 * Group request are normalized to s_mb_group_prealloc, which goes to
2986 * s_strip if we set the same via mount option.
2987 * s_mb_group_prealloc can be configured via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002988 * /sys/fs/ext4/<partition>/mb_group_prealloc
Alex Tomasc9de5602008-01-29 00:19:52 -05002989 *
2990 * XXX: should we try to preallocate more than the group has now?
2991 */
2992static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
2993{
2994 struct super_block *sb = ac->ac_sb;
2995 struct ext4_locality_group *lg = ac->ac_lg;
2996
2997 BUG_ON(lg == NULL);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04002998 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002999 mb_debug(1, "#%u: goal %u blocks for locality group\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05003000 current->pid, ac->ac_g_ex.fe_len);
3001}
3002
3003/*
3004 * Normalization means making request better in terms of
3005 * size and alignment
3006 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003007static noinline_for_stack void
3008ext4_mb_normalize_request(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05003009 struct ext4_allocation_request *ar)
3010{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003011 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003012 int bsbits, max;
3013 ext4_lblk_t end;
Curt Wohlgemuth1592d2c2012-02-20 17:53:03 -05003014 loff_t size, start_off;
3015 loff_t orig_size __maybe_unused;
Andi Kleen5a0790c2010-06-14 13:28:03 -04003016 ext4_lblk_t start;
Alex Tomasc9de5602008-01-29 00:19:52 -05003017 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003018 struct ext4_prealloc_space *pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05003019
3020 /* do normalize only data requests, metadata requests
3021 do not need preallocation */
3022 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3023 return;
3024
3025 /* sometime caller may want exact blocks */
3026 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
3027 return;
3028
3029 /* caller may indicate that preallocation isn't
3030 * required (it's a tail, for example) */
3031 if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
3032 return;
3033
3034 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
3035 ext4_mb_normalize_group_request(ac);
3036 return ;
3037 }
3038
3039 bsbits = ac->ac_sb->s_blocksize_bits;
3040
3041 /* first, let's learn actual file size
3042 * given current request is allocated */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003043 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003044 size = size << bsbits;
3045 if (size < i_size_read(ac->ac_inode))
3046 size = i_size_read(ac->ac_inode);
Andi Kleen5a0790c2010-06-14 13:28:03 -04003047 orig_size = size;
Alex Tomasc9de5602008-01-29 00:19:52 -05003048
Valerie Clement19304792008-05-13 19:31:14 -04003049 /* max size of free chunks */
3050 max = 2 << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003051
Valerie Clement19304792008-05-13 19:31:14 -04003052#define NRL_CHECK_SIZE(req, size, max, chunk_size) \
3053 (req <= (size) || max <= (chunk_size))
Alex Tomasc9de5602008-01-29 00:19:52 -05003054
3055 /* first, try to predict filesize */
3056 /* XXX: should this table be tunable? */
3057 start_off = 0;
3058 if (size <= 16 * 1024) {
3059 size = 16 * 1024;
3060 } else if (size <= 32 * 1024) {
3061 size = 32 * 1024;
3062 } else if (size <= 64 * 1024) {
3063 size = 64 * 1024;
3064 } else if (size <= 128 * 1024) {
3065 size = 128 * 1024;
3066 } else if (size <= 256 * 1024) {
3067 size = 256 * 1024;
3068 } else if (size <= 512 * 1024) {
3069 size = 512 * 1024;
3070 } else if (size <= 1024 * 1024) {
3071 size = 1024 * 1024;
Valerie Clement19304792008-05-13 19:31:14 -04003072 } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003073 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
Valerie Clement19304792008-05-13 19:31:14 -04003074 (21 - bsbits)) << 21;
3075 size = 2 * 1024 * 1024;
3076 } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003077 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3078 (22 - bsbits)) << 22;
3079 size = 4 * 1024 * 1024;
3080 } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
Valerie Clement19304792008-05-13 19:31:14 -04003081 (8<<20)>>bsbits, max, 8 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003082 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3083 (23 - bsbits)) << 23;
3084 size = 8 * 1024 * 1024;
3085 } else {
Xiaoguang Wangb27b1532014-07-27 22:26:36 -04003086 start_off = (loff_t) ac->ac_o_ex.fe_logical << bsbits;
3087 size = (loff_t) EXT4_C2B(EXT4_SB(ac->ac_sb),
3088 ac->ac_o_ex.fe_len) << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003089 }
Andi Kleen5a0790c2010-06-14 13:28:03 -04003090 size = size >> bsbits;
3091 start = start_off >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003092
3093 /* don't cover already allocated blocks in selected range */
3094 if (ar->pleft && start <= ar->lleft) {
3095 size -= ar->lleft + 1 - start;
3096 start = ar->lleft + 1;
3097 }
3098 if (ar->pright && start + size - 1 >= ar->lright)
3099 size -= start + size - ar->lright;
3100
3101 end = start + size;
3102
3103 /* check we don't cross already preallocated blocks */
3104 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003105 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003106 ext4_lblk_t pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05003107
Alex Tomasc9de5602008-01-29 00:19:52 -05003108 if (pa->pa_deleted)
3109 continue;
3110 spin_lock(&pa->pa_lock);
3111 if (pa->pa_deleted) {
3112 spin_unlock(&pa->pa_lock);
3113 continue;
3114 }
3115
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003116 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3117 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003118
3119 /* PA must not overlap original request */
3120 BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
3121 ac->ac_o_ex.fe_logical < pa->pa_lstart));
3122
Eric Sandeen38877f42009-08-17 23:55:24 -04003123 /* skip PAs this normalized request doesn't overlap with */
3124 if (pa->pa_lstart >= end || pa_end <= start) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003125 spin_unlock(&pa->pa_lock);
3126 continue;
3127 }
3128 BUG_ON(pa->pa_lstart <= start && pa_end >= end);
3129
Eric Sandeen38877f42009-08-17 23:55:24 -04003130 /* adjust start or end to be adjacent to this pa */
Alex Tomasc9de5602008-01-29 00:19:52 -05003131 if (pa_end <= ac->ac_o_ex.fe_logical) {
3132 BUG_ON(pa_end < start);
3133 start = pa_end;
Eric Sandeen38877f42009-08-17 23:55:24 -04003134 } else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003135 BUG_ON(pa->pa_lstart > end);
3136 end = pa->pa_lstart;
3137 }
3138 spin_unlock(&pa->pa_lock);
3139 }
3140 rcu_read_unlock();
3141 size = end - start;
3142
3143 /* XXX: extra loop to check we really don't overlap preallocations */
3144 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003145 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003146 ext4_lblk_t pa_end;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003147
Alex Tomasc9de5602008-01-29 00:19:52 -05003148 spin_lock(&pa->pa_lock);
3149 if (pa->pa_deleted == 0) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003150 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3151 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003152 BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
3153 }
3154 spin_unlock(&pa->pa_lock);
3155 }
3156 rcu_read_unlock();
3157
3158 if (start + size <= ac->ac_o_ex.fe_logical &&
3159 start > ac->ac_o_ex.fe_logical) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003160 ext4_msg(ac->ac_sb, KERN_ERR,
3161 "start %lu, size %lu, fe_logical %lu",
3162 (unsigned long) start, (unsigned long) size,
3163 (unsigned long) ac->ac_o_ex.fe_logical);
Dmitry Monakhovdfe076c2014-10-01 22:26:17 -04003164 BUG();
Alex Tomasc9de5602008-01-29 00:19:52 -05003165 }
Maurizio Lombardib5b60772014-05-27 12:48:56 -04003166 BUG_ON(size <= 0 || size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05003167
3168 /* now prepare goal request */
3169
3170 /* XXX: is it better to align blocks WRT to logical
3171 * placement or satisfy big request as is */
3172 ac->ac_g_ex.fe_logical = start;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003173 ac->ac_g_ex.fe_len = EXT4_NUM_B2C(sbi, size);
Alex Tomasc9de5602008-01-29 00:19:52 -05003174
3175 /* define goal start in order to merge */
3176 if (ar->pright && (ar->lright == (start + size))) {
3177 /* merge to the right */
3178 ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
3179 &ac->ac_f_ex.fe_group,
3180 &ac->ac_f_ex.fe_start);
3181 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3182 }
3183 if (ar->pleft && (ar->lleft + 1 == start)) {
3184 /* merge to the left */
3185 ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
3186 &ac->ac_f_ex.fe_group,
3187 &ac->ac_f_ex.fe_start);
3188 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3189 }
3190
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003191 mb_debug(1, "goal: %u(was %u) blocks at %u\n", (unsigned) size,
Alex Tomasc9de5602008-01-29 00:19:52 -05003192 (unsigned) orig_size, (unsigned) start);
3193}
3194
3195static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
3196{
3197 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3198
3199 if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
3200 atomic_inc(&sbi->s_bal_reqs);
3201 atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
Curt Wohlgemuth291dae42010-05-16 16:00:00 -04003202 if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
Alex Tomasc9de5602008-01-29 00:19:52 -05003203 atomic_inc(&sbi->s_bal_success);
3204 atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
3205 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
3206 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
3207 atomic_inc(&sbi->s_bal_goals);
3208 if (ac->ac_found > sbi->s_mb_max_to_scan)
3209 atomic_inc(&sbi->s_bal_breaks);
3210 }
3211
Theodore Ts'o296c3552009-09-30 00:32:42 -04003212 if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
3213 trace_ext4_mballoc_alloc(ac);
3214 else
3215 trace_ext4_mballoc_prealloc(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003216}
3217
3218/*
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003219 * Called on failure; free up any blocks from the inode PA for this
3220 * context. We don't need this for MB_GROUP_PA because we only change
3221 * pa_free in ext4_mb_release_context(), but on failure, we've already
3222 * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
3223 */
3224static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
3225{
3226 struct ext4_prealloc_space *pa = ac->ac_pa;
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003227 struct ext4_buddy e4b;
3228 int err;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003229
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003230 if (pa == NULL) {
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04003231 if (ac->ac_f_ex.fe_len == 0)
3232 return;
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003233 err = ext4_mb_load_buddy(ac->ac_sb, ac->ac_f_ex.fe_group, &e4b);
3234 if (err) {
3235 /*
3236 * This should never happen since we pin the
3237 * pages in the ext4_allocation_context so
3238 * ext4_mb_load_buddy() should never fail.
3239 */
3240 WARN(1, "mb_load_buddy failed (%d)", err);
3241 return;
3242 }
3243 ext4_lock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
3244 mb_free_blocks(ac->ac_inode, &e4b, ac->ac_f_ex.fe_start,
3245 ac->ac_f_ex.fe_len);
3246 ext4_unlock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04003247 ext4_mb_unload_buddy(&e4b);
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003248 return;
3249 }
3250 if (pa->pa_type == MB_INODE_PA)
Zheng Liu400db9d2012-05-28 17:53:53 -04003251 pa->pa_free += ac->ac_b_ex.fe_len;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003252}
3253
3254/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003255 * use blocks preallocated to inode
3256 */
3257static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
3258 struct ext4_prealloc_space *pa)
3259{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003260 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003261 ext4_fsblk_t start;
3262 ext4_fsblk_t end;
3263 int len;
3264
3265 /* found preallocated blocks, use them */
3266 start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003267 end = min(pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len),
3268 start + EXT4_C2B(sbi, ac->ac_o_ex.fe_len));
3269 len = EXT4_NUM_B2C(sbi, end - start);
Alex Tomasc9de5602008-01-29 00:19:52 -05003270 ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
3271 &ac->ac_b_ex.fe_start);
3272 ac->ac_b_ex.fe_len = len;
3273 ac->ac_status = AC_STATUS_FOUND;
3274 ac->ac_pa = pa;
3275
3276 BUG_ON(start < pa->pa_pstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003277 BUG_ON(end > pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len));
Alex Tomasc9de5602008-01-29 00:19:52 -05003278 BUG_ON(pa->pa_free < len);
3279 pa->pa_free -= len;
3280
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003281 mb_debug(1, "use %llu/%u from inode pa %p\n", start, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003282}
3283
3284/*
3285 * use blocks preallocated to locality group
3286 */
3287static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
3288 struct ext4_prealloc_space *pa)
3289{
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04003290 unsigned int len = ac->ac_o_ex.fe_len;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003291
Alex Tomasc9de5602008-01-29 00:19:52 -05003292 ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
3293 &ac->ac_b_ex.fe_group,
3294 &ac->ac_b_ex.fe_start);
3295 ac->ac_b_ex.fe_len = len;
3296 ac->ac_status = AC_STATUS_FOUND;
3297 ac->ac_pa = pa;
3298
3299 /* we don't correct pa_pstart or pa_plen here to avoid
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003300 * possible race when the group is being loaded concurrently
Alex Tomasc9de5602008-01-29 00:19:52 -05003301 * instead we correct pa later, after blocks are marked
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003302 * in on-disk bitmap -- see ext4_mb_release_context()
3303 * Other CPUs are prevented from allocating from this pa by lg_mutex
Alex Tomasc9de5602008-01-29 00:19:52 -05003304 */
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003305 mb_debug(1, "use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003306}
3307
3308/*
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003309 * Return the prealloc space that have minimal distance
3310 * from the goal block. @cpa is the prealloc
3311 * space that is having currently known minimal distance
3312 * from the goal block.
3313 */
3314static struct ext4_prealloc_space *
3315ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
3316 struct ext4_prealloc_space *pa,
3317 struct ext4_prealloc_space *cpa)
3318{
3319 ext4_fsblk_t cur_distance, new_distance;
3320
3321 if (cpa == NULL) {
3322 atomic_inc(&pa->pa_count);
3323 return pa;
3324 }
3325 cur_distance = abs(goal_block - cpa->pa_pstart);
3326 new_distance = abs(goal_block - pa->pa_pstart);
3327
Coly Li5a54b2f2011-02-24 14:10:05 -05003328 if (cur_distance <= new_distance)
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003329 return cpa;
3330
3331 /* drop the previous reference */
3332 atomic_dec(&cpa->pa_count);
3333 atomic_inc(&pa->pa_count);
3334 return pa;
3335}
3336
3337/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003338 * search goal blocks in preallocated space
3339 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003340static noinline_for_stack int
3341ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003342{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003343 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003344 int order, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003345 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3346 struct ext4_locality_group *lg;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003347 struct ext4_prealloc_space *pa, *cpa = NULL;
3348 ext4_fsblk_t goal_block;
Alex Tomasc9de5602008-01-29 00:19:52 -05003349
3350 /* only data can be preallocated */
3351 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3352 return 0;
3353
3354 /* first, try per-file preallocation */
3355 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003356 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003357
3358 /* all fields in this condition don't change,
3359 * so we can skip locking for them */
3360 if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003361 ac->ac_o_ex.fe_logical >= (pa->pa_lstart +
3362 EXT4_C2B(sbi, pa->pa_len)))
Alex Tomasc9de5602008-01-29 00:19:52 -05003363 continue;
3364
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003365 /* non-extent files can't have physical blocks past 2^32 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003366 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003367 (pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len) >
3368 EXT4_MAX_BLOCK_FILE_PHYS))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003369 continue;
3370
Alex Tomasc9de5602008-01-29 00:19:52 -05003371 /* found preallocated blocks, use them */
3372 spin_lock(&pa->pa_lock);
3373 if (pa->pa_deleted == 0 && pa->pa_free) {
3374 atomic_inc(&pa->pa_count);
3375 ext4_mb_use_inode_pa(ac, pa);
3376 spin_unlock(&pa->pa_lock);
3377 ac->ac_criteria = 10;
3378 rcu_read_unlock();
3379 return 1;
3380 }
3381 spin_unlock(&pa->pa_lock);
3382 }
3383 rcu_read_unlock();
3384
3385 /* can we use group allocation? */
3386 if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
3387 return 0;
3388
3389 /* inode may have no locality group for some reason */
3390 lg = ac->ac_lg;
3391 if (lg == NULL)
3392 return 0;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003393 order = fls(ac->ac_o_ex.fe_len) - 1;
3394 if (order > PREALLOC_TB_SIZE - 1)
3395 /* The max size of hash table is PREALLOC_TB_SIZE */
3396 order = PREALLOC_TB_SIZE - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003397
Akinobu Mitabda00de2010-03-03 23:53:25 -05003398 goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003399 /*
3400 * search for the prealloc space that is having
3401 * minimal distance from the goal block.
3402 */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003403 for (i = order; i < PREALLOC_TB_SIZE; i++) {
3404 rcu_read_lock();
3405 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
3406 pa_inode_list) {
3407 spin_lock(&pa->pa_lock);
3408 if (pa->pa_deleted == 0 &&
3409 pa->pa_free >= ac->ac_o_ex.fe_len) {
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003410
3411 cpa = ext4_mb_check_group_pa(goal_block,
3412 pa, cpa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003413 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003414 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003415 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003416 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003417 }
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003418 if (cpa) {
3419 ext4_mb_use_group_pa(ac, cpa);
3420 ac->ac_criteria = 20;
3421 return 1;
3422 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003423 return 0;
3424}
3425
3426/*
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003427 * the function goes through all block freed in the group
3428 * but not yet committed and marks them used in in-core bitmap.
3429 * buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003430 * Need to be called with the ext4 group lock held
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003431 */
3432static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
3433 ext4_group_t group)
3434{
3435 struct rb_node *n;
3436 struct ext4_group_info *grp;
3437 struct ext4_free_data *entry;
3438
3439 grp = ext4_get_group_info(sb, group);
3440 n = rb_first(&(grp->bb_free_root));
3441
3442 while (n) {
Bobi Jam18aadd42012-02-20 17:53:02 -05003443 entry = rb_entry(n, struct ext4_free_data, efd_node);
3444 ext4_set_bits(bitmap, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003445 n = rb_next(n);
3446 }
3447 return;
3448}
3449
3450/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003451 * the function goes through all preallocation in this group and marks them
3452 * used in in-core bitmap. buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003453 * Need to be called with ext4 group lock held
Alex Tomasc9de5602008-01-29 00:19:52 -05003454 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04003455static noinline_for_stack
3456void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05003457 ext4_group_t group)
3458{
3459 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3460 struct ext4_prealloc_space *pa;
3461 struct list_head *cur;
3462 ext4_group_t groupnr;
3463 ext4_grpblk_t start;
3464 int preallocated = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003465 int len;
3466
3467 /* all form of preallocation discards first load group,
3468 * so the only competing code is preallocation use.
3469 * we don't need any locking here
3470 * notice we do NOT ignore preallocations with pa_deleted
3471 * otherwise we could leave used blocks available for
3472 * allocation in buddy when concurrent ext4_mb_put_pa()
3473 * is dropping preallocation
3474 */
3475 list_for_each(cur, &grp->bb_prealloc_list) {
3476 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3477 spin_lock(&pa->pa_lock);
3478 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3479 &groupnr, &start);
3480 len = pa->pa_len;
3481 spin_unlock(&pa->pa_lock);
3482 if (unlikely(len == 0))
3483 continue;
3484 BUG_ON(groupnr != group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003485 ext4_set_bits(bitmap, start, len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003486 preallocated += len;
Alex Tomasc9de5602008-01-29 00:19:52 -05003487 }
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003488 mb_debug(1, "prellocated %u for group %u\n", preallocated, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003489}
3490
3491static void ext4_mb_pa_callback(struct rcu_head *head)
3492{
3493 struct ext4_prealloc_space *pa;
3494 pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
Junho Ryu4e8d2132013-12-03 18:10:28 -05003495
3496 BUG_ON(atomic_read(&pa->pa_count));
3497 BUG_ON(pa->pa_deleted == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05003498 kmem_cache_free(ext4_pspace_cachep, pa);
3499}
3500
3501/*
3502 * drops a reference to preallocated space descriptor
3503 * if this was the last reference and the space is consumed
3504 */
3505static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
3506 struct super_block *sb, struct ext4_prealloc_space *pa)
3507{
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003508 ext4_group_t grp;
Eric Sandeend33a1972009-03-16 23:25:40 -04003509 ext4_fsblk_t grp_blk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003510
Alex Tomasc9de5602008-01-29 00:19:52 -05003511 /* in this short window concurrent discard can set pa_deleted */
3512 spin_lock(&pa->pa_lock);
Junho Ryu4e8d2132013-12-03 18:10:28 -05003513 if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0) {
3514 spin_unlock(&pa->pa_lock);
3515 return;
3516 }
3517
Alex Tomasc9de5602008-01-29 00:19:52 -05003518 if (pa->pa_deleted == 1) {
3519 spin_unlock(&pa->pa_lock);
3520 return;
3521 }
3522
3523 pa->pa_deleted = 1;
3524 spin_unlock(&pa->pa_lock);
3525
Eric Sandeend33a1972009-03-16 23:25:40 -04003526 grp_blk = pa->pa_pstart;
Theodore Ts'o60e66792010-05-17 07:00:00 -04003527 /*
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003528 * If doing group-based preallocation, pa_pstart may be in the
3529 * next group when pa is used up
3530 */
3531 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeend33a1972009-03-16 23:25:40 -04003532 grp_blk--;
3533
Lukas Czernerbd862982013-04-03 23:32:34 -04003534 grp = ext4_get_group_number(sb, grp_blk);
Alex Tomasc9de5602008-01-29 00:19:52 -05003535
3536 /*
3537 * possible race:
3538 *
3539 * P1 (buddy init) P2 (regular allocation)
3540 * find block B in PA
3541 * copy on-disk bitmap to buddy
3542 * mark B in on-disk bitmap
3543 * drop PA from group
3544 * mark all PAs in buddy
3545 *
3546 * thus, P1 initializes buddy with B available. to prevent this
3547 * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
3548 * against that pair
3549 */
3550 ext4_lock_group(sb, grp);
3551 list_del(&pa->pa_group_list);
3552 ext4_unlock_group(sb, grp);
3553
3554 spin_lock(pa->pa_obj_lock);
3555 list_del_rcu(&pa->pa_inode_list);
3556 spin_unlock(pa->pa_obj_lock);
3557
3558 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3559}
3560
3561/*
3562 * creates new preallocated space for given inode
3563 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003564static noinline_for_stack int
3565ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003566{
3567 struct super_block *sb = ac->ac_sb;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003568 struct ext4_sb_info *sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003569 struct ext4_prealloc_space *pa;
3570 struct ext4_group_info *grp;
3571 struct ext4_inode_info *ei;
3572
3573 /* preallocate only when found space is larger then requested */
3574 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3575 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3576 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3577
3578 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3579 if (pa == NULL)
3580 return -ENOMEM;
3581
3582 if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
3583 int winl;
3584 int wins;
3585 int win;
3586 int offs;
3587
3588 /* we can't allocate as much as normalizer wants.
3589 * so, found space must get proper lstart
3590 * to cover original request */
3591 BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
3592 BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
3593
3594 /* we're limited by original request in that
3595 * logical block must be covered any way
3596 * winl is window we can move our chunk within */
3597 winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
3598
3599 /* also, we should cover whole original request */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003600 wins = EXT4_C2B(sbi, ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003601
3602 /* the smallest one defines real window */
3603 win = min(winl, wins);
3604
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003605 offs = ac->ac_o_ex.fe_logical %
3606 EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003607 if (offs && offs < win)
3608 win = offs;
3609
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003610 ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical -
Lukas Czerner810da242013-03-02 17:18:58 -05003611 EXT4_NUM_B2C(sbi, win);
Alex Tomasc9de5602008-01-29 00:19:52 -05003612 BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
3613 BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
3614 }
3615
3616 /* preallocation can change ac_b_ex, thus we store actually
3617 * allocated blocks for history */
3618 ac->ac_f_ex = ac->ac_b_ex;
3619
3620 pa->pa_lstart = ac->ac_b_ex.fe_logical;
3621 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3622 pa->pa_len = ac->ac_b_ex.fe_len;
3623 pa->pa_free = pa->pa_len;
3624 atomic_set(&pa->pa_count, 1);
3625 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003626 INIT_LIST_HEAD(&pa->pa_inode_list);
3627 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003628 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003629 pa->pa_type = MB_INODE_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003630
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003631 mb_debug(1, "new inode pa %p: %llu/%u for %u\n", pa,
Alex Tomasc9de5602008-01-29 00:19:52 -05003632 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003633 trace_ext4_mb_new_inode_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003634
3635 ext4_mb_use_inode_pa(ac, pa);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003636 atomic_add(pa->pa_free, &sbi->s_mb_preallocated);
Alex Tomasc9de5602008-01-29 00:19:52 -05003637
3638 ei = EXT4_I(ac->ac_inode);
3639 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3640
3641 pa->pa_obj_lock = &ei->i_prealloc_lock;
3642 pa->pa_inode = ac->ac_inode;
3643
3644 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3645 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3646 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3647
3648 spin_lock(pa->pa_obj_lock);
3649 list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
3650 spin_unlock(pa->pa_obj_lock);
3651
3652 return 0;
3653}
3654
3655/*
3656 * creates new preallocated space for locality group inodes belongs to
3657 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003658static noinline_for_stack int
3659ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003660{
3661 struct super_block *sb = ac->ac_sb;
3662 struct ext4_locality_group *lg;
3663 struct ext4_prealloc_space *pa;
3664 struct ext4_group_info *grp;
3665
3666 /* preallocate only when found space is larger then requested */
3667 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3668 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3669 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3670
3671 BUG_ON(ext4_pspace_cachep == NULL);
3672 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3673 if (pa == NULL)
3674 return -ENOMEM;
3675
3676 /* preallocation can change ac_b_ex, thus we store actually
3677 * allocated blocks for history */
3678 ac->ac_f_ex = ac->ac_b_ex;
3679
3680 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3681 pa->pa_lstart = pa->pa_pstart;
3682 pa->pa_len = ac->ac_b_ex.fe_len;
3683 pa->pa_free = pa->pa_len;
3684 atomic_set(&pa->pa_count, 1);
3685 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003686 INIT_LIST_HEAD(&pa->pa_inode_list);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003687 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003688 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003689 pa->pa_type = MB_GROUP_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003690
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003691 mb_debug(1, "new group pa %p: %llu/%u for %u\n", pa,
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003692 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
3693 trace_ext4_mb_new_group_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003694
3695 ext4_mb_use_group_pa(ac, pa);
3696 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3697
3698 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3699 lg = ac->ac_lg;
3700 BUG_ON(lg == NULL);
3701
3702 pa->pa_obj_lock = &lg->lg_prealloc_lock;
3703 pa->pa_inode = NULL;
3704
3705 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3706 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3707 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3708
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003709 /*
3710 * We will later add the new pa to the right bucket
3711 * after updating the pa_free in ext4_mb_release_context
3712 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003713 return 0;
3714}
3715
3716static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
3717{
3718 int err;
3719
3720 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
3721 err = ext4_mb_new_group_pa(ac);
3722 else
3723 err = ext4_mb_new_inode_pa(ac);
3724 return err;
3725}
3726
3727/*
3728 * finds all unused blocks in on-disk bitmap, frees them in
3729 * in-core bitmap and buddy.
3730 * @pa must be unlinked from inode and group lists, so that
3731 * nobody else can find/use it.
3732 * the caller MUST hold group/inode locks.
3733 * TODO: optimize the case when there are no in-core structures yet
3734 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003735static noinline_for_stack int
3736ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003737 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05003738{
Alex Tomasc9de5602008-01-29 00:19:52 -05003739 struct super_block *sb = e4b->bd_sb;
3740 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003741 unsigned int end;
3742 unsigned int next;
Alex Tomasc9de5602008-01-29 00:19:52 -05003743 ext4_group_t group;
3744 ext4_grpblk_t bit;
Theodore Ts'oba80b102009-01-03 20:03:21 -05003745 unsigned long long grp_blk_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05003746 int err = 0;
3747 int free = 0;
3748
3749 BUG_ON(pa->pa_deleted == 0);
3750 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003751 grp_blk_start = pa->pa_pstart - EXT4_C2B(sbi, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003752 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3753 end = bit + pa->pa_len;
3754
Alex Tomasc9de5602008-01-29 00:19:52 -05003755 while (bit < end) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003756 bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003757 if (bit >= end)
3758 break;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003759 next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003760 mb_debug(1, " free preallocated %u/%u in group %u\n",
Andi Kleen5a0790c2010-06-14 13:28:03 -04003761 (unsigned) ext4_group_first_block_no(sb, group) + bit,
3762 (unsigned) next - bit, (unsigned) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003763 free += next - bit;
3764
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003765 trace_ext4_mballoc_discard(sb, NULL, group, bit, next - bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003766 trace_ext4_mb_release_inode_pa(pa, (grp_blk_start +
3767 EXT4_C2B(sbi, bit)),
Lukas Czernera9c667f2011-06-06 09:51:52 -04003768 next - bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003769 mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
3770 bit = next + 1;
3771 }
3772 if (free != pa->pa_free) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003773 ext4_msg(e4b->bd_sb, KERN_CRIT,
3774 "pa %p: logic %lu, phys. %lu, len %lu",
3775 pa, (unsigned long) pa->pa_lstart,
3776 (unsigned long) pa->pa_pstart,
3777 (unsigned long) pa->pa_len);
Theodore Ts'oe29136f2010-06-29 12:54:28 -04003778 ext4_grp_locked_error(sb, group, 0, 0, "free %u, pa_free %u",
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003779 free, pa->pa_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05003780 /*
3781 * pa is already deleted so we use the value obtained
3782 * from the bitmap and continue.
3783 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003784 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003785 atomic_add(free, &sbi->s_mb_discarded);
3786
3787 return err;
3788}
3789
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003790static noinline_for_stack int
3791ext4_mb_release_group_pa(struct ext4_buddy *e4b,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003792 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05003793{
Alex Tomasc9de5602008-01-29 00:19:52 -05003794 struct super_block *sb = e4b->bd_sb;
3795 ext4_group_t group;
3796 ext4_grpblk_t bit;
3797
Yongqiang Yang60e07cf2011-12-18 15:49:54 -05003798 trace_ext4_mb_release_group_pa(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003799 BUG_ON(pa->pa_deleted == 0);
3800 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3801 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3802 mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
3803 atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003804 trace_ext4_mballoc_discard(sb, NULL, group, bit, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003805
3806 return 0;
3807}
3808
3809/*
3810 * releases all preallocations in given group
3811 *
3812 * first, we need to decide discard policy:
3813 * - when do we discard
3814 * 1) ENOSPC
3815 * - how many do we discard
3816 * 1) how many requested
3817 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003818static noinline_for_stack int
3819ext4_mb_discard_group_preallocations(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -05003820 ext4_group_t group, int needed)
3821{
3822 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3823 struct buffer_head *bitmap_bh = NULL;
3824 struct ext4_prealloc_space *pa, *tmp;
3825 struct list_head list;
3826 struct ext4_buddy e4b;
3827 int err;
3828 int busy = 0;
3829 int free = 0;
3830
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003831 mb_debug(1, "discard preallocation for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003832
3833 if (list_empty(&grp->bb_prealloc_list))
3834 return 0;
3835
Theodore Ts'o574ca172008-07-11 19:27:31 -04003836 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003837 if (bitmap_bh == NULL) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003838 ext4_error(sb, "Error reading block bitmap for %u", group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003839 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003840 }
3841
3842 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003843 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003844 ext4_error(sb, "Error loading buddy information for %u", group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003845 put_bh(bitmap_bh);
3846 return 0;
3847 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003848
3849 if (needed == 0)
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04003850 needed = EXT4_CLUSTERS_PER_GROUP(sb) + 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003851
Alex Tomasc9de5602008-01-29 00:19:52 -05003852 INIT_LIST_HEAD(&list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003853repeat:
3854 ext4_lock_group(sb, group);
3855 list_for_each_entry_safe(pa, tmp,
3856 &grp->bb_prealloc_list, pa_group_list) {
3857 spin_lock(&pa->pa_lock);
3858 if (atomic_read(&pa->pa_count)) {
3859 spin_unlock(&pa->pa_lock);
3860 busy = 1;
3861 continue;
3862 }
3863 if (pa->pa_deleted) {
3864 spin_unlock(&pa->pa_lock);
3865 continue;
3866 }
3867
3868 /* seems this one can be freed ... */
3869 pa->pa_deleted = 1;
3870
3871 /* we can trust pa_free ... */
3872 free += pa->pa_free;
3873
3874 spin_unlock(&pa->pa_lock);
3875
3876 list_del(&pa->pa_group_list);
3877 list_add(&pa->u.pa_tmp_list, &list);
3878 }
3879
3880 /* if we still need more blocks and some PAs were used, try again */
3881 if (free < needed && busy) {
3882 busy = 0;
3883 ext4_unlock_group(sb, group);
Lukas Czernerbb8b20e2013-03-10 22:28:09 -04003884 cond_resched();
Alex Tomasc9de5602008-01-29 00:19:52 -05003885 goto repeat;
3886 }
3887
3888 /* found anything to free? */
3889 if (list_empty(&list)) {
3890 BUG_ON(free != 0);
3891 goto out;
3892 }
3893
3894 /* now free all selected PAs */
3895 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
3896
3897 /* remove from object (inode or locality group) */
3898 spin_lock(pa->pa_obj_lock);
3899 list_del_rcu(&pa->pa_inode_list);
3900 spin_unlock(pa->pa_obj_lock);
3901
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003902 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003903 ext4_mb_release_group_pa(&e4b, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003904 else
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003905 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003906
3907 list_del(&pa->u.pa_tmp_list);
3908 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3909 }
3910
3911out:
3912 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04003913 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05003914 put_bh(bitmap_bh);
3915 return free;
3916}
3917
3918/*
3919 * releases all non-used preallocated blocks for given inode
3920 *
3921 * It's important to discard preallocations under i_data_sem
3922 * We don't want another block to be served from the prealloc
3923 * space when we are discarding the inode prealloc space.
3924 *
3925 * FIXME!! Make sure it is valid at all the call sites
3926 */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003927void ext4_discard_preallocations(struct inode *inode)
Alex Tomasc9de5602008-01-29 00:19:52 -05003928{
3929 struct ext4_inode_info *ei = EXT4_I(inode);
3930 struct super_block *sb = inode->i_sb;
3931 struct buffer_head *bitmap_bh = NULL;
3932 struct ext4_prealloc_space *pa, *tmp;
3933 ext4_group_t group = 0;
3934 struct list_head list;
3935 struct ext4_buddy e4b;
3936 int err;
3937
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04003938 if (!S_ISREG(inode->i_mode)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003939 /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
3940 return;
3941 }
3942
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003943 mb_debug(1, "discard preallocation for inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003944 trace_ext4_discard_preallocations(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05003945
3946 INIT_LIST_HEAD(&list);
3947
3948repeat:
3949 /* first, collect all pa's in the inode */
3950 spin_lock(&ei->i_prealloc_lock);
3951 while (!list_empty(&ei->i_prealloc_list)) {
3952 pa = list_entry(ei->i_prealloc_list.next,
3953 struct ext4_prealloc_space, pa_inode_list);
3954 BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
3955 spin_lock(&pa->pa_lock);
3956 if (atomic_read(&pa->pa_count)) {
3957 /* this shouldn't happen often - nobody should
3958 * use preallocation while we're discarding it */
3959 spin_unlock(&pa->pa_lock);
3960 spin_unlock(&ei->i_prealloc_lock);
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003961 ext4_msg(sb, KERN_ERR,
3962 "uh-oh! used pa while discarding");
Alex Tomasc9de5602008-01-29 00:19:52 -05003963 WARN_ON(1);
3964 schedule_timeout_uninterruptible(HZ);
3965 goto repeat;
3966
3967 }
3968 if (pa->pa_deleted == 0) {
3969 pa->pa_deleted = 1;
3970 spin_unlock(&pa->pa_lock);
3971 list_del_rcu(&pa->pa_inode_list);
3972 list_add(&pa->u.pa_tmp_list, &list);
3973 continue;
3974 }
3975
3976 /* someone is deleting pa right now */
3977 spin_unlock(&pa->pa_lock);
3978 spin_unlock(&ei->i_prealloc_lock);
3979
3980 /* we have to wait here because pa_deleted
3981 * doesn't mean pa is already unlinked from
3982 * the list. as we might be called from
3983 * ->clear_inode() the inode will get freed
3984 * and concurrent thread which is unlinking
3985 * pa from inode's list may access already
3986 * freed memory, bad-bad-bad */
3987
3988 /* XXX: if this happens too often, we can
3989 * add a flag to force wait only in case
3990 * of ->clear_inode(), but not in case of
3991 * regular truncate */
3992 schedule_timeout_uninterruptible(HZ);
3993 goto repeat;
3994 }
3995 spin_unlock(&ei->i_prealloc_lock);
3996
3997 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003998 BUG_ON(pa->pa_type != MB_INODE_PA);
Lukas Czernerbd862982013-04-03 23:32:34 -04003999 group = ext4_get_group_number(sb, pa->pa_pstart);
Alex Tomasc9de5602008-01-29 00:19:52 -05004000
4001 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004002 if (err) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004003 ext4_error(sb, "Error loading buddy information for %u",
4004 group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004005 continue;
4006 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004007
Theodore Ts'o574ca172008-07-11 19:27:31 -04004008 bitmap_bh = ext4_read_block_bitmap(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004009 if (bitmap_bh == NULL) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004010 ext4_error(sb, "Error reading block bitmap for %u",
4011 group);
Jing Zhange39e07f2010-05-14 00:00:00 -04004012 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004013 continue;
Alex Tomasc9de5602008-01-29 00:19:52 -05004014 }
4015
4016 ext4_lock_group(sb, group);
4017 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004018 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004019 ext4_unlock_group(sb, group);
4020
Jing Zhange39e07f2010-05-14 00:00:00 -04004021 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05004022 put_bh(bitmap_bh);
4023
4024 list_del(&pa->u.pa_tmp_list);
4025 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4026 }
4027}
4028
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004029#ifdef CONFIG_EXT4_DEBUG
Alex Tomasc9de5602008-01-29 00:19:52 -05004030static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
4031{
4032 struct super_block *sb = ac->ac_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -04004033 ext4_group_t ngroups, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05004034
Theodore Ts'oa0b30c12013-02-09 16:28:20 -05004035 if (!ext4_mballoc_debug ||
Theodore Ts'o4dd89fc2011-02-27 17:23:47 -05004036 (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED))
Eric Sandeene3570632010-07-27 11:56:08 -04004037 return;
4038
Joe Perches7f6a11e2012-03-19 23:09:43 -04004039 ext4_msg(ac->ac_sb, KERN_ERR, "Can't allocate:"
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004040 " Allocation context details:");
Joe Perches7f6a11e2012-03-19 23:09:43 -04004041 ext4_msg(ac->ac_sb, KERN_ERR, "status %d flags %d",
Alex Tomasc9de5602008-01-29 00:19:52 -05004042 ac->ac_status, ac->ac_flags);
Joe Perches7f6a11e2012-03-19 23:09:43 -04004043 ext4_msg(ac->ac_sb, KERN_ERR, "orig %lu/%lu/%lu@%lu, "
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004044 "goal %lu/%lu/%lu@%lu, "
4045 "best %lu/%lu/%lu@%lu cr %d",
Alex Tomasc9de5602008-01-29 00:19:52 -05004046 (unsigned long)ac->ac_o_ex.fe_group,
4047 (unsigned long)ac->ac_o_ex.fe_start,
4048 (unsigned long)ac->ac_o_ex.fe_len,
4049 (unsigned long)ac->ac_o_ex.fe_logical,
4050 (unsigned long)ac->ac_g_ex.fe_group,
4051 (unsigned long)ac->ac_g_ex.fe_start,
4052 (unsigned long)ac->ac_g_ex.fe_len,
4053 (unsigned long)ac->ac_g_ex.fe_logical,
4054 (unsigned long)ac->ac_b_ex.fe_group,
4055 (unsigned long)ac->ac_b_ex.fe_start,
4056 (unsigned long)ac->ac_b_ex.fe_len,
4057 (unsigned long)ac->ac_b_ex.fe_logical,
4058 (int)ac->ac_criteria);
Eric Sandeendc9ddd92014-02-20 13:32:10 -05004059 ext4_msg(ac->ac_sb, KERN_ERR, "%d found", ac->ac_found);
Joe Perches7f6a11e2012-03-19 23:09:43 -04004060 ext4_msg(ac->ac_sb, KERN_ERR, "groups: ");
Theodore Ts'o8df96752009-05-01 08:50:38 -04004061 ngroups = ext4_get_groups_count(sb);
4062 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004063 struct ext4_group_info *grp = ext4_get_group_info(sb, i);
4064 struct ext4_prealloc_space *pa;
4065 ext4_grpblk_t start;
4066 struct list_head *cur;
4067 ext4_lock_group(sb, i);
4068 list_for_each(cur, &grp->bb_prealloc_list) {
4069 pa = list_entry(cur, struct ext4_prealloc_space,
4070 pa_group_list);
4071 spin_lock(&pa->pa_lock);
4072 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
4073 NULL, &start);
4074 spin_unlock(&pa->pa_lock);
Akira Fujita1c718502009-07-05 23:04:36 -04004075 printk(KERN_ERR "PA:%u:%d:%u \n", i,
4076 start, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004077 }
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04004078 ext4_unlock_group(sb, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05004079
4080 if (grp->bb_free == 0)
4081 continue;
Akira Fujita1c718502009-07-05 23:04:36 -04004082 printk(KERN_ERR "%u: %d/%d \n",
Alex Tomasc9de5602008-01-29 00:19:52 -05004083 i, grp->bb_free, grp->bb_fragments);
4084 }
4085 printk(KERN_ERR "\n");
4086}
4087#else
4088static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
4089{
4090 return;
4091}
4092#endif
4093
4094/*
4095 * We use locality group preallocation for small size file. The size of the
4096 * file is determined by the current size or the resulting size after
4097 * allocation which ever is larger
4098 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004099 * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
Alex Tomasc9de5602008-01-29 00:19:52 -05004100 */
4101static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
4102{
4103 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
4104 int bsbits = ac->ac_sb->s_blocksize_bits;
4105 loff_t size, isize;
4106
4107 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
4108 return;
4109
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004110 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
4111 return;
4112
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004113 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Theodore Ts'o50797482009-09-18 13:34:02 -04004114 isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
4115 >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05004116
Theodore Ts'o50797482009-09-18 13:34:02 -04004117 if ((size == isize) &&
4118 !ext4_fs_is_busy(sbi) &&
4119 (atomic_read(&ac->ac_inode->i_writecount) == 0)) {
4120 ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
4121 return;
4122 }
4123
Robin Dongebbe0272011-10-26 05:14:27 -04004124 if (sbi->s_mb_group_prealloc <= 0) {
4125 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
4126 return;
4127 }
4128
Alex Tomasc9de5602008-01-29 00:19:52 -05004129 /* don't use group allocation for large files */
Theodore Ts'o71780572009-09-28 00:06:20 -04004130 size = max(size, isize);
Tao Macc483f12010-03-01 19:06:35 -05004131 if (size > sbi->s_mb_stream_request) {
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004132 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05004133 return;
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004134 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004135
4136 BUG_ON(ac->ac_lg != NULL);
4137 /*
4138 * locality group prealloc space are per cpu. The reason for having
4139 * per cpu locality group is to reduce the contention between block
4140 * request from multiple CPUs.
4141 */
Christoph Lametera0b6bc62014-08-17 12:30:28 -05004142 ac->ac_lg = raw_cpu_ptr(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05004143
4144 /* we're going to use group allocation */
4145 ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
4146
4147 /* serialize all allocations in the group */
4148 mutex_lock(&ac->ac_lg->lg_mutex);
4149}
4150
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004151static noinline_for_stack int
4152ext4_mb_initialize_context(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05004153 struct ext4_allocation_request *ar)
4154{
4155 struct super_block *sb = ar->inode->i_sb;
4156 struct ext4_sb_info *sbi = EXT4_SB(sb);
4157 struct ext4_super_block *es = sbi->s_es;
4158 ext4_group_t group;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004159 unsigned int len;
4160 ext4_fsblk_t goal;
Alex Tomasc9de5602008-01-29 00:19:52 -05004161 ext4_grpblk_t block;
4162
4163 /* we can't allocate > group size */
4164 len = ar->len;
4165
4166 /* just a dirty hack to filter too big requests */
Theodore Ts'o40ae3482013-02-04 15:08:40 -05004167 if (len >= EXT4_CLUSTERS_PER_GROUP(sb))
4168 len = EXT4_CLUSTERS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004169
4170 /* start searching from the goal */
4171 goal = ar->goal;
4172 if (goal < le32_to_cpu(es->s_first_data_block) ||
4173 goal >= ext4_blocks_count(es))
4174 goal = le32_to_cpu(es->s_first_data_block);
4175 ext4_get_group_no_and_offset(sb, goal, &group, &block);
4176
4177 /* set up allocation goals */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004178 ac->ac_b_ex.fe_logical = EXT4_LBLK_CMASK(sbi, ar->logical);
Alex Tomasc9de5602008-01-29 00:19:52 -05004179 ac->ac_status = AC_STATUS_CONTINUE;
Alex Tomasc9de5602008-01-29 00:19:52 -05004180 ac->ac_sb = sb;
4181 ac->ac_inode = ar->inode;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004182 ac->ac_o_ex.fe_logical = ac->ac_b_ex.fe_logical;
Alex Tomasc9de5602008-01-29 00:19:52 -05004183 ac->ac_o_ex.fe_group = group;
4184 ac->ac_o_ex.fe_start = block;
4185 ac->ac_o_ex.fe_len = len;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004186 ac->ac_g_ex = ac->ac_o_ex;
Alex Tomasc9de5602008-01-29 00:19:52 -05004187 ac->ac_flags = ar->flags;
Alex Tomasc9de5602008-01-29 00:19:52 -05004188
4189 /* we have to define context: we'll we work with a file or
4190 * locality group. this is a policy, actually */
4191 ext4_mb_group_or_file(ac);
4192
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004193 mb_debug(1, "init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, "
Alex Tomasc9de5602008-01-29 00:19:52 -05004194 "left: %u/%u, right %u/%u to %swritable\n",
4195 (unsigned) ar->len, (unsigned) ar->logical,
4196 (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
4197 (unsigned) ar->lleft, (unsigned) ar->pleft,
4198 (unsigned) ar->lright, (unsigned) ar->pright,
4199 atomic_read(&ar->inode->i_writecount) ? "" : "non-");
4200 return 0;
4201
4202}
4203
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004204static noinline_for_stack void
4205ext4_mb_discard_lg_preallocations(struct super_block *sb,
4206 struct ext4_locality_group *lg,
4207 int order, int total_entries)
4208{
4209 ext4_group_t group = 0;
4210 struct ext4_buddy e4b;
4211 struct list_head discard_list;
4212 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004213
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004214 mb_debug(1, "discard locality group preallocation\n");
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004215
4216 INIT_LIST_HEAD(&discard_list);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004217
4218 spin_lock(&lg->lg_prealloc_lock);
4219 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
4220 pa_inode_list) {
4221 spin_lock(&pa->pa_lock);
4222 if (atomic_read(&pa->pa_count)) {
4223 /*
4224 * This is the pa that we just used
4225 * for block allocation. So don't
4226 * free that
4227 */
4228 spin_unlock(&pa->pa_lock);
4229 continue;
4230 }
4231 if (pa->pa_deleted) {
4232 spin_unlock(&pa->pa_lock);
4233 continue;
4234 }
4235 /* only lg prealloc space */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004236 BUG_ON(pa->pa_type != MB_GROUP_PA);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004237
4238 /* seems this one can be freed ... */
4239 pa->pa_deleted = 1;
4240 spin_unlock(&pa->pa_lock);
4241
4242 list_del_rcu(&pa->pa_inode_list);
4243 list_add(&pa->u.pa_tmp_list, &discard_list);
4244
4245 total_entries--;
4246 if (total_entries <= 5) {
4247 /*
4248 * we want to keep only 5 entries
4249 * allowing it to grow to 8. This
4250 * mak sure we don't call discard
4251 * soon for this list.
4252 */
4253 break;
4254 }
4255 }
4256 spin_unlock(&lg->lg_prealloc_lock);
4257
4258 list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
4259
Lukas Czernerbd862982013-04-03 23:32:34 -04004260 group = ext4_get_group_number(sb, pa->pa_pstart);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004261 if (ext4_mb_load_buddy(sb, group, &e4b)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004262 ext4_error(sb, "Error loading buddy information for %u",
4263 group);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004264 continue;
4265 }
4266 ext4_lock_group(sb, group);
4267 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004268 ext4_mb_release_group_pa(&e4b, pa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004269 ext4_unlock_group(sb, group);
4270
Jing Zhange39e07f2010-05-14 00:00:00 -04004271 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004272 list_del(&pa->u.pa_tmp_list);
4273 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4274 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004275}
4276
4277/*
4278 * We have incremented pa_count. So it cannot be freed at this
4279 * point. Also we hold lg_mutex. So no parallel allocation is
4280 * possible from this lg. That means pa_free cannot be updated.
4281 *
4282 * A parallel ext4_mb_discard_group_preallocations is possible.
4283 * which can cause the lg_prealloc_list to be updated.
4284 */
4285
4286static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
4287{
4288 int order, added = 0, lg_prealloc_count = 1;
4289 struct super_block *sb = ac->ac_sb;
4290 struct ext4_locality_group *lg = ac->ac_lg;
4291 struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
4292
4293 order = fls(pa->pa_free) - 1;
4294 if (order > PREALLOC_TB_SIZE - 1)
4295 /* The max size of hash table is PREALLOC_TB_SIZE */
4296 order = PREALLOC_TB_SIZE - 1;
4297 /* Add the prealloc space to lg */
Niu Yaweif1167002013-02-01 21:31:27 -05004298 spin_lock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004299 list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
4300 pa_inode_list) {
4301 spin_lock(&tmp_pa->pa_lock);
4302 if (tmp_pa->pa_deleted) {
Theodore Ts'oe7c9e3e2009-03-27 19:43:21 -04004303 spin_unlock(&tmp_pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004304 continue;
4305 }
4306 if (!added && pa->pa_free < tmp_pa->pa_free) {
4307 /* Add to the tail of the previous entry */
4308 list_add_tail_rcu(&pa->pa_inode_list,
4309 &tmp_pa->pa_inode_list);
4310 added = 1;
4311 /*
4312 * we want to count the total
4313 * number of entries in the list
4314 */
4315 }
4316 spin_unlock(&tmp_pa->pa_lock);
4317 lg_prealloc_count++;
4318 }
4319 if (!added)
4320 list_add_tail_rcu(&pa->pa_inode_list,
4321 &lg->lg_prealloc_list[order]);
Niu Yaweif1167002013-02-01 21:31:27 -05004322 spin_unlock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004323
4324 /* Now trim the list to be not more than 8 elements */
4325 if (lg_prealloc_count > 8) {
4326 ext4_mb_discard_lg_preallocations(sb, lg,
Niu Yaweif1167002013-02-01 21:31:27 -05004327 order, lg_prealloc_count);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004328 return;
4329 }
4330 return ;
4331}
4332
Alex Tomasc9de5602008-01-29 00:19:52 -05004333/*
4334 * release all resource we used in allocation
4335 */
4336static int ext4_mb_release_context(struct ext4_allocation_context *ac)
4337{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004338 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004339 struct ext4_prealloc_space *pa = ac->ac_pa;
4340 if (pa) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004341 if (pa->pa_type == MB_GROUP_PA) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004342 /* see comment in ext4_mb_use_group_pa() */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004343 spin_lock(&pa->pa_lock);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004344 pa->pa_pstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
4345 pa->pa_lstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004346 pa->pa_free -= ac->ac_b_ex.fe_len;
4347 pa->pa_len -= ac->ac_b_ex.fe_len;
4348 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004349 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004350 }
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004351 if (pa) {
4352 /*
4353 * We want to add the pa to the right bucket.
4354 * Remove it from the list and while adding
4355 * make sure the list to which we are adding
Amir Goldstein44183d42011-05-09 21:52:36 -04004356 * doesn't grow big.
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004357 */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004358 if ((pa->pa_type == MB_GROUP_PA) && likely(pa->pa_free)) {
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004359 spin_lock(pa->pa_obj_lock);
4360 list_del_rcu(&pa->pa_inode_list);
4361 spin_unlock(pa->pa_obj_lock);
4362 ext4_mb_add_n_trim(ac);
4363 }
4364 ext4_mb_put_pa(ac, ac->ac_sb, pa);
4365 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004366 if (ac->ac_bitmap_page)
4367 page_cache_release(ac->ac_bitmap_page);
4368 if (ac->ac_buddy_page)
4369 page_cache_release(ac->ac_buddy_page);
4370 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
4371 mutex_unlock(&ac->ac_lg->lg_mutex);
4372 ext4_mb_collect_stats(ac);
4373 return 0;
4374}
4375
4376static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
4377{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004378 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004379 int ret;
4380 int freed = 0;
4381
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004382 trace_ext4_mb_discard_preallocations(sb, needed);
Theodore Ts'o8df96752009-05-01 08:50:38 -04004383 for (i = 0; i < ngroups && needed > 0; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004384 ret = ext4_mb_discard_group_preallocations(sb, i, needed);
4385 freed += ret;
4386 needed -= ret;
4387 }
4388
4389 return freed;
4390}
4391
4392/*
4393 * Main entry point into mballoc to allocate blocks
4394 * it tries to use preallocation first, then falls back
4395 * to usual allocation
4396 */
4397ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
Aditya Kali6c7a1202010-08-05 16:22:24 -04004398 struct ext4_allocation_request *ar, int *errp)
Alex Tomasc9de5602008-01-29 00:19:52 -05004399{
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004400 int freed;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004401 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004402 struct ext4_sb_info *sbi;
4403 struct super_block *sb;
4404 ext4_fsblk_t block = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01004405 unsigned int inquota = 0;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004406 unsigned int reserv_clstrs = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004407
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04004408 might_sleep();
Alex Tomasc9de5602008-01-29 00:19:52 -05004409 sb = ar->inode->i_sb;
4410 sbi = EXT4_SB(sb);
4411
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004412 trace_ext4_request_blocks(ar);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004413
Dmitry Monakhov45dc63e2011-10-20 20:07:23 -04004414 /* Allow to use superuser reservation for quota file */
4415 if (IS_NOQUOTA(ar->inode))
4416 ar->flags |= EXT4_MB_USE_ROOT_BLOCKS;
4417
Theodore Ts'oe3cf5d52014-09-04 18:07:25 -04004418 if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0) {
Mingming Cao60e58e02009-01-22 18:13:05 +01004419 /* Without delayed allocation we need to verify
4420 * there is enough free blocks to do block allocation
4421 * and verify allocation doesn't exceed the quota limits.
Mingming Caod2a17632008-07-14 17:52:37 -04004422 */
Allison Henderson55f020d2011-05-25 07:41:26 -04004423 while (ar->len &&
Theodore Ts'oe7d5f312011-09-09 19:14:51 -04004424 ext4_claim_free_clusters(sbi, ar->len, ar->flags)) {
Allison Henderson55f020d2011-05-25 07:41:26 -04004425
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004426 /* let others to free the space */
Lukas Czernerbb8b20e2013-03-10 22:28:09 -04004427 cond_resched();
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004428 ar->len = ar->len >> 1;
4429 }
4430 if (!ar->len) {
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -04004431 *errp = -ENOSPC;
4432 return 0;
4433 }
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004434 reserv_clstrs = ar->len;
Allison Henderson55f020d2011-05-25 07:41:26 -04004435 if (ar->flags & EXT4_MB_USE_ROOT_BLOCKS) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004436 dquot_alloc_block_nofail(ar->inode,
4437 EXT4_C2B(sbi, ar->len));
Allison Henderson55f020d2011-05-25 07:41:26 -04004438 } else {
4439 while (ar->len &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004440 dquot_alloc_block(ar->inode,
4441 EXT4_C2B(sbi, ar->len))) {
Allison Henderson55f020d2011-05-25 07:41:26 -04004442
4443 ar->flags |= EXT4_MB_HINT_NOPREALLOC;
4444 ar->len--;
4445 }
Mingming Cao60e58e02009-01-22 18:13:05 +01004446 }
4447 inquota = ar->len;
4448 if (ar->len == 0) {
4449 *errp = -EDQUOT;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004450 goto out;
Mingming Cao60e58e02009-01-22 18:13:05 +01004451 }
Mingming Caod2a17632008-07-14 17:52:37 -04004452 }
Mingming Caod2a17632008-07-14 17:52:37 -04004453
Wei Yongjun85556c92012-09-26 20:43:37 -04004454 ac = kmem_cache_zalloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o833576b2009-07-13 09:45:52 -04004455 if (!ac) {
Shen Feng363d4252008-07-11 19:27:31 -04004456 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004457 *errp = -ENOMEM;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004458 goto out;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004459 }
4460
Eric Sandeen256bdb42008-02-10 01:13:33 -05004461 *errp = ext4_mb_initialize_context(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004462 if (*errp) {
4463 ar->len = 0;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004464 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05004465 }
4466
Eric Sandeen256bdb42008-02-10 01:13:33 -05004467 ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
4468 if (!ext4_mb_use_preallocated(ac)) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004469 ac->ac_op = EXT4_MB_HISTORY_ALLOC;
4470 ext4_mb_normalize_request(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004471repeat:
4472 /* allocate space in core */
Aditya Kali6c7a1202010-08-05 16:22:24 -04004473 *errp = ext4_mb_regular_allocator(ac);
Alexey Khoroshilov2c00ef32013-07-01 08:12:36 -04004474 if (*errp)
4475 goto discard_and_exit;
4476
4477 /* as we've just preallocated more space than
4478 * user requested originally, we store allocated
4479 * space in a special descriptor */
4480 if (ac->ac_status == AC_STATUS_FOUND &&
4481 ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
4482 *errp = ext4_mb_new_preallocation(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004483 if (*errp) {
Alexey Khoroshilov2c00ef32013-07-01 08:12:36 -04004484 discard_and_exit:
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004485 ext4_discard_allocated_blocks(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004486 goto errout;
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004487 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004488 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05004489 if (likely(ac->ac_status == AC_STATUS_FOUND)) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004490 *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_clstrs);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004491 if (*errp == -EAGAIN) {
Aneesh Kumar K.V8556e8f2009-01-05 21:46:55 -05004492 /*
4493 * drop the reference that we took
4494 * in ext4_mb_use_best_found
4495 */
4496 ext4_mb_release_context(ac);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04004497 ac->ac_b_ex.fe_group = 0;
4498 ac->ac_b_ex.fe_start = 0;
4499 ac->ac_b_ex.fe_len = 0;
4500 ac->ac_status = AC_STATUS_CONTINUE;
4501 goto repeat;
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004502 } else if (*errp) {
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05004503 ext4_discard_allocated_blocks(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004504 goto errout;
4505 } else {
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04004506 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4507 ar->len = ac->ac_b_ex.fe_len;
4508 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004509 } else {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004510 freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004511 if (freed)
4512 goto repeat;
4513 *errp = -ENOSPC;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004514 }
4515
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004516errout:
Aditya Kali6c7a1202010-08-05 16:22:24 -04004517 if (*errp) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004518 ac->ac_b_ex.fe_len = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004519 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004520 ext4_mb_show_ac(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004521 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05004522 ext4_mb_release_context(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004523out:
4524 if (ac)
4525 kmem_cache_free(ext4_ac_cachep, ac);
Mingming Cao60e58e02009-01-22 18:13:05 +01004526 if (inquota && ar->len < inquota)
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004527 dquot_free_block(ar->inode, EXT4_C2B(sbi, inquota - ar->len));
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004528 if (!ar->len) {
Theodore Ts'oe3cf5d52014-09-04 18:07:25 -04004529 if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0)
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004530 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04004531 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004532 reserv_clstrs);
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004533 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004534
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004535 trace_ext4_allocate_blocks(ar, (unsigned long long)block);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004536
Alex Tomasc9de5602008-01-29 00:19:52 -05004537 return block;
4538}
Alex Tomasc9de5602008-01-29 00:19:52 -05004539
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004540/*
4541 * We can merge two free data extents only if the physical blocks
4542 * are contiguous, AND the extents were freed by the same transaction,
4543 * AND the blocks are associated with the same group.
4544 */
4545static int can_merge(struct ext4_free_data *entry1,
4546 struct ext4_free_data *entry2)
4547{
Bobi Jam18aadd42012-02-20 17:53:02 -05004548 if ((entry1->efd_tid == entry2->efd_tid) &&
4549 (entry1->efd_group == entry2->efd_group) &&
4550 ((entry1->efd_start_cluster + entry1->efd_count) == entry2->efd_start_cluster))
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004551 return 1;
4552 return 0;
4553}
4554
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004555static noinline_for_stack int
4556ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004557 struct ext4_free_data *new_entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05004558{
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004559 ext4_group_t group = e4b->bd_group;
Theodore Ts'o84130192011-09-09 18:50:51 -04004560 ext4_grpblk_t cluster;
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004561 struct ext4_free_data *entry;
Alex Tomasc9de5602008-01-29 00:19:52 -05004562 struct ext4_group_info *db = e4b->bd_info;
4563 struct super_block *sb = e4b->bd_sb;
4564 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004565 struct rb_node **n = &db->bb_free_root.rb_node, *node;
4566 struct rb_node *parent = NULL, *new_node;
4567
Frank Mayhar03901312009-01-07 00:06:22 -05004568 BUG_ON(!ext4_handle_valid(handle));
Alex Tomasc9de5602008-01-29 00:19:52 -05004569 BUG_ON(e4b->bd_bitmap_page == NULL);
4570 BUG_ON(e4b->bd_buddy_page == NULL);
4571
Bobi Jam18aadd42012-02-20 17:53:02 -05004572 new_node = &new_entry->efd_node;
4573 cluster = new_entry->efd_start_cluster;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004574
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004575 if (!*n) {
4576 /* first free block exent. We need to
4577 protect buddy cache from being freed,
4578 * otherwise we'll refresh it from
4579 * on-disk bitmap and lose not-yet-available
4580 * blocks */
4581 page_cache_get(e4b->bd_buddy_page);
4582 page_cache_get(e4b->bd_bitmap_page);
4583 }
4584 while (*n) {
4585 parent = *n;
Bobi Jam18aadd42012-02-20 17:53:02 -05004586 entry = rb_entry(parent, struct ext4_free_data, efd_node);
4587 if (cluster < entry->efd_start_cluster)
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004588 n = &(*n)->rb_left;
Bobi Jam18aadd42012-02-20 17:53:02 -05004589 else if (cluster >= (entry->efd_start_cluster + entry->efd_count))
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004590 n = &(*n)->rb_right;
4591 else {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004592 ext4_grp_locked_error(sb, group, 0,
Theodore Ts'o84130192011-09-09 18:50:51 -04004593 ext4_group_first_block_no(sb, group) +
4594 EXT4_C2B(sbi, cluster),
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004595 "Block already on to-be-freed list");
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004596 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004597 }
4598 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004599
4600 rb_link_node(new_node, parent, n);
4601 rb_insert_color(new_node, &db->bb_free_root);
4602
4603 /* Now try to see the extent can be merged to left and right */
4604 node = rb_prev(new_node);
4605 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004606 entry = rb_entry(node, struct ext4_free_data, efd_node);
Dmitry Monakhov5d3ee202013-04-03 22:08:52 -04004607 if (can_merge(entry, new_entry) &&
4608 ext4_journal_callback_try_del(handle, &entry->efd_jce)) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004609 new_entry->efd_start_cluster = entry->efd_start_cluster;
4610 new_entry->efd_count += entry->efd_count;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004611 rb_erase(node, &(db->bb_free_root));
Bobi Jam18aadd42012-02-20 17:53:02 -05004612 kmem_cache_free(ext4_free_data_cachep, entry);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004613 }
4614 }
4615
4616 node = rb_next(new_node);
4617 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004618 entry = rb_entry(node, struct ext4_free_data, efd_node);
Dmitry Monakhov5d3ee202013-04-03 22:08:52 -04004619 if (can_merge(new_entry, entry) &&
4620 ext4_journal_callback_try_del(handle, &entry->efd_jce)) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004621 new_entry->efd_count += entry->efd_count;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004622 rb_erase(node, &(db->bb_free_root));
Bobi Jam18aadd42012-02-20 17:53:02 -05004623 kmem_cache_free(ext4_free_data_cachep, entry);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004624 }
4625 }
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04004626 /* Add the extent to transaction's private list */
Bobi Jam18aadd42012-02-20 17:53:02 -05004627 ext4_journal_callback_add(handle, ext4_free_data_callback,
4628 &new_entry->efd_jce);
Alex Tomasc9de5602008-01-29 00:19:52 -05004629 return 0;
4630}
4631
Theodore Ts'o44338712009-11-22 07:44:56 -05004632/**
4633 * ext4_free_blocks() -- Free given blocks and update quota
4634 * @handle: handle for this transaction
4635 * @inode: inode
4636 * @block: start physical block to free
4637 * @count: number of blocks to count
Yongqiang Yang5def1362011-06-05 23:26:40 -04004638 * @flags: flags used by ext4_free_blocks
Alex Tomasc9de5602008-01-29 00:19:52 -05004639 */
Theodore Ts'o44338712009-11-22 07:44:56 -05004640void ext4_free_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'oe6362602009-11-23 07:17:05 -05004641 struct buffer_head *bh, ext4_fsblk_t block,
4642 unsigned long count, int flags)
Alex Tomasc9de5602008-01-29 00:19:52 -05004643{
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05004644 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004645 struct super_block *sb = inode->i_sb;
Alex Tomasc9de5602008-01-29 00:19:52 -05004646 struct ext4_group_desc *gdp;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004647 unsigned int overflow;
Alex Tomasc9de5602008-01-29 00:19:52 -05004648 ext4_grpblk_t bit;
4649 struct buffer_head *gd_bh;
4650 ext4_group_t block_group;
4651 struct ext4_sb_info *sbi;
4652 struct ext4_buddy e4b;
Theodore Ts'o84130192011-09-09 18:50:51 -04004653 unsigned int count_clusters;
Alex Tomasc9de5602008-01-29 00:19:52 -05004654 int err = 0;
4655 int ret;
4656
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04004657 might_sleep();
Theodore Ts'oe6362602009-11-23 07:17:05 -05004658 if (bh) {
4659 if (block)
4660 BUG_ON(block != bh->b_blocknr);
4661 else
4662 block = bh->b_blocknr;
4663 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004664
Alex Tomasc9de5602008-01-29 00:19:52 -05004665 sbi = EXT4_SB(sb);
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004666 if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
4667 !ext4_data_block_valid(sbi, block, count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004668 ext4_error(sb, "Freeing blocks not in datazone - "
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004669 "block = %llu, count = %lu", block, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004670 goto error_return;
4671 }
4672
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004673 ext4_debug("freeing block %llu\n", block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05004674 trace_ext4_free_blocks(inode, block, count, flags);
4675
4676 if (flags & EXT4_FREE_BLOCKS_FORGET) {
4677 struct buffer_head *tbh = bh;
4678 int i;
4679
4680 BUG_ON(bh && (count > 1));
4681
4682 for (i = 0; i < count; i++) {
Theodore Ts'o2ed57242013-06-12 11:43:02 -04004683 cond_resched();
Theodore Ts'oe6362602009-11-23 07:17:05 -05004684 if (!bh)
4685 tbh = sb_find_get_block(inode->i_sb,
4686 block + i);
Theodore Ts'o2ed57242013-06-12 11:43:02 -04004687 if (!tbh)
Namhyung Kim87783692010-10-27 21:30:11 -04004688 continue;
Theodore Ts'o60e66792010-05-17 07:00:00 -04004689 ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
Theodore Ts'oe6362602009-11-23 07:17:05 -05004690 inode, tbh, block + i);
4691 }
4692 }
4693
Theodore Ts'o60e66792010-05-17 07:00:00 -04004694 /*
Theodore Ts'oe6362602009-11-23 07:17:05 -05004695 * We need to make sure we don't reuse the freed block until
4696 * after the transaction is committed, which we can do by
4697 * treating the block as metadata, below. We make an
4698 * exception if the inode is to be written in writeback mode
4699 * since writeback mode has weak data consistency guarantees.
4700 */
4701 if (!ext4_should_writeback_data(inode))
4702 flags |= EXT4_FREE_BLOCKS_METADATA;
Alex Tomasc9de5602008-01-29 00:19:52 -05004703
Theodore Ts'o84130192011-09-09 18:50:51 -04004704 /*
4705 * If the extent to be freed does not begin on a cluster
4706 * boundary, we need to deal with partial clusters at the
4707 * beginning and end of the extent. Normally we will free
4708 * blocks at the beginning or the end unless we are explicitly
4709 * requested to avoid doing so.
4710 */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004711 overflow = EXT4_PBLK_COFF(sbi, block);
Theodore Ts'o84130192011-09-09 18:50:51 -04004712 if (overflow) {
4713 if (flags & EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER) {
4714 overflow = sbi->s_cluster_ratio - overflow;
4715 block += overflow;
4716 if (count > overflow)
4717 count -= overflow;
4718 else
4719 return;
4720 } else {
4721 block -= overflow;
4722 count += overflow;
4723 }
4724 }
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004725 overflow = EXT4_LBLK_COFF(sbi, count);
Theodore Ts'o84130192011-09-09 18:50:51 -04004726 if (overflow) {
4727 if (flags & EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER) {
4728 if (count > overflow)
4729 count -= overflow;
4730 else
4731 return;
4732 } else
4733 count += sbi->s_cluster_ratio - overflow;
4734 }
4735
Alex Tomasc9de5602008-01-29 00:19:52 -05004736do_more:
4737 overflow = 0;
4738 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
4739
Darrick J. Wong163a2032013-08-28 17:35:51 -04004740 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(
4741 ext4_get_group_info(sb, block_group))))
4742 return;
4743
Alex Tomasc9de5602008-01-29 00:19:52 -05004744 /*
4745 * Check to see if we are freeing blocks across a group
4746 * boundary.
4747 */
Theodore Ts'o84130192011-09-09 18:50:51 -04004748 if (EXT4_C2B(sbi, bit) + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4749 overflow = EXT4_C2B(sbi, bit) + count -
4750 EXT4_BLOCKS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004751 count -= overflow;
4752 }
Lukas Czerner810da242013-03-02 17:18:58 -05004753 count_clusters = EXT4_NUM_B2C(sbi, count);
Theodore Ts'o574ca172008-07-11 19:27:31 -04004754 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004755 if (!bitmap_bh) {
4756 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004757 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004758 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004759 gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004760 if (!gdp) {
4761 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004762 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004763 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004764
4765 if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
4766 in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
4767 in_range(block, ext4_inode_table(sb, gdp),
Theodore Ts'o84130192011-09-09 18:50:51 -04004768 EXT4_SB(sb)->s_itb_per_group) ||
Alex Tomasc9de5602008-01-29 00:19:52 -05004769 in_range(block + count - 1, ext4_inode_table(sb, gdp),
Theodore Ts'o84130192011-09-09 18:50:51 -04004770 EXT4_SB(sb)->s_itb_per_group)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004771
Eric Sandeen12062dd2010-02-15 14:19:27 -05004772 ext4_error(sb, "Freeing blocks in system zone - "
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004773 "Block = %llu, count = %lu", block, count);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04004774 /* err = 0. ext4_std_error should be a no op */
4775 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004776 }
4777
4778 BUFFER_TRACE(bitmap_bh, "getting write access");
4779 err = ext4_journal_get_write_access(handle, bitmap_bh);
4780 if (err)
4781 goto error_return;
4782
4783 /*
4784 * We are about to modify some metadata. Call the journal APIs
4785 * to unshare ->b_data if a currently-committing transaction is
4786 * using it
4787 */
4788 BUFFER_TRACE(gd_bh, "get_write_access");
4789 err = ext4_journal_get_write_access(handle, gd_bh);
4790 if (err)
4791 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004792#ifdef AGGRESSIVE_CHECK
4793 {
4794 int i;
Theodore Ts'o84130192011-09-09 18:50:51 -04004795 for (i = 0; i < count_clusters; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -05004796 BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
4797 }
4798#endif
Theodore Ts'o84130192011-09-09 18:50:51 -04004799 trace_ext4_mballoc_free(sb, inode, block_group, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05004800
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05004801 err = ext4_mb_load_buddy(sb, block_group, &e4b);
4802 if (err)
4803 goto error_return;
Theodore Ts'oe6362602009-11-23 07:17:05 -05004804
4805 if ((flags & EXT4_FREE_BLOCKS_METADATA) && ext4_handle_valid(handle)) {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004806 struct ext4_free_data *new_entry;
4807 /*
4808 * blocks being freed are metadata. these blocks shouldn't
4809 * be used until this transaction is committed
Michal Hocko908e6592015-07-05 12:33:44 -04004810 *
4811 * We use __GFP_NOFAIL because ext4_free_blocks() is not allowed
4812 * to fail.
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004813 */
Michal Hocko908e6592015-07-05 12:33:44 -04004814 new_entry = kmem_cache_alloc(ext4_free_data_cachep,
4815 GFP_NOFS|__GFP_NOFAIL);
Bobi Jam18aadd42012-02-20 17:53:02 -05004816 new_entry->efd_start_cluster = bit;
4817 new_entry->efd_group = block_group;
4818 new_entry->efd_count = count_clusters;
4819 new_entry->efd_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004820
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004821 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04004822 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004823 ext4_mb_free_metadata(handle, &e4b, new_entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05004824 } else {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004825 /* need to update group_info->bb_free and bitmap
4826 * with group lock held. generate_buddy look at
4827 * them with group lock_held
4828 */
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05004829 if (test_opt(sb, DISCARD)) {
4830 err = ext4_issue_discard(sb, block_group, bit, count);
4831 if (err && err != -EOPNOTSUPP)
4832 ext4_msg(sb, KERN_WARNING, "discard request in"
4833 " group:%d block:%d count:%lu failed"
4834 " with %d", block_group, bit, count,
4835 err);
Lukas Czerner8f9ff182013-10-30 11:10:52 -04004836 } else
4837 EXT4_MB_GRP_CLEAR_TRIMMED(e4b.bd_info);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05004838
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004839 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04004840 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
4841 mb_free_blocks(inode, &e4b, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05004842 }
4843
Theodore Ts'o021b65b2011-09-09 19:08:51 -04004844 ret = ext4_free_group_clusters(sb, gdp) + count_clusters;
4845 ext4_free_group_clusters_set(sb, gdp, ret);
Tao Ma79f1ba42012-10-22 00:34:32 -04004846 ext4_block_bitmap_csum_set(sb, block_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004847 ext4_group_desc_csum_set(sb, block_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004848 ext4_unlock_group(sb, block_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004849
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004850 if (sbi->s_log_groups_per_flex) {
4851 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04004852 atomic64_add(count_clusters,
4853 &sbi->s_flex_groups[flex_group].free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004854 }
4855
Theodore Ts'o71d4f7d2014-07-15 06:02:38 -04004856 if (!(flags & EXT4_FREE_BLOCKS_NO_QUOT_UPDATE))
Aditya Kali7b415bf2011-09-09 19:04:51 -04004857 dquot_free_block(inode, EXT4_C2B(sbi, count_clusters));
Jan Kara7d734532013-08-17 09:36:54 -04004858 percpu_counter_add(&sbi->s_freeclusters_counter, count_clusters);
4859
4860 ext4_mb_unload_buddy(&e4b);
Aditya Kali7b415bf2011-09-09 19:04:51 -04004861
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004862 /* We dirtied the bitmap block */
4863 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
4864 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
4865
Alex Tomasc9de5602008-01-29 00:19:52 -05004866 /* And the group descriptor block */
4867 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
Frank Mayhar03901312009-01-07 00:06:22 -05004868 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05004869 if (!err)
4870 err = ret;
4871
4872 if (overflow && !err) {
4873 block += count;
4874 count = overflow;
4875 put_bh(bitmap_bh);
4876 goto do_more;
4877 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004878error_return:
4879 brelse(bitmap_bh);
4880 ext4_std_error(sb, err);
Alex Tomasc9de5602008-01-29 00:19:52 -05004881 return;
4882}
Lukas Czerner7360d172010-10-27 21:30:12 -04004883
4884/**
Yongqiang Yang05291552011-07-26 21:43:56 -04004885 * ext4_group_add_blocks() -- Add given blocks to an existing group
Amir Goldstein2846e822011-05-09 10:46:41 -04004886 * @handle: handle to this transaction
4887 * @sb: super block
Anatol Pomozov4907cb72012-09-01 10:31:09 -07004888 * @block: start physical block to add to the block group
Amir Goldstein2846e822011-05-09 10:46:41 -04004889 * @count: number of blocks to free
4890 *
Amir Goldsteine73a3472011-05-09 21:40:01 -04004891 * This marks the blocks as free in the bitmap and buddy.
Amir Goldstein2846e822011-05-09 10:46:41 -04004892 */
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004893int ext4_group_add_blocks(handle_t *handle, struct super_block *sb,
Amir Goldstein2846e822011-05-09 10:46:41 -04004894 ext4_fsblk_t block, unsigned long count)
4895{
4896 struct buffer_head *bitmap_bh = NULL;
4897 struct buffer_head *gd_bh;
4898 ext4_group_t block_group;
4899 ext4_grpblk_t bit;
4900 unsigned int i;
4901 struct ext4_group_desc *desc;
4902 struct ext4_sb_info *sbi = EXT4_SB(sb);
Amir Goldsteine73a3472011-05-09 21:40:01 -04004903 struct ext4_buddy e4b;
Amir Goldstein2846e822011-05-09 10:46:41 -04004904 int err = 0, ret, blk_free_count;
4905 ext4_grpblk_t blocks_freed;
Amir Goldstein2846e822011-05-09 10:46:41 -04004906
4907 ext4_debug("Adding block(s) %llu-%llu\n", block, block + count - 1);
4908
Yongqiang Yang4740b832011-07-26 21:51:08 -04004909 if (count == 0)
4910 return 0;
4911
Amir Goldstein2846e822011-05-09 10:46:41 -04004912 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
Amir Goldstein2846e822011-05-09 10:46:41 -04004913 /*
4914 * Check to see if we are freeing blocks across a group
4915 * boundary.
4916 */
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004917 if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4918 ext4_warning(sb, "too much blocks added to group %u\n",
4919 block_group);
4920 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04004921 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004922 }
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04004923
Amir Goldstein2846e822011-05-09 10:46:41 -04004924 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004925 if (!bitmap_bh) {
4926 err = -EIO;
Amir Goldstein2846e822011-05-09 10:46:41 -04004927 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004928 }
4929
Amir Goldstein2846e822011-05-09 10:46:41 -04004930 desc = ext4_get_group_desc(sb, block_group, &gd_bh);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004931 if (!desc) {
4932 err = -EIO;
Amir Goldstein2846e822011-05-09 10:46:41 -04004933 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004934 }
Amir Goldstein2846e822011-05-09 10:46:41 -04004935
4936 if (in_range(ext4_block_bitmap(sb, desc), block, count) ||
4937 in_range(ext4_inode_bitmap(sb, desc), block, count) ||
4938 in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) ||
4939 in_range(block + count - 1, ext4_inode_table(sb, desc),
4940 sbi->s_itb_per_group)) {
4941 ext4_error(sb, "Adding blocks in system zones - "
4942 "Block = %llu, count = %lu",
4943 block, count);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04004944 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04004945 goto error_return;
4946 }
4947
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04004948 BUFFER_TRACE(bitmap_bh, "getting write access");
4949 err = ext4_journal_get_write_access(handle, bitmap_bh);
Amir Goldstein2846e822011-05-09 10:46:41 -04004950 if (err)
4951 goto error_return;
4952
4953 /*
4954 * We are about to modify some metadata. Call the journal APIs
4955 * to unshare ->b_data if a currently-committing transaction is
4956 * using it
4957 */
4958 BUFFER_TRACE(gd_bh, "get_write_access");
4959 err = ext4_journal_get_write_access(handle, gd_bh);
4960 if (err)
4961 goto error_return;
Amir Goldsteine73a3472011-05-09 21:40:01 -04004962
Amir Goldstein2846e822011-05-09 10:46:41 -04004963 for (i = 0, blocks_freed = 0; i < count; i++) {
4964 BUFFER_TRACE(bitmap_bh, "clear bit");
Amir Goldsteine73a3472011-05-09 21:40:01 -04004965 if (!mb_test_bit(bit + i, bitmap_bh->b_data)) {
Amir Goldstein2846e822011-05-09 10:46:41 -04004966 ext4_error(sb, "bit already cleared for block %llu",
4967 (ext4_fsblk_t)(block + i));
4968 BUFFER_TRACE(bitmap_bh, "bit already cleared");
4969 } else {
4970 blocks_freed++;
4971 }
4972 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04004973
4974 err = ext4_mb_load_buddy(sb, block_group, &e4b);
4975 if (err)
4976 goto error_return;
4977
4978 /*
4979 * need to update group_info->bb_free and bitmap
4980 * with group lock held. generate_buddy look at
4981 * them with group lock_held
4982 */
Amir Goldstein2846e822011-05-09 10:46:41 -04004983 ext4_lock_group(sb, block_group);
Amir Goldsteine73a3472011-05-09 21:40:01 -04004984 mb_clear_bits(bitmap_bh->b_data, bit, count);
4985 mb_free_blocks(NULL, &e4b, bit, count);
Theodore Ts'o021b65b2011-09-09 19:08:51 -04004986 blk_free_count = blocks_freed + ext4_free_group_clusters(sb, desc);
4987 ext4_free_group_clusters_set(sb, desc, blk_free_count);
Tao Ma79f1ba42012-10-22 00:34:32 -04004988 ext4_block_bitmap_csum_set(sb, block_group, desc, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004989 ext4_group_desc_csum_set(sb, block_group, desc);
Amir Goldstein2846e822011-05-09 10:46:41 -04004990 ext4_unlock_group(sb, block_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04004991 percpu_counter_add(&sbi->s_freeclusters_counter,
Lukas Czerner810da242013-03-02 17:18:58 -05004992 EXT4_NUM_B2C(sbi, blocks_freed));
Amir Goldstein2846e822011-05-09 10:46:41 -04004993
4994 if (sbi->s_log_groups_per_flex) {
4995 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04004996 atomic64_add(EXT4_NUM_B2C(sbi, blocks_freed),
4997 &sbi->s_flex_groups[flex_group].free_clusters);
Amir Goldstein2846e822011-05-09 10:46:41 -04004998 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04004999
5000 ext4_mb_unload_buddy(&e4b);
Amir Goldstein2846e822011-05-09 10:46:41 -04005001
5002 /* We dirtied the bitmap block */
5003 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
5004 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
5005
5006 /* And the group descriptor block */
5007 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
5008 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
5009 if (!err)
5010 err = ret;
5011
5012error_return:
5013 brelse(bitmap_bh);
5014 ext4_std_error(sb, err);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005015 return err;
Amir Goldstein2846e822011-05-09 10:46:41 -04005016}
5017
5018/**
Lukas Czerner7360d172010-10-27 21:30:12 -04005019 * ext4_trim_extent -- function to TRIM one single free extent in the group
5020 * @sb: super block for the file system
5021 * @start: starting block of the free extent in the alloc. group
5022 * @count: number of blocks to TRIM
5023 * @group: alloc. group we are working with
5024 * @e4b: ext4 buddy for the group
5025 *
5026 * Trim "count" blocks starting at "start" in the "group". To assure that no
5027 * one will allocate those blocks, mark it as used in buddy bitmap. This must
5028 * be called with under the group lock.
5029 */
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005030static int ext4_trim_extent(struct super_block *sb, int start, int count,
Theodore Ts'od9f34502011-04-30 13:47:24 -04005031 ext4_group_t group, struct ext4_buddy *e4b)
jon ernste2cbd582014-04-12 23:01:28 -04005032__releases(bitlock)
5033__acquires(bitlock)
Lukas Czerner7360d172010-10-27 21:30:12 -04005034{
5035 struct ext4_free_extent ex;
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005036 int ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005037
Tao Mab3d4c2b2011-07-11 00:01:52 -04005038 trace_ext4_trim_extent(sb, group, start, count);
5039
Lukas Czerner7360d172010-10-27 21:30:12 -04005040 assert_spin_locked(ext4_group_lock_ptr(sb, group));
5041
5042 ex.fe_start = start;
5043 ex.fe_group = group;
5044 ex.fe_len = count;
5045
5046 /*
5047 * Mark blocks used, so no one can reuse them while
5048 * being trimmed.
5049 */
5050 mb_mark_used(e4b, &ex);
5051 ext4_unlock_group(sb, group);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005052 ret = ext4_issue_discard(sb, group, start, count);
Lukas Czerner7360d172010-10-27 21:30:12 -04005053 ext4_lock_group(sb, group);
5054 mb_free_blocks(NULL, e4b, start, ex.fe_len);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005055 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04005056}
5057
5058/**
5059 * ext4_trim_all_free -- function to trim all free space in alloc. group
5060 * @sb: super block for file system
Tao Ma22612282011-07-11 00:04:34 -04005061 * @group: group to be trimmed
Lukas Czerner7360d172010-10-27 21:30:12 -04005062 * @start: first group block to examine
5063 * @max: last group block to examine
5064 * @minblocks: minimum extent block count
5065 *
5066 * ext4_trim_all_free walks through group's buddy bitmap searching for free
5067 * extents. When the free block is found, ext4_trim_extent is called to TRIM
5068 * the extent.
5069 *
5070 *
5071 * ext4_trim_all_free walks through group's block bitmap searching for free
5072 * extents. When the free extent is found, mark it as used in group buddy
5073 * bitmap. Then issue a TRIM command on this extent and free the extent in
5074 * the group buddy bitmap. This is done until whole group is scanned.
5075 */
Lukas Czerner0b75a842011-02-23 12:22:49 -05005076static ext4_grpblk_t
Lukas Czerner78944082011-05-24 18:16:27 -04005077ext4_trim_all_free(struct super_block *sb, ext4_group_t group,
5078 ext4_grpblk_t start, ext4_grpblk_t max,
5079 ext4_grpblk_t minblocks)
Lukas Czerner7360d172010-10-27 21:30:12 -04005080{
5081 void *bitmap;
Tao Ma169ddc32011-07-11 00:00:07 -04005082 ext4_grpblk_t next, count = 0, free_count = 0;
Lukas Czerner78944082011-05-24 18:16:27 -04005083 struct ext4_buddy e4b;
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005084 int ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005085
Tao Mab3d4c2b2011-07-11 00:01:52 -04005086 trace_ext4_trim_all_free(sb, group, start, max);
5087
Lukas Czerner78944082011-05-24 18:16:27 -04005088 ret = ext4_mb_load_buddy(sb, group, &e4b);
5089 if (ret) {
5090 ext4_error(sb, "Error in loading buddy "
5091 "information for %u", group);
5092 return ret;
5093 }
Lukas Czerner78944082011-05-24 18:16:27 -04005094 bitmap = e4b.bd_bitmap;
Lukas Czerner28739ee2011-05-24 18:28:07 -04005095
5096 ext4_lock_group(sb, group);
Tao Ma3d56b8d2011-07-11 00:03:38 -04005097 if (EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) &&
5098 minblocks >= atomic_read(&EXT4_SB(sb)->s_last_trim_minblks))
5099 goto out;
5100
Lukas Czerner78944082011-05-24 18:16:27 -04005101 start = (e4b.bd_info->bb_first_free > start) ?
5102 e4b.bd_info->bb_first_free : start;
Lukas Czerner7360d172010-10-27 21:30:12 -04005103
Lukas Czerner913eed832012-03-21 21:22:22 -04005104 while (start <= max) {
5105 start = mb_find_next_zero_bit(bitmap, max + 1, start);
5106 if (start > max)
Lukas Czerner7360d172010-10-27 21:30:12 -04005107 break;
Lukas Czerner913eed832012-03-21 21:22:22 -04005108 next = mb_find_next_bit(bitmap, max + 1, start);
Lukas Czerner7360d172010-10-27 21:30:12 -04005109
5110 if ((next - start) >= minblocks) {
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005111 ret = ext4_trim_extent(sb, start,
5112 next - start, group, &e4b);
5113 if (ret && ret != -EOPNOTSUPP)
5114 break;
5115 ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005116 count += next - start;
5117 }
Tao Ma169ddc32011-07-11 00:00:07 -04005118 free_count += next - start;
Lukas Czerner7360d172010-10-27 21:30:12 -04005119 start = next + 1;
5120
5121 if (fatal_signal_pending(current)) {
5122 count = -ERESTARTSYS;
5123 break;
5124 }
5125
5126 if (need_resched()) {
5127 ext4_unlock_group(sb, group);
5128 cond_resched();
5129 ext4_lock_group(sb, group);
5130 }
5131
Tao Ma169ddc32011-07-11 00:00:07 -04005132 if ((e4b.bd_info->bb_free - free_count) < minblocks)
Lukas Czerner7360d172010-10-27 21:30:12 -04005133 break;
5134 }
Tao Ma3d56b8d2011-07-11 00:03:38 -04005135
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005136 if (!ret) {
5137 ret = count;
Tao Ma3d56b8d2011-07-11 00:03:38 -04005138 EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005139 }
Tao Ma3d56b8d2011-07-11 00:03:38 -04005140out:
Lukas Czerner7360d172010-10-27 21:30:12 -04005141 ext4_unlock_group(sb, group);
Lukas Czerner78944082011-05-24 18:16:27 -04005142 ext4_mb_unload_buddy(&e4b);
Lukas Czerner7360d172010-10-27 21:30:12 -04005143
5144 ext4_debug("trimmed %d blocks in the group %d\n",
5145 count, group);
5146
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005147 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04005148}
5149
5150/**
5151 * ext4_trim_fs() -- trim ioctl handle function
5152 * @sb: superblock for filesystem
5153 * @range: fstrim_range structure
5154 *
5155 * start: First Byte to trim
5156 * len: number of Bytes to trim from start
5157 * minlen: minimum extent length in Bytes
5158 * ext4_trim_fs goes through all allocation groups containing Bytes from
5159 * start to start+len. For each such a group ext4_trim_all_free function
5160 * is invoked to trim all free space.
5161 */
5162int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range)
5163{
Lukas Czerner78944082011-05-24 18:16:27 -04005164 struct ext4_group_info *grp;
Lukas Czerner913eed832012-03-21 21:22:22 -04005165 ext4_group_t group, first_group, last_group;
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005166 ext4_grpblk_t cnt = 0, first_cluster, last_cluster;
Lukas Czerner913eed832012-03-21 21:22:22 -04005167 uint64_t start, end, minlen, trimmed = 0;
Jan Kara0f0a25b2011-01-11 15:16:31 -05005168 ext4_fsblk_t first_data_blk =
5169 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
Lukas Czerner913eed832012-03-21 21:22:22 -04005170 ext4_fsblk_t max_blks = ext4_blocks_count(EXT4_SB(sb)->s_es);
Lukas Czerner7360d172010-10-27 21:30:12 -04005171 int ret = 0;
5172
5173 start = range->start >> sb->s_blocksize_bits;
Lukas Czerner913eed832012-03-21 21:22:22 -04005174 end = start + (range->len >> sb->s_blocksize_bits) - 1;
Lukas Czerneraaf7d732012-09-26 22:21:21 -04005175 minlen = EXT4_NUM_B2C(EXT4_SB(sb),
5176 range->minlen >> sb->s_blocksize_bits);
Lukas Czerner7360d172010-10-27 21:30:12 -04005177
Lukas Czerner5de35e82012-10-22 18:01:19 -04005178 if (minlen > EXT4_CLUSTERS_PER_GROUP(sb) ||
5179 start >= max_blks ||
5180 range->len < sb->s_blocksize)
Lukas Czerner7360d172010-10-27 21:30:12 -04005181 return -EINVAL;
Lukas Czerner913eed832012-03-21 21:22:22 -04005182 if (end >= max_blks)
5183 end = max_blks - 1;
5184 if (end <= first_data_blk)
Tao Ma22f10452011-07-10 23:52:37 -04005185 goto out;
Lukas Czerner913eed832012-03-21 21:22:22 -04005186 if (start < first_data_blk)
Jan Kara0f0a25b2011-01-11 15:16:31 -05005187 start = first_data_blk;
Lukas Czerner7360d172010-10-27 21:30:12 -04005188
Lukas Czerner913eed832012-03-21 21:22:22 -04005189 /* Determine first and last group to examine based on start and end */
Lukas Czerner7360d172010-10-27 21:30:12 -04005190 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) start,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005191 &first_group, &first_cluster);
Lukas Czerner913eed832012-03-21 21:22:22 -04005192 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) end,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005193 &last_group, &last_cluster);
Lukas Czerner7360d172010-10-27 21:30:12 -04005194
Lukas Czerner913eed832012-03-21 21:22:22 -04005195 /* end now represents the last cluster to discard in this group */
5196 end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
Lukas Czerner7360d172010-10-27 21:30:12 -04005197
5198 for (group = first_group; group <= last_group; group++) {
Lukas Czerner78944082011-05-24 18:16:27 -04005199 grp = ext4_get_group_info(sb, group);
5200 /* We only do this if the grp has never been initialized */
5201 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
5202 ret = ext4_mb_init_group(sb, group);
5203 if (ret)
5204 break;
Lukas Czerner7360d172010-10-27 21:30:12 -04005205 }
5206
Tao Ma0ba08512011-03-23 15:48:11 -04005207 /*
Lukas Czerner913eed832012-03-21 21:22:22 -04005208 * For all the groups except the last one, last cluster will
5209 * always be EXT4_CLUSTERS_PER_GROUP(sb)-1, so we only need to
5210 * change it for the last group, note that last_cluster is
5211 * already computed earlier by ext4_get_group_no_and_offset()
Tao Ma0ba08512011-03-23 15:48:11 -04005212 */
Lukas Czerner913eed832012-03-21 21:22:22 -04005213 if (group == last_group)
5214 end = last_cluster;
Lukas Czerner7360d172010-10-27 21:30:12 -04005215
Lukas Czerner78944082011-05-24 18:16:27 -04005216 if (grp->bb_free >= minlen) {
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005217 cnt = ext4_trim_all_free(sb, group, first_cluster,
Lukas Czerner913eed832012-03-21 21:22:22 -04005218 end, minlen);
Lukas Czerner7360d172010-10-27 21:30:12 -04005219 if (cnt < 0) {
5220 ret = cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04005221 break;
5222 }
Lukas Czerner21e7fd22012-03-21 21:24:22 -04005223 trimmed += cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04005224 }
Lukas Czerner913eed832012-03-21 21:22:22 -04005225
5226 /*
5227 * For every group except the first one, we are sure
5228 * that the first cluster to discard will be cluster #0.
5229 */
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005230 first_cluster = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005231 }
Lukas Czerner7360d172010-10-27 21:30:12 -04005232
Tao Ma3d56b8d2011-07-11 00:03:38 -04005233 if (!ret)
5234 atomic_set(&EXT4_SB(sb)->s_last_trim_minblks, minlen);
5235
Tao Ma22f10452011-07-10 23:52:37 -04005236out:
Lukas Czerneraaf7d732012-09-26 22:21:21 -04005237 range->len = EXT4_C2B(EXT4_SB(sb), trimmed) << sb->s_blocksize_bits;
Lukas Czerner7360d172010-10-27 21:30:12 -04005238 return ret;
5239}