blob: 262a53f1d28313925497ec6eb141119df4d0e20c [file] [log] [blame]
Theodore Ts'of5166762017-12-17 22:00:59 -05001// SPDX-License-Identifier: GPL-2.0
Alex Tomasc9de5602008-01-29 00:19:52 -05002/*
3 * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
4 * Written by Alex Tomas <alex@clusterfs.com>
Alex Tomasc9de5602008-01-29 00:19:52 -05005 */
6
7
8/*
9 * mballoc.c contains the multiblocks allocation routines
10 */
11
Bobi Jam18aadd42012-02-20 17:53:02 -050012#include "ext4_jbd2.h"
Mingming Cao8f6e39a2008-04-29 22:01:31 -040013#include "mballoc.h"
Theodore Ts'o28623c22012-09-05 01:31:50 -040014#include <linux/log2.h>
Theodore Ts'oa0b30c12013-02-09 16:28:20 -050015#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Jeremy Cline1a5d5e52018-08-02 00:03:40 -040017#include <linux/nospec.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040018#include <linux/backing-dev.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040019#include <trace/events/ext4.h>
20
Theodore Ts'oa0b30c12013-02-09 16:28:20 -050021#ifdef CONFIG_EXT4_DEBUG
22ushort ext4_mballoc_debug __read_mostly;
23
24module_param_named(mballoc_debug, ext4_mballoc_debug, ushort, 0644);
25MODULE_PARM_DESC(mballoc_debug, "Debugging level for ext4's mballoc");
26#endif
27
Alex Tomasc9de5602008-01-29 00:19:52 -050028/*
29 * MUSTDO:
30 * - test ext4_ext_search_left() and ext4_ext_search_right()
31 * - search for metadata in few groups
32 *
33 * TODO v4:
34 * - normalization should take into account whether file is still open
35 * - discard preallocations if no free space left (policy?)
36 * - don't normalize tails
37 * - quota
38 * - reservation for superuser
39 *
40 * TODO v3:
41 * - bitmap read-ahead (proposed by Oleg Drokin aka green)
42 * - track min/max extents in each group for better group selection
43 * - mb_mark_used() may allocate chunk right after splitting buddy
44 * - tree of groups sorted by number of free blocks
45 * - error handling
46 */
47
48/*
49 * The allocation request involve request for multiple number of blocks
50 * near to the goal(block) value specified.
51 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040052 * During initialization phase of the allocator we decide to use the
53 * group preallocation or inode preallocation depending on the size of
54 * the file. The size of the file could be the resulting file size we
55 * would have after allocation, or the current file size, which ever
56 * is larger. If the size is less than sbi->s_mb_stream_request we
57 * select to use the group preallocation. The default value of
58 * s_mb_stream_request is 16 blocks. This can also be tuned via
59 * /sys/fs/ext4/<partition>/mb_stream_req. The value is represented in
60 * terms of number of blocks.
Alex Tomasc9de5602008-01-29 00:19:52 -050061 *
62 * The main motivation for having small file use group preallocation is to
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040063 * ensure that we have small files closer together on the disk.
Alex Tomasc9de5602008-01-29 00:19:52 -050064 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040065 * First stage the allocator looks at the inode prealloc list,
66 * ext4_inode_info->i_prealloc_list, which contains list of prealloc
67 * spaces for this particular inode. The inode prealloc space is
68 * represented as:
Alex Tomasc9de5602008-01-29 00:19:52 -050069 *
70 * pa_lstart -> the logical start block for this prealloc space
71 * pa_pstart -> the physical start block for this prealloc space
Theodore Ts'o53accfa2011-09-09 18:48:51 -040072 * pa_len -> length for this prealloc space (in clusters)
73 * pa_free -> free space available in this prealloc space (in clusters)
Alex Tomasc9de5602008-01-29 00:19:52 -050074 *
75 * The inode preallocation space is used looking at the _logical_ start
76 * block. If only the logical file block falls within the range of prealloc
Tao Macaaf7a22011-07-11 18:42:42 -040077 * space we will consume the particular prealloc space. This makes sure that
78 * we have contiguous physical blocks representing the file blocks
Alex Tomasc9de5602008-01-29 00:19:52 -050079 *
80 * The important thing to be noted in case of inode prealloc space is that
81 * we don't modify the values associated to inode prealloc space except
82 * pa_free.
83 *
84 * If we are not able to find blocks in the inode prealloc space and if we
85 * have the group allocation flag set then we look at the locality group
Tao Macaaf7a22011-07-11 18:42:42 -040086 * prealloc space. These are per CPU prealloc list represented as
Alex Tomasc9de5602008-01-29 00:19:52 -050087 *
88 * ext4_sb_info.s_locality_groups[smp_processor_id()]
89 *
90 * The reason for having a per cpu locality group is to reduce the contention
91 * between CPUs. It is possible to get scheduled at this point.
92 *
93 * The locality group prealloc space is used looking at whether we have
Lucas De Marchi25985ed2011-03-30 22:57:33 -030094 * enough free space (pa_free) within the prealloc space.
Alex Tomasc9de5602008-01-29 00:19:52 -050095 *
96 * If we can't allocate blocks via inode prealloc or/and locality group
97 * prealloc then we look at the buddy cache. The buddy cache is represented
98 * by ext4_sb_info.s_buddy_cache (struct inode) whose file offset gets
99 * mapped to the buddy and bitmap information regarding different
100 * groups. The buddy information is attached to buddy cache inode so that
101 * we can access them through the page cache. The information regarding
102 * each group is loaded via ext4_mb_load_buddy. The information involve
103 * block bitmap and buddy information. The information are stored in the
104 * inode as:
105 *
106 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500107 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500108 *
109 *
110 * one block each for bitmap and buddy information. So for each group we
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300111 * take up 2 blocks. A page can contain blocks_per_page (PAGE_SIZE /
Alex Tomasc9de5602008-01-29 00:19:52 -0500112 * blocksize) blocks. So it can have information regarding groups_per_page
113 * which is blocks_per_page/2
114 *
115 * The buddy cache inode is not stored on disk. The inode is thrown
116 * away when the filesystem is unmounted.
117 *
118 * We look for count number of blocks in the buddy cache. If we were able
119 * to locate that many free blocks we return with additional information
120 * regarding rest of the contiguous physical block available
121 *
122 * Before allocating blocks via buddy cache we normalize the request
123 * blocks. This ensure we ask for more blocks that we needed. The extra
124 * blocks that we get after allocation is added to the respective prealloc
125 * list. In case of inode preallocation we follow a list of heuristics
126 * based on file size. This can be found in ext4_mb_normalize_request. If
127 * we are doing a group prealloc we try to normalize the request to
Theodore Ts'o27baebb2011-09-09 19:02:51 -0400128 * sbi->s_mb_group_prealloc. The default value of s_mb_group_prealloc is
129 * dependent on the cluster size; for non-bigalloc file systems, it is
Alex Tomasc9de5602008-01-29 00:19:52 -0500130 * 512 blocks. This can be tuned via
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400131 * /sys/fs/ext4/<partition>/mb_group_prealloc. The value is represented in
Alex Tomasc9de5602008-01-29 00:19:52 -0500132 * terms of number of blocks. If we have mounted the file system with -O
133 * stripe=<value> option the group prealloc request is normalized to the
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400134 * the smallest multiple of the stripe value (sbi->s_stripe) which is
135 * greater than the default mb_group_prealloc.
Alex Tomasc9de5602008-01-29 00:19:52 -0500136 *
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400137 * The regular allocator (using the buddy cache) supports a few tunables.
Alex Tomasc9de5602008-01-29 00:19:52 -0500138 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400139 * /sys/fs/ext4/<partition>/mb_min_to_scan
140 * /sys/fs/ext4/<partition>/mb_max_to_scan
141 * /sys/fs/ext4/<partition>/mb_order2_req
Alex Tomasc9de5602008-01-29 00:19:52 -0500142 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400143 * The regular allocator uses buddy scan only if the request len is power of
Alex Tomasc9de5602008-01-29 00:19:52 -0500144 * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The
145 * value of s_mb_order2_reqs can be tuned via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400146 * /sys/fs/ext4/<partition>/mb_order2_req. If the request len is equal to
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200147 * stripe size (sbi->s_stripe), we try to search for contiguous block in
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400148 * stripe size. This should result in better allocation on RAID setups. If
149 * not, we search in the specific group using bitmap for best extents. The
150 * tunable min_to_scan and max_to_scan control the behaviour here.
Alex Tomasc9de5602008-01-29 00:19:52 -0500151 * min_to_scan indicate how long the mballoc __must__ look for a best
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400152 * extent and max_to_scan indicates how long the mballoc __can__ look for a
Alex Tomasc9de5602008-01-29 00:19:52 -0500153 * best extent in the found extents. Searching for the blocks starts with
154 * the group specified as the goal value in allocation context via
155 * ac_g_ex. Each group is first checked based on the criteria whether it
Tao Macaaf7a22011-07-11 18:42:42 -0400156 * can be used for allocation. ext4_mb_good_group explains how the groups are
Alex Tomasc9de5602008-01-29 00:19:52 -0500157 * checked.
158 *
159 * Both the prealloc space are getting populated as above. So for the first
160 * request we will hit the buddy cache which will result in this prealloc
161 * space getting filled. The prealloc space is then later used for the
162 * subsequent request.
163 */
164
165/*
166 * mballoc operates on the following data:
167 * - on-disk bitmap
168 * - in-core buddy (actually includes buddy and bitmap)
169 * - preallocation descriptors (PAs)
170 *
171 * there are two types of preallocations:
172 * - inode
173 * assiged to specific inode and can be used for this inode only.
174 * it describes part of inode's space preallocated to specific
175 * physical blocks. any block from that preallocated can be used
176 * independent. the descriptor just tracks number of blocks left
177 * unused. so, before taking some block from descriptor, one must
178 * make sure corresponded logical block isn't allocated yet. this
179 * also means that freeing any block within descriptor's range
180 * must discard all preallocated blocks.
181 * - locality group
182 * assigned to specific locality group which does not translate to
183 * permanent set of inodes: inode can join and leave group. space
184 * from this type of preallocation can be used for any inode. thus
185 * it's consumed from the beginning to the end.
186 *
187 * relation between them can be expressed as:
188 * in-core buddy = on-disk bitmap + preallocation descriptors
189 *
190 * this mean blocks mballoc considers used are:
191 * - allocated blocks (persistent)
192 * - preallocated blocks (non-persistent)
193 *
194 * consistency in mballoc world means that at any time a block is either
195 * free or used in ALL structures. notice: "any time" should not be read
196 * literally -- time is discrete and delimited by locks.
197 *
198 * to keep it simple, we don't use block numbers, instead we count number of
199 * blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA.
200 *
201 * all operations can be expressed as:
202 * - init buddy: buddy = on-disk + PAs
203 * - new PA: buddy += N; PA = N
204 * - use inode PA: on-disk += N; PA -= N
205 * - discard inode PA buddy -= on-disk - PA; PA = 0
206 * - use locality group PA on-disk += N; PA -= N
207 * - discard locality group PA buddy -= PA; PA = 0
208 * note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap
209 * is used in real operation because we can't know actual used
210 * bits from PA, only from on-disk bitmap
211 *
212 * if we follow this strict logic, then all operations above should be atomic.
213 * given some of them can block, we'd have to use something like semaphores
214 * killing performance on high-end SMP hardware. let's try to relax it using
215 * the following knowledge:
216 * 1) if buddy is referenced, it's already initialized
217 * 2) while block is used in buddy and the buddy is referenced,
218 * nobody can re-allocate that block
219 * 3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has
220 * bit set and PA claims same block, it's OK. IOW, one can set bit in
221 * on-disk bitmap if buddy has same bit set or/and PA covers corresponded
222 * block
223 *
224 * so, now we're building a concurrency table:
225 * - init buddy vs.
226 * - new PA
227 * blocks for PA are allocated in the buddy, buddy must be referenced
228 * until PA is linked to allocation group to avoid concurrent buddy init
229 * - use inode PA
230 * we need to make sure that either on-disk bitmap or PA has uptodate data
231 * given (3) we care that PA-=N operation doesn't interfere with init
232 * - discard inode PA
233 * the simplest way would be to have buddy initialized by the discard
234 * - use locality group PA
235 * again PA-=N must be serialized with init
236 * - discard locality group PA
237 * the simplest way would be to have buddy initialized by the discard
238 * - new PA vs.
239 * - use inode PA
240 * i_data_sem serializes them
241 * - discard inode PA
242 * discard process must wait until PA isn't used by another process
243 * - use locality group PA
244 * some mutex should serialize them
245 * - discard locality group PA
246 * discard process must wait until PA isn't used by another process
247 * - use inode PA
248 * - use inode PA
249 * i_data_sem or another mutex should serializes them
250 * - discard inode PA
251 * discard process must wait until PA isn't used by another process
252 * - use locality group PA
253 * nothing wrong here -- they're different PAs covering different blocks
254 * - discard locality group PA
255 * discard process must wait until PA isn't used by another process
256 *
257 * now we're ready to make few consequences:
258 * - PA is referenced and while it is no discard is possible
259 * - PA is referenced until block isn't marked in on-disk bitmap
260 * - PA changes only after on-disk bitmap
261 * - discard must not compete with init. either init is done before
262 * any discard or they're serialized somehow
263 * - buddy init as sum of on-disk bitmap and PAs is done atomically
264 *
265 * a special case when we've used PA to emptiness. no need to modify buddy
266 * in this case, but we should care about concurrent init
267 *
268 */
269
270 /*
271 * Logic in few words:
272 *
273 * - allocation:
274 * load group
275 * find blocks
276 * mark bits in on-disk bitmap
277 * release group
278 *
279 * - use preallocation:
280 * find proper PA (per-inode or group)
281 * load group
282 * mark bits in on-disk bitmap
283 * release group
284 * release PA
285 *
286 * - free:
287 * load group
288 * mark bits in on-disk bitmap
289 * release group
290 *
291 * - discard preallocations in group:
292 * mark PAs deleted
293 * move them onto local list
294 * load on-disk bitmap
295 * load group
296 * remove PA from object (inode or locality group)
297 * mark free blocks in-core
298 *
299 * - discard inode's preallocations:
300 */
301
302/*
303 * Locking rules
304 *
305 * Locks:
306 * - bitlock on a group (group)
307 * - object (inode/locality) (object)
308 * - per-pa lock (pa)
309 *
310 * Paths:
311 * - new pa
312 * object
313 * group
314 *
315 * - find and use pa:
316 * pa
317 *
318 * - release consumed pa:
319 * pa
320 * group
321 * object
322 *
323 * - generate in-core bitmap:
324 * group
325 * pa
326 *
327 * - discard all for given object (inode, locality group):
328 * object
329 * pa
330 * group
331 *
332 * - discard all for given group:
333 * group
334 * pa
335 * group
336 * object
337 *
338 */
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500339static struct kmem_cache *ext4_pspace_cachep;
340static struct kmem_cache *ext4_ac_cachep;
Bobi Jam18aadd42012-02-20 17:53:02 -0500341static struct kmem_cache *ext4_free_data_cachep;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400342
343/* We create slab caches for groupinfo data structures based on the
344 * superblock block size. There will be one per mounted filesystem for
345 * each unique s_blocksize_bits */
Eric Sandeen2892c152011-02-12 08:12:18 -0500346#define NR_GRPINFO_CACHES 8
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400347static struct kmem_cache *ext4_groupinfo_caches[NR_GRPINFO_CACHES];
348
Eric Biggersd6006182017-04-29 23:47:50 -0400349static const char * const ext4_groupinfo_slab_names[NR_GRPINFO_CACHES] = {
Eric Sandeen2892c152011-02-12 08:12:18 -0500350 "ext4_groupinfo_1k", "ext4_groupinfo_2k", "ext4_groupinfo_4k",
351 "ext4_groupinfo_8k", "ext4_groupinfo_16k", "ext4_groupinfo_32k",
352 "ext4_groupinfo_64k", "ext4_groupinfo_128k"
353};
354
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500355static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
356 ext4_group_t group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500357static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
358 ext4_group_t group);
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500359
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500360static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
361{
Alex Tomasc9de5602008-01-29 00:19:52 -0500362#if BITS_PER_LONG == 64
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500363 *bit += ((unsigned long) addr & 7UL) << 3;
364 addr = (void *) ((unsigned long) addr & ~7UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500365#elif BITS_PER_LONG == 32
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500366 *bit += ((unsigned long) addr & 3UL) << 3;
367 addr = (void *) ((unsigned long) addr & ~3UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500368#else
369#error "how many bits you are?!"
370#endif
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500371 return addr;
372}
Alex Tomasc9de5602008-01-29 00:19:52 -0500373
374static inline int mb_test_bit(int bit, void *addr)
375{
376 /*
377 * ext4_test_bit on architecture like powerpc
378 * needs unsigned long aligned address
379 */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500380 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500381 return ext4_test_bit(bit, addr);
382}
383
384static inline void mb_set_bit(int bit, void *addr)
385{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500386 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500387 ext4_set_bit(bit, addr);
388}
389
Alex Tomasc9de5602008-01-29 00:19:52 -0500390static inline void mb_clear_bit(int bit, void *addr)
391{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500392 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500393 ext4_clear_bit(bit, addr);
394}
395
Andrey Sidoroveabe0442013-04-09 12:22:29 -0400396static inline int mb_test_and_clear_bit(int bit, void *addr)
397{
398 addr = mb_correct_addr_and_bit(&bit, addr);
399 return ext4_test_and_clear_bit(bit, addr);
400}
401
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500402static inline int mb_find_next_zero_bit(void *addr, int max, int start)
403{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400404 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500405 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400406 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500407 start += fix;
408
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400409 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix;
410 if (ret > max)
411 return max;
412 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500413}
414
415static inline int mb_find_next_bit(void *addr, int max, int start)
416{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400417 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500418 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400419 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500420 start += fix;
421
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400422 ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
423 if (ret > max)
424 return max;
425 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500426}
427
Alex Tomasc9de5602008-01-29 00:19:52 -0500428static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
429{
430 char *bb;
431
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500432 BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
Alex Tomasc9de5602008-01-29 00:19:52 -0500433 BUG_ON(max == NULL);
434
435 if (order > e4b->bd_blkbits + 1) {
436 *max = 0;
437 return NULL;
438 }
439
440 /* at order 0 we see each particular block */
Coly Li84b775a2011-02-24 12:51:59 -0500441 if (order == 0) {
442 *max = 1 << (e4b->bd_blkbits + 3);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500443 return e4b->bd_bitmap;
Coly Li84b775a2011-02-24 12:51:59 -0500444 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500445
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500446 bb = e4b->bd_buddy + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
Alex Tomasc9de5602008-01-29 00:19:52 -0500447 *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
448
449 return bb;
450}
451
452#ifdef DOUBLE_CHECK
453static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
454 int first, int count)
455{
456 int i;
457 struct super_block *sb = e4b->bd_sb;
458
459 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
460 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400461 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500462 for (i = 0; i < count; i++) {
463 if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
464 ext4_fsblk_t blocknr;
Akinobu Mita5661bd62010-03-03 23:53:39 -0500465
466 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Theodore Ts'o53accfa2011-09-09 18:48:51 -0400467 blocknr += EXT4_C2B(EXT4_SB(sb), first + i);
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500468 ext4_grp_locked_error(sb, e4b->bd_group,
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400469 inode ? inode->i_ino : 0,
470 blocknr,
471 "freeing block already freed "
472 "(bit %u)",
473 first + i);
Wang Shilong736dedb2018-05-12 12:37:58 -0400474 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
475 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Alex Tomasc9de5602008-01-29 00:19:52 -0500476 }
477 mb_clear_bit(first + i, e4b->bd_info->bb_bitmap);
478 }
479}
480
481static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count)
482{
483 int i;
484
485 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
486 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400487 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500488 for (i = 0; i < count; i++) {
489 BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap));
490 mb_set_bit(first + i, e4b->bd_info->bb_bitmap);
491 }
492}
493
494static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
495{
496 if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) {
497 unsigned char *b1, *b2;
498 int i;
499 b1 = (unsigned char *) e4b->bd_info->bb_bitmap;
500 b2 = (unsigned char *) bitmap;
501 for (i = 0; i < e4b->bd_sb->s_blocksize; i++) {
502 if (b1[i] != b2[i]) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -0400503 ext4_msg(e4b->bd_sb, KERN_ERR,
504 "corruption in group %u "
505 "at byte %u(%u): %x in copy != %x "
506 "on disk/prealloc",
507 e4b->bd_group, i, i * 8, b1[i], b2[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500508 BUG();
509 }
510 }
511 }
512}
513
514#else
515static inline void mb_free_blocks_double(struct inode *inode,
516 struct ext4_buddy *e4b, int first, int count)
517{
518 return;
519}
520static inline void mb_mark_used_double(struct ext4_buddy *e4b,
521 int first, int count)
522{
523 return;
524}
525static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
526{
527 return;
528}
529#endif
530
531#ifdef AGGRESSIVE_CHECK
532
533#define MB_CHECK_ASSERT(assert) \
534do { \
535 if (!(assert)) { \
536 printk(KERN_EMERG \
537 "Assertion failure in %s() at %s:%d: \"%s\"\n", \
538 function, file, line, # assert); \
539 BUG(); \
540 } \
541} while (0)
542
543static int __mb_check_buddy(struct ext4_buddy *e4b, char *file,
544 const char *function, int line)
545{
546 struct super_block *sb = e4b->bd_sb;
547 int order = e4b->bd_blkbits + 1;
548 int max;
549 int max2;
550 int i;
551 int j;
552 int k;
553 int count;
554 struct ext4_group_info *grp;
555 int fragments = 0;
556 int fstart;
557 struct list_head *cur;
558 void *buddy;
559 void *buddy2;
560
Alex Tomasc9de5602008-01-29 00:19:52 -0500561 {
562 static int mb_check_counter;
563 if (mb_check_counter++ % 100 != 0)
564 return 0;
565 }
566
567 while (order > 1) {
568 buddy = mb_find_buddy(e4b, order, &max);
569 MB_CHECK_ASSERT(buddy);
570 buddy2 = mb_find_buddy(e4b, order - 1, &max2);
571 MB_CHECK_ASSERT(buddy2);
572 MB_CHECK_ASSERT(buddy != buddy2);
573 MB_CHECK_ASSERT(max * 2 == max2);
574
575 count = 0;
576 for (i = 0; i < max; i++) {
577
578 if (mb_test_bit(i, buddy)) {
579 /* only single bit in buddy2 may be 1 */
580 if (!mb_test_bit(i << 1, buddy2)) {
581 MB_CHECK_ASSERT(
582 mb_test_bit((i<<1)+1, buddy2));
583 } else if (!mb_test_bit((i << 1) + 1, buddy2)) {
584 MB_CHECK_ASSERT(
585 mb_test_bit(i << 1, buddy2));
586 }
587 continue;
588 }
589
Robin Dong0a10da72011-10-26 08:48:54 -0400590 /* both bits in buddy2 must be 1 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500591 MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2));
592 MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2));
593
594 for (j = 0; j < (1 << order); j++) {
595 k = (i * (1 << order)) + j;
596 MB_CHECK_ASSERT(
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500597 !mb_test_bit(k, e4b->bd_bitmap));
Alex Tomasc9de5602008-01-29 00:19:52 -0500598 }
599 count++;
600 }
601 MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count);
602 order--;
603 }
604
605 fstart = -1;
606 buddy = mb_find_buddy(e4b, 0, &max);
607 for (i = 0; i < max; i++) {
608 if (!mb_test_bit(i, buddy)) {
609 MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free);
610 if (fstart == -1) {
611 fragments++;
612 fstart = i;
613 }
614 continue;
615 }
616 fstart = -1;
617 /* check used bits only */
618 for (j = 0; j < e4b->bd_blkbits + 1; j++) {
619 buddy2 = mb_find_buddy(e4b, j, &max2);
620 k = i >> j;
621 MB_CHECK_ASSERT(k < max2);
622 MB_CHECK_ASSERT(mb_test_bit(k, buddy2));
623 }
624 }
625 MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info));
626 MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments);
627
628 grp = ext4_get_group_info(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500629 list_for_each(cur, &grp->bb_prealloc_list) {
630 ext4_group_t groupnr;
631 struct ext4_prealloc_space *pa;
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400632 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
633 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k);
Alex Tomasc9de5602008-01-29 00:19:52 -0500634 MB_CHECK_ASSERT(groupnr == e4b->bd_group);
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400635 for (i = 0; i < pa->pa_len; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500636 MB_CHECK_ASSERT(mb_test_bit(k + i, buddy));
637 }
638 return 0;
639}
640#undef MB_CHECK_ASSERT
641#define mb_check_buddy(e4b) __mb_check_buddy(e4b, \
Harvey Harrison46e665e2008-04-17 10:38:59 -0400642 __FILE__, __func__, __LINE__)
Alex Tomasc9de5602008-01-29 00:19:52 -0500643#else
644#define mb_check_buddy(e4b)
645#endif
646
Coly Li7c786052011-02-24 13:24:25 -0500647/*
648 * Divide blocks started from @first with length @len into
649 * smaller chunks with power of 2 blocks.
650 * Clear the bits in bitmap which the blocks of the chunk(s) covered,
651 * then increase bb_counters[] for corresponded chunk size.
652 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500653static void ext4_mb_mark_free_simple(struct super_block *sb,
Eric Sandeena36b4492009-08-25 22:36:45 -0400654 void *buddy, ext4_grpblk_t first, ext4_grpblk_t len,
Alex Tomasc9de5602008-01-29 00:19:52 -0500655 struct ext4_group_info *grp)
656{
657 struct ext4_sb_info *sbi = EXT4_SB(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400658 ext4_grpblk_t min;
659 ext4_grpblk_t max;
660 ext4_grpblk_t chunk;
Chandan Rajendra69e43e82016-11-14 21:04:37 -0500661 unsigned int border;
Alex Tomasc9de5602008-01-29 00:19:52 -0500662
Theodore Ts'o7137d7a2011-09-09 18:38:51 -0400663 BUG_ON(len > EXT4_CLUSTERS_PER_GROUP(sb));
Alex Tomasc9de5602008-01-29 00:19:52 -0500664
665 border = 2 << sb->s_blocksize_bits;
666
667 while (len > 0) {
668 /* find how many blocks can be covered since this position */
669 max = ffs(first | border) - 1;
670
671 /* find how many blocks of power 2 we need to mark */
672 min = fls(len) - 1;
673
674 if (max < min)
675 min = max;
676 chunk = 1 << min;
677
678 /* mark multiblock chunks only */
679 grp->bb_counters[min]++;
680 if (min > 0)
681 mb_clear_bit(first >> min,
682 buddy + sbi->s_mb_offsets[min]);
683
684 len -= chunk;
685 first += chunk;
686 }
687}
688
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400689/*
690 * Cache the order of the largest free extent we have available in this block
691 * group.
692 */
693static void
694mb_set_largest_free_order(struct super_block *sb, struct ext4_group_info *grp)
695{
696 int i;
697 int bits;
698
699 grp->bb_largest_free_order = -1; /* uninit */
700
701 bits = sb->s_blocksize_bits + 1;
702 for (i = bits; i >= 0; i--) {
703 if (grp->bb_counters[i] > 0) {
704 grp->bb_largest_free_order = i;
705 break;
706 }
707 }
708}
709
Eric Sandeen089ceec2009-07-05 22:17:31 -0400710static noinline_for_stack
711void ext4_mb_generate_buddy(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -0500712 void *buddy, void *bitmap, ext4_group_t group)
713{
714 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
Namjae Jeone43bb4e2014-06-26 10:11:53 -0400715 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -0400716 ext4_grpblk_t max = EXT4_CLUSTERS_PER_GROUP(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400717 ext4_grpblk_t i = 0;
718 ext4_grpblk_t first;
719 ext4_grpblk_t len;
Alex Tomasc9de5602008-01-29 00:19:52 -0500720 unsigned free = 0;
721 unsigned fragments = 0;
722 unsigned long long period = get_cycles();
723
724 /* initialize buddy from bitmap which is aggregation
725 * of on-disk bitmap and preallocations */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500726 i = mb_find_next_zero_bit(bitmap, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -0500727 grp->bb_first_free = i;
728 while (i < max) {
729 fragments++;
730 first = i;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500731 i = mb_find_next_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500732 len = i - first;
733 free += len;
734 if (len > 1)
735 ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
736 else
737 grp->bb_counters[0]++;
738 if (i < max)
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500739 i = mb_find_next_zero_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500740 }
741 grp->bb_fragments = fragments;
742
743 if (free != grp->bb_free) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400744 ext4_grp_locked_error(sb, group, 0, 0,
Theodore Ts'o94d4c062014-07-05 19:15:50 -0400745 "block bitmap and bg descriptor "
746 "inconsistent: %u vs %u free clusters",
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400747 free, grp->bb_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500748 /*
Darrick J. Wong163a2032013-08-28 17:35:51 -0400749 * If we intend to continue, we consider group descriptor
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500750 * corrupt and update bb_free using bitmap value
751 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500752 grp->bb_free = free;
Wang Shilongdb79e6d2018-05-12 11:39:40 -0400753 ext4_mark_group_bitmap_corrupted(sb, group,
754 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Alex Tomasc9de5602008-01-29 00:19:52 -0500755 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400756 mb_set_largest_free_order(sb, grp);
Alex Tomasc9de5602008-01-29 00:19:52 -0500757
758 clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
759
760 period = get_cycles() - period;
Jun Piao49598e02018-01-11 13:17:49 -0500761 spin_lock(&sbi->s_bal_lock);
762 sbi->s_mb_buddies_generated++;
763 sbi->s_mb_generation_time += period;
764 spin_unlock(&sbi->s_bal_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -0500765}
766
Andrey Sidoroveabe0442013-04-09 12:22:29 -0400767static void mb_regenerate_buddy(struct ext4_buddy *e4b)
768{
769 int count;
770 int order = 1;
771 void *buddy;
772
773 while ((buddy = mb_find_buddy(e4b, order++, &count))) {
774 ext4_set_bits(buddy, 0, count);
775 }
776 e4b->bd_info->bb_fragments = 0;
777 memset(e4b->bd_info->bb_counters, 0,
778 sizeof(*e4b->bd_info->bb_counters) *
779 (e4b->bd_sb->s_blocksize_bits + 2));
780
781 ext4_mb_generate_buddy(e4b->bd_sb, e4b->bd_buddy,
782 e4b->bd_bitmap, e4b->bd_group);
783}
784
Alex Tomasc9de5602008-01-29 00:19:52 -0500785/* The buddy information is attached the buddy cache inode
786 * for convenience. The information regarding each group
787 * is loaded via ext4_mb_load_buddy. The information involve
788 * block bitmap and buddy information. The information are
789 * stored in the inode as
790 *
791 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500792 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500793 *
794 *
795 * one block each for bitmap and buddy information.
796 * So for each group we take up 2 blocks. A page can
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300797 * contain blocks_per_page (PAGE_SIZE / blocksize) blocks.
Alex Tomasc9de5602008-01-29 00:19:52 -0500798 * So it can have information regarding groups_per_page which
799 * is blocks_per_page/2
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400800 *
801 * Locking note: This routine takes the block group lock of all groups
802 * for this page; do not hold this lock when calling this routine!
Alex Tomasc9de5602008-01-29 00:19:52 -0500803 */
804
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -0400805static int ext4_mb_init_cache(struct page *page, char *incore, gfp_t gfp)
Alex Tomasc9de5602008-01-29 00:19:52 -0500806{
Theodore Ts'o8df96752009-05-01 08:50:38 -0400807 ext4_group_t ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -0500808 int blocksize;
809 int blocks_per_page;
810 int groups_per_page;
811 int err = 0;
812 int i;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500813 ext4_group_t first_group, group;
Alex Tomasc9de5602008-01-29 00:19:52 -0500814 int first_block;
815 struct super_block *sb;
816 struct buffer_head *bhs;
Darrick J. Wongfa77dcf2012-04-29 18:35:10 -0400817 struct buffer_head **bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -0500818 struct inode *inode;
819 char *data;
820 char *bitmap;
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400821 struct ext4_group_info *grinfo;
Alex Tomasc9de5602008-01-29 00:19:52 -0500822
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400823 mb_debug(1, "init page %lu\n", page->index);
Alex Tomasc9de5602008-01-29 00:19:52 -0500824
825 inode = page->mapping->host;
826 sb = inode->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400827 ngroups = ext4_get_groups_count(sb);
Fabian Frederick93407472017-02-27 14:28:32 -0800828 blocksize = i_blocksize(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300829 blocks_per_page = PAGE_SIZE / blocksize;
Alex Tomasc9de5602008-01-29 00:19:52 -0500830
831 groups_per_page = blocks_per_page >> 1;
832 if (groups_per_page == 0)
833 groups_per_page = 1;
834
835 /* allocate buffer_heads to read bitmaps */
836 if (groups_per_page > 1) {
Alex Tomasc9de5602008-01-29 00:19:52 -0500837 i = sizeof(struct buffer_head *) * groups_per_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -0400838 bh = kzalloc(i, gfp);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500839 if (bh == NULL) {
840 err = -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -0500841 goto out;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500842 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500843 } else
844 bh = &bhs;
845
846 first_group = page->index * blocks_per_page / 2;
847
848 /* read all groups the page covers into the cache */
Theodore Ts'o813e5722012-02-20 17:52:46 -0500849 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
850 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500851 break;
852
Theodore Ts'o813e5722012-02-20 17:52:46 -0500853 grinfo = ext4_get_group_info(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400854 /*
855 * If page is uptodate then we came here after online resize
856 * which added some new uninitialized group info structs, so
857 * we must skip all initialized uptodate buddies on the page,
858 * which may be currently in use by an allocating task.
859 */
860 if (PageUptodate(page) && !EXT4_MB_GRP_NEED_INIT(grinfo)) {
861 bh[i] = NULL;
862 continue;
863 }
Darrick J. Wong9008a582015-10-17 21:33:24 -0400864 bh[i] = ext4_read_block_bitmap_nowait(sb, group);
865 if (IS_ERR(bh[i])) {
866 err = PTR_ERR(bh[i]);
867 bh[i] = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -0500868 goto out;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500869 }
Theodore Ts'o813e5722012-02-20 17:52:46 -0500870 mb_debug(1, "read bitmap for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500871 }
872
873 /* wait for I/O completion */
Theodore Ts'o813e5722012-02-20 17:52:46 -0500874 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
Darrick J. Wong9008a582015-10-17 21:33:24 -0400875 int err2;
876
877 if (!bh[i])
878 continue;
879 err2 = ext4_wait_block_bitmap(sb, group, bh[i]);
880 if (!err)
881 err = err2;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500882 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500883
884 first_block = page->index * blocks_per_page;
885 for (i = 0; i < blocks_per_page; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -0500886 group = (first_block + i) >> 1;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400887 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500888 break;
889
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400890 if (!bh[group - first_group])
891 /* skip initialized uptodate buddy */
892 continue;
893
Lukas Czernerbbdc3222015-06-08 11:38:37 -0400894 if (!buffer_verified(bh[group - first_group]))
895 /* Skip faulty bitmaps */
896 continue;
897 err = 0;
898
Alex Tomasc9de5602008-01-29 00:19:52 -0500899 /*
900 * data carry information regarding this
901 * particular group in the format specified
902 * above
903 *
904 */
905 data = page_address(page) + (i * blocksize);
906 bitmap = bh[group - first_group]->b_data;
907
908 /*
909 * We place the buddy block and bitmap block
910 * close together
911 */
912 if ((first_block + i) & 1) {
913 /* this is block of buddy */
914 BUG_ON(incore == NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400915 mb_debug(1, "put buddy for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500916 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400917 trace_ext4_mb_buddy_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500918 grinfo = ext4_get_group_info(sb, group);
919 grinfo->bb_fragments = 0;
920 memset(grinfo->bb_counters, 0,
Eric Sandeen19278052009-08-25 22:36:25 -0400921 sizeof(*grinfo->bb_counters) *
922 (sb->s_blocksize_bits+2));
Alex Tomasc9de5602008-01-29 00:19:52 -0500923 /*
924 * incore got set to the group block bitmap below
925 */
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500926 ext4_lock_group(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400927 /* init the buddy */
928 memset(data, 0xff, blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -0500929 ext4_mb_generate_buddy(sb, data, incore, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500930 ext4_unlock_group(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500931 incore = NULL;
932 } else {
933 /* this is block of bitmap */
934 BUG_ON(incore != NULL);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -0400935 mb_debug(1, "put bitmap for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500936 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400937 trace_ext4_mb_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500938
939 /* see comments in ext4_mb_put_pa() */
940 ext4_lock_group(sb, group);
941 memcpy(data, bitmap, blocksize);
942
943 /* mark all preallocated blks used in in-core bitmap */
944 ext4_mb_generate_from_pa(sb, data, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500945 ext4_mb_generate_from_freelist(sb, data, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500946 ext4_unlock_group(sb, group);
947
948 /* set incore so that the buddy information can be
949 * generated using this
950 */
951 incore = data;
952 }
953 }
954 SetPageUptodate(page);
955
956out:
957 if (bh) {
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400958 for (i = 0; i < groups_per_page; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500959 brelse(bh[i]);
960 if (bh != &bhs)
961 kfree(bh);
962 }
963 return err;
964}
965
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400966/*
Amir Goldstein2de88072011-05-09 21:48:13 -0400967 * Lock the buddy and bitmap pages. This make sure other parallel init_group
968 * on the same buddy page doesn't happen whild holding the buddy page lock.
969 * Return locked buddy and bitmap pages on e4b struct. If buddy and bitmap
970 * are on the same page e4b->bd_buddy_page is NULL and return value is 0.
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400971 */
Amir Goldstein2de88072011-05-09 21:48:13 -0400972static int ext4_mb_get_buddy_page_lock(struct super_block *sb,
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -0400973 ext4_group_t group, struct ext4_buddy *e4b, gfp_t gfp)
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400974{
Amir Goldstein2de88072011-05-09 21:48:13 -0400975 struct inode *inode = EXT4_SB(sb)->s_buddy_cache;
976 int block, pnum, poff;
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400977 int blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -0400978 struct page *page;
979
980 e4b->bd_buddy_page = NULL;
981 e4b->bd_bitmap_page = NULL;
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400982
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300983 blocks_per_page = PAGE_SIZE / sb->s_blocksize;
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400984 /*
985 * the buddy cache inode stores the block bitmap
986 * and buddy information in consecutive blocks.
987 * So for each group we need two blocks.
988 */
989 block = group * 2;
990 pnum = block / blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -0400991 poff = block % blocks_per_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -0400992 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -0400993 if (!page)
Younger Liuc57ab392014-04-10 23:03:43 -0400994 return -ENOMEM;
Amir Goldstein2de88072011-05-09 21:48:13 -0400995 BUG_ON(page->mapping != inode->i_mapping);
996 e4b->bd_bitmap_page = page;
997 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
Eric Sandeeneee4adc2010-10-27 21:30:15 -0400998
Amir Goldstein2de88072011-05-09 21:48:13 -0400999 if (blocks_per_page >= 2) {
1000 /* buddy and bitmap are on the same page */
1001 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001002 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001003
1004 block++;
1005 pnum = block / blocks_per_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001006 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001007 if (!page)
Younger Liuc57ab392014-04-10 23:03:43 -04001008 return -ENOMEM;
Amir Goldstein2de88072011-05-09 21:48:13 -04001009 BUG_ON(page->mapping != inode->i_mapping);
1010 e4b->bd_buddy_page = page;
1011 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001012}
1013
Amir Goldstein2de88072011-05-09 21:48:13 -04001014static void ext4_mb_put_buddy_page_lock(struct ext4_buddy *e4b)
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001015{
Amir Goldstein2de88072011-05-09 21:48:13 -04001016 if (e4b->bd_bitmap_page) {
1017 unlock_page(e4b->bd_bitmap_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001018 put_page(e4b->bd_bitmap_page);
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001019 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001020 if (e4b->bd_buddy_page) {
1021 unlock_page(e4b->bd_buddy_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001022 put_page(e4b->bd_buddy_page);
Amir Goldstein2de88072011-05-09 21:48:13 -04001023 }
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001024}
1025
1026/*
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001027 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1028 * block group lock of all groups for this page; do not hold the BG lock when
1029 * calling this routine!
1030 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001031static noinline_for_stack
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001032int ext4_mb_init_group(struct super_block *sb, ext4_group_t group, gfp_t gfp)
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001033{
1034
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001035 struct ext4_group_info *this_grp;
Amir Goldstein2de88072011-05-09 21:48:13 -04001036 struct ext4_buddy e4b;
1037 struct page *page;
1038 int ret = 0;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001039
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001040 might_sleep();
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001041 mb_debug(1, "init group %u\n", group);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001042 this_grp = ext4_get_group_info(sb, group);
1043 /*
Aneesh Kumar K.V08c3a812009-09-09 23:50:17 -04001044 * This ensures that we don't reinit the buddy cache
1045 * page which map to the group from which we are already
1046 * allocating. If we are looking at the buddy cache we would
1047 * have taken a reference using ext4_mb_load_buddy and that
Amir Goldstein2de88072011-05-09 21:48:13 -04001048 * would have pinned buddy page to page cache.
Mel Gorman2457aec2014-06-04 16:10:31 -07001049 * The call to ext4_mb_get_buddy_page_lock will mark the
1050 * page accessed.
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001051 */
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001052 ret = ext4_mb_get_buddy_page_lock(sb, group, &e4b, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001053 if (ret || !EXT4_MB_GRP_NEED_INIT(this_grp)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001054 /*
1055 * somebody initialized the group
1056 * return without doing anything
1057 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001058 goto err;
1059 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001060
1061 page = e4b.bd_bitmap_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001062 ret = ext4_mb_init_cache(page, NULL, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001063 if (ret)
1064 goto err;
1065 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001066 ret = -EIO;
1067 goto err;
1068 }
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001069
Amir Goldstein2de88072011-05-09 21:48:13 -04001070 if (e4b.bd_buddy_page == NULL) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001071 /*
1072 * If both the bitmap and buddy are in
1073 * the same page we don't need to force
1074 * init the buddy
1075 */
Amir Goldstein2de88072011-05-09 21:48:13 -04001076 ret = 0;
1077 goto err;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001078 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001079 /* init buddy cache */
1080 page = e4b.bd_buddy_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001081 ret = ext4_mb_init_cache(page, e4b.bd_bitmap, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001082 if (ret)
1083 goto err;
1084 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001085 ret = -EIO;
1086 goto err;
1087 }
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001088err:
Amir Goldstein2de88072011-05-09 21:48:13 -04001089 ext4_mb_put_buddy_page_lock(&e4b);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001090 return ret;
1091}
1092
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001093/*
1094 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1095 * block group lock of all groups for this page; do not hold the BG lock when
1096 * calling this routine!
1097 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04001098static noinline_for_stack int
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001099ext4_mb_load_buddy_gfp(struct super_block *sb, ext4_group_t group,
1100 struct ext4_buddy *e4b, gfp_t gfp)
Alex Tomasc9de5602008-01-29 00:19:52 -05001101{
Alex Tomasc9de5602008-01-29 00:19:52 -05001102 int blocks_per_page;
1103 int block;
1104 int pnum;
1105 int poff;
1106 struct page *page;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001107 int ret;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001108 struct ext4_group_info *grp;
1109 struct ext4_sb_info *sbi = EXT4_SB(sb);
1110 struct inode *inode = sbi->s_buddy_cache;
Alex Tomasc9de5602008-01-29 00:19:52 -05001111
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001112 might_sleep();
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04001113 mb_debug(1, "load group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001114
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001115 blocks_per_page = PAGE_SIZE / sb->s_blocksize;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001116 grp = ext4_get_group_info(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001117
1118 e4b->bd_blkbits = sb->s_blocksize_bits;
Tao Ma529da702011-07-23 16:07:26 -04001119 e4b->bd_info = grp;
Alex Tomasc9de5602008-01-29 00:19:52 -05001120 e4b->bd_sb = sb;
1121 e4b->bd_group = group;
1122 e4b->bd_buddy_page = NULL;
1123 e4b->bd_bitmap_page = NULL;
1124
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001125 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001126 /*
1127 * we need full data about the group
1128 * to make a good selection
1129 */
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001130 ret = ext4_mb_init_group(sb, group, gfp);
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001131 if (ret)
1132 return ret;
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001133 }
1134
Alex Tomasc9de5602008-01-29 00:19:52 -05001135 /*
1136 * the buddy cache inode stores the block bitmap
1137 * and buddy information in consecutive blocks.
1138 * So for each group we need two blocks.
1139 */
1140 block = group * 2;
1141 pnum = block / blocks_per_page;
1142 poff = block % blocks_per_page;
1143
1144 /* we could use find_or_create_page(), but it locks page
1145 * what we'd like to avoid in fast path ... */
Mel Gorman2457aec2014-06-04 16:10:31 -07001146 page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
Alex Tomasc9de5602008-01-29 00:19:52 -05001147 if (page == NULL || !PageUptodate(page)) {
1148 if (page)
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001149 /*
1150 * drop the page reference and try
1151 * to get the page with lock. If we
1152 * are not uptodate that implies
1153 * somebody just created the page but
1154 * is yet to initialize the same. So
1155 * wait for it to initialize.
1156 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001157 put_page(page);
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001158 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001159 if (page) {
1160 BUG_ON(page->mapping != inode->i_mapping);
1161 if (!PageUptodate(page)) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001162 ret = ext4_mb_init_cache(page, NULL, gfp);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001163 if (ret) {
1164 unlock_page(page);
1165 goto err;
1166 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001167 mb_cmp_bitmaps(e4b, page_address(page) +
1168 (poff * sb->s_blocksize));
1169 }
1170 unlock_page(page);
1171 }
1172 }
Younger Liuc57ab392014-04-10 23:03:43 -04001173 if (page == NULL) {
1174 ret = -ENOMEM;
1175 goto err;
1176 }
1177 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001178 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001179 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001180 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001181
1182 /* Pages marked accessed already */
Alex Tomasc9de5602008-01-29 00:19:52 -05001183 e4b->bd_bitmap_page = page;
1184 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -05001185
1186 block++;
1187 pnum = block / blocks_per_page;
1188 poff = block % blocks_per_page;
1189
Mel Gorman2457aec2014-06-04 16:10:31 -07001190 page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
Alex Tomasc9de5602008-01-29 00:19:52 -05001191 if (page == NULL || !PageUptodate(page)) {
1192 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001193 put_page(page);
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001194 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001195 if (page) {
1196 BUG_ON(page->mapping != inode->i_mapping);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001197 if (!PageUptodate(page)) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001198 ret = ext4_mb_init_cache(page, e4b->bd_bitmap,
1199 gfp);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001200 if (ret) {
1201 unlock_page(page);
1202 goto err;
1203 }
1204 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001205 unlock_page(page);
1206 }
1207 }
Younger Liuc57ab392014-04-10 23:03:43 -04001208 if (page == NULL) {
1209 ret = -ENOMEM;
1210 goto err;
1211 }
1212 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001213 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001214 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001215 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001216
1217 /* Pages marked accessed already */
Alex Tomasc9de5602008-01-29 00:19:52 -05001218 e4b->bd_buddy_page = page;
1219 e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -05001220
1221 BUG_ON(e4b->bd_bitmap_page == NULL);
1222 BUG_ON(e4b->bd_buddy_page == NULL);
1223
1224 return 0;
1225
1226err:
Yang Ruirui26626f112011-04-16 19:17:48 -04001227 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001228 put_page(page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001229 if (e4b->bd_bitmap_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001230 put_page(e4b->bd_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001231 if (e4b->bd_buddy_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001232 put_page(e4b->bd_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001233 e4b->bd_buddy = NULL;
1234 e4b->bd_bitmap = NULL;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001235 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05001236}
1237
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001238static int ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
1239 struct ext4_buddy *e4b)
1240{
1241 return ext4_mb_load_buddy_gfp(sb, group, e4b, GFP_NOFS);
1242}
1243
Jing Zhange39e07f2010-05-14 00:00:00 -04001244static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001245{
1246 if (e4b->bd_bitmap_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001247 put_page(e4b->bd_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001248 if (e4b->bd_buddy_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001249 put_page(e4b->bd_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001250}
1251
1252
1253static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1254{
1255 int order = 1;
Nicolai Stangeb5cb3162016-05-05 17:38:03 -04001256 int bb_incr = 1 << (e4b->bd_blkbits - 1);
Alex Tomasc9de5602008-01-29 00:19:52 -05001257 void *bb;
1258
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001259 BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
Alex Tomasc9de5602008-01-29 00:19:52 -05001260 BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1261
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001262 bb = e4b->bd_buddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05001263 while (order <= e4b->bd_blkbits + 1) {
1264 block = block >> 1;
1265 if (!mb_test_bit(block, bb)) {
1266 /* this block is part of buddy of order 'order' */
1267 return order;
1268 }
Nicolai Stangeb5cb3162016-05-05 17:38:03 -04001269 bb += bb_incr;
1270 bb_incr >>= 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001271 order++;
1272 }
1273 return 0;
1274}
1275
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001276static void mb_clear_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001277{
1278 __u32 *addr;
1279
1280 len = cur + len;
1281 while (cur < len) {
1282 if ((cur & 31) == 0 && (len - cur) >= 32) {
1283 /* fast path: clear whole word at once */
1284 addr = bm + (cur >> 3);
1285 *addr = 0;
1286 cur += 32;
1287 continue;
1288 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001289 mb_clear_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001290 cur++;
1291 }
1292}
1293
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001294/* clear bits in given range
1295 * will return first found zero bit if any, -1 otherwise
1296 */
1297static int mb_test_and_clear_bits(void *bm, int cur, int len)
1298{
1299 __u32 *addr;
1300 int zero_bit = -1;
1301
1302 len = cur + len;
1303 while (cur < len) {
1304 if ((cur & 31) == 0 && (len - cur) >= 32) {
1305 /* fast path: clear whole word at once */
1306 addr = bm + (cur >> 3);
1307 if (*addr != (__u32)(-1) && zero_bit == -1)
1308 zero_bit = cur + mb_find_next_zero_bit(addr, 32, 0);
1309 *addr = 0;
1310 cur += 32;
1311 continue;
1312 }
1313 if (!mb_test_and_clear_bit(cur, bm) && zero_bit == -1)
1314 zero_bit = cur;
1315 cur++;
1316 }
1317
1318 return zero_bit;
1319}
1320
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04001321void ext4_set_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001322{
1323 __u32 *addr;
1324
1325 len = cur + len;
1326 while (cur < len) {
1327 if ((cur & 31) == 0 && (len - cur) >= 32) {
1328 /* fast path: set whole word at once */
1329 addr = bm + (cur >> 3);
1330 *addr = 0xffffffff;
1331 cur += 32;
1332 continue;
1333 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001334 mb_set_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001335 cur++;
1336 }
1337}
1338
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001339/*
1340 * _________________________________________________________________ */
1341
1342static inline int mb_buddy_adjust_border(int* bit, void* bitmap, int side)
Alex Tomasc9de5602008-01-29 00:19:52 -05001343{
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001344 if (mb_test_bit(*bit + side, bitmap)) {
1345 mb_clear_bit(*bit, bitmap);
1346 (*bit) -= side;
1347 return 1;
1348 }
1349 else {
1350 (*bit) += side;
1351 mb_set_bit(*bit, bitmap);
1352 return -1;
1353 }
1354}
1355
1356static void mb_buddy_mark_free(struct ext4_buddy *e4b, int first, int last)
1357{
1358 int max;
1359 int order = 1;
1360 void *buddy = mb_find_buddy(e4b, order, &max);
1361
1362 while (buddy) {
1363 void *buddy2;
1364
1365 /* Bits in range [first; last] are known to be set since
1366 * corresponding blocks were allocated. Bits in range
1367 * (first; last) will stay set because they form buddies on
1368 * upper layer. We just deal with borders if they don't
1369 * align with upper layer and then go up.
1370 * Releasing entire group is all about clearing
1371 * single bit of highest order buddy.
1372 */
1373
1374 /* Example:
1375 * ---------------------------------
1376 * | 1 | 1 | 1 | 1 |
1377 * ---------------------------------
1378 * | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
1379 * ---------------------------------
1380 * 0 1 2 3 4 5 6 7
1381 * \_____________________/
1382 *
1383 * Neither [1] nor [6] is aligned to above layer.
1384 * Left neighbour [0] is free, so mark it busy,
1385 * decrease bb_counters and extend range to
1386 * [0; 6]
1387 * Right neighbour [7] is busy. It can't be coaleasced with [6], so
1388 * mark [6] free, increase bb_counters and shrink range to
1389 * [0; 5].
1390 * Then shift range to [0; 2], go up and do the same.
1391 */
1392
1393
1394 if (first & 1)
1395 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&first, buddy, -1);
1396 if (!(last & 1))
1397 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&last, buddy, 1);
1398 if (first > last)
1399 break;
1400 order++;
1401
1402 if (first == last || !(buddy2 = mb_find_buddy(e4b, order, &max))) {
1403 mb_clear_bits(buddy, first, last - first + 1);
1404 e4b->bd_info->bb_counters[order - 1] += last - first + 1;
1405 break;
1406 }
1407 first >>= 1;
1408 last >>= 1;
1409 buddy = buddy2;
1410 }
1411}
1412
1413static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
1414 int first, int count)
1415{
1416 int left_is_free = 0;
1417 int right_is_free = 0;
1418 int block;
1419 int last = first + count - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001420 struct super_block *sb = e4b->bd_sb;
1421
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04001422 if (WARN_ON(count == 0))
1423 return;
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001424 BUG_ON(last >= (sb->s_blocksize << 3));
Vincent Minetbc8e6742009-05-15 08:33:18 -04001425 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Darrick J. Wong163a2032013-08-28 17:35:51 -04001426 /* Don't bother if the block group is corrupt. */
1427 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info)))
1428 return;
1429
Alex Tomasc9de5602008-01-29 00:19:52 -05001430 mb_check_buddy(e4b);
1431 mb_free_blocks_double(inode, e4b, first, count);
1432
1433 e4b->bd_info->bb_free += count;
1434 if (first < e4b->bd_info->bb_first_free)
1435 e4b->bd_info->bb_first_free = first;
1436
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001437 /* access memory sequentially: check left neighbour,
1438 * clear range and then check right neighbour
1439 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001440 if (first != 0)
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001441 left_is_free = !mb_test_bit(first - 1, e4b->bd_bitmap);
1442 block = mb_test_and_clear_bits(e4b->bd_bitmap, first, count);
1443 if (last + 1 < EXT4_SB(sb)->s_mb_maxs[0])
1444 right_is_free = !mb_test_bit(last + 1, e4b->bd_bitmap);
1445
1446 if (unlikely(block != -1)) {
Namjae Jeone43bb4e2014-06-26 10:11:53 -04001447 struct ext4_sb_info *sbi = EXT4_SB(sb);
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001448 ext4_fsblk_t blocknr;
1449
1450 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Jun Piao49598e02018-01-11 13:17:49 -05001451 blocknr += EXT4_C2B(sbi, block);
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001452 ext4_grp_locked_error(sb, e4b->bd_group,
1453 inode ? inode->i_ino : 0,
1454 blocknr,
1455 "freeing already freed block "
Darrick J. Wong163a2032013-08-28 17:35:51 -04001456 "(bit %u); block bitmap corrupt.",
1457 block);
Wang Shilongdb79e6d2018-05-12 11:39:40 -04001458 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
1459 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001460 mb_regenerate_buddy(e4b);
1461 goto done;
1462 }
1463
1464 /* let's maintain fragments counter */
1465 if (left_is_free && right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001466 e4b->bd_info->bb_fragments--;
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001467 else if (!left_is_free && !right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001468 e4b->bd_info->bb_fragments++;
1469
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001470 /* buddy[0] == bd_bitmap is a special case, so handle
1471 * it right away and let mb_buddy_mark_free stay free of
1472 * zero order checks.
1473 * Check if neighbours are to be coaleasced,
1474 * adjust bitmap bb_counters and borders appropriately.
1475 */
1476 if (first & 1) {
1477 first += !left_is_free;
1478 e4b->bd_info->bb_counters[0] += left_is_free ? -1 : 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001479 }
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001480 if (!(last & 1)) {
1481 last -= !right_is_free;
1482 e4b->bd_info->bb_counters[0] += right_is_free ? -1 : 1;
1483 }
1484
1485 if (first <= last)
1486 mb_buddy_mark_free(e4b, first >> 1, last >> 1);
1487
1488done:
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001489 mb_set_largest_free_order(sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001490 mb_check_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001491}
1492
Robin Dong15c006a2012-08-17 10:02:17 -04001493static int mb_find_extent(struct ext4_buddy *e4b, int block,
Alex Tomasc9de5602008-01-29 00:19:52 -05001494 int needed, struct ext4_free_extent *ex)
1495{
1496 int next = block;
Robin Dong15c006a2012-08-17 10:02:17 -04001497 int max, order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001498 void *buddy;
1499
Vincent Minetbc8e6742009-05-15 08:33:18 -04001500 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001501 BUG_ON(ex == NULL);
1502
Robin Dong15c006a2012-08-17 10:02:17 -04001503 buddy = mb_find_buddy(e4b, 0, &max);
Alex Tomasc9de5602008-01-29 00:19:52 -05001504 BUG_ON(buddy == NULL);
1505 BUG_ON(block >= max);
1506 if (mb_test_bit(block, buddy)) {
1507 ex->fe_len = 0;
1508 ex->fe_start = 0;
1509 ex->fe_group = 0;
1510 return 0;
1511 }
1512
Robin Dong15c006a2012-08-17 10:02:17 -04001513 /* find actual order */
1514 order = mb_find_order_for_block(e4b, block);
1515 block = block >> order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001516
1517 ex->fe_len = 1 << order;
1518 ex->fe_start = block << order;
1519 ex->fe_group = e4b->bd_group;
1520
1521 /* calc difference from given start */
1522 next = next - ex->fe_start;
1523 ex->fe_len -= next;
1524 ex->fe_start += next;
1525
1526 while (needed > ex->fe_len &&
Alan Coxd8ec0c32012-11-08 12:19:58 -05001527 mb_find_buddy(e4b, order, &max)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001528
1529 if (block + 1 >= max)
1530 break;
1531
1532 next = (block + 1) * (1 << order);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001533 if (mb_test_bit(next, e4b->bd_bitmap))
Alex Tomasc9de5602008-01-29 00:19:52 -05001534 break;
1535
Robin Dongb051d8d2011-10-26 05:30:30 -04001536 order = mb_find_order_for_block(e4b, next);
Alex Tomasc9de5602008-01-29 00:19:52 -05001537
Alex Tomasc9de5602008-01-29 00:19:52 -05001538 block = next >> order;
1539 ex->fe_len += 1 << order;
1540 }
1541
Jan Kara31562b92019-04-06 18:33:06 -04001542 if (ex->fe_start + ex->fe_len > EXT4_CLUSTERS_PER_GROUP(e4b->bd_sb)) {
Theodore Ts'o43c73222017-01-22 19:35:52 -05001543 /* Should never happen! (but apparently sometimes does?!?) */
1544 WARN_ON(1);
1545 ext4_error(e4b->bd_sb, "corruption or bug in mb_find_extent "
1546 "block=%d, order=%d needed=%d ex=%u/%d/%d@%u",
1547 block, order, needed, ex->fe_group, ex->fe_start,
1548 ex->fe_len, ex->fe_logical);
1549 ex->fe_len = 0;
1550 ex->fe_start = 0;
1551 ex->fe_group = 0;
1552 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001553 return ex->fe_len;
1554}
1555
1556static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1557{
1558 int ord;
1559 int mlen = 0;
1560 int max = 0;
1561 int cur;
1562 int start = ex->fe_start;
1563 int len = ex->fe_len;
1564 unsigned ret = 0;
1565 int len0 = len;
1566 void *buddy;
1567
1568 BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1569 BUG_ON(e4b->bd_group != ex->fe_group);
Vincent Minetbc8e6742009-05-15 08:33:18 -04001570 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001571 mb_check_buddy(e4b);
1572 mb_mark_used_double(e4b, start, len);
1573
1574 e4b->bd_info->bb_free -= len;
1575 if (e4b->bd_info->bb_first_free == start)
1576 e4b->bd_info->bb_first_free += len;
1577
1578 /* let's maintain fragments counter */
1579 if (start != 0)
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001580 mlen = !mb_test_bit(start - 1, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001581 if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001582 max = !mb_test_bit(start + len, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001583 if (mlen && max)
1584 e4b->bd_info->bb_fragments++;
1585 else if (!mlen && !max)
1586 e4b->bd_info->bb_fragments--;
1587
1588 /* let's maintain buddy itself */
1589 while (len) {
1590 ord = mb_find_order_for_block(e4b, start);
1591
1592 if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1593 /* the whole chunk may be allocated at once! */
1594 mlen = 1 << ord;
1595 buddy = mb_find_buddy(e4b, ord, &max);
1596 BUG_ON((start >> ord) >= max);
1597 mb_set_bit(start >> ord, buddy);
1598 e4b->bd_info->bb_counters[ord]--;
1599 start += mlen;
1600 len -= mlen;
1601 BUG_ON(len < 0);
1602 continue;
1603 }
1604
1605 /* store for history */
1606 if (ret == 0)
1607 ret = len | (ord << 16);
1608
1609 /* we have to split large buddy */
1610 BUG_ON(ord <= 0);
1611 buddy = mb_find_buddy(e4b, ord, &max);
1612 mb_set_bit(start >> ord, buddy);
1613 e4b->bd_info->bb_counters[ord]--;
1614
1615 ord--;
1616 cur = (start >> ord) & ~1U;
1617 buddy = mb_find_buddy(e4b, ord, &max);
1618 mb_clear_bit(cur, buddy);
1619 mb_clear_bit(cur + 1, buddy);
1620 e4b->bd_info->bb_counters[ord]++;
1621 e4b->bd_info->bb_counters[ord]++;
1622 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001623 mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001624
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001625 ext4_set_bits(e4b->bd_bitmap, ex->fe_start, len0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001626 mb_check_buddy(e4b);
1627
1628 return ret;
1629}
1630
1631/*
1632 * Must be called under group lock!
1633 */
1634static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
1635 struct ext4_buddy *e4b)
1636{
1637 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1638 int ret;
1639
1640 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
1641 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1642
1643 ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
1644 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
1645 ret = mb_mark_used(e4b, &ac->ac_b_ex);
1646
1647 /* preallocation can change ac_b_ex, thus we store actually
1648 * allocated blocks for history */
1649 ac->ac_f_ex = ac->ac_b_ex;
1650
1651 ac->ac_status = AC_STATUS_FOUND;
1652 ac->ac_tail = ret & 0xffff;
1653 ac->ac_buddy = ret >> 16;
1654
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -05001655 /*
1656 * take the page reference. We want the page to be pinned
1657 * so that we don't get a ext4_mb_init_cache_call for this
1658 * group until we update the bitmap. That would mean we
1659 * double allocate blocks. The reference is dropped
1660 * in ext4_mb_release_context
1661 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001662 ac->ac_bitmap_page = e4b->bd_bitmap_page;
1663 get_page(ac->ac_bitmap_page);
1664 ac->ac_buddy_page = e4b->bd_buddy_page;
1665 get_page(ac->ac_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001666 /* store last allocated for subsequent stream allocation */
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04001667 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001668 spin_lock(&sbi->s_md_lock);
1669 sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
1670 sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
1671 spin_unlock(&sbi->s_md_lock);
1672 }
1673}
1674
1675/*
1676 * regular allocator, for general purposes allocation
1677 */
1678
1679static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
1680 struct ext4_buddy *e4b,
1681 int finish_group)
1682{
1683 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1684 struct ext4_free_extent *bex = &ac->ac_b_ex;
1685 struct ext4_free_extent *gex = &ac->ac_g_ex;
1686 struct ext4_free_extent ex;
1687 int max;
1688
Aneesh Kumar K.V032115f2009-01-05 21:34:30 -05001689 if (ac->ac_status == AC_STATUS_FOUND)
1690 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05001691 /*
1692 * We don't want to scan for a whole year
1693 */
1694 if (ac->ac_found > sbi->s_mb_max_to_scan &&
1695 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1696 ac->ac_status = AC_STATUS_BREAK;
1697 return;
1698 }
1699
1700 /*
1701 * Haven't found good chunk so far, let's continue
1702 */
1703 if (bex->fe_len < gex->fe_len)
1704 return;
1705
1706 if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
1707 && bex->fe_group == e4b->bd_group) {
1708 /* recheck chunk's availability - we don't know
1709 * when it was found (within this lock-unlock
1710 * period or not) */
Robin Dong15c006a2012-08-17 10:02:17 -04001711 max = mb_find_extent(e4b, bex->fe_start, gex->fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001712 if (max >= gex->fe_len) {
1713 ext4_mb_use_best_found(ac, e4b);
1714 return;
1715 }
1716 }
1717}
1718
1719/*
1720 * The routine checks whether found extent is good enough. If it is,
1721 * then the extent gets marked used and flag is set to the context
1722 * to stop scanning. Otherwise, the extent is compared with the
1723 * previous found extent and if new one is better, then it's stored
1724 * in the context. Later, the best found extent will be used, if
1725 * mballoc can't find good enough extent.
1726 *
1727 * FIXME: real allocation policy is to be designed yet!
1728 */
1729static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
1730 struct ext4_free_extent *ex,
1731 struct ext4_buddy *e4b)
1732{
1733 struct ext4_free_extent *bex = &ac->ac_b_ex;
1734 struct ext4_free_extent *gex = &ac->ac_g_ex;
1735
1736 BUG_ON(ex->fe_len <= 0);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001737 BUG_ON(ex->fe_len > EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
1738 BUG_ON(ex->fe_start >= EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05001739 BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
1740
1741 ac->ac_found++;
1742
1743 /*
1744 * The special case - take what you catch first
1745 */
1746 if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1747 *bex = *ex;
1748 ext4_mb_use_best_found(ac, e4b);
1749 return;
1750 }
1751
1752 /*
1753 * Let's check whether the chuck is good enough
1754 */
1755 if (ex->fe_len == gex->fe_len) {
1756 *bex = *ex;
1757 ext4_mb_use_best_found(ac, e4b);
1758 return;
1759 }
1760
1761 /*
1762 * If this is first found extent, just store it in the context
1763 */
1764 if (bex->fe_len == 0) {
1765 *bex = *ex;
1766 return;
1767 }
1768
1769 /*
1770 * If new found extent is better, store it in the context
1771 */
1772 if (bex->fe_len < gex->fe_len) {
1773 /* if the request isn't satisfied, any found extent
1774 * larger than previous best one is better */
1775 if (ex->fe_len > bex->fe_len)
1776 *bex = *ex;
1777 } else if (ex->fe_len > gex->fe_len) {
1778 /* if the request is satisfied, then we try to find
1779 * an extent that still satisfy the request, but is
1780 * smaller than previous one */
1781 if (ex->fe_len < bex->fe_len)
1782 *bex = *ex;
1783 }
1784
1785 ext4_mb_check_limits(ac, e4b, 0);
1786}
1787
Eric Sandeen089ceec2009-07-05 22:17:31 -04001788static noinline_for_stack
1789int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001790 struct ext4_buddy *e4b)
1791{
1792 struct ext4_free_extent ex = ac->ac_b_ex;
1793 ext4_group_t group = ex.fe_group;
1794 int max;
1795 int err;
1796
1797 BUG_ON(ex.fe_len <= 0);
1798 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1799 if (err)
1800 return err;
1801
1802 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04001803 max = mb_find_extent(e4b, ex.fe_start, ex.fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001804
1805 if (max > 0) {
1806 ac->ac_b_ex = ex;
1807 ext4_mb_use_best_found(ac, e4b);
1808 }
1809
1810 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001811 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001812
1813 return 0;
1814}
1815
Eric Sandeen089ceec2009-07-05 22:17:31 -04001816static noinline_for_stack
1817int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001818 struct ext4_buddy *e4b)
1819{
1820 ext4_group_t group = ac->ac_g_ex.fe_group;
1821 int max;
1822 int err;
1823 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04001824 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001825 struct ext4_free_extent ex;
1826
1827 if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
1828 return 0;
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04001829 if (grp->bb_free == 0)
1830 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05001831
1832 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1833 if (err)
1834 return err;
1835
Darrick J. Wong163a2032013-08-28 17:35:51 -04001836 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info))) {
1837 ext4_mb_unload_buddy(e4b);
1838 return 0;
1839 }
1840
Alex Tomasc9de5602008-01-29 00:19:52 -05001841 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04001842 max = mb_find_extent(e4b, ac->ac_g_ex.fe_start,
Alex Tomasc9de5602008-01-29 00:19:52 -05001843 ac->ac_g_ex.fe_len, &ex);
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05001844 ex.fe_logical = 0xDEADFA11; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05001845
1846 if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
1847 ext4_fsblk_t start;
1848
Akinobu Mita5661bd62010-03-03 23:53:39 -05001849 start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
1850 ex.fe_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05001851 /* use do_div to get remainder (would be 64-bit modulo) */
1852 if (do_div(start, sbi->s_stripe) == 0) {
1853 ac->ac_found++;
1854 ac->ac_b_ex = ex;
1855 ext4_mb_use_best_found(ac, e4b);
1856 }
1857 } else if (max >= ac->ac_g_ex.fe_len) {
1858 BUG_ON(ex.fe_len <= 0);
1859 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1860 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1861 ac->ac_found++;
1862 ac->ac_b_ex = ex;
1863 ext4_mb_use_best_found(ac, e4b);
1864 } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
1865 /* Sometimes, caller may want to merge even small
1866 * number of blocks to an existing extent */
1867 BUG_ON(ex.fe_len <= 0);
1868 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1869 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1870 ac->ac_found++;
1871 ac->ac_b_ex = ex;
1872 ext4_mb_use_best_found(ac, e4b);
1873 }
1874 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001875 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001876
1877 return 0;
1878}
1879
1880/*
1881 * The routine scans buddy structures (not bitmap!) from given order
1882 * to max order and tries to find big enough chunk to satisfy the req
1883 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001884static noinline_for_stack
1885void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001886 struct ext4_buddy *e4b)
1887{
1888 struct super_block *sb = ac->ac_sb;
1889 struct ext4_group_info *grp = e4b->bd_info;
1890 void *buddy;
1891 int i;
1892 int k;
1893 int max;
1894
1895 BUG_ON(ac->ac_2order <= 0);
1896 for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
1897 if (grp->bb_counters[i] == 0)
1898 continue;
1899
1900 buddy = mb_find_buddy(e4b, i, &max);
1901 BUG_ON(buddy == NULL);
1902
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001903 k = mb_find_next_zero_bit(buddy, max, 0);
Dmitry Monakhoveb576082020-03-10 15:01:56 +00001904 if (k >= max) {
1905 ext4_grp_locked_error(ac->ac_sb, e4b->bd_group, 0, 0,
1906 "%d free clusters of order %d. But found 0",
1907 grp->bb_counters[i], i);
1908 ext4_mark_group_bitmap_corrupted(ac->ac_sb,
1909 e4b->bd_group,
1910 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
1911 break;
1912 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001913 ac->ac_found++;
1914
1915 ac->ac_b_ex.fe_len = 1 << i;
1916 ac->ac_b_ex.fe_start = k << i;
1917 ac->ac_b_ex.fe_group = e4b->bd_group;
1918
1919 ext4_mb_use_best_found(ac, e4b);
1920
1921 BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
1922
1923 if (EXT4_SB(sb)->s_mb_stats)
1924 atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
1925
1926 break;
1927 }
1928}
1929
1930/*
1931 * The routine scans the group and measures all found extents.
1932 * In order to optimize scanning, caller must pass number of
1933 * free blocks in the group, so the routine can know upper limit.
1934 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001935static noinline_for_stack
1936void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001937 struct ext4_buddy *e4b)
1938{
1939 struct super_block *sb = ac->ac_sb;
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001940 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05001941 struct ext4_free_extent ex;
1942 int i;
1943 int free;
1944
1945 free = e4b->bd_info->bb_free;
Theodore Ts'o907ea522020-04-13 23:33:05 -04001946 if (WARN_ON(free <= 0))
1947 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05001948
1949 i = e4b->bd_info->bb_first_free;
1950
1951 while (free && ac->ac_status == AC_STATUS_CONTINUE) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001952 i = mb_find_next_zero_bit(bitmap,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001953 EXT4_CLUSTERS_PER_GROUP(sb), i);
1954 if (i >= EXT4_CLUSTERS_PER_GROUP(sb)) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001955 /*
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001956 * IF we have corrupt bitmap, we won't find any
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001957 * free blocks even though group info says we
1958 * we have free blocks
1959 */
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001960 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04001961 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001962 "group info. But bitmap says 0",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001963 free);
Wang Shilong736dedb2018-05-12 12:37:58 -04001964 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
1965 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Alex Tomasc9de5602008-01-29 00:19:52 -05001966 break;
1967 }
1968
Robin Dong15c006a2012-08-17 10:02:17 -04001969 mb_find_extent(e4b, i, ac->ac_g_ex.fe_len, &ex);
Theodore Ts'o907ea522020-04-13 23:33:05 -04001970 if (WARN_ON(ex.fe_len <= 0))
1971 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001972 if (free < ex.fe_len) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001973 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04001974 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001975 "group info. But got %d blocks",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001976 free, ex.fe_len);
Wang Shilong736dedb2018-05-12 12:37:58 -04001977 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
1978 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001979 /*
1980 * The number of free blocks differs. This mostly
1981 * indicate that the bitmap is corrupt. So exit
1982 * without claiming the space.
1983 */
1984 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05001985 }
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05001986 ex.fe_logical = 0xDEADC0DE; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05001987 ext4_mb_measure_extent(ac, &ex, e4b);
1988
1989 i += ex.fe_len;
1990 free -= ex.fe_len;
1991 }
1992
1993 ext4_mb_check_limits(ac, e4b, 1);
1994}
1995
1996/*
1997 * This is a special case for storages like raid5
Eric Sandeen506bf2d2010-07-27 11:56:06 -04001998 * we try to find stripe-aligned chunks for stripe-size-multiple requests
Alex Tomasc9de5602008-01-29 00:19:52 -05001999 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04002000static noinline_for_stack
2001void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002002 struct ext4_buddy *e4b)
2003{
2004 struct super_block *sb = ac->ac_sb;
2005 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05002006 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05002007 struct ext4_free_extent ex;
2008 ext4_fsblk_t first_group_block;
2009 ext4_fsblk_t a;
2010 ext4_grpblk_t i;
2011 int max;
2012
2013 BUG_ON(sbi->s_stripe == 0);
2014
2015 /* find first stripe-aligned block in group */
Akinobu Mita5661bd62010-03-03 23:53:39 -05002016 first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
2017
Alex Tomasc9de5602008-01-29 00:19:52 -05002018 a = first_group_block + sbi->s_stripe - 1;
2019 do_div(a, sbi->s_stripe);
2020 i = (a * sbi->s_stripe) - first_group_block;
2021
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04002022 while (i < EXT4_CLUSTERS_PER_GROUP(sb)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002023 if (!mb_test_bit(i, bitmap)) {
Robin Dong15c006a2012-08-17 10:02:17 -04002024 max = mb_find_extent(e4b, i, sbi->s_stripe, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002025 if (max >= sbi->s_stripe) {
2026 ac->ac_found++;
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05002027 ex.fe_logical = 0xDEADF00D; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05002028 ac->ac_b_ex = ex;
2029 ext4_mb_use_best_found(ac, e4b);
2030 break;
2031 }
2032 }
2033 i += sbi->s_stripe;
2034 }
2035}
2036
Lukas Czerner42ac1842015-06-08 11:40:40 -04002037/*
2038 * This is now called BEFORE we load the buddy bitmap.
2039 * Returns either 1 or 0 indicating that the group is either suitable
2040 * for the allocation or not. In addition it can also return negative
2041 * error code when something goes wrong.
2042 */
Alex Tomasc9de5602008-01-29 00:19:52 -05002043static int ext4_mb_good_group(struct ext4_allocation_context *ac,
2044 ext4_group_t group, int cr)
2045{
2046 unsigned free, fragments;
Theodore Ts'oa4912122009-03-12 12:18:34 -04002047 int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05002048 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
2049
2050 BUG_ON(cr < 0 || cr >= 4);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002051
Theodore Ts'o01fc48e2012-08-17 09:46:17 -04002052 free = grp->bb_free;
2053 if (free == 0)
2054 return 0;
2055 if (cr <= 2 && free < ac->ac_g_ex.fe_len)
2056 return 0;
2057
Darrick J. Wong163a2032013-08-28 17:35:51 -04002058 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(grp)))
2059 return 0;
2060
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002061 /* We only do this if the grp has never been initialized */
2062 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04002063 int ret = ext4_mb_init_group(ac->ac_sb, group, GFP_NOFS);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002064 if (ret)
Lukas Czerner42ac1842015-06-08 11:40:40 -04002065 return ret;
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002066 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002067
Alex Tomasc9de5602008-01-29 00:19:52 -05002068 fragments = grp->bb_fragments;
Alex Tomasc9de5602008-01-29 00:19:52 -05002069 if (fragments == 0)
2070 return 0;
2071
2072 switch (cr) {
2073 case 0:
2074 BUG_ON(ac->ac_2order == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05002075
Theodore Ts'oa4912122009-03-12 12:18:34 -04002076 /* Avoid using the first bg of a flexgroup for data files */
2077 if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
2078 (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
2079 ((group % flex_size) == 0))
2080 return 0;
2081
Theodore Ts'o40ae3482013-02-04 15:08:40 -05002082 if ((ac->ac_2order > ac->ac_sb->s_blocksize_bits+1) ||
2083 (free / fragments) >= ac->ac_g_ex.fe_len)
2084 return 1;
2085
2086 if (grp->bb_largest_free_order < ac->ac_2order)
2087 return 0;
2088
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002089 return 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002090 case 1:
2091 if ((free / fragments) >= ac->ac_g_ex.fe_len)
2092 return 1;
2093 break;
2094 case 2:
2095 if (free >= ac->ac_g_ex.fe_len)
2096 return 1;
2097 break;
2098 case 3:
2099 return 1;
2100 default:
2101 BUG();
2102 }
2103
2104 return 0;
2105}
2106
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002107static noinline_for_stack int
2108ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05002109{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002110 ext4_group_t ngroups, group, i;
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05302111 int cr = -1;
Lukas Czerner42ac1842015-06-08 11:40:40 -04002112 int err = 0, first_err = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002113 struct ext4_sb_info *sbi;
2114 struct super_block *sb;
2115 struct ext4_buddy e4b;
Alex Tomasc9de5602008-01-29 00:19:52 -05002116
2117 sb = ac->ac_sb;
2118 sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -04002119 ngroups = ext4_get_groups_count(sb);
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002120 /* non-extent files are limited to low blocks/groups */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002121 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002122 ngroups = sbi->s_blockfile_groups;
2123
Alex Tomasc9de5602008-01-29 00:19:52 -05002124 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
2125
2126 /* first, try the goal */
2127 err = ext4_mb_find_by_goal(ac, &e4b);
2128 if (err || ac->ac_status == AC_STATUS_FOUND)
2129 goto out;
2130
2131 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2132 goto out;
2133
2134 /*
2135 * ac->ac2_order is set only if the fe_len is a power of 2
2136 * if ac2_order is set we also set criteria to 0 so that we
2137 * try exact allocation using buddy.
2138 */
2139 i = fls(ac->ac_g_ex.fe_len);
2140 ac->ac_2order = 0;
2141 /*
2142 * We search using buddy data only if the order of the request
2143 * is greater than equal to the sbi_s_mb_order2_reqs
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002144 * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
Jan Karad9b22cf2017-02-10 00:50:56 -05002145 * We also support searching for power-of-two requests only for
2146 * requests upto maximum buddy size we have constructed.
Alex Tomasc9de5602008-01-29 00:19:52 -05002147 */
Jan Karad9b22cf2017-02-10 00:50:56 -05002148 if (i >= sbi->s_mb_order2_reqs && i <= sb->s_blocksize_bits + 2) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002149 /*
2150 * This should tell if fe_len is exactly power of 2
2151 */
2152 if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
Jeremy Cline1a5d5e52018-08-02 00:03:40 -04002153 ac->ac_2order = array_index_nospec(i - 1,
2154 sb->s_blocksize_bits + 2);
Alex Tomasc9de5602008-01-29 00:19:52 -05002155 }
2156
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002157 /* if stream allocation is enabled, use global goal */
2158 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002159 /* TBD: may be hot point */
2160 spin_lock(&sbi->s_md_lock);
2161 ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
2162 ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
2163 spin_unlock(&sbi->s_md_lock);
2164 }
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002165
Alex Tomasc9de5602008-01-29 00:19:52 -05002166 /* Let's just scan groups to find more-less suitable blocks */
2167 cr = ac->ac_2order ? 0 : 1;
2168 /*
2169 * cr == 0 try to get exact allocation,
2170 * cr == 3 try to get anything
2171 */
2172repeat:
2173 for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
2174 ac->ac_criteria = cr;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04002175 /*
2176 * searching for the right group start
2177 * from the goal value specified
2178 */
2179 group = ac->ac_g_ex.fe_group;
2180
Theodore Ts'o8df96752009-05-01 08:50:38 -04002181 for (i = 0; i < ngroups; group++, i++) {
Lukas Czerner42ac1842015-06-08 11:40:40 -04002182 int ret = 0;
Theodore Ts'o2ed57242013-06-12 11:43:02 -04002183 cond_resched();
Lachlan McIlroye6155732013-05-05 23:10:00 -04002184 /*
2185 * Artificially restricted ngroups for non-extent
2186 * files makes group > ngroups possible on first loop.
2187 */
2188 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -05002189 group = 0;
2190
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002191 /* This now checks without needing the buddy page */
Lukas Czerner42ac1842015-06-08 11:40:40 -04002192 ret = ext4_mb_good_group(ac, group, cr);
2193 if (ret <= 0) {
2194 if (!first_err)
2195 first_err = ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002196 continue;
Lukas Czerner42ac1842015-06-08 11:40:40 -04002197 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002198
Alex Tomasc9de5602008-01-29 00:19:52 -05002199 err = ext4_mb_load_buddy(sb, group, &e4b);
2200 if (err)
2201 goto out;
2202
2203 ext4_lock_group(sb, group);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002204
2205 /*
2206 * We need to check again after locking the
2207 * block group
2208 */
Lukas Czerner42ac1842015-06-08 11:40:40 -04002209 ret = ext4_mb_good_group(ac, group, cr);
2210 if (ret <= 0) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002211 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002212 ext4_mb_unload_buddy(&e4b);
Lukas Czerner42ac1842015-06-08 11:40:40 -04002213 if (!first_err)
2214 first_err = ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002215 continue;
2216 }
2217
2218 ac->ac_groups_scanned++;
Jan Karad9b22cf2017-02-10 00:50:56 -05002219 if (cr == 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002220 ext4_mb_simple_scan_group(ac, &e4b);
Eric Sandeen506bf2d2010-07-27 11:56:06 -04002221 else if (cr == 1 && sbi->s_stripe &&
2222 !(ac->ac_g_ex.fe_len % sbi->s_stripe))
Alex Tomasc9de5602008-01-29 00:19:52 -05002223 ext4_mb_scan_aligned(ac, &e4b);
2224 else
2225 ext4_mb_complex_scan_group(ac, &e4b);
2226
2227 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002228 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002229
2230 if (ac->ac_status != AC_STATUS_CONTINUE)
2231 break;
2232 }
2233 }
2234
2235 if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
2236 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2237 /*
2238 * We've been searching too long. Let's try to allocate
2239 * the best chunk we've found so far
2240 */
2241
2242 ext4_mb_try_best_found(ac, &e4b);
2243 if (ac->ac_status != AC_STATUS_FOUND) {
2244 /*
2245 * Someone more lucky has already allocated it.
2246 * The only thing we can do is just take first
2247 * found block(s)
2248 printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n");
2249 */
2250 ac->ac_b_ex.fe_group = 0;
2251 ac->ac_b_ex.fe_start = 0;
2252 ac->ac_b_ex.fe_len = 0;
2253 ac->ac_status = AC_STATUS_CONTINUE;
2254 ac->ac_flags |= EXT4_MB_HINT_FIRST;
2255 cr = 3;
2256 atomic_inc(&sbi->s_mb_lost_chunks);
2257 goto repeat;
2258 }
2259 }
2260out:
Lukas Czerner42ac1842015-06-08 11:40:40 -04002261 if (!err && ac->ac_status != AC_STATUS_FOUND && first_err)
2262 err = first_err;
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05302263
2264 mb_debug(1, "Best len %d, origin len %d, ac_status %u, ac_flags 0x%x, cr %d ret %d\n",
2265 ac->ac_b_ex.fe_len, ac->ac_o_ex.fe_len, ac->ac_status,
2266 ac->ac_flags, cr, err);
Alex Tomasc9de5602008-01-29 00:19:52 -05002267 return err;
2268}
2269
Alex Tomasc9de5602008-01-29 00:19:52 -05002270static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2271{
Christoph Hellwig247dbed2018-04-11 11:37:23 +02002272 struct super_block *sb = PDE_DATA(file_inode(seq->file));
Alex Tomasc9de5602008-01-29 00:19:52 -05002273 ext4_group_t group;
2274
Theodore Ts'o8df96752009-05-01 08:50:38 -04002275 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002276 return NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002277 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002278 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002279}
2280
2281static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2282{
Christoph Hellwig247dbed2018-04-11 11:37:23 +02002283 struct super_block *sb = PDE_DATA(file_inode(seq->file));
Alex Tomasc9de5602008-01-29 00:19:52 -05002284 ext4_group_t group;
2285
2286 ++*pos;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002287 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002288 return NULL;
2289 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002290 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002291}
2292
2293static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2294{
Christoph Hellwig247dbed2018-04-11 11:37:23 +02002295 struct super_block *sb = PDE_DATA(file_inode(seq->file));
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002296 ext4_group_t group = (ext4_group_t) ((unsigned long) v);
Alex Tomasc9de5602008-01-29 00:19:52 -05002297 int i;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002298 int err, buddy_loaded = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002299 struct ext4_buddy e4b;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002300 struct ext4_group_info *grinfo;
Arnd Bergmann2df2c342017-08-05 21:57:46 -04002301 unsigned char blocksize_bits = min_t(unsigned char,
2302 sb->s_blocksize_bits,
2303 EXT4_MAX_BLOCK_LOG_SIZE);
Alex Tomasc9de5602008-01-29 00:19:52 -05002304 struct sg {
2305 struct ext4_group_info info;
Theodore Ts'ob80b32b2017-08-14 08:29:18 -04002306 ext4_grpblk_t counters[EXT4_MAX_BLOCK_LOG_SIZE + 2];
Alex Tomasc9de5602008-01-29 00:19:52 -05002307 } sg;
2308
2309 group--;
2310 if (group == 0)
Rasmus Villemoes97b4af22015-06-15 00:32:58 -04002311 seq_puts(seq, "#group: free frags first ["
2312 " 2^0 2^1 2^2 2^3 2^4 2^5 2^6 "
Huaitong Han802cf1f2016-02-12 00:17:16 -05002313 " 2^7 2^8 2^9 2^10 2^11 2^12 2^13 ]\n");
Alex Tomasc9de5602008-01-29 00:19:52 -05002314
Theodore Ts'ob80b32b2017-08-14 08:29:18 -04002315 i = (blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2316 sizeof(struct ext4_group_info);
2317
Aditya Kali1c8457c2012-06-30 19:10:57 -04002318 grinfo = ext4_get_group_info(sb, group);
2319 /* Load the group info in memory only if not already loaded. */
2320 if (unlikely(EXT4_MB_GRP_NEED_INIT(grinfo))) {
2321 err = ext4_mb_load_buddy(sb, group, &e4b);
2322 if (err) {
2323 seq_printf(seq, "#%-5u: I/O error\n", group);
2324 return 0;
2325 }
2326 buddy_loaded = 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002327 }
Aditya Kali1c8457c2012-06-30 19:10:57 -04002328
Theodore Ts'ob80b32b2017-08-14 08:29:18 -04002329 memcpy(&sg, ext4_get_group_info(sb, group), i);
Aditya Kali1c8457c2012-06-30 19:10:57 -04002330
2331 if (buddy_loaded)
2332 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002333
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002334 seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
Alex Tomasc9de5602008-01-29 00:19:52 -05002335 sg.info.bb_fragments, sg.info.bb_first_free);
2336 for (i = 0; i <= 13; i++)
Arnd Bergmann2df2c342017-08-05 21:57:46 -04002337 seq_printf(seq, " %-5u", i <= blocksize_bits + 1 ?
Alex Tomasc9de5602008-01-29 00:19:52 -05002338 sg.info.bb_counters[i] : 0);
2339 seq_printf(seq, " ]\n");
2340
2341 return 0;
2342}
2343
2344static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2345{
2346}
2347
Christoph Hellwig247dbed2018-04-11 11:37:23 +02002348const struct seq_operations ext4_mb_seq_groups_ops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002349 .start = ext4_mb_seq_groups_start,
2350 .next = ext4_mb_seq_groups_next,
2351 .stop = ext4_mb_seq_groups_stop,
2352 .show = ext4_mb_seq_groups_show,
2353};
2354
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002355static struct kmem_cache *get_groupinfo_cache(int blocksize_bits)
2356{
2357 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2358 struct kmem_cache *cachep = ext4_groupinfo_caches[cache_index];
2359
2360 BUG_ON(!cachep);
2361 return cachep;
2362}
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002363
Theodore Ts'o28623c22012-09-05 01:31:50 -04002364/*
2365 * Allocate the top-level s_group_info array for the specified number
2366 * of groups
2367 */
2368int ext4_mb_alloc_groupinfo(struct super_block *sb, ext4_group_t ngroups)
2369{
2370 struct ext4_sb_info *sbi = EXT4_SB(sb);
2371 unsigned size;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002372 struct ext4_group_info ***old_groupinfo, ***new_groupinfo;
Theodore Ts'o28623c22012-09-05 01:31:50 -04002373
2374 size = (ngroups + EXT4_DESC_PER_BLOCK(sb) - 1) >>
2375 EXT4_DESC_PER_BLOCK_BITS(sb);
2376 if (size <= sbi->s_group_info_size)
2377 return 0;
2378
2379 size = roundup_pow_of_two(sizeof(*sbi->s_group_info) * size);
Michal Hockoa7c3e902017-05-08 15:57:09 -07002380 new_groupinfo = kvzalloc(size, GFP_KERNEL);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002381 if (!new_groupinfo) {
2382 ext4_msg(sb, KERN_ERR, "can't allocate buddy meta group");
2383 return -ENOMEM;
2384 }
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002385 rcu_read_lock();
2386 old_groupinfo = rcu_dereference(sbi->s_group_info);
2387 if (old_groupinfo)
2388 memcpy(new_groupinfo, old_groupinfo,
Theodore Ts'o28623c22012-09-05 01:31:50 -04002389 sbi->s_group_info_size * sizeof(*sbi->s_group_info));
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002390 rcu_read_unlock();
2391 rcu_assign_pointer(sbi->s_group_info, new_groupinfo);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002392 sbi->s_group_info_size = size / sizeof(*sbi->s_group_info);
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002393 if (old_groupinfo)
2394 ext4_kvfree_array_rcu(old_groupinfo);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002395 ext4_debug("allocated s_groupinfo array for %d meta_bg's\n",
2396 sbi->s_group_info_size);
2397 return 0;
2398}
2399
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002400/* Create and initialize ext4_group_info data for the given group. */
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002401int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002402 struct ext4_group_desc *desc)
2403{
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002404 int i;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002405 int metalen = 0;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002406 int idx = group >> EXT4_DESC_PER_BLOCK_BITS(sb);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002407 struct ext4_sb_info *sbi = EXT4_SB(sb);
2408 struct ext4_group_info **meta_group_info;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002409 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002410
2411 /*
2412 * First check if this group is the first of a reserved block.
2413 * If it's true, we have to allocate a new table of pointers
2414 * to ext4_group_info structures
2415 */
2416 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
2417 metalen = sizeof(*meta_group_info) <<
2418 EXT4_DESC_PER_BLOCK_BITS(sb);
Dmitry Monakhov4fdb5542014-11-25 13:08:04 -05002419 meta_group_info = kmalloc(metalen, GFP_NOFS);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002420 if (meta_group_info == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04002421 ext4_msg(sb, KERN_ERR, "can't allocate mem "
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002422 "for a buddy group");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002423 goto exit_meta_group_info;
2424 }
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002425 rcu_read_lock();
2426 rcu_dereference(sbi->s_group_info)[idx] = meta_group_info;
2427 rcu_read_unlock();
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002428 }
2429
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002430 meta_group_info = sbi_array_rcu_deref(sbi, s_group_info, idx);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002431 i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
2432
Dmitry Monakhov4fdb5542014-11-25 13:08:04 -05002433 meta_group_info[i] = kmem_cache_zalloc(cachep, GFP_NOFS);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002434 if (meta_group_info[i] == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04002435 ext4_msg(sb, KERN_ERR, "can't allocate buddy mem");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002436 goto exit_group_info;
2437 }
2438 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
2439 &(meta_group_info[i]->bb_state));
2440
2441 /*
2442 * initialize bb_free to be able to skip
2443 * empty groups without initialization
2444 */
Theodore Ts'o88446182018-06-14 00:58:00 -04002445 if (ext4_has_group_desc_csum(sb) &&
2446 (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002447 meta_group_info[i]->bb_free =
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04002448 ext4_free_clusters_after_init(sb, group, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002449 } else {
2450 meta_group_info[i]->bb_free =
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002451 ext4_free_group_clusters(sb, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002452 }
2453
2454 INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002455 init_rwsem(&meta_group_info[i]->alloc_sem);
Venkatesh Pallipadi64e290e2010-03-04 22:25:21 -05002456 meta_group_info[i]->bb_free_root = RB_ROOT;
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002457 meta_group_info[i]->bb_largest_free_order = -1; /* uninit */
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002458
2459#ifdef DOUBLE_CHECK
2460 {
2461 struct buffer_head *bh;
2462 meta_group_info[i]->bb_bitmap =
Dmitry Monakhov4fdb5542014-11-25 13:08:04 -05002463 kmalloc(sb->s_blocksize, GFP_NOFS);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002464 BUG_ON(meta_group_info[i]->bb_bitmap == NULL);
2465 bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04002466 BUG_ON(IS_ERR_OR_NULL(bh));
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002467 memcpy(meta_group_info[i]->bb_bitmap, bh->b_data,
2468 sb->s_blocksize);
2469 put_bh(bh);
2470 }
2471#endif
2472
2473 return 0;
2474
2475exit_group_info:
2476 /* If a meta_group_info table has been allocated, release it now */
Tao Macaaf7a22011-07-11 18:42:42 -04002477 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002478 struct ext4_group_info ***group_info;
2479
2480 rcu_read_lock();
2481 group_info = rcu_dereference(sbi->s_group_info);
2482 kfree(group_info[idx]);
2483 group_info[idx] = NULL;
2484 rcu_read_unlock();
Tao Macaaf7a22011-07-11 18:42:42 -04002485 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002486exit_meta_group_info:
2487 return -ENOMEM;
2488} /* ext4_mb_add_groupinfo */
2489
Alex Tomasc9de5602008-01-29 00:19:52 -05002490static int ext4_mb_init_backend(struct super_block *sb)
2491{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002492 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002493 ext4_group_t i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002494 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002495 int err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002496 struct ext4_group_desc *desc;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002497 struct ext4_group_info ***group_info;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002498 struct kmem_cache *cachep;
Alex Tomasc9de5602008-01-29 00:19:52 -05002499
Theodore Ts'o28623c22012-09-05 01:31:50 -04002500 err = ext4_mb_alloc_groupinfo(sb, ngroups);
2501 if (err)
2502 return err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002503
Alex Tomasc9de5602008-01-29 00:19:52 -05002504 sbi->s_buddy_cache = new_inode(sb);
2505 if (sbi->s_buddy_cache == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002506 ext4_msg(sb, KERN_ERR, "can't get new inode");
Alex Tomasc9de5602008-01-29 00:19:52 -05002507 goto err_freesgi;
2508 }
Yu Jian48e60612011-08-01 17:41:39 -04002509 /* To avoid potentially colliding with an valid on-disk inode number,
2510 * use EXT4_BAD_INO for the buddy cache inode number. This inode is
2511 * not in the inode hash, so it should never be found by iget(), but
2512 * this will avoid confusion if it ever shows up during debugging. */
2513 sbi->s_buddy_cache->i_ino = EXT4_BAD_INO;
Alex Tomasc9de5602008-01-29 00:19:52 -05002514 EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002515 for (i = 0; i < ngroups; i++) {
Khazhismel Kumykov4b99faa2019-04-25 12:58:01 -04002516 cond_resched();
Alex Tomasc9de5602008-01-29 00:19:52 -05002517 desc = ext4_get_group_desc(sb, i, NULL);
2518 if (desc == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002519 ext4_msg(sb, KERN_ERR, "can't read descriptor %u", i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002520 goto err_freebuddy;
2521 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002522 if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
2523 goto err_freebuddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05002524 }
2525
2526 return 0;
2527
2528err_freebuddy:
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002529 cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Roel Kluinf1fa3342008-04-29 22:01:15 -04002530 while (i-- > 0)
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002531 kmem_cache_free(cachep, ext4_get_group_info(sb, i));
Theodore Ts'o28623c22012-09-05 01:31:50 -04002532 i = sbi->s_group_info_size;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002533 rcu_read_lock();
2534 group_info = rcu_dereference(sbi->s_group_info);
Roel Kluinf1fa3342008-04-29 22:01:15 -04002535 while (i-- > 0)
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002536 kfree(group_info[i]);
2537 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05002538 iput(sbi->s_buddy_cache);
2539err_freesgi:
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002540 rcu_read_lock();
2541 kvfree(rcu_dereference(sbi->s_group_info));
2542 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05002543 return -ENOMEM;
2544}
2545
Eric Sandeen2892c152011-02-12 08:12:18 -05002546static void ext4_groupinfo_destroy_slabs(void)
2547{
2548 int i;
2549
2550 for (i = 0; i < NR_GRPINFO_CACHES; i++) {
Sean Fu21c580d2018-05-20 22:44:13 -04002551 kmem_cache_destroy(ext4_groupinfo_caches[i]);
Eric Sandeen2892c152011-02-12 08:12:18 -05002552 ext4_groupinfo_caches[i] = NULL;
2553 }
2554}
2555
2556static int ext4_groupinfo_create_slab(size_t size)
2557{
2558 static DEFINE_MUTEX(ext4_grpinfo_slab_create_mutex);
2559 int slab_size;
2560 int blocksize_bits = order_base_2(size);
2561 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2562 struct kmem_cache *cachep;
2563
2564 if (cache_index >= NR_GRPINFO_CACHES)
2565 return -EINVAL;
2566
2567 if (unlikely(cache_index < 0))
2568 cache_index = 0;
2569
2570 mutex_lock(&ext4_grpinfo_slab_create_mutex);
2571 if (ext4_groupinfo_caches[cache_index]) {
2572 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2573 return 0; /* Already created */
2574 }
2575
2576 slab_size = offsetof(struct ext4_group_info,
2577 bb_counters[blocksize_bits + 2]);
2578
2579 cachep = kmem_cache_create(ext4_groupinfo_slab_names[cache_index],
2580 slab_size, 0, SLAB_RECLAIM_ACCOUNT,
2581 NULL);
2582
Tao Ma823ba012011-07-11 18:26:01 -04002583 ext4_groupinfo_caches[cache_index] = cachep;
2584
Eric Sandeen2892c152011-02-12 08:12:18 -05002585 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2586 if (!cachep) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002587 printk(KERN_EMERG
2588 "EXT4-fs: no memory for groupinfo slab cache\n");
Eric Sandeen2892c152011-02-12 08:12:18 -05002589 return -ENOMEM;
2590 }
2591
Eric Sandeen2892c152011-02-12 08:12:18 -05002592 return 0;
2593}
2594
Akira Fujita9d990122012-05-28 14:19:25 -04002595int ext4_mb_init(struct super_block *sb)
Alex Tomasc9de5602008-01-29 00:19:52 -05002596{
2597 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002598 unsigned i, j;
Nicolai Stange935244c2016-05-05 19:46:19 -04002599 unsigned offset, offset_incr;
Alex Tomasc9de5602008-01-29 00:19:52 -05002600 unsigned max;
Shen Feng74767c52008-07-11 19:27:31 -04002601 int ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002602
Eric Sandeen19278052009-08-25 22:36:25 -04002603 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_offsets);
Alex Tomasc9de5602008-01-29 00:19:52 -05002604
2605 sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
2606 if (sbi->s_mb_offsets == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002607 ret = -ENOMEM;
2608 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002609 }
Yasunori Gotoff7ef322008-12-17 00:48:39 -05002610
Eric Sandeen19278052009-08-25 22:36:25 -04002611 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_maxs);
Alex Tomasc9de5602008-01-29 00:19:52 -05002612 sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
2613 if (sbi->s_mb_maxs == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002614 ret = -ENOMEM;
2615 goto out;
2616 }
2617
Eric Sandeen2892c152011-02-12 08:12:18 -05002618 ret = ext4_groupinfo_create_slab(sb->s_blocksize);
2619 if (ret < 0)
2620 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002621
2622 /* order 0 is regular bitmap */
2623 sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
2624 sbi->s_mb_offsets[0] = 0;
2625
2626 i = 1;
2627 offset = 0;
Nicolai Stange935244c2016-05-05 19:46:19 -04002628 offset_incr = 1 << (sb->s_blocksize_bits - 1);
Alex Tomasc9de5602008-01-29 00:19:52 -05002629 max = sb->s_blocksize << 2;
2630 do {
2631 sbi->s_mb_offsets[i] = offset;
2632 sbi->s_mb_maxs[i] = max;
Nicolai Stange935244c2016-05-05 19:46:19 -04002633 offset += offset_incr;
2634 offset_incr = offset_incr >> 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002635 max = max >> 1;
2636 i++;
2637 } while (i <= sb->s_blocksize_bits + 1);
2638
Alex Tomasc9de5602008-01-29 00:19:52 -05002639 spin_lock_init(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05002640 spin_lock_init(&sbi->s_bal_lock);
Theodore Ts'od08854f2016-06-26 18:24:01 -04002641 sbi->s_mb_free_pending = 0;
Daeho Jeonga0154342017-06-22 23:54:33 -04002642 INIT_LIST_HEAD(&sbi->s_freed_data_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05002643
2644 sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
2645 sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
2646 sbi->s_mb_stats = MB_DEFAULT_STATS;
2647 sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
2648 sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
Theodore Ts'o27baebb2011-09-09 19:02:51 -04002649 /*
2650 * The default group preallocation is 512, which for 4k block
2651 * sizes translates to 2 megabytes. However for bigalloc file
2652 * systems, this is probably too big (i.e, if the cluster size
2653 * is 1 megabyte, then group preallocation size becomes half a
2654 * gigabyte!). As a default, we will keep a two megabyte
2655 * group pralloc size for cluster sizes up to 64k, and after
2656 * that, we will force a minimum group preallocation size of
2657 * 32 clusters. This translates to 8 megs when the cluster
2658 * size is 256k, and 32 megs when the cluster size is 1 meg,
2659 * which seems reasonable as a default.
2660 */
2661 sbi->s_mb_group_prealloc = max(MB_DEFAULT_GROUP_PREALLOC >>
2662 sbi->s_cluster_bits, 32);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04002663 /*
2664 * If there is a s_stripe > 1, then we set the s_mb_group_prealloc
2665 * to the lowest multiple of s_stripe which is bigger than
2666 * the s_mb_group_prealloc as determined above. We want
2667 * the preallocation size to be an exact multiple of the
2668 * RAID stripe size so that preallocations don't fragment
2669 * the stripes.
2670 */
2671 if (sbi->s_stripe > 1) {
2672 sbi->s_mb_group_prealloc = roundup(
2673 sbi->s_mb_group_prealloc, sbi->s_stripe);
2674 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002675
Eric Sandeen730c2132008-09-13 15:23:29 -04002676 sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002677 if (sbi->s_locality_groups == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002678 ret = -ENOMEM;
Andrey Tsyvarev029b10c2014-05-12 12:34:21 -04002679 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002680 }
Eric Sandeen730c2132008-09-13 15:23:29 -04002681 for_each_possible_cpu(i) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002682 struct ext4_locality_group *lg;
Eric Sandeen730c2132008-09-13 15:23:29 -04002683 lg = per_cpu_ptr(sbi->s_locality_groups, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002684 mutex_init(&lg->lg_mutex);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002685 for (j = 0; j < PREALLOC_TB_SIZE; j++)
2686 INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
Alex Tomasc9de5602008-01-29 00:19:52 -05002687 spin_lock_init(&lg->lg_prealloc_lock);
2688 }
2689
Yu Jian79a77c52011-08-01 17:41:46 -04002690 /* init file for buddy data */
2691 ret = ext4_mb_init_backend(sb);
Tao Ma7aa0bae2011-10-06 10:22:28 -04002692 if (ret != 0)
2693 goto out_free_locality_groups;
Yu Jian79a77c52011-08-01 17:41:46 -04002694
Tao Ma7aa0bae2011-10-06 10:22:28 -04002695 return 0;
2696
2697out_free_locality_groups:
2698 free_percpu(sbi->s_locality_groups);
2699 sbi->s_locality_groups = NULL;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002700out:
Tao Ma7aa0bae2011-10-06 10:22:28 -04002701 kfree(sbi->s_mb_offsets);
2702 sbi->s_mb_offsets = NULL;
2703 kfree(sbi->s_mb_maxs);
2704 sbi->s_mb_maxs = NULL;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002705 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002706}
2707
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002708/* need to called with the ext4 group lock held */
Alex Tomasc9de5602008-01-29 00:19:52 -05002709static void ext4_mb_cleanup_pa(struct ext4_group_info *grp)
2710{
2711 struct ext4_prealloc_space *pa;
2712 struct list_head *cur, *tmp;
2713 int count = 0;
2714
2715 list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
2716 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
2717 list_del(&pa->pa_group_list);
2718 count++;
Aneesh Kumar K.V688f05a2008-10-13 12:14:14 -04002719 kmem_cache_free(ext4_pspace_cachep, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05002720 }
2721 if (count)
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002722 mb_debug(1, "mballoc: %u PAs left\n", count);
Alex Tomasc9de5602008-01-29 00:19:52 -05002723
2724}
2725
2726int ext4_mb_release(struct super_block *sb)
2727{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002728 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002729 ext4_group_t i;
2730 int num_meta_group_infos;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002731 struct ext4_group_info *grinfo, ***group_info;
Alex Tomasc9de5602008-01-29 00:19:52 -05002732 struct ext4_sb_info *sbi = EXT4_SB(sb);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002733 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Alex Tomasc9de5602008-01-29 00:19:52 -05002734
Alex Tomasc9de5602008-01-29 00:19:52 -05002735 if (sbi->s_group_info) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04002736 for (i = 0; i < ngroups; i++) {
Khazhismel Kumykov4b99faa2019-04-25 12:58:01 -04002737 cond_resched();
Alex Tomasc9de5602008-01-29 00:19:52 -05002738 grinfo = ext4_get_group_info(sb, i);
2739#ifdef DOUBLE_CHECK
2740 kfree(grinfo->bb_bitmap);
2741#endif
2742 ext4_lock_group(sb, i);
2743 ext4_mb_cleanup_pa(grinfo);
2744 ext4_unlock_group(sb, i);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002745 kmem_cache_free(cachep, grinfo);
Alex Tomasc9de5602008-01-29 00:19:52 -05002746 }
Theodore Ts'o8df96752009-05-01 08:50:38 -04002747 num_meta_group_infos = (ngroups +
Alex Tomasc9de5602008-01-29 00:19:52 -05002748 EXT4_DESC_PER_BLOCK(sb) - 1) >>
2749 EXT4_DESC_PER_BLOCK_BITS(sb);
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002750 rcu_read_lock();
2751 group_info = rcu_dereference(sbi->s_group_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05002752 for (i = 0; i < num_meta_group_infos; i++)
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002753 kfree(group_info[i]);
2754 kvfree(group_info);
2755 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05002756 }
2757 kfree(sbi->s_mb_offsets);
2758 kfree(sbi->s_mb_maxs);
Markus Elfringbfcba2d2014-11-25 20:01:37 -05002759 iput(sbi->s_buddy_cache);
Alex Tomasc9de5602008-01-29 00:19:52 -05002760 if (sbi->s_mb_stats) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002761 ext4_msg(sb, KERN_INFO,
2762 "mballoc: %u blocks %u reqs (%u success)",
Alex Tomasc9de5602008-01-29 00:19:52 -05002763 atomic_read(&sbi->s_bal_allocated),
2764 atomic_read(&sbi->s_bal_reqs),
2765 atomic_read(&sbi->s_bal_success));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002766 ext4_msg(sb, KERN_INFO,
2767 "mballoc: %u extents scanned, %u goal hits, "
2768 "%u 2^N hits, %u breaks, %u lost",
Alex Tomasc9de5602008-01-29 00:19:52 -05002769 atomic_read(&sbi->s_bal_ex_scanned),
2770 atomic_read(&sbi->s_bal_goals),
2771 atomic_read(&sbi->s_bal_2orders),
2772 atomic_read(&sbi->s_bal_breaks),
2773 atomic_read(&sbi->s_mb_lost_chunks));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002774 ext4_msg(sb, KERN_INFO,
2775 "mballoc: %lu generated and it took %Lu",
Tao Maced156e2011-07-23 16:18:05 -04002776 sbi->s_mb_buddies_generated,
Alex Tomasc9de5602008-01-29 00:19:52 -05002777 sbi->s_mb_generation_time);
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002778 ext4_msg(sb, KERN_INFO,
2779 "mballoc: %u preallocated, %u discarded",
Alex Tomasc9de5602008-01-29 00:19:52 -05002780 atomic_read(&sbi->s_mb_preallocated),
2781 atomic_read(&sbi->s_mb_discarded));
2782 }
2783
Eric Sandeen730c2132008-09-13 15:23:29 -04002784 free_percpu(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05002785
2786 return 0;
2787}
2788
Lukas Czerner77ca6cd2010-10-27 21:30:11 -04002789static inline int ext4_issue_discard(struct super_block *sb,
Daeho Jeonga0154342017-06-22 23:54:33 -04002790 ext4_group_t block_group, ext4_grpblk_t cluster, int count,
2791 struct bio **biop)
Jiaying Zhang5c521832010-07-27 11:56:05 -04002792{
Jiaying Zhang5c521832010-07-27 11:56:05 -04002793 ext4_fsblk_t discard_block;
2794
Theodore Ts'o84130192011-09-09 18:50:51 -04002795 discard_block = (EXT4_C2B(EXT4_SB(sb), cluster) +
2796 ext4_group_first_block_no(sb, block_group));
2797 count = EXT4_C2B(EXT4_SB(sb), count);
Jiaying Zhang5c521832010-07-27 11:56:05 -04002798 trace_ext4_discard_blocks(sb,
2799 (unsigned long long) discard_block, count);
Daeho Jeonga0154342017-06-22 23:54:33 -04002800 if (biop) {
2801 return __blkdev_issue_discard(sb->s_bdev,
2802 (sector_t)discard_block << (sb->s_blocksize_bits - 9),
2803 (sector_t)count << (sb->s_blocksize_bits - 9),
2804 GFP_NOFS, 0, biop);
2805 } else
2806 return sb_issue_discard(sb, discard_block, count, GFP_NOFS, 0);
Jiaying Zhang5c521832010-07-27 11:56:05 -04002807}
2808
Daeho Jeonga0154342017-06-22 23:54:33 -04002809static void ext4_free_data_in_buddy(struct super_block *sb,
2810 struct ext4_free_data *entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05002811{
Alex Tomasc9de5602008-01-29 00:19:52 -05002812 struct ext4_buddy e4b;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002813 struct ext4_group_info *db;
Theodore Ts'od9f34502011-04-30 13:47:24 -04002814 int err, count = 0, count2 = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002815
Bobi Jam18aadd42012-02-20 17:53:02 -05002816 mb_debug(1, "gonna free %u blocks in group %u (0x%p):",
2817 entry->efd_count, entry->efd_group, entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05002818
Bobi Jam18aadd42012-02-20 17:53:02 -05002819 err = ext4_mb_load_buddy(sb, entry->efd_group, &e4b);
2820 /* we expect to find existing buddy because it's pinned */
2821 BUG_ON(err != 0);
Theodore Ts'ob90f6872010-04-20 16:51:59 -04002822
Theodore Ts'od08854f2016-06-26 18:24:01 -04002823 spin_lock(&EXT4_SB(sb)->s_md_lock);
2824 EXT4_SB(sb)->s_mb_free_pending -= entry->efd_count;
2825 spin_unlock(&EXT4_SB(sb)->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05002826
Bobi Jam18aadd42012-02-20 17:53:02 -05002827 db = e4b.bd_info;
2828 /* there are blocks to put in buddy to make them really free */
2829 count += entry->efd_count;
2830 count2++;
2831 ext4_lock_group(sb, entry->efd_group);
2832 /* Take it out of per group rb tree */
2833 rb_erase(&entry->efd_node, &(db->bb_free_root));
2834 mb_free_blocks(NULL, &e4b, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002835
Bobi Jam18aadd42012-02-20 17:53:02 -05002836 /*
2837 * Clear the trimmed flag for the group so that the next
2838 * ext4_trim_fs can trim it.
2839 * If the volume is mounted with -o discard, online discard
2840 * is supported and the free blocks will be trimmed online.
2841 */
2842 if (!test_opt(sb, DISCARD))
2843 EXT4_MB_GRP_CLEAR_TRIMMED(db);
2844
2845 if (!db->bb_free_root.rb_node) {
2846 /* No more items in the per group rb tree
2847 * balance refcounts from ext4_mb_free_metadata()
Tao Ma3d56b8d2011-07-11 00:03:38 -04002848 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002849 put_page(e4b.bd_buddy_page);
2850 put_page(e4b.bd_bitmap_page);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04002851 }
Bobi Jam18aadd42012-02-20 17:53:02 -05002852 ext4_unlock_group(sb, entry->efd_group);
2853 kmem_cache_free(ext4_free_data_cachep, entry);
2854 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002855
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04002856 mb_debug(1, "freed %u blocks in %u structures\n", count, count2);
Alex Tomasc9de5602008-01-29 00:19:52 -05002857}
2858
Daeho Jeonga0154342017-06-22 23:54:33 -04002859/*
2860 * This function is called by the jbd2 layer once the commit has finished,
2861 * so we know we can free the blocks that were released with that commit.
2862 */
2863void ext4_process_freed_data(struct super_block *sb, tid_t commit_tid)
2864{
2865 struct ext4_sb_info *sbi = EXT4_SB(sb);
2866 struct ext4_free_data *entry, *tmp;
2867 struct bio *discard_bio = NULL;
2868 struct list_head freed_data_list;
2869 struct list_head *cut_pos = NULL;
2870 int err;
2871
2872 INIT_LIST_HEAD(&freed_data_list);
2873
2874 spin_lock(&sbi->s_md_lock);
2875 list_for_each_entry(entry, &sbi->s_freed_data_list, efd_list) {
2876 if (entry->efd_tid != commit_tid)
2877 break;
2878 cut_pos = &entry->efd_list;
2879 }
2880 if (cut_pos)
2881 list_cut_position(&freed_data_list, &sbi->s_freed_data_list,
2882 cut_pos);
2883 spin_unlock(&sbi->s_md_lock);
2884
2885 if (test_opt(sb, DISCARD)) {
2886 list_for_each_entry(entry, &freed_data_list, efd_list) {
2887 err = ext4_issue_discard(sb, entry->efd_group,
2888 entry->efd_start_cluster,
2889 entry->efd_count,
2890 &discard_bio);
2891 if (err && err != -EOPNOTSUPP) {
2892 ext4_msg(sb, KERN_WARNING, "discard request in"
2893 " group:%d block:%d count:%d failed"
2894 " with %d", entry->efd_group,
2895 entry->efd_start_cluster,
2896 entry->efd_count, err);
2897 } else if (err == -EOPNOTSUPP)
2898 break;
2899 }
2900
Daeho Jeonge4510572017-08-05 13:11:57 -04002901 if (discard_bio) {
Daeho Jeonga0154342017-06-22 23:54:33 -04002902 submit_bio_wait(discard_bio);
Daeho Jeonge4510572017-08-05 13:11:57 -04002903 bio_put(discard_bio);
2904 }
Daeho Jeonga0154342017-06-22 23:54:33 -04002905 }
2906
2907 list_for_each_entry_safe(entry, tmp, &freed_data_list, efd_list)
2908 ext4_free_data_in_buddy(sb, entry);
2909}
2910
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04002911int __init ext4_init_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05002912{
Theodore Ts'o16828082010-10-27 21:30:09 -04002913 ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space,
2914 SLAB_RECLAIM_ACCOUNT);
Alex Tomasc9de5602008-01-29 00:19:52 -05002915 if (ext4_pspace_cachep == NULL)
Ritesh Harjanif2835292020-05-10 11:54:46 +05302916 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002917
Theodore Ts'o16828082010-10-27 21:30:09 -04002918 ext4_ac_cachep = KMEM_CACHE(ext4_allocation_context,
2919 SLAB_RECLAIM_ACCOUNT);
Ritesh Harjanif2835292020-05-10 11:54:46 +05302920 if (ext4_ac_cachep == NULL)
2921 goto out_pa_free;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04002922
Bobi Jam18aadd42012-02-20 17:53:02 -05002923 ext4_free_data_cachep = KMEM_CACHE(ext4_free_data,
2924 SLAB_RECLAIM_ACCOUNT);
Ritesh Harjanif2835292020-05-10 11:54:46 +05302925 if (ext4_free_data_cachep == NULL)
2926 goto out_ac_free;
2927
Alex Tomasc9de5602008-01-29 00:19:52 -05002928 return 0;
Ritesh Harjanif2835292020-05-10 11:54:46 +05302929
2930out_ac_free:
2931 kmem_cache_destroy(ext4_ac_cachep);
2932out_pa_free:
2933 kmem_cache_destroy(ext4_pspace_cachep);
2934out:
2935 return -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -05002936}
2937
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04002938void ext4_exit_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05002939{
Theodore Ts'o60e66792010-05-17 07:00:00 -04002940 /*
Jesper Dangaard Brouer3e03f9c2009-07-05 22:29:27 -04002941 * Wait for completion of call_rcu()'s on ext4_pspace_cachep
2942 * before destroying the slab cache.
2943 */
2944 rcu_barrier();
Alex Tomasc9de5602008-01-29 00:19:52 -05002945 kmem_cache_destroy(ext4_pspace_cachep);
Eric Sandeen256bdb42008-02-10 01:13:33 -05002946 kmem_cache_destroy(ext4_ac_cachep);
Bobi Jam18aadd42012-02-20 17:53:02 -05002947 kmem_cache_destroy(ext4_free_data_cachep);
Eric Sandeen2892c152011-02-12 08:12:18 -05002948 ext4_groupinfo_destroy_slabs();
Alex Tomasc9de5602008-01-29 00:19:52 -05002949}
2950
2951
2952/*
Uwe Kleine-König73b2c712010-07-30 21:02:47 +02002953 * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
Alex Tomasc9de5602008-01-29 00:19:52 -05002954 * Returns 0 if success or error code
2955 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002956static noinline_for_stack int
2957ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002958 handle_t *handle, unsigned int reserv_clstrs)
Alex Tomasc9de5602008-01-29 00:19:52 -05002959{
2960 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002961 struct ext4_group_desc *gdp;
2962 struct buffer_head *gdp_bh;
2963 struct ext4_sb_info *sbi;
2964 struct super_block *sb;
2965 ext4_fsblk_t block;
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04002966 int err, len;
Alex Tomasc9de5602008-01-29 00:19:52 -05002967
2968 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
2969 BUG_ON(ac->ac_b_ex.fe_len <= 0);
2970
2971 sb = ac->ac_sb;
2972 sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002973
Theodore Ts'o574ca172008-07-11 19:27:31 -04002974 bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04002975 if (IS_ERR(bitmap_bh)) {
2976 err = PTR_ERR(bitmap_bh);
2977 bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002978 goto out_err;
Darrick J. Wong9008a582015-10-17 21:33:24 -04002979 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002980
liang xie5d601252014-05-12 22:06:43 -04002981 BUFFER_TRACE(bitmap_bh, "getting write access");
Alex Tomasc9de5602008-01-29 00:19:52 -05002982 err = ext4_journal_get_write_access(handle, bitmap_bh);
2983 if (err)
2984 goto out_err;
2985
2986 err = -EIO;
2987 gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
2988 if (!gdp)
2989 goto out_err;
2990
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002991 ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002992 ext4_free_group_clusters(sb, gdp));
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04002993
liang xie5d601252014-05-12 22:06:43 -04002994 BUFFER_TRACE(gdp_bh, "get_write_access");
Alex Tomasc9de5602008-01-29 00:19:52 -05002995 err = ext4_journal_get_write_access(handle, gdp_bh);
2996 if (err)
2997 goto out_err;
2998
Akinobu Mitabda00de2010-03-03 23:53:25 -05002999 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05003000
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003001 len = EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003002 if (!ext4_data_block_valid(sbi, block, len)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003003 ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
Theodore Ts'o1084f252012-03-19 23:13:43 -04003004 "fs metadata", block, block+len);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003005 /* File system mounted not to panic on error
Vegard Nossum554a5cc2016-07-14 23:02:47 -04003006 * Fix the bitmap and return EFSCORRUPTED
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003007 * We leak some of the blocks here.
3008 */
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003009 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003010 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
3011 ac->ac_b_ex.fe_len);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003012 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Frank Mayhar03901312009-01-07 00:06:22 -05003013 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003014 if (!err)
Vegard Nossum554a5cc2016-07-14 23:02:47 -04003015 err = -EFSCORRUPTED;
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003016 goto out_err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003017 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003018
3019 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003020#ifdef AGGRESSIVE_CHECK
3021 {
3022 int i;
3023 for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
3024 BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
3025 bitmap_bh->b_data));
3026 }
3027 }
3028#endif
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003029 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
3030 ac->ac_b_ex.fe_len);
Theodore Ts'o88446182018-06-14 00:58:00 -04003031 if (ext4_has_group_desc_csum(sb) &&
3032 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003033 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003034 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04003035 ext4_free_clusters_after_init(sb,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003036 ac->ac_b_ex.fe_group, gdp));
Alex Tomasc9de5602008-01-29 00:19:52 -05003037 }
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003038 len = ext4_free_group_clusters(sb, gdp) - ac->ac_b_ex.fe_len;
3039 ext4_free_group_clusters_set(sb, gdp, len);
Tao Ma79f1ba42012-10-22 00:34:32 -04003040 ext4_block_bitmap_csum_set(sb, ac->ac_b_ex.fe_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04003041 ext4_group_desc_csum_set(sb, ac->ac_b_ex.fe_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003042
3043 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04003044 percpu_counter_sub(&sbi->s_freeclusters_counter, ac->ac_b_ex.fe_len);
Mingming Caod2a17632008-07-14 17:52:37 -04003045 /*
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003046 * Now reduce the dirty block count also. Should not go negative
Mingming Caod2a17632008-07-14 17:52:37 -04003047 */
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003048 if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
3049 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04003050 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
3051 reserv_clstrs);
Alex Tomasc9de5602008-01-29 00:19:52 -05003052
Jose R. Santos772cb7c2008-07-11 19:27:31 -04003053 if (sbi->s_log_groups_per_flex) {
3054 ext4_group_t flex_group = ext4_flex_group(sbi,
3055 ac->ac_b_ex.fe_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04003056 atomic64_sub(ac->ac_b_ex.fe_len,
Suraj Jitindar Singh7c990722020-02-18 19:08:51 -08003057 &sbi_array_rcu_deref(sbi, s_flex_groups,
3058 flex_group)->free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04003059 }
3060
Frank Mayhar03901312009-01-07 00:06:22 -05003061 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05003062 if (err)
3063 goto out_err;
Frank Mayhar03901312009-01-07 00:06:22 -05003064 err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05003065
3066out_err:
Aneesh Kumar K.V42a10ad2008-02-10 01:07:28 -05003067 brelse(bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05003068 return err;
3069}
3070
3071/*
3072 * here we normalize request for locality group
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04003073 * Group request are normalized to s_mb_group_prealloc, which goes to
3074 * s_strip if we set the same via mount option.
3075 * s_mb_group_prealloc can be configured via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003076 * /sys/fs/ext4/<partition>/mb_group_prealloc
Alex Tomasc9de5602008-01-29 00:19:52 -05003077 *
3078 * XXX: should we try to preallocate more than the group has now?
3079 */
3080static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
3081{
3082 struct super_block *sb = ac->ac_sb;
3083 struct ext4_locality_group *lg = ac->ac_lg;
3084
3085 BUG_ON(lg == NULL);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04003086 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003087 mb_debug(1, "#%u: goal %u blocks for locality group\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05003088 current->pid, ac->ac_g_ex.fe_len);
3089}
3090
3091/*
3092 * Normalization means making request better in terms of
3093 * size and alignment
3094 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003095static noinline_for_stack void
3096ext4_mb_normalize_request(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05003097 struct ext4_allocation_request *ar)
3098{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003099 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003100 int bsbits, max;
3101 ext4_lblk_t end;
Curt Wohlgemuth1592d2c2012-02-20 17:53:03 -05003102 loff_t size, start_off;
3103 loff_t orig_size __maybe_unused;
Andi Kleen5a0790c2010-06-14 13:28:03 -04003104 ext4_lblk_t start;
Alex Tomasc9de5602008-01-29 00:19:52 -05003105 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003106 struct ext4_prealloc_space *pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05003107
3108 /* do normalize only data requests, metadata requests
3109 do not need preallocation */
3110 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3111 return;
3112
3113 /* sometime caller may want exact blocks */
3114 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
3115 return;
3116
3117 /* caller may indicate that preallocation isn't
3118 * required (it's a tail, for example) */
3119 if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
3120 return;
3121
3122 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
3123 ext4_mb_normalize_group_request(ac);
3124 return ;
3125 }
3126
3127 bsbits = ac->ac_sb->s_blocksize_bits;
3128
3129 /* first, let's learn actual file size
3130 * given current request is allocated */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003131 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003132 size = size << bsbits;
3133 if (size < i_size_read(ac->ac_inode))
3134 size = i_size_read(ac->ac_inode);
Andi Kleen5a0790c2010-06-14 13:28:03 -04003135 orig_size = size;
Alex Tomasc9de5602008-01-29 00:19:52 -05003136
Valerie Clement19304792008-05-13 19:31:14 -04003137 /* max size of free chunks */
3138 max = 2 << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003139
Valerie Clement19304792008-05-13 19:31:14 -04003140#define NRL_CHECK_SIZE(req, size, max, chunk_size) \
3141 (req <= (size) || max <= (chunk_size))
Alex Tomasc9de5602008-01-29 00:19:52 -05003142
3143 /* first, try to predict filesize */
3144 /* XXX: should this table be tunable? */
3145 start_off = 0;
3146 if (size <= 16 * 1024) {
3147 size = 16 * 1024;
3148 } else if (size <= 32 * 1024) {
3149 size = 32 * 1024;
3150 } else if (size <= 64 * 1024) {
3151 size = 64 * 1024;
3152 } else if (size <= 128 * 1024) {
3153 size = 128 * 1024;
3154 } else if (size <= 256 * 1024) {
3155 size = 256 * 1024;
3156 } else if (size <= 512 * 1024) {
3157 size = 512 * 1024;
3158 } else if (size <= 1024 * 1024) {
3159 size = 1024 * 1024;
Valerie Clement19304792008-05-13 19:31:14 -04003160 } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003161 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
Valerie Clement19304792008-05-13 19:31:14 -04003162 (21 - bsbits)) << 21;
3163 size = 2 * 1024 * 1024;
3164 } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003165 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3166 (22 - bsbits)) << 22;
3167 size = 4 * 1024 * 1024;
3168 } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
Valerie Clement19304792008-05-13 19:31:14 -04003169 (8<<20)>>bsbits, max, 8 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003170 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3171 (23 - bsbits)) << 23;
3172 size = 8 * 1024 * 1024;
3173 } else {
Xiaoguang Wangb27b1532014-07-27 22:26:36 -04003174 start_off = (loff_t) ac->ac_o_ex.fe_logical << bsbits;
3175 size = (loff_t) EXT4_C2B(EXT4_SB(ac->ac_sb),
3176 ac->ac_o_ex.fe_len) << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003177 }
Andi Kleen5a0790c2010-06-14 13:28:03 -04003178 size = size >> bsbits;
3179 start = start_off >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003180
3181 /* don't cover already allocated blocks in selected range */
3182 if (ar->pleft && start <= ar->lleft) {
3183 size -= ar->lleft + 1 - start;
3184 start = ar->lleft + 1;
3185 }
3186 if (ar->pright && start + size - 1 >= ar->lright)
3187 size -= start + size - ar->lright;
3188
Jan Karacd648b82017-01-27 14:34:30 -05003189 /*
3190 * Trim allocation request for filesystems with artificially small
3191 * groups.
3192 */
3193 if (size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb))
3194 size = EXT4_BLOCKS_PER_GROUP(ac->ac_sb);
3195
Alex Tomasc9de5602008-01-29 00:19:52 -05003196 end = start + size;
3197
3198 /* check we don't cross already preallocated blocks */
3199 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003200 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003201 ext4_lblk_t pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05003202
Alex Tomasc9de5602008-01-29 00:19:52 -05003203 if (pa->pa_deleted)
3204 continue;
3205 spin_lock(&pa->pa_lock);
3206 if (pa->pa_deleted) {
3207 spin_unlock(&pa->pa_lock);
3208 continue;
3209 }
3210
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003211 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3212 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003213
3214 /* PA must not overlap original request */
3215 BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
3216 ac->ac_o_ex.fe_logical < pa->pa_lstart));
3217
Eric Sandeen38877f42009-08-17 23:55:24 -04003218 /* skip PAs this normalized request doesn't overlap with */
3219 if (pa->pa_lstart >= end || pa_end <= start) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003220 spin_unlock(&pa->pa_lock);
3221 continue;
3222 }
3223 BUG_ON(pa->pa_lstart <= start && pa_end >= end);
3224
Eric Sandeen38877f42009-08-17 23:55:24 -04003225 /* adjust start or end to be adjacent to this pa */
Alex Tomasc9de5602008-01-29 00:19:52 -05003226 if (pa_end <= ac->ac_o_ex.fe_logical) {
3227 BUG_ON(pa_end < start);
3228 start = pa_end;
Eric Sandeen38877f42009-08-17 23:55:24 -04003229 } else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003230 BUG_ON(pa->pa_lstart > end);
3231 end = pa->pa_lstart;
3232 }
3233 spin_unlock(&pa->pa_lock);
3234 }
3235 rcu_read_unlock();
3236 size = end - start;
3237
3238 /* XXX: extra loop to check we really don't overlap preallocations */
3239 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003240 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003241 ext4_lblk_t pa_end;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003242
Alex Tomasc9de5602008-01-29 00:19:52 -05003243 spin_lock(&pa->pa_lock);
3244 if (pa->pa_deleted == 0) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003245 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3246 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003247 BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
3248 }
3249 spin_unlock(&pa->pa_lock);
3250 }
3251 rcu_read_unlock();
3252
3253 if (start + size <= ac->ac_o_ex.fe_logical &&
3254 start > ac->ac_o_ex.fe_logical) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003255 ext4_msg(ac->ac_sb, KERN_ERR,
3256 "start %lu, size %lu, fe_logical %lu",
3257 (unsigned long) start, (unsigned long) size,
3258 (unsigned long) ac->ac_o_ex.fe_logical);
Dmitry Monakhovdfe076c2014-10-01 22:26:17 -04003259 BUG();
Alex Tomasc9de5602008-01-29 00:19:52 -05003260 }
Maurizio Lombardib5b60772014-05-27 12:48:56 -04003261 BUG_ON(size <= 0 || size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05003262
3263 /* now prepare goal request */
3264
3265 /* XXX: is it better to align blocks WRT to logical
3266 * placement or satisfy big request as is */
3267 ac->ac_g_ex.fe_logical = start;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003268 ac->ac_g_ex.fe_len = EXT4_NUM_B2C(sbi, size);
Alex Tomasc9de5602008-01-29 00:19:52 -05003269
3270 /* define goal start in order to merge */
3271 if (ar->pright && (ar->lright == (start + size))) {
3272 /* merge to the right */
3273 ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
3274 &ac->ac_f_ex.fe_group,
3275 &ac->ac_f_ex.fe_start);
3276 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3277 }
3278 if (ar->pleft && (ar->lleft + 1 == start)) {
3279 /* merge to the left */
3280 ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
3281 &ac->ac_f_ex.fe_group,
3282 &ac->ac_f_ex.fe_start);
3283 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3284 }
3285
Ritesh Harjani004379d2020-05-10 11:54:45 +05303286 mb_debug(1, "goal: %lld(was %lld) blocks at %u\n", size, orig_size,
3287 start);
Alex Tomasc9de5602008-01-29 00:19:52 -05003288}
3289
3290static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
3291{
3292 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3293
3294 if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
3295 atomic_inc(&sbi->s_bal_reqs);
3296 atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
Curt Wohlgemuth291dae42010-05-16 16:00:00 -04003297 if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
Alex Tomasc9de5602008-01-29 00:19:52 -05003298 atomic_inc(&sbi->s_bal_success);
3299 atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
3300 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
3301 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
3302 atomic_inc(&sbi->s_bal_goals);
3303 if (ac->ac_found > sbi->s_mb_max_to_scan)
3304 atomic_inc(&sbi->s_bal_breaks);
3305 }
3306
Theodore Ts'o296c3552009-09-30 00:32:42 -04003307 if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
3308 trace_ext4_mballoc_alloc(ac);
3309 else
3310 trace_ext4_mballoc_prealloc(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003311}
3312
3313/*
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003314 * Called on failure; free up any blocks from the inode PA for this
3315 * context. We don't need this for MB_GROUP_PA because we only change
3316 * pa_free in ext4_mb_release_context(), but on failure, we've already
3317 * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
3318 */
3319static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
3320{
3321 struct ext4_prealloc_space *pa = ac->ac_pa;
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003322 struct ext4_buddy e4b;
3323 int err;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003324
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003325 if (pa == NULL) {
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04003326 if (ac->ac_f_ex.fe_len == 0)
3327 return;
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003328 err = ext4_mb_load_buddy(ac->ac_sb, ac->ac_f_ex.fe_group, &e4b);
3329 if (err) {
3330 /*
3331 * This should never happen since we pin the
3332 * pages in the ext4_allocation_context so
3333 * ext4_mb_load_buddy() should never fail.
3334 */
3335 WARN(1, "mb_load_buddy failed (%d)", err);
3336 return;
3337 }
3338 ext4_lock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
3339 mb_free_blocks(ac->ac_inode, &e4b, ac->ac_f_ex.fe_start,
3340 ac->ac_f_ex.fe_len);
3341 ext4_unlock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04003342 ext4_mb_unload_buddy(&e4b);
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003343 return;
3344 }
3345 if (pa->pa_type == MB_INODE_PA)
Zheng Liu400db9d2012-05-28 17:53:53 -04003346 pa->pa_free += ac->ac_b_ex.fe_len;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003347}
3348
3349/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003350 * use blocks preallocated to inode
3351 */
3352static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
3353 struct ext4_prealloc_space *pa)
3354{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003355 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003356 ext4_fsblk_t start;
3357 ext4_fsblk_t end;
3358 int len;
3359
3360 /* found preallocated blocks, use them */
3361 start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003362 end = min(pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len),
3363 start + EXT4_C2B(sbi, ac->ac_o_ex.fe_len));
3364 len = EXT4_NUM_B2C(sbi, end - start);
Alex Tomasc9de5602008-01-29 00:19:52 -05003365 ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
3366 &ac->ac_b_ex.fe_start);
3367 ac->ac_b_ex.fe_len = len;
3368 ac->ac_status = AC_STATUS_FOUND;
3369 ac->ac_pa = pa;
3370
3371 BUG_ON(start < pa->pa_pstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003372 BUG_ON(end > pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len));
Alex Tomasc9de5602008-01-29 00:19:52 -05003373 BUG_ON(pa->pa_free < len);
3374 pa->pa_free -= len;
3375
Ritesh Harjani004379d2020-05-10 11:54:45 +05303376 mb_debug(1, "use %llu/%d from inode pa %p\n", start, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003377}
3378
3379/*
3380 * use blocks preallocated to locality group
3381 */
3382static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
3383 struct ext4_prealloc_space *pa)
3384{
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04003385 unsigned int len = ac->ac_o_ex.fe_len;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003386
Alex Tomasc9de5602008-01-29 00:19:52 -05003387 ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
3388 &ac->ac_b_ex.fe_group,
3389 &ac->ac_b_ex.fe_start);
3390 ac->ac_b_ex.fe_len = len;
3391 ac->ac_status = AC_STATUS_FOUND;
3392 ac->ac_pa = pa;
3393
3394 /* we don't correct pa_pstart or pa_plen here to avoid
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003395 * possible race when the group is being loaded concurrently
Alex Tomasc9de5602008-01-29 00:19:52 -05003396 * instead we correct pa later, after blocks are marked
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003397 * in on-disk bitmap -- see ext4_mb_release_context()
3398 * Other CPUs are prevented from allocating from this pa by lg_mutex
Alex Tomasc9de5602008-01-29 00:19:52 -05003399 */
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003400 mb_debug(1, "use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003401}
3402
3403/*
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003404 * Return the prealloc space that have minimal distance
3405 * from the goal block. @cpa is the prealloc
3406 * space that is having currently known minimal distance
3407 * from the goal block.
3408 */
3409static struct ext4_prealloc_space *
3410ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
3411 struct ext4_prealloc_space *pa,
3412 struct ext4_prealloc_space *cpa)
3413{
3414 ext4_fsblk_t cur_distance, new_distance;
3415
3416 if (cpa == NULL) {
3417 atomic_inc(&pa->pa_count);
3418 return pa;
3419 }
Andrew Morton79211c82015-11-09 14:58:13 -08003420 cur_distance = abs(goal_block - cpa->pa_pstart);
3421 new_distance = abs(goal_block - pa->pa_pstart);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003422
Coly Li5a54b2f2011-02-24 14:10:05 -05003423 if (cur_distance <= new_distance)
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003424 return cpa;
3425
3426 /* drop the previous reference */
3427 atomic_dec(&cpa->pa_count);
3428 atomic_inc(&pa->pa_count);
3429 return pa;
3430}
3431
3432/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003433 * search goal blocks in preallocated space
3434 */
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303435static noinline_for_stack bool
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003436ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003437{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003438 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003439 int order, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003440 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3441 struct ext4_locality_group *lg;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003442 struct ext4_prealloc_space *pa, *cpa = NULL;
3443 ext4_fsblk_t goal_block;
Alex Tomasc9de5602008-01-29 00:19:52 -05003444
3445 /* only data can be preallocated */
3446 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303447 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05003448
3449 /* first, try per-file preallocation */
3450 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003451 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003452
3453 /* all fields in this condition don't change,
3454 * so we can skip locking for them */
3455 if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003456 ac->ac_o_ex.fe_logical >= (pa->pa_lstart +
3457 EXT4_C2B(sbi, pa->pa_len)))
Alex Tomasc9de5602008-01-29 00:19:52 -05003458 continue;
3459
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003460 /* non-extent files can't have physical blocks past 2^32 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003461 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003462 (pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len) >
3463 EXT4_MAX_BLOCK_FILE_PHYS))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003464 continue;
3465
Alex Tomasc9de5602008-01-29 00:19:52 -05003466 /* found preallocated blocks, use them */
3467 spin_lock(&pa->pa_lock);
3468 if (pa->pa_deleted == 0 && pa->pa_free) {
3469 atomic_inc(&pa->pa_count);
3470 ext4_mb_use_inode_pa(ac, pa);
3471 spin_unlock(&pa->pa_lock);
3472 ac->ac_criteria = 10;
3473 rcu_read_unlock();
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303474 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05003475 }
3476 spin_unlock(&pa->pa_lock);
3477 }
3478 rcu_read_unlock();
3479
3480 /* can we use group allocation? */
3481 if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303482 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05003483
3484 /* inode may have no locality group for some reason */
3485 lg = ac->ac_lg;
3486 if (lg == NULL)
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303487 return false;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003488 order = fls(ac->ac_o_ex.fe_len) - 1;
3489 if (order > PREALLOC_TB_SIZE - 1)
3490 /* The max size of hash table is PREALLOC_TB_SIZE */
3491 order = PREALLOC_TB_SIZE - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003492
Akinobu Mitabda00de2010-03-03 23:53:25 -05003493 goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003494 /*
3495 * search for the prealloc space that is having
3496 * minimal distance from the goal block.
3497 */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003498 for (i = order; i < PREALLOC_TB_SIZE; i++) {
3499 rcu_read_lock();
3500 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
3501 pa_inode_list) {
3502 spin_lock(&pa->pa_lock);
3503 if (pa->pa_deleted == 0 &&
3504 pa->pa_free >= ac->ac_o_ex.fe_len) {
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003505
3506 cpa = ext4_mb_check_group_pa(goal_block,
3507 pa, cpa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003508 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003509 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003510 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003511 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003512 }
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003513 if (cpa) {
3514 ext4_mb_use_group_pa(ac, cpa);
3515 ac->ac_criteria = 20;
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303516 return true;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003517 }
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303518 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05003519}
3520
3521/*
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003522 * the function goes through all block freed in the group
3523 * but not yet committed and marks them used in in-core bitmap.
3524 * buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003525 * Need to be called with the ext4 group lock held
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003526 */
3527static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
3528 ext4_group_t group)
3529{
3530 struct rb_node *n;
3531 struct ext4_group_info *grp;
3532 struct ext4_free_data *entry;
3533
3534 grp = ext4_get_group_info(sb, group);
3535 n = rb_first(&(grp->bb_free_root));
3536
3537 while (n) {
Bobi Jam18aadd42012-02-20 17:53:02 -05003538 entry = rb_entry(n, struct ext4_free_data, efd_node);
3539 ext4_set_bits(bitmap, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003540 n = rb_next(n);
3541 }
3542 return;
3543}
3544
3545/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003546 * the function goes through all preallocation in this group and marks them
3547 * used in in-core bitmap. buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003548 * Need to be called with ext4 group lock held
Alex Tomasc9de5602008-01-29 00:19:52 -05003549 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04003550static noinline_for_stack
3551void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05003552 ext4_group_t group)
3553{
3554 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3555 struct ext4_prealloc_space *pa;
3556 struct list_head *cur;
3557 ext4_group_t groupnr;
3558 ext4_grpblk_t start;
3559 int preallocated = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003560 int len;
3561
3562 /* all form of preallocation discards first load group,
3563 * so the only competing code is preallocation use.
3564 * we don't need any locking here
3565 * notice we do NOT ignore preallocations with pa_deleted
3566 * otherwise we could leave used blocks available for
3567 * allocation in buddy when concurrent ext4_mb_put_pa()
3568 * is dropping preallocation
3569 */
3570 list_for_each(cur, &grp->bb_prealloc_list) {
3571 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3572 spin_lock(&pa->pa_lock);
3573 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3574 &groupnr, &start);
3575 len = pa->pa_len;
3576 spin_unlock(&pa->pa_lock);
3577 if (unlikely(len == 0))
3578 continue;
3579 BUG_ON(groupnr != group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003580 ext4_set_bits(bitmap, start, len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003581 preallocated += len;
Alex Tomasc9de5602008-01-29 00:19:52 -05003582 }
Ritesh Harjani004379d2020-05-10 11:54:45 +05303583 mb_debug(1, "preallocated %d for group %u\n", preallocated, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003584}
3585
3586static void ext4_mb_pa_callback(struct rcu_head *head)
3587{
3588 struct ext4_prealloc_space *pa;
3589 pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
Junho Ryu4e8d2132013-12-03 18:10:28 -05003590
3591 BUG_ON(atomic_read(&pa->pa_count));
3592 BUG_ON(pa->pa_deleted == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05003593 kmem_cache_free(ext4_pspace_cachep, pa);
3594}
3595
3596/*
3597 * drops a reference to preallocated space descriptor
3598 * if this was the last reference and the space is consumed
3599 */
3600static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
3601 struct super_block *sb, struct ext4_prealloc_space *pa)
3602{
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003603 ext4_group_t grp;
Eric Sandeend33a1972009-03-16 23:25:40 -04003604 ext4_fsblk_t grp_blk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003605
Alex Tomasc9de5602008-01-29 00:19:52 -05003606 /* in this short window concurrent discard can set pa_deleted */
3607 spin_lock(&pa->pa_lock);
Junho Ryu4e8d2132013-12-03 18:10:28 -05003608 if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0) {
3609 spin_unlock(&pa->pa_lock);
3610 return;
3611 }
3612
Alex Tomasc9de5602008-01-29 00:19:52 -05003613 if (pa->pa_deleted == 1) {
3614 spin_unlock(&pa->pa_lock);
3615 return;
3616 }
3617
3618 pa->pa_deleted = 1;
3619 spin_unlock(&pa->pa_lock);
3620
Eric Sandeend33a1972009-03-16 23:25:40 -04003621 grp_blk = pa->pa_pstart;
Theodore Ts'o60e66792010-05-17 07:00:00 -04003622 /*
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003623 * If doing group-based preallocation, pa_pstart may be in the
3624 * next group when pa is used up
3625 */
3626 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeend33a1972009-03-16 23:25:40 -04003627 grp_blk--;
3628
Lukas Czernerbd862982013-04-03 23:32:34 -04003629 grp = ext4_get_group_number(sb, grp_blk);
Alex Tomasc9de5602008-01-29 00:19:52 -05003630
3631 /*
3632 * possible race:
3633 *
3634 * P1 (buddy init) P2 (regular allocation)
3635 * find block B in PA
3636 * copy on-disk bitmap to buddy
3637 * mark B in on-disk bitmap
3638 * drop PA from group
3639 * mark all PAs in buddy
3640 *
3641 * thus, P1 initializes buddy with B available. to prevent this
3642 * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
3643 * against that pair
3644 */
3645 ext4_lock_group(sb, grp);
3646 list_del(&pa->pa_group_list);
3647 ext4_unlock_group(sb, grp);
3648
3649 spin_lock(pa->pa_obj_lock);
3650 list_del_rcu(&pa->pa_inode_list);
3651 spin_unlock(pa->pa_obj_lock);
3652
3653 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3654}
3655
3656/*
3657 * creates new preallocated space for given inode
3658 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003659static noinline_for_stack int
3660ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003661{
3662 struct super_block *sb = ac->ac_sb;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003663 struct ext4_sb_info *sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003664 struct ext4_prealloc_space *pa;
3665 struct ext4_group_info *grp;
3666 struct ext4_inode_info *ei;
3667
3668 /* preallocate only when found space is larger then requested */
3669 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3670 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3671 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3672
3673 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3674 if (pa == NULL)
3675 return -ENOMEM;
3676
3677 if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
3678 int winl;
3679 int wins;
3680 int win;
3681 int offs;
3682
3683 /* we can't allocate as much as normalizer wants.
3684 * so, found space must get proper lstart
3685 * to cover original request */
3686 BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
3687 BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
3688
3689 /* we're limited by original request in that
3690 * logical block must be covered any way
3691 * winl is window we can move our chunk within */
3692 winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
3693
3694 /* also, we should cover whole original request */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003695 wins = EXT4_C2B(sbi, ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003696
3697 /* the smallest one defines real window */
3698 win = min(winl, wins);
3699
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003700 offs = ac->ac_o_ex.fe_logical %
3701 EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003702 if (offs && offs < win)
3703 win = offs;
3704
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003705 ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical -
Lukas Czerner810da242013-03-02 17:18:58 -05003706 EXT4_NUM_B2C(sbi, win);
Alex Tomasc9de5602008-01-29 00:19:52 -05003707 BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
3708 BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
3709 }
3710
3711 /* preallocation can change ac_b_ex, thus we store actually
3712 * allocated blocks for history */
3713 ac->ac_f_ex = ac->ac_b_ex;
3714
3715 pa->pa_lstart = ac->ac_b_ex.fe_logical;
3716 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3717 pa->pa_len = ac->ac_b_ex.fe_len;
3718 pa->pa_free = pa->pa_len;
3719 atomic_set(&pa->pa_count, 1);
3720 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003721 INIT_LIST_HEAD(&pa->pa_inode_list);
3722 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003723 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003724 pa->pa_type = MB_INODE_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003725
Ritesh Harjani36bad422020-05-10 11:54:44 +05303726 mb_debug(1, "new inode pa %p: %llu/%d for %u\n", pa,
Alex Tomasc9de5602008-01-29 00:19:52 -05003727 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003728 trace_ext4_mb_new_inode_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003729
3730 ext4_mb_use_inode_pa(ac, pa);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003731 atomic_add(pa->pa_free, &sbi->s_mb_preallocated);
Alex Tomasc9de5602008-01-29 00:19:52 -05003732
3733 ei = EXT4_I(ac->ac_inode);
3734 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3735
3736 pa->pa_obj_lock = &ei->i_prealloc_lock;
3737 pa->pa_inode = ac->ac_inode;
3738
3739 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3740 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3741 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3742
3743 spin_lock(pa->pa_obj_lock);
3744 list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
3745 spin_unlock(pa->pa_obj_lock);
3746
3747 return 0;
3748}
3749
3750/*
3751 * creates new preallocated space for locality group inodes belongs to
3752 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003753static noinline_for_stack int
3754ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003755{
3756 struct super_block *sb = ac->ac_sb;
3757 struct ext4_locality_group *lg;
3758 struct ext4_prealloc_space *pa;
3759 struct ext4_group_info *grp;
3760
3761 /* preallocate only when found space is larger then requested */
3762 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3763 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3764 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3765
3766 BUG_ON(ext4_pspace_cachep == NULL);
3767 pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3768 if (pa == NULL)
3769 return -ENOMEM;
3770
3771 /* preallocation can change ac_b_ex, thus we store actually
3772 * allocated blocks for history */
3773 ac->ac_f_ex = ac->ac_b_ex;
3774
3775 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3776 pa->pa_lstart = pa->pa_pstart;
3777 pa->pa_len = ac->ac_b_ex.fe_len;
3778 pa->pa_free = pa->pa_len;
3779 atomic_set(&pa->pa_count, 1);
3780 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003781 INIT_LIST_HEAD(&pa->pa_inode_list);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05003782 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003783 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003784 pa->pa_type = MB_GROUP_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05003785
Ritesh Harjani36bad422020-05-10 11:54:44 +05303786 mb_debug(1, "new group pa %p: %llu/%d for %u\n", pa,
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003787 pa->pa_pstart, pa->pa_len, pa->pa_lstart);
3788 trace_ext4_mb_new_group_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003789
3790 ext4_mb_use_group_pa(ac, pa);
3791 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3792
3793 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3794 lg = ac->ac_lg;
3795 BUG_ON(lg == NULL);
3796
3797 pa->pa_obj_lock = &lg->lg_prealloc_lock;
3798 pa->pa_inode = NULL;
3799
3800 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3801 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3802 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3803
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003804 /*
3805 * We will later add the new pa to the right bucket
3806 * after updating the pa_free in ext4_mb_release_context
3807 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003808 return 0;
3809}
3810
3811static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
3812{
3813 int err;
3814
3815 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
3816 err = ext4_mb_new_group_pa(ac);
3817 else
3818 err = ext4_mb_new_inode_pa(ac);
3819 return err;
3820}
3821
3822/*
3823 * finds all unused blocks in on-disk bitmap, frees them in
3824 * in-core bitmap and buddy.
3825 * @pa must be unlinked from inode and group lists, so that
3826 * nobody else can find/use it.
3827 * the caller MUST hold group/inode locks.
3828 * TODO: optimize the case when there are no in-core structures yet
3829 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003830static noinline_for_stack int
3831ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003832 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05003833{
Alex Tomasc9de5602008-01-29 00:19:52 -05003834 struct super_block *sb = e4b->bd_sb;
3835 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003836 unsigned int end;
3837 unsigned int next;
Alex Tomasc9de5602008-01-29 00:19:52 -05003838 ext4_group_t group;
3839 ext4_grpblk_t bit;
Theodore Ts'oba80b102009-01-03 20:03:21 -05003840 unsigned long long grp_blk_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05003841 int free = 0;
3842
3843 BUG_ON(pa->pa_deleted == 0);
3844 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003845 grp_blk_start = pa->pa_pstart - EXT4_C2B(sbi, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003846 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3847 end = bit + pa->pa_len;
3848
Alex Tomasc9de5602008-01-29 00:19:52 -05003849 while (bit < end) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003850 bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003851 if (bit >= end)
3852 break;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05003853 next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003854 mb_debug(1, " free preallocated %u/%u in group %u\n",
Andi Kleen5a0790c2010-06-14 13:28:03 -04003855 (unsigned) ext4_group_first_block_no(sb, group) + bit,
3856 (unsigned) next - bit, (unsigned) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003857 free += next - bit;
3858
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003859 trace_ext4_mballoc_discard(sb, NULL, group, bit, next - bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003860 trace_ext4_mb_release_inode_pa(pa, (grp_blk_start +
3861 EXT4_C2B(sbi, bit)),
Lukas Czernera9c667f2011-06-06 09:51:52 -04003862 next - bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05003863 mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
3864 bit = next + 1;
3865 }
3866 if (free != pa->pa_free) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003867 ext4_msg(e4b->bd_sb, KERN_CRIT,
Ritesh Harjani36bad422020-05-10 11:54:44 +05303868 "pa %p: logic %lu, phys. %lu, len %d",
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003869 pa, (unsigned long) pa->pa_lstart,
3870 (unsigned long) pa->pa_pstart,
Ritesh Harjani36bad422020-05-10 11:54:44 +05303871 pa->pa_len);
Theodore Ts'oe29136f2010-06-29 12:54:28 -04003872 ext4_grp_locked_error(sb, group, 0, 0, "free %u, pa_free %u",
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003873 free, pa->pa_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05003874 /*
3875 * pa is already deleted so we use the value obtained
3876 * from the bitmap and continue.
3877 */
Alex Tomasc9de5602008-01-29 00:19:52 -05003878 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003879 atomic_add(free, &sbi->s_mb_discarded);
3880
zhong jiang863c37f2018-08-04 17:34:07 -04003881 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003882}
3883
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003884static noinline_for_stack int
3885ext4_mb_release_group_pa(struct ext4_buddy *e4b,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003886 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05003887{
Alex Tomasc9de5602008-01-29 00:19:52 -05003888 struct super_block *sb = e4b->bd_sb;
3889 ext4_group_t group;
3890 ext4_grpblk_t bit;
3891
Yongqiang Yang60e07cf2011-12-18 15:49:54 -05003892 trace_ext4_mb_release_group_pa(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003893 BUG_ON(pa->pa_deleted == 0);
3894 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3895 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3896 mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
3897 atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04003898 trace_ext4_mballoc_discard(sb, NULL, group, bit, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003899
3900 return 0;
3901}
3902
3903/*
3904 * releases all preallocations in given group
3905 *
3906 * first, we need to decide discard policy:
3907 * - when do we discard
3908 * 1) ENOSPC
3909 * - how many do we discard
3910 * 1) how many requested
3911 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003912static noinline_for_stack int
3913ext4_mb_discard_group_preallocations(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -05003914 ext4_group_t group, int needed)
3915{
3916 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3917 struct buffer_head *bitmap_bh = NULL;
3918 struct ext4_prealloc_space *pa, *tmp;
3919 struct list_head list;
3920 struct ext4_buddy e4b;
3921 int err;
3922 int busy = 0;
3923 int free = 0;
3924
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04003925 mb_debug(1, "discard preallocation for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003926
3927 if (list_empty(&grp->bb_prealloc_list))
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05303928 goto out_dbg;
Alex Tomasc9de5602008-01-29 00:19:52 -05003929
Theodore Ts'o574ca172008-07-11 19:27:31 -04003930 bitmap_bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04003931 if (IS_ERR(bitmap_bh)) {
3932 err = PTR_ERR(bitmap_bh);
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04003933 ext4_error_err(sb, -err,
3934 "Error %d reading block bitmap for %u",
3935 err, group);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05303936 goto out_dbg;
Alex Tomasc9de5602008-01-29 00:19:52 -05003937 }
3938
3939 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003940 if (err) {
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04003941 ext4_warning(sb, "Error %d loading buddy information for %u",
3942 err, group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003943 put_bh(bitmap_bh);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05303944 goto out_dbg;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04003945 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003946
3947 if (needed == 0)
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04003948 needed = EXT4_CLUSTERS_PER_GROUP(sb) + 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003949
Alex Tomasc9de5602008-01-29 00:19:52 -05003950 INIT_LIST_HEAD(&list);
Alex Tomasc9de5602008-01-29 00:19:52 -05003951repeat:
3952 ext4_lock_group(sb, group);
3953 list_for_each_entry_safe(pa, tmp,
3954 &grp->bb_prealloc_list, pa_group_list) {
3955 spin_lock(&pa->pa_lock);
3956 if (atomic_read(&pa->pa_count)) {
3957 spin_unlock(&pa->pa_lock);
3958 busy = 1;
3959 continue;
3960 }
3961 if (pa->pa_deleted) {
3962 spin_unlock(&pa->pa_lock);
3963 continue;
3964 }
3965
3966 /* seems this one can be freed ... */
3967 pa->pa_deleted = 1;
3968
3969 /* we can trust pa_free ... */
3970 free += pa->pa_free;
3971
3972 spin_unlock(&pa->pa_lock);
3973
3974 list_del(&pa->pa_group_list);
3975 list_add(&pa->u.pa_tmp_list, &list);
3976 }
3977
3978 /* if we still need more blocks and some PAs were used, try again */
3979 if (free < needed && busy) {
3980 busy = 0;
3981 ext4_unlock_group(sb, group);
Lukas Czernerbb8b20e2013-03-10 22:28:09 -04003982 cond_resched();
Alex Tomasc9de5602008-01-29 00:19:52 -05003983 goto repeat;
3984 }
3985
3986 /* found anything to free? */
3987 if (list_empty(&list)) {
3988 BUG_ON(free != 0);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05303989 mb_debug(1, "Someone else may have freed PA for this group %u\n",
3990 group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003991 goto out;
3992 }
3993
3994 /* now free all selected PAs */
3995 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
3996
3997 /* remove from object (inode or locality group) */
3998 spin_lock(pa->pa_obj_lock);
3999 list_del_rcu(&pa->pa_inode_list);
4000 spin_unlock(pa->pa_obj_lock);
4001
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004002 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004003 ext4_mb_release_group_pa(&e4b, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004004 else
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004005 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004006
4007 list_del(&pa->u.pa_tmp_list);
4008 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4009 }
4010
4011out:
4012 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04004013 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05004014 put_bh(bitmap_bh);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304015out_dbg:
4016 mb_debug(1, "discarded (%d) blocks preallocated for group %u bb_free (%d)\n",
4017 free, group, grp->bb_free);
Alex Tomasc9de5602008-01-29 00:19:52 -05004018 return free;
4019}
4020
4021/*
4022 * releases all non-used preallocated blocks for given inode
4023 *
4024 * It's important to discard preallocations under i_data_sem
4025 * We don't want another block to be served from the prealloc
4026 * space when we are discarding the inode prealloc space.
4027 *
4028 * FIXME!! Make sure it is valid at all the call sites
4029 */
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004030void ext4_discard_preallocations(struct inode *inode)
Alex Tomasc9de5602008-01-29 00:19:52 -05004031{
4032 struct ext4_inode_info *ei = EXT4_I(inode);
4033 struct super_block *sb = inode->i_sb;
4034 struct buffer_head *bitmap_bh = NULL;
4035 struct ext4_prealloc_space *pa, *tmp;
4036 ext4_group_t group = 0;
4037 struct list_head list;
4038 struct ext4_buddy e4b;
4039 int err;
4040
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004041 if (!S_ISREG(inode->i_mode)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004042 /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
4043 return;
4044 }
4045
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004046 mb_debug(1, "discard preallocation for inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004047 trace_ext4_discard_preallocations(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05004048
4049 INIT_LIST_HEAD(&list);
4050
4051repeat:
4052 /* first, collect all pa's in the inode */
4053 spin_lock(&ei->i_prealloc_lock);
4054 while (!list_empty(&ei->i_prealloc_list)) {
4055 pa = list_entry(ei->i_prealloc_list.next,
4056 struct ext4_prealloc_space, pa_inode_list);
4057 BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
4058 spin_lock(&pa->pa_lock);
4059 if (atomic_read(&pa->pa_count)) {
4060 /* this shouldn't happen often - nobody should
4061 * use preallocation while we're discarding it */
4062 spin_unlock(&pa->pa_lock);
4063 spin_unlock(&ei->i_prealloc_lock);
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004064 ext4_msg(sb, KERN_ERR,
4065 "uh-oh! used pa while discarding");
Alex Tomasc9de5602008-01-29 00:19:52 -05004066 WARN_ON(1);
4067 schedule_timeout_uninterruptible(HZ);
4068 goto repeat;
4069
4070 }
4071 if (pa->pa_deleted == 0) {
4072 pa->pa_deleted = 1;
4073 spin_unlock(&pa->pa_lock);
4074 list_del_rcu(&pa->pa_inode_list);
4075 list_add(&pa->u.pa_tmp_list, &list);
4076 continue;
4077 }
4078
4079 /* someone is deleting pa right now */
4080 spin_unlock(&pa->pa_lock);
4081 spin_unlock(&ei->i_prealloc_lock);
4082
4083 /* we have to wait here because pa_deleted
4084 * doesn't mean pa is already unlinked from
4085 * the list. as we might be called from
4086 * ->clear_inode() the inode will get freed
4087 * and concurrent thread which is unlinking
4088 * pa from inode's list may access already
4089 * freed memory, bad-bad-bad */
4090
4091 /* XXX: if this happens too often, we can
4092 * add a flag to force wait only in case
4093 * of ->clear_inode(), but not in case of
4094 * regular truncate */
4095 schedule_timeout_uninterruptible(HZ);
4096 goto repeat;
4097 }
4098 spin_unlock(&ei->i_prealloc_lock);
4099
4100 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004101 BUG_ON(pa->pa_type != MB_INODE_PA);
Lukas Czernerbd862982013-04-03 23:32:34 -04004102 group = ext4_get_group_number(sb, pa->pa_pstart);
Alex Tomasc9de5602008-01-29 00:19:52 -05004103
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04004104 err = ext4_mb_load_buddy_gfp(sb, group, &e4b,
4105 GFP_NOFS|__GFP_NOFAIL);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004106 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004107 ext4_error_err(sb, -err, "Error %d loading buddy information for %u",
4108 err, group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004109 continue;
4110 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004111
Theodore Ts'o574ca172008-07-11 19:27:31 -04004112 bitmap_bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04004113 if (IS_ERR(bitmap_bh)) {
4114 err = PTR_ERR(bitmap_bh);
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004115 ext4_error_err(sb, -err, "Error %d reading block bitmap for %u",
4116 err, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04004117 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004118 continue;
Alex Tomasc9de5602008-01-29 00:19:52 -05004119 }
4120
4121 ext4_lock_group(sb, group);
4122 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004123 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004124 ext4_unlock_group(sb, group);
4125
Jing Zhange39e07f2010-05-14 00:00:00 -04004126 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05004127 put_bh(bitmap_bh);
4128
4129 list_del(&pa->u.pa_tmp_list);
4130 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4131 }
4132}
4133
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004134#ifdef CONFIG_EXT4_DEBUG
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304135static inline void ext4_mb_show_pa(struct super_block *sb)
Alex Tomasc9de5602008-01-29 00:19:52 -05004136{
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304137 ext4_group_t i, ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -05004138
Theodore Ts'oa0b30c12013-02-09 16:28:20 -05004139 if (!ext4_mballoc_debug ||
Theodore Ts'o4dd89fc2011-02-27 17:23:47 -05004140 (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED))
Eric Sandeene3570632010-07-27 11:56:08 -04004141 return;
4142
Theodore Ts'o8df96752009-05-01 08:50:38 -04004143 ngroups = ext4_get_groups_count(sb);
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304144 ext4_msg(sb, KERN_ERR, "groups: ");
Theodore Ts'o8df96752009-05-01 08:50:38 -04004145 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004146 struct ext4_group_info *grp = ext4_get_group_info(sb, i);
4147 struct ext4_prealloc_space *pa;
4148 ext4_grpblk_t start;
4149 struct list_head *cur;
4150 ext4_lock_group(sb, i);
4151 list_for_each(cur, &grp->bb_prealloc_list) {
4152 pa = list_entry(cur, struct ext4_prealloc_space,
4153 pa_group_list);
4154 spin_lock(&pa->pa_lock);
4155 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
4156 NULL, &start);
4157 spin_unlock(&pa->pa_lock);
Ritesh Harjani36bad422020-05-10 11:54:44 +05304158 printk(KERN_ERR "PA:%u:%d:%d \n", i,
Akira Fujita1c718502009-07-05 23:04:36 -04004159 start, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004160 }
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04004161 ext4_unlock_group(sb, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05004162
Akira Fujita1c718502009-07-05 23:04:36 -04004163 printk(KERN_ERR "%u: %d/%d \n",
Alex Tomasc9de5602008-01-29 00:19:52 -05004164 i, grp->bb_free, grp->bb_fragments);
4165 }
4166 printk(KERN_ERR "\n");
4167}
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304168
4169static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
4170{
4171 struct super_block *sb = ac->ac_sb;
4172
4173 if (!ext4_mballoc_debug ||
4174 (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED))
4175 return;
4176
4177 ext4_msg(sb, KERN_ERR, "Can't allocate:"
4178 " Allocation context details:");
Ritesh Harjani004379d2020-05-10 11:54:45 +05304179 ext4_msg(sb, KERN_ERR, "status %u flags 0x%x",
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304180 ac->ac_status, ac->ac_flags);
4181 ext4_msg(sb, KERN_ERR, "orig %lu/%lu/%lu@%lu, "
4182 "goal %lu/%lu/%lu@%lu, "
4183 "best %lu/%lu/%lu@%lu cr %d",
4184 (unsigned long)ac->ac_o_ex.fe_group,
4185 (unsigned long)ac->ac_o_ex.fe_start,
4186 (unsigned long)ac->ac_o_ex.fe_len,
4187 (unsigned long)ac->ac_o_ex.fe_logical,
4188 (unsigned long)ac->ac_g_ex.fe_group,
4189 (unsigned long)ac->ac_g_ex.fe_start,
4190 (unsigned long)ac->ac_g_ex.fe_len,
4191 (unsigned long)ac->ac_g_ex.fe_logical,
4192 (unsigned long)ac->ac_b_ex.fe_group,
4193 (unsigned long)ac->ac_b_ex.fe_start,
4194 (unsigned long)ac->ac_b_ex.fe_len,
4195 (unsigned long)ac->ac_b_ex.fe_logical,
4196 (int)ac->ac_criteria);
Ritesh Harjani004379d2020-05-10 11:54:45 +05304197 ext4_msg(sb, KERN_ERR, "%u found", ac->ac_found);
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304198 ext4_mb_show_pa(sb);
4199}
Alex Tomasc9de5602008-01-29 00:19:52 -05004200#else
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304201static inline void ext4_mb_show_pa(struct super_block *sb)
4202{
4203 return;
4204}
Alex Tomasc9de5602008-01-29 00:19:52 -05004205static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
4206{
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304207 ext4_mb_show_pa(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004208 return;
4209}
4210#endif
4211
4212/*
4213 * We use locality group preallocation for small size file. The size of the
4214 * file is determined by the current size or the resulting size after
4215 * allocation which ever is larger
4216 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004217 * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
Alex Tomasc9de5602008-01-29 00:19:52 -05004218 */
4219static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
4220{
4221 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
4222 int bsbits = ac->ac_sb->s_blocksize_bits;
4223 loff_t size, isize;
4224
4225 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
4226 return;
4227
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004228 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
4229 return;
4230
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004231 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Theodore Ts'o50797482009-09-18 13:34:02 -04004232 isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
4233 >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05004234
Nikolay Borisov82dd1242019-02-10 23:04:16 -05004235 if ((size == isize) && !ext4_fs_is_busy(sbi) &&
4236 !inode_is_open_for_write(ac->ac_inode)) {
Theodore Ts'o50797482009-09-18 13:34:02 -04004237 ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
4238 return;
4239 }
4240
Robin Dongebbe0272011-10-26 05:14:27 -04004241 if (sbi->s_mb_group_prealloc <= 0) {
4242 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
4243 return;
4244 }
4245
Alex Tomasc9de5602008-01-29 00:19:52 -05004246 /* don't use group allocation for large files */
Theodore Ts'o71780572009-09-28 00:06:20 -04004247 size = max(size, isize);
Tao Macc483f12010-03-01 19:06:35 -05004248 if (size > sbi->s_mb_stream_request) {
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004249 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05004250 return;
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004251 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004252
4253 BUG_ON(ac->ac_lg != NULL);
4254 /*
4255 * locality group prealloc space are per cpu. The reason for having
4256 * per cpu locality group is to reduce the contention between block
4257 * request from multiple CPUs.
4258 */
Christoph Lametera0b6bc62014-08-17 12:30:28 -05004259 ac->ac_lg = raw_cpu_ptr(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05004260
4261 /* we're going to use group allocation */
4262 ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
4263
4264 /* serialize all allocations in the group */
4265 mutex_lock(&ac->ac_lg->lg_mutex);
4266}
4267
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004268static noinline_for_stack int
4269ext4_mb_initialize_context(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05004270 struct ext4_allocation_request *ar)
4271{
4272 struct super_block *sb = ar->inode->i_sb;
4273 struct ext4_sb_info *sbi = EXT4_SB(sb);
4274 struct ext4_super_block *es = sbi->s_es;
4275 ext4_group_t group;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004276 unsigned int len;
4277 ext4_fsblk_t goal;
Alex Tomasc9de5602008-01-29 00:19:52 -05004278 ext4_grpblk_t block;
4279
4280 /* we can't allocate > group size */
4281 len = ar->len;
4282
4283 /* just a dirty hack to filter too big requests */
Theodore Ts'o40ae3482013-02-04 15:08:40 -05004284 if (len >= EXT4_CLUSTERS_PER_GROUP(sb))
4285 len = EXT4_CLUSTERS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004286
4287 /* start searching from the goal */
4288 goal = ar->goal;
4289 if (goal < le32_to_cpu(es->s_first_data_block) ||
4290 goal >= ext4_blocks_count(es))
4291 goal = le32_to_cpu(es->s_first_data_block);
4292 ext4_get_group_no_and_offset(sb, goal, &group, &block);
4293
4294 /* set up allocation goals */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004295 ac->ac_b_ex.fe_logical = EXT4_LBLK_CMASK(sbi, ar->logical);
Alex Tomasc9de5602008-01-29 00:19:52 -05004296 ac->ac_status = AC_STATUS_CONTINUE;
Alex Tomasc9de5602008-01-29 00:19:52 -05004297 ac->ac_sb = sb;
4298 ac->ac_inode = ar->inode;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004299 ac->ac_o_ex.fe_logical = ac->ac_b_ex.fe_logical;
Alex Tomasc9de5602008-01-29 00:19:52 -05004300 ac->ac_o_ex.fe_group = group;
4301 ac->ac_o_ex.fe_start = block;
4302 ac->ac_o_ex.fe_len = len;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004303 ac->ac_g_ex = ac->ac_o_ex;
Alex Tomasc9de5602008-01-29 00:19:52 -05004304 ac->ac_flags = ar->flags;
Alex Tomasc9de5602008-01-29 00:19:52 -05004305
4306 /* we have to define context: we'll we work with a file or
4307 * locality group. this is a policy, actually */
4308 ext4_mb_group_or_file(ac);
4309
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004310 mb_debug(1, "init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, "
Alex Tomasc9de5602008-01-29 00:19:52 -05004311 "left: %u/%u, right %u/%u to %swritable\n",
4312 (unsigned) ar->len, (unsigned) ar->logical,
4313 (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
4314 (unsigned) ar->lleft, (unsigned) ar->pleft,
4315 (unsigned) ar->lright, (unsigned) ar->pright,
Nikolay Borisov82dd1242019-02-10 23:04:16 -05004316 inode_is_open_for_write(ar->inode) ? "" : "non-");
Alex Tomasc9de5602008-01-29 00:19:52 -05004317 return 0;
4318
4319}
4320
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004321static noinline_for_stack void
4322ext4_mb_discard_lg_preallocations(struct super_block *sb,
4323 struct ext4_locality_group *lg,
4324 int order, int total_entries)
4325{
4326 ext4_group_t group = 0;
4327 struct ext4_buddy e4b;
4328 struct list_head discard_list;
4329 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004330
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004331 mb_debug(1, "discard locality group preallocation\n");
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004332
4333 INIT_LIST_HEAD(&discard_list);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004334
4335 spin_lock(&lg->lg_prealloc_lock);
4336 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
Madhuparna Bhowmik92e9c582020-02-13 20:55:58 +05304337 pa_inode_list,
4338 lockdep_is_held(&lg->lg_prealloc_lock)) {
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004339 spin_lock(&pa->pa_lock);
4340 if (atomic_read(&pa->pa_count)) {
4341 /*
4342 * This is the pa that we just used
4343 * for block allocation. So don't
4344 * free that
4345 */
4346 spin_unlock(&pa->pa_lock);
4347 continue;
4348 }
4349 if (pa->pa_deleted) {
4350 spin_unlock(&pa->pa_lock);
4351 continue;
4352 }
4353 /* only lg prealloc space */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004354 BUG_ON(pa->pa_type != MB_GROUP_PA);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004355
4356 /* seems this one can be freed ... */
4357 pa->pa_deleted = 1;
4358 spin_unlock(&pa->pa_lock);
4359
4360 list_del_rcu(&pa->pa_inode_list);
4361 list_add(&pa->u.pa_tmp_list, &discard_list);
4362
4363 total_entries--;
4364 if (total_entries <= 5) {
4365 /*
4366 * we want to keep only 5 entries
4367 * allowing it to grow to 8. This
4368 * mak sure we don't call discard
4369 * soon for this list.
4370 */
4371 break;
4372 }
4373 }
4374 spin_unlock(&lg->lg_prealloc_lock);
4375
4376 list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04004377 int err;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004378
Lukas Czernerbd862982013-04-03 23:32:34 -04004379 group = ext4_get_group_number(sb, pa->pa_pstart);
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04004380 err = ext4_mb_load_buddy_gfp(sb, group, &e4b,
4381 GFP_NOFS|__GFP_NOFAIL);
4382 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004383 ext4_error_err(sb, -err, "Error %d loading buddy information for %u",
4384 err, group);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004385 continue;
4386 }
4387 ext4_lock_group(sb, group);
4388 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004389 ext4_mb_release_group_pa(&e4b, pa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004390 ext4_unlock_group(sb, group);
4391
Jing Zhange39e07f2010-05-14 00:00:00 -04004392 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004393 list_del(&pa->u.pa_tmp_list);
4394 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4395 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004396}
4397
4398/*
4399 * We have incremented pa_count. So it cannot be freed at this
4400 * point. Also we hold lg_mutex. So no parallel allocation is
4401 * possible from this lg. That means pa_free cannot be updated.
4402 *
4403 * A parallel ext4_mb_discard_group_preallocations is possible.
4404 * which can cause the lg_prealloc_list to be updated.
4405 */
4406
4407static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
4408{
4409 int order, added = 0, lg_prealloc_count = 1;
4410 struct super_block *sb = ac->ac_sb;
4411 struct ext4_locality_group *lg = ac->ac_lg;
4412 struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
4413
4414 order = fls(pa->pa_free) - 1;
4415 if (order > PREALLOC_TB_SIZE - 1)
4416 /* The max size of hash table is PREALLOC_TB_SIZE */
4417 order = PREALLOC_TB_SIZE - 1;
4418 /* Add the prealloc space to lg */
Niu Yaweif1167002013-02-01 21:31:27 -05004419 spin_lock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004420 list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
Madhuparna Bhowmik92e9c582020-02-13 20:55:58 +05304421 pa_inode_list,
4422 lockdep_is_held(&lg->lg_prealloc_lock)) {
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004423 spin_lock(&tmp_pa->pa_lock);
4424 if (tmp_pa->pa_deleted) {
Theodore Ts'oe7c9e3e2009-03-27 19:43:21 -04004425 spin_unlock(&tmp_pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004426 continue;
4427 }
4428 if (!added && pa->pa_free < tmp_pa->pa_free) {
4429 /* Add to the tail of the previous entry */
4430 list_add_tail_rcu(&pa->pa_inode_list,
4431 &tmp_pa->pa_inode_list);
4432 added = 1;
4433 /*
4434 * we want to count the total
4435 * number of entries in the list
4436 */
4437 }
4438 spin_unlock(&tmp_pa->pa_lock);
4439 lg_prealloc_count++;
4440 }
4441 if (!added)
4442 list_add_tail_rcu(&pa->pa_inode_list,
4443 &lg->lg_prealloc_list[order]);
Niu Yaweif1167002013-02-01 21:31:27 -05004444 spin_unlock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004445
4446 /* Now trim the list to be not more than 8 elements */
4447 if (lg_prealloc_count > 8) {
4448 ext4_mb_discard_lg_preallocations(sb, lg,
Niu Yaweif1167002013-02-01 21:31:27 -05004449 order, lg_prealloc_count);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004450 return;
4451 }
4452 return ;
4453}
4454
Alex Tomasc9de5602008-01-29 00:19:52 -05004455/*
4456 * release all resource we used in allocation
4457 */
4458static int ext4_mb_release_context(struct ext4_allocation_context *ac)
4459{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004460 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004461 struct ext4_prealloc_space *pa = ac->ac_pa;
4462 if (pa) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004463 if (pa->pa_type == MB_GROUP_PA) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004464 /* see comment in ext4_mb_use_group_pa() */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004465 spin_lock(&pa->pa_lock);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004466 pa->pa_pstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
4467 pa->pa_lstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004468 pa->pa_free -= ac->ac_b_ex.fe_len;
4469 pa->pa_len -= ac->ac_b_ex.fe_len;
4470 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004471 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004472 }
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004473 if (pa) {
4474 /*
4475 * We want to add the pa to the right bucket.
4476 * Remove it from the list and while adding
4477 * make sure the list to which we are adding
Amir Goldstein44183d42011-05-09 21:52:36 -04004478 * doesn't grow big.
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004479 */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004480 if ((pa->pa_type == MB_GROUP_PA) && likely(pa->pa_free)) {
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004481 spin_lock(pa->pa_obj_lock);
4482 list_del_rcu(&pa->pa_inode_list);
4483 spin_unlock(pa->pa_obj_lock);
4484 ext4_mb_add_n_trim(ac);
4485 }
4486 ext4_mb_put_pa(ac, ac->ac_sb, pa);
4487 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004488 if (ac->ac_bitmap_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004489 put_page(ac->ac_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05004490 if (ac->ac_buddy_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004491 put_page(ac->ac_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05004492 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
4493 mutex_unlock(&ac->ac_lg->lg_mutex);
4494 ext4_mb_collect_stats(ac);
4495 return 0;
4496}
4497
4498static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
4499{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004500 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004501 int ret;
4502 int freed = 0;
4503
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004504 trace_ext4_mb_discard_preallocations(sb, needed);
Theodore Ts'o8df96752009-05-01 08:50:38 -04004505 for (i = 0; i < ngroups && needed > 0; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004506 ret = ext4_mb_discard_group_preallocations(sb, i, needed);
4507 freed += ret;
4508 needed -= ret;
4509 }
4510
4511 return freed;
4512}
4513
4514/*
4515 * Main entry point into mballoc to allocate blocks
4516 * it tries to use preallocation first, then falls back
4517 * to usual allocation
4518 */
4519ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
Aditya Kali6c7a1202010-08-05 16:22:24 -04004520 struct ext4_allocation_request *ar, int *errp)
Alex Tomasc9de5602008-01-29 00:19:52 -05004521{
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04004522 int freed;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004523 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004524 struct ext4_sb_info *sbi;
4525 struct super_block *sb;
4526 ext4_fsblk_t block = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01004527 unsigned int inquota = 0;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004528 unsigned int reserv_clstrs = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004529
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04004530 might_sleep();
Alex Tomasc9de5602008-01-29 00:19:52 -05004531 sb = ar->inode->i_sb;
4532 sbi = EXT4_SB(sb);
4533
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004534 trace_ext4_request_blocks(ar);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004535
Dmitry Monakhov45dc63e2011-10-20 20:07:23 -04004536 /* Allow to use superuser reservation for quota file */
Tahsin Erdogan02749a42017-06-22 11:31:25 -04004537 if (ext4_is_quota_file(ar->inode))
Dmitry Monakhov45dc63e2011-10-20 20:07:23 -04004538 ar->flags |= EXT4_MB_USE_ROOT_BLOCKS;
4539
Theodore Ts'oe3cf5d52014-09-04 18:07:25 -04004540 if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0) {
Mingming Cao60e58e02009-01-22 18:13:05 +01004541 /* Without delayed allocation we need to verify
4542 * there is enough free blocks to do block allocation
4543 * and verify allocation doesn't exceed the quota limits.
Mingming Caod2a17632008-07-14 17:52:37 -04004544 */
Allison Henderson55f020d2011-05-25 07:41:26 -04004545 while (ar->len &&
Theodore Ts'oe7d5f312011-09-09 19:14:51 -04004546 ext4_claim_free_clusters(sbi, ar->len, ar->flags)) {
Allison Henderson55f020d2011-05-25 07:41:26 -04004547
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004548 /* let others to free the space */
Lukas Czernerbb8b20e2013-03-10 22:28:09 -04004549 cond_resched();
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004550 ar->len = ar->len >> 1;
4551 }
4552 if (!ar->len) {
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304553 ext4_mb_show_pa(sb);
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -04004554 *errp = -ENOSPC;
4555 return 0;
4556 }
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004557 reserv_clstrs = ar->len;
Allison Henderson55f020d2011-05-25 07:41:26 -04004558 if (ar->flags & EXT4_MB_USE_ROOT_BLOCKS) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004559 dquot_alloc_block_nofail(ar->inode,
4560 EXT4_C2B(sbi, ar->len));
Allison Henderson55f020d2011-05-25 07:41:26 -04004561 } else {
4562 while (ar->len &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004563 dquot_alloc_block(ar->inode,
4564 EXT4_C2B(sbi, ar->len))) {
Allison Henderson55f020d2011-05-25 07:41:26 -04004565
4566 ar->flags |= EXT4_MB_HINT_NOPREALLOC;
4567 ar->len--;
4568 }
Mingming Cao60e58e02009-01-22 18:13:05 +01004569 }
4570 inquota = ar->len;
4571 if (ar->len == 0) {
4572 *errp = -EDQUOT;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004573 goto out;
Mingming Cao60e58e02009-01-22 18:13:05 +01004574 }
Mingming Caod2a17632008-07-14 17:52:37 -04004575 }
Mingming Caod2a17632008-07-14 17:52:37 -04004576
Wei Yongjun85556c92012-09-26 20:43:37 -04004577 ac = kmem_cache_zalloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o833576b2009-07-13 09:45:52 -04004578 if (!ac) {
Shen Feng363d4252008-07-11 19:27:31 -04004579 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004580 *errp = -ENOMEM;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004581 goto out;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004582 }
4583
Eric Sandeen256bdb42008-02-10 01:13:33 -05004584 *errp = ext4_mb_initialize_context(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004585 if (*errp) {
4586 ar->len = 0;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004587 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05004588 }
4589
Eric Sandeen256bdb42008-02-10 01:13:33 -05004590 ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
4591 if (!ext4_mb_use_preallocated(ac)) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004592 ac->ac_op = EXT4_MB_HISTORY_ALLOC;
4593 ext4_mb_normalize_request(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004594repeat:
4595 /* allocate space in core */
Aditya Kali6c7a1202010-08-05 16:22:24 -04004596 *errp = ext4_mb_regular_allocator(ac);
Alexey Khoroshilov2c00ef32013-07-01 08:12:36 -04004597 if (*errp)
4598 goto discard_and_exit;
4599
4600 /* as we've just preallocated more space than
4601 * user requested originally, we store allocated
4602 * space in a special descriptor */
4603 if (ac->ac_status == AC_STATUS_FOUND &&
4604 ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
4605 *errp = ext4_mb_new_preallocation(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004606 if (*errp) {
Alexey Khoroshilov2c00ef32013-07-01 08:12:36 -04004607 discard_and_exit:
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004608 ext4_discard_allocated_blocks(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004609 goto errout;
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004610 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004611 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05004612 if (likely(ac->ac_status == AC_STATUS_FOUND)) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004613 *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_clstrs);
Vegard Nossum554a5cc2016-07-14 23:02:47 -04004614 if (*errp) {
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05004615 ext4_discard_allocated_blocks(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004616 goto errout;
4617 } else {
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04004618 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4619 ar->len = ac->ac_b_ex.fe_len;
4620 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004621 } else {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004622 freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004623 if (freed)
4624 goto repeat;
4625 *errp = -ENOSPC;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004626 }
4627
Eric Sandeen6d138ce2012-11-08 11:11:59 -05004628errout:
Aditya Kali6c7a1202010-08-05 16:22:24 -04004629 if (*errp) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004630 ac->ac_b_ex.fe_len = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004631 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004632 ext4_mb_show_ac(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004633 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05004634 ext4_mb_release_context(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04004635out:
4636 if (ac)
4637 kmem_cache_free(ext4_ac_cachep, ac);
Mingming Cao60e58e02009-01-22 18:13:05 +01004638 if (inquota && ar->len < inquota)
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004639 dquot_free_block(ar->inode, EXT4_C2B(sbi, inquota - ar->len));
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004640 if (!ar->len) {
Theodore Ts'oe3cf5d52014-09-04 18:07:25 -04004641 if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0)
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004642 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04004643 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004644 reserv_clstrs);
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05004645 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004646
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004647 trace_ext4_allocate_blocks(ar, (unsigned long long)block);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004648
Alex Tomasc9de5602008-01-29 00:19:52 -05004649 return block;
4650}
Alex Tomasc9de5602008-01-29 00:19:52 -05004651
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004652/*
4653 * We can merge two free data extents only if the physical blocks
4654 * are contiguous, AND the extents were freed by the same transaction,
4655 * AND the blocks are associated with the same group.
4656 */
Daeho Jeonga0154342017-06-22 23:54:33 -04004657static void ext4_try_merge_freed_extent(struct ext4_sb_info *sbi,
4658 struct ext4_free_data *entry,
4659 struct ext4_free_data *new_entry,
4660 struct rb_root *entry_rb_root)
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004661{
Daeho Jeonga0154342017-06-22 23:54:33 -04004662 if ((entry->efd_tid != new_entry->efd_tid) ||
4663 (entry->efd_group != new_entry->efd_group))
4664 return;
4665 if (entry->efd_start_cluster + entry->efd_count ==
4666 new_entry->efd_start_cluster) {
4667 new_entry->efd_start_cluster = entry->efd_start_cluster;
4668 new_entry->efd_count += entry->efd_count;
4669 } else if (new_entry->efd_start_cluster + new_entry->efd_count ==
4670 entry->efd_start_cluster) {
4671 new_entry->efd_count += entry->efd_count;
4672 } else
4673 return;
4674 spin_lock(&sbi->s_md_lock);
4675 list_del(&entry->efd_list);
4676 spin_unlock(&sbi->s_md_lock);
4677 rb_erase(&entry->efd_node, entry_rb_root);
4678 kmem_cache_free(ext4_free_data_cachep, entry);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004679}
4680
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004681static noinline_for_stack int
4682ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004683 struct ext4_free_data *new_entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05004684{
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004685 ext4_group_t group = e4b->bd_group;
Theodore Ts'o84130192011-09-09 18:50:51 -04004686 ext4_grpblk_t cluster;
Theodore Ts'od08854f2016-06-26 18:24:01 -04004687 ext4_grpblk_t clusters = new_entry->efd_count;
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004688 struct ext4_free_data *entry;
Alex Tomasc9de5602008-01-29 00:19:52 -05004689 struct ext4_group_info *db = e4b->bd_info;
4690 struct super_block *sb = e4b->bd_sb;
4691 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004692 struct rb_node **n = &db->bb_free_root.rb_node, *node;
4693 struct rb_node *parent = NULL, *new_node;
4694
Frank Mayhar03901312009-01-07 00:06:22 -05004695 BUG_ON(!ext4_handle_valid(handle));
Alex Tomasc9de5602008-01-29 00:19:52 -05004696 BUG_ON(e4b->bd_bitmap_page == NULL);
4697 BUG_ON(e4b->bd_buddy_page == NULL);
4698
Bobi Jam18aadd42012-02-20 17:53:02 -05004699 new_node = &new_entry->efd_node;
4700 cluster = new_entry->efd_start_cluster;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004701
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004702 if (!*n) {
4703 /* first free block exent. We need to
4704 protect buddy cache from being freed,
4705 * otherwise we'll refresh it from
4706 * on-disk bitmap and lose not-yet-available
4707 * blocks */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004708 get_page(e4b->bd_buddy_page);
4709 get_page(e4b->bd_bitmap_page);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004710 }
4711 while (*n) {
4712 parent = *n;
Bobi Jam18aadd42012-02-20 17:53:02 -05004713 entry = rb_entry(parent, struct ext4_free_data, efd_node);
4714 if (cluster < entry->efd_start_cluster)
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004715 n = &(*n)->rb_left;
Bobi Jam18aadd42012-02-20 17:53:02 -05004716 else if (cluster >= (entry->efd_start_cluster + entry->efd_count))
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004717 n = &(*n)->rb_right;
4718 else {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004719 ext4_grp_locked_error(sb, group, 0,
Theodore Ts'o84130192011-09-09 18:50:51 -04004720 ext4_group_first_block_no(sb, group) +
4721 EXT4_C2B(sbi, cluster),
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004722 "Block already on to-be-freed list");
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004723 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004724 }
4725 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004726
4727 rb_link_node(new_node, parent, n);
4728 rb_insert_color(new_node, &db->bb_free_root);
4729
4730 /* Now try to see the extent can be merged to left and right */
4731 node = rb_prev(new_node);
4732 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004733 entry = rb_entry(node, struct ext4_free_data, efd_node);
Daeho Jeonga0154342017-06-22 23:54:33 -04004734 ext4_try_merge_freed_extent(sbi, entry, new_entry,
4735 &(db->bb_free_root));
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004736 }
4737
4738 node = rb_next(new_node);
4739 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004740 entry = rb_entry(node, struct ext4_free_data, efd_node);
Daeho Jeonga0154342017-06-22 23:54:33 -04004741 ext4_try_merge_freed_extent(sbi, entry, new_entry,
4742 &(db->bb_free_root));
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04004743 }
Daeho Jeonga0154342017-06-22 23:54:33 -04004744
Theodore Ts'od08854f2016-06-26 18:24:01 -04004745 spin_lock(&sbi->s_md_lock);
Daeho Jeonga0154342017-06-22 23:54:33 -04004746 list_add_tail(&new_entry->efd_list, &sbi->s_freed_data_list);
Theodore Ts'od08854f2016-06-26 18:24:01 -04004747 sbi->s_mb_free_pending += clusters;
4748 spin_unlock(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004749 return 0;
4750}
4751
Theodore Ts'o44338712009-11-22 07:44:56 -05004752/**
4753 * ext4_free_blocks() -- Free given blocks and update quota
4754 * @handle: handle for this transaction
4755 * @inode: inode
Theodore Ts'oc60990b2019-06-19 16:30:03 -04004756 * @bh: optional buffer of the block to be freed
4757 * @block: starting physical block to be freed
4758 * @count: number of blocks to be freed
Yongqiang Yang5def1362011-06-05 23:26:40 -04004759 * @flags: flags used by ext4_free_blocks
Alex Tomasc9de5602008-01-29 00:19:52 -05004760 */
Theodore Ts'o44338712009-11-22 07:44:56 -05004761void ext4_free_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'oe6362602009-11-23 07:17:05 -05004762 struct buffer_head *bh, ext4_fsblk_t block,
4763 unsigned long count, int flags)
Alex Tomasc9de5602008-01-29 00:19:52 -05004764{
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05004765 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004766 struct super_block *sb = inode->i_sb;
Alex Tomasc9de5602008-01-29 00:19:52 -05004767 struct ext4_group_desc *gdp;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004768 unsigned int overflow;
Alex Tomasc9de5602008-01-29 00:19:52 -05004769 ext4_grpblk_t bit;
4770 struct buffer_head *gd_bh;
4771 ext4_group_t block_group;
4772 struct ext4_sb_info *sbi;
4773 struct ext4_buddy e4b;
Theodore Ts'o84130192011-09-09 18:50:51 -04004774 unsigned int count_clusters;
Alex Tomasc9de5602008-01-29 00:19:52 -05004775 int err = 0;
4776 int ret;
4777
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04004778 might_sleep();
Theodore Ts'oe6362602009-11-23 07:17:05 -05004779 if (bh) {
4780 if (block)
4781 BUG_ON(block != bh->b_blocknr);
4782 else
4783 block = bh->b_blocknr;
4784 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004785
Alex Tomasc9de5602008-01-29 00:19:52 -05004786 sbi = EXT4_SB(sb);
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004787 if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
4788 !ext4_data_block_valid(sbi, block, count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05004789 ext4_error(sb, "Freeing blocks not in datazone - "
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05004790 "block = %llu, count = %lu", block, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05004791 goto error_return;
4792 }
4793
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004794 ext4_debug("freeing block %llu\n", block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05004795 trace_ext4_free_blocks(inode, block, count, flags);
4796
Daeho Jeong9c02ac92015-10-17 22:28:21 -04004797 if (bh && (flags & EXT4_FREE_BLOCKS_FORGET)) {
4798 BUG_ON(count > 1);
Theodore Ts'oe6362602009-11-23 07:17:05 -05004799
Daeho Jeong9c02ac92015-10-17 22:28:21 -04004800 ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
4801 inode, bh, block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05004802 }
4803
Theodore Ts'o60e66792010-05-17 07:00:00 -04004804 /*
Theodore Ts'o84130192011-09-09 18:50:51 -04004805 * If the extent to be freed does not begin on a cluster
4806 * boundary, we need to deal with partial clusters at the
4807 * beginning and end of the extent. Normally we will free
4808 * blocks at the beginning or the end unless we are explicitly
4809 * requested to avoid doing so.
4810 */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004811 overflow = EXT4_PBLK_COFF(sbi, block);
Theodore Ts'o84130192011-09-09 18:50:51 -04004812 if (overflow) {
4813 if (flags & EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER) {
4814 overflow = sbi->s_cluster_ratio - overflow;
4815 block += overflow;
4816 if (count > overflow)
4817 count -= overflow;
4818 else
4819 return;
4820 } else {
4821 block -= overflow;
4822 count += overflow;
4823 }
4824 }
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004825 overflow = EXT4_LBLK_COFF(sbi, count);
Theodore Ts'o84130192011-09-09 18:50:51 -04004826 if (overflow) {
4827 if (flags & EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER) {
4828 if (count > overflow)
4829 count -= overflow;
4830 else
4831 return;
4832 } else
4833 count += sbi->s_cluster_ratio - overflow;
4834 }
4835
Daeho Jeong9c02ac92015-10-17 22:28:21 -04004836 if (!bh && (flags & EXT4_FREE_BLOCKS_FORGET)) {
4837 int i;
Daeho Jeongf96c4502016-02-21 18:31:41 -05004838 int is_metadata = flags & EXT4_FREE_BLOCKS_METADATA;
Daeho Jeong9c02ac92015-10-17 22:28:21 -04004839
4840 for (i = 0; i < count; i++) {
4841 cond_resched();
Daeho Jeongf96c4502016-02-21 18:31:41 -05004842 if (is_metadata)
4843 bh = sb_find_get_block(inode->i_sb, block + i);
4844 ext4_forget(handle, is_metadata, inode, bh, block + i);
Daeho Jeong9c02ac92015-10-17 22:28:21 -04004845 }
4846 }
4847
Alex Tomasc9de5602008-01-29 00:19:52 -05004848do_more:
4849 overflow = 0;
4850 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
4851
Darrick J. Wong163a2032013-08-28 17:35:51 -04004852 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(
4853 ext4_get_group_info(sb, block_group))))
4854 return;
4855
Alex Tomasc9de5602008-01-29 00:19:52 -05004856 /*
4857 * Check to see if we are freeing blocks across a group
4858 * boundary.
4859 */
Theodore Ts'o84130192011-09-09 18:50:51 -04004860 if (EXT4_C2B(sbi, bit) + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4861 overflow = EXT4_C2B(sbi, bit) + count -
4862 EXT4_BLOCKS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004863 count -= overflow;
4864 }
Lukas Czerner810da242013-03-02 17:18:58 -05004865 count_clusters = EXT4_NUM_B2C(sbi, count);
Theodore Ts'o574ca172008-07-11 19:27:31 -04004866 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04004867 if (IS_ERR(bitmap_bh)) {
4868 err = PTR_ERR(bitmap_bh);
4869 bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004870 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004871 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004872 gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004873 if (!gdp) {
4874 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05004875 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004876 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004877
4878 if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
4879 in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
4880 in_range(block, ext4_inode_table(sb, gdp),
Jun Piao49598e02018-01-11 13:17:49 -05004881 sbi->s_itb_per_group) ||
Alex Tomasc9de5602008-01-29 00:19:52 -05004882 in_range(block + count - 1, ext4_inode_table(sb, gdp),
Jun Piao49598e02018-01-11 13:17:49 -05004883 sbi->s_itb_per_group)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004884
Eric Sandeen12062dd2010-02-15 14:19:27 -05004885 ext4_error(sb, "Freeing blocks in system zone - "
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04004886 "Block = %llu, count = %lu", block, count);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04004887 /* err = 0. ext4_std_error should be a no op */
4888 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004889 }
4890
4891 BUFFER_TRACE(bitmap_bh, "getting write access");
4892 err = ext4_journal_get_write_access(handle, bitmap_bh);
4893 if (err)
4894 goto error_return;
4895
4896 /*
4897 * We are about to modify some metadata. Call the journal APIs
4898 * to unshare ->b_data if a currently-committing transaction is
4899 * using it
4900 */
4901 BUFFER_TRACE(gd_bh, "get_write_access");
4902 err = ext4_journal_get_write_access(handle, gd_bh);
4903 if (err)
4904 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05004905#ifdef AGGRESSIVE_CHECK
4906 {
4907 int i;
Theodore Ts'o84130192011-09-09 18:50:51 -04004908 for (i = 0; i < count_clusters; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -05004909 BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
4910 }
4911#endif
Theodore Ts'o84130192011-09-09 18:50:51 -04004912 trace_ext4_mballoc_free(sb, inode, block_group, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05004913
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04004914 /* __GFP_NOFAIL: retry infinitely, ignore TIF_MEMDIE and memcg limit. */
4915 err = ext4_mb_load_buddy_gfp(sb, block_group, &e4b,
4916 GFP_NOFS|__GFP_NOFAIL);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05004917 if (err)
4918 goto error_return;
Theodore Ts'oe6362602009-11-23 07:17:05 -05004919
Daeho Jeongf96c4502016-02-21 18:31:41 -05004920 /*
4921 * We need to make sure we don't reuse the freed block until after the
4922 * transaction is committed. We make an exception if the inode is to be
4923 * written in writeback mode since writeback mode has weak data
4924 * consistency guarantees.
4925 */
4926 if (ext4_handle_valid(handle) &&
4927 ((flags & EXT4_FREE_BLOCKS_METADATA) ||
4928 !ext4_should_writeback_data(inode))) {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004929 struct ext4_free_data *new_entry;
4930 /*
Michal Hocko7444a072015-07-05 12:33:44 -04004931 * We use __GFP_NOFAIL because ext4_free_blocks() is not allowed
4932 * to fail.
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004933 */
Michal Hocko7444a072015-07-05 12:33:44 -04004934 new_entry = kmem_cache_alloc(ext4_free_data_cachep,
4935 GFP_NOFS|__GFP_NOFAIL);
Bobi Jam18aadd42012-02-20 17:53:02 -05004936 new_entry->efd_start_cluster = bit;
4937 new_entry->efd_group = block_group;
4938 new_entry->efd_count = count_clusters;
4939 new_entry->efd_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004940
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004941 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04004942 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004943 ext4_mb_free_metadata(handle, &e4b, new_entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05004944 } else {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004945 /* need to update group_info->bb_free and bitmap
4946 * with group lock held. generate_buddy look at
4947 * them with group lock_held
4948 */
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05004949 if (test_opt(sb, DISCARD)) {
Daeho Jeonga0154342017-06-22 23:54:33 -04004950 err = ext4_issue_discard(sb, block_group, bit, count,
4951 NULL);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05004952 if (err && err != -EOPNOTSUPP)
4953 ext4_msg(sb, KERN_WARNING, "discard request in"
4954 " group:%d block:%d count:%lu failed"
4955 " with %d", block_group, bit, count,
4956 err);
Lukas Czerner8f9ff182013-10-30 11:10:52 -04004957 } else
4958 EXT4_MB_GRP_CLEAR_TRIMMED(e4b.bd_info);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05004959
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004960 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04004961 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
4962 mb_free_blocks(inode, &e4b, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05004963 }
4964
Theodore Ts'o021b65b2011-09-09 19:08:51 -04004965 ret = ext4_free_group_clusters(sb, gdp) + count_clusters;
4966 ext4_free_group_clusters_set(sb, gdp, ret);
Tao Ma79f1ba42012-10-22 00:34:32 -04004967 ext4_block_bitmap_csum_set(sb, block_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04004968 ext4_group_desc_csum_set(sb, block_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004969 ext4_unlock_group(sb, block_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004970
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004971 if (sbi->s_log_groups_per_flex) {
4972 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04004973 atomic64_add(count_clusters,
Suraj Jitindar Singh7c990722020-02-18 19:08:51 -08004974 &sbi_array_rcu_deref(sbi, s_flex_groups,
4975 flex_group)->free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04004976 }
4977
Eric Whitney9fe67142018-10-01 14:25:08 -04004978 /*
4979 * on a bigalloc file system, defer the s_freeclusters_counter
4980 * update to the caller (ext4_remove_space and friends) so they
4981 * can determine if a cluster freed here should be rereserved
4982 */
4983 if (!(flags & EXT4_FREE_BLOCKS_RERESERVE_CLUSTER)) {
4984 if (!(flags & EXT4_FREE_BLOCKS_NO_QUOT_UPDATE))
4985 dquot_free_block(inode, EXT4_C2B(sbi, count_clusters));
4986 percpu_counter_add(&sbi->s_freeclusters_counter,
4987 count_clusters);
4988 }
Jan Kara7d734532013-08-17 09:36:54 -04004989
4990 ext4_mb_unload_buddy(&e4b);
Aditya Kali7b415bf2011-09-09 19:04:51 -04004991
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004992 /* We dirtied the bitmap block */
4993 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
4994 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
4995
Alex Tomasc9de5602008-01-29 00:19:52 -05004996 /* And the group descriptor block */
4997 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
Frank Mayhar03901312009-01-07 00:06:22 -05004998 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05004999 if (!err)
5000 err = ret;
5001
5002 if (overflow && !err) {
5003 block += count;
5004 count = overflow;
5005 put_bh(bitmap_bh);
5006 goto do_more;
5007 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005008error_return:
5009 brelse(bitmap_bh);
5010 ext4_std_error(sb, err);
Alex Tomasc9de5602008-01-29 00:19:52 -05005011 return;
5012}
Lukas Czerner7360d172010-10-27 21:30:12 -04005013
5014/**
Yongqiang Yang05291552011-07-26 21:43:56 -04005015 * ext4_group_add_blocks() -- Add given blocks to an existing group
Amir Goldstein2846e822011-05-09 10:46:41 -04005016 * @handle: handle to this transaction
5017 * @sb: super block
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005018 * @block: start physical block to add to the block group
Amir Goldstein2846e822011-05-09 10:46:41 -04005019 * @count: number of blocks to free
5020 *
Amir Goldsteine73a3472011-05-09 21:40:01 -04005021 * This marks the blocks as free in the bitmap and buddy.
Amir Goldstein2846e822011-05-09 10:46:41 -04005022 */
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005023int ext4_group_add_blocks(handle_t *handle, struct super_block *sb,
Amir Goldstein2846e822011-05-09 10:46:41 -04005024 ext4_fsblk_t block, unsigned long count)
5025{
5026 struct buffer_head *bitmap_bh = NULL;
5027 struct buffer_head *gd_bh;
5028 ext4_group_t block_group;
5029 ext4_grpblk_t bit;
5030 unsigned int i;
5031 struct ext4_group_desc *desc;
5032 struct ext4_sb_info *sbi = EXT4_SB(sb);
Amir Goldsteine73a3472011-05-09 21:40:01 -04005033 struct ext4_buddy e4b;
harshadsd77147f2017-10-29 09:38:46 -04005034 int err = 0, ret, free_clusters_count;
5035 ext4_grpblk_t clusters_freed;
5036 ext4_fsblk_t first_cluster = EXT4_B2C(sbi, block);
5037 ext4_fsblk_t last_cluster = EXT4_B2C(sbi, block + count - 1);
5038 unsigned long cluster_count = last_cluster - first_cluster + 1;
Amir Goldstein2846e822011-05-09 10:46:41 -04005039
5040 ext4_debug("Adding block(s) %llu-%llu\n", block, block + count - 1);
5041
Yongqiang Yang4740b832011-07-26 21:51:08 -04005042 if (count == 0)
5043 return 0;
5044
Amir Goldstein2846e822011-05-09 10:46:41 -04005045 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
Amir Goldstein2846e822011-05-09 10:46:41 -04005046 /*
5047 * Check to see if we are freeing blocks across a group
5048 * boundary.
5049 */
harshadsd77147f2017-10-29 09:38:46 -04005050 if (bit + cluster_count > EXT4_CLUSTERS_PER_GROUP(sb)) {
5051 ext4_warning(sb, "too many blocks added to group %u",
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005052 block_group);
5053 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04005054 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005055 }
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04005056
Amir Goldstein2846e822011-05-09 10:46:41 -04005057 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04005058 if (IS_ERR(bitmap_bh)) {
5059 err = PTR_ERR(bitmap_bh);
5060 bitmap_bh = NULL;
Amir Goldstein2846e822011-05-09 10:46:41 -04005061 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005062 }
5063
Amir Goldstein2846e822011-05-09 10:46:41 -04005064 desc = ext4_get_group_desc(sb, block_group, &gd_bh);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005065 if (!desc) {
5066 err = -EIO;
Amir Goldstein2846e822011-05-09 10:46:41 -04005067 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005068 }
Amir Goldstein2846e822011-05-09 10:46:41 -04005069
5070 if (in_range(ext4_block_bitmap(sb, desc), block, count) ||
5071 in_range(ext4_inode_bitmap(sb, desc), block, count) ||
5072 in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) ||
5073 in_range(block + count - 1, ext4_inode_table(sb, desc),
5074 sbi->s_itb_per_group)) {
5075 ext4_error(sb, "Adding blocks in system zones - "
5076 "Block = %llu, count = %lu",
5077 block, count);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005078 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04005079 goto error_return;
5080 }
5081
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04005082 BUFFER_TRACE(bitmap_bh, "getting write access");
5083 err = ext4_journal_get_write_access(handle, bitmap_bh);
Amir Goldstein2846e822011-05-09 10:46:41 -04005084 if (err)
5085 goto error_return;
5086
5087 /*
5088 * We are about to modify some metadata. Call the journal APIs
5089 * to unshare ->b_data if a currently-committing transaction is
5090 * using it
5091 */
5092 BUFFER_TRACE(gd_bh, "get_write_access");
5093 err = ext4_journal_get_write_access(handle, gd_bh);
5094 if (err)
5095 goto error_return;
Amir Goldsteine73a3472011-05-09 21:40:01 -04005096
harshadsd77147f2017-10-29 09:38:46 -04005097 for (i = 0, clusters_freed = 0; i < cluster_count; i++) {
Amir Goldstein2846e822011-05-09 10:46:41 -04005098 BUFFER_TRACE(bitmap_bh, "clear bit");
Amir Goldsteine73a3472011-05-09 21:40:01 -04005099 if (!mb_test_bit(bit + i, bitmap_bh->b_data)) {
Amir Goldstein2846e822011-05-09 10:46:41 -04005100 ext4_error(sb, "bit already cleared for block %llu",
5101 (ext4_fsblk_t)(block + i));
5102 BUFFER_TRACE(bitmap_bh, "bit already cleared");
5103 } else {
harshadsd77147f2017-10-29 09:38:46 -04005104 clusters_freed++;
Amir Goldstein2846e822011-05-09 10:46:41 -04005105 }
5106 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04005107
5108 err = ext4_mb_load_buddy(sb, block_group, &e4b);
5109 if (err)
5110 goto error_return;
5111
5112 /*
5113 * need to update group_info->bb_free and bitmap
5114 * with group lock held. generate_buddy look at
5115 * them with group lock_held
5116 */
Amir Goldstein2846e822011-05-09 10:46:41 -04005117 ext4_lock_group(sb, block_group);
harshadsd77147f2017-10-29 09:38:46 -04005118 mb_clear_bits(bitmap_bh->b_data, bit, cluster_count);
5119 mb_free_blocks(NULL, &e4b, bit, cluster_count);
5120 free_clusters_count = clusters_freed +
5121 ext4_free_group_clusters(sb, desc);
5122 ext4_free_group_clusters_set(sb, desc, free_clusters_count);
Tao Ma79f1ba42012-10-22 00:34:32 -04005123 ext4_block_bitmap_csum_set(sb, block_group, desc, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04005124 ext4_group_desc_csum_set(sb, block_group, desc);
Amir Goldstein2846e822011-05-09 10:46:41 -04005125 ext4_unlock_group(sb, block_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04005126 percpu_counter_add(&sbi->s_freeclusters_counter,
harshadsd77147f2017-10-29 09:38:46 -04005127 clusters_freed);
Amir Goldstein2846e822011-05-09 10:46:41 -04005128
5129 if (sbi->s_log_groups_per_flex) {
5130 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
harshadsd77147f2017-10-29 09:38:46 -04005131 atomic64_add(clusters_freed,
Suraj Jitindar Singh7c990722020-02-18 19:08:51 -08005132 &sbi_array_rcu_deref(sbi, s_flex_groups,
5133 flex_group)->free_clusters);
Amir Goldstein2846e822011-05-09 10:46:41 -04005134 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04005135
5136 ext4_mb_unload_buddy(&e4b);
Amir Goldstein2846e822011-05-09 10:46:41 -04005137
5138 /* We dirtied the bitmap block */
5139 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
5140 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
5141
5142 /* And the group descriptor block */
5143 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
5144 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
5145 if (!err)
5146 err = ret;
5147
5148error_return:
5149 brelse(bitmap_bh);
5150 ext4_std_error(sb, err);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005151 return err;
Amir Goldstein2846e822011-05-09 10:46:41 -04005152}
5153
5154/**
Lukas Czerner7360d172010-10-27 21:30:12 -04005155 * ext4_trim_extent -- function to TRIM one single free extent in the group
5156 * @sb: super block for the file system
5157 * @start: starting block of the free extent in the alloc. group
5158 * @count: number of blocks to TRIM
5159 * @group: alloc. group we are working with
5160 * @e4b: ext4 buddy for the group
5161 *
5162 * Trim "count" blocks starting at "start" in the "group". To assure that no
5163 * one will allocate those blocks, mark it as used in buddy bitmap. This must
5164 * be called with under the group lock.
5165 */
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005166static int ext4_trim_extent(struct super_block *sb, int start, int count,
Theodore Ts'od9f34502011-04-30 13:47:24 -04005167 ext4_group_t group, struct ext4_buddy *e4b)
jon ernste2cbd582014-04-12 23:01:28 -04005168__releases(bitlock)
5169__acquires(bitlock)
Lukas Czerner7360d172010-10-27 21:30:12 -04005170{
5171 struct ext4_free_extent ex;
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005172 int ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005173
Tao Mab3d4c2b2011-07-11 00:01:52 -04005174 trace_ext4_trim_extent(sb, group, start, count);
5175
Lukas Czerner7360d172010-10-27 21:30:12 -04005176 assert_spin_locked(ext4_group_lock_ptr(sb, group));
5177
5178 ex.fe_start = start;
5179 ex.fe_group = group;
5180 ex.fe_len = count;
5181
5182 /*
5183 * Mark blocks used, so no one can reuse them while
5184 * being trimmed.
5185 */
5186 mb_mark_used(e4b, &ex);
5187 ext4_unlock_group(sb, group);
Daeho Jeonga0154342017-06-22 23:54:33 -04005188 ret = ext4_issue_discard(sb, group, start, count, NULL);
Lukas Czerner7360d172010-10-27 21:30:12 -04005189 ext4_lock_group(sb, group);
5190 mb_free_blocks(NULL, e4b, start, ex.fe_len);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005191 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04005192}
5193
5194/**
5195 * ext4_trim_all_free -- function to trim all free space in alloc. group
5196 * @sb: super block for file system
Tao Ma22612282011-07-11 00:04:34 -04005197 * @group: group to be trimmed
Lukas Czerner7360d172010-10-27 21:30:12 -04005198 * @start: first group block to examine
5199 * @max: last group block to examine
5200 * @minblocks: minimum extent block count
5201 *
5202 * ext4_trim_all_free walks through group's buddy bitmap searching for free
5203 * extents. When the free block is found, ext4_trim_extent is called to TRIM
5204 * the extent.
5205 *
5206 *
5207 * ext4_trim_all_free walks through group's block bitmap searching for free
5208 * extents. When the free extent is found, mark it as used in group buddy
5209 * bitmap. Then issue a TRIM command on this extent and free the extent in
5210 * the group buddy bitmap. This is done until whole group is scanned.
5211 */
Lukas Czerner0b75a842011-02-23 12:22:49 -05005212static ext4_grpblk_t
Lukas Czerner78944082011-05-24 18:16:27 -04005213ext4_trim_all_free(struct super_block *sb, ext4_group_t group,
5214 ext4_grpblk_t start, ext4_grpblk_t max,
5215 ext4_grpblk_t minblocks)
Lukas Czerner7360d172010-10-27 21:30:12 -04005216{
5217 void *bitmap;
Tao Ma169ddc32011-07-11 00:00:07 -04005218 ext4_grpblk_t next, count = 0, free_count = 0;
Lukas Czerner78944082011-05-24 18:16:27 -04005219 struct ext4_buddy e4b;
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005220 int ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005221
Tao Mab3d4c2b2011-07-11 00:01:52 -04005222 trace_ext4_trim_all_free(sb, group, start, max);
5223
Lukas Czerner78944082011-05-24 18:16:27 -04005224 ret = ext4_mb_load_buddy(sb, group, &e4b);
5225 if (ret) {
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04005226 ext4_warning(sb, "Error %d loading buddy information for %u",
5227 ret, group);
Lukas Czerner78944082011-05-24 18:16:27 -04005228 return ret;
5229 }
Lukas Czerner78944082011-05-24 18:16:27 -04005230 bitmap = e4b.bd_bitmap;
Lukas Czerner28739ee2011-05-24 18:28:07 -04005231
5232 ext4_lock_group(sb, group);
Tao Ma3d56b8d2011-07-11 00:03:38 -04005233 if (EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) &&
5234 minblocks >= atomic_read(&EXT4_SB(sb)->s_last_trim_minblks))
5235 goto out;
5236
Lukas Czerner78944082011-05-24 18:16:27 -04005237 start = (e4b.bd_info->bb_first_free > start) ?
5238 e4b.bd_info->bb_first_free : start;
Lukas Czerner7360d172010-10-27 21:30:12 -04005239
Lukas Czerner913eed832012-03-21 21:22:22 -04005240 while (start <= max) {
5241 start = mb_find_next_zero_bit(bitmap, max + 1, start);
5242 if (start > max)
Lukas Czerner7360d172010-10-27 21:30:12 -04005243 break;
Lukas Czerner913eed832012-03-21 21:22:22 -04005244 next = mb_find_next_bit(bitmap, max + 1, start);
Lukas Czerner7360d172010-10-27 21:30:12 -04005245
5246 if ((next - start) >= minblocks) {
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005247 ret = ext4_trim_extent(sb, start,
5248 next - start, group, &e4b);
5249 if (ret && ret != -EOPNOTSUPP)
5250 break;
5251 ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005252 count += next - start;
5253 }
Tao Ma169ddc32011-07-11 00:00:07 -04005254 free_count += next - start;
Lukas Czerner7360d172010-10-27 21:30:12 -04005255 start = next + 1;
5256
5257 if (fatal_signal_pending(current)) {
5258 count = -ERESTARTSYS;
5259 break;
5260 }
5261
5262 if (need_resched()) {
5263 ext4_unlock_group(sb, group);
5264 cond_resched();
5265 ext4_lock_group(sb, group);
5266 }
5267
Tao Ma169ddc32011-07-11 00:00:07 -04005268 if ((e4b.bd_info->bb_free - free_count) < minblocks)
Lukas Czerner7360d172010-10-27 21:30:12 -04005269 break;
5270 }
Tao Ma3d56b8d2011-07-11 00:03:38 -04005271
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005272 if (!ret) {
5273 ret = count;
Tao Ma3d56b8d2011-07-11 00:03:38 -04005274 EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005275 }
Tao Ma3d56b8d2011-07-11 00:03:38 -04005276out:
Lukas Czerner7360d172010-10-27 21:30:12 -04005277 ext4_unlock_group(sb, group);
Lukas Czerner78944082011-05-24 18:16:27 -04005278 ext4_mb_unload_buddy(&e4b);
Lukas Czerner7360d172010-10-27 21:30:12 -04005279
5280 ext4_debug("trimmed %d blocks in the group %d\n",
5281 count, group);
5282
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005283 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04005284}
5285
5286/**
5287 * ext4_trim_fs() -- trim ioctl handle function
5288 * @sb: superblock for filesystem
5289 * @range: fstrim_range structure
5290 *
5291 * start: First Byte to trim
5292 * len: number of Bytes to trim from start
5293 * minlen: minimum extent length in Bytes
5294 * ext4_trim_fs goes through all allocation groups containing Bytes from
5295 * start to start+len. For each such a group ext4_trim_all_free function
5296 * is invoked to trim all free space.
5297 */
5298int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range)
5299{
Lukas Czerner78944082011-05-24 18:16:27 -04005300 struct ext4_group_info *grp;
Lukas Czerner913eed832012-03-21 21:22:22 -04005301 ext4_group_t group, first_group, last_group;
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005302 ext4_grpblk_t cnt = 0, first_cluster, last_cluster;
Lukas Czerner913eed832012-03-21 21:22:22 -04005303 uint64_t start, end, minlen, trimmed = 0;
Jan Kara0f0a25b2011-01-11 15:16:31 -05005304 ext4_fsblk_t first_data_blk =
5305 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
Lukas Czerner913eed832012-03-21 21:22:22 -04005306 ext4_fsblk_t max_blks = ext4_blocks_count(EXT4_SB(sb)->s_es);
Lukas Czerner7360d172010-10-27 21:30:12 -04005307 int ret = 0;
5308
5309 start = range->start >> sb->s_blocksize_bits;
Lukas Czerner913eed832012-03-21 21:22:22 -04005310 end = start + (range->len >> sb->s_blocksize_bits) - 1;
Lukas Czerneraaf7d732012-09-26 22:21:21 -04005311 minlen = EXT4_NUM_B2C(EXT4_SB(sb),
5312 range->minlen >> sb->s_blocksize_bits);
Lukas Czerner7360d172010-10-27 21:30:12 -04005313
Lukas Czerner5de35e82012-10-22 18:01:19 -04005314 if (minlen > EXT4_CLUSTERS_PER_GROUP(sb) ||
5315 start >= max_blks ||
5316 range->len < sb->s_blocksize)
Lukas Czerner7360d172010-10-27 21:30:12 -04005317 return -EINVAL;
Lukas Czerner913eed832012-03-21 21:22:22 -04005318 if (end >= max_blks)
5319 end = max_blks - 1;
5320 if (end <= first_data_blk)
Tao Ma22f10452011-07-10 23:52:37 -04005321 goto out;
Lukas Czerner913eed832012-03-21 21:22:22 -04005322 if (start < first_data_blk)
Jan Kara0f0a25b2011-01-11 15:16:31 -05005323 start = first_data_blk;
Lukas Czerner7360d172010-10-27 21:30:12 -04005324
Lukas Czerner913eed832012-03-21 21:22:22 -04005325 /* Determine first and last group to examine based on start and end */
Lukas Czerner7360d172010-10-27 21:30:12 -04005326 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) start,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005327 &first_group, &first_cluster);
Lukas Czerner913eed832012-03-21 21:22:22 -04005328 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) end,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005329 &last_group, &last_cluster);
Lukas Czerner7360d172010-10-27 21:30:12 -04005330
Lukas Czerner913eed832012-03-21 21:22:22 -04005331 /* end now represents the last cluster to discard in this group */
5332 end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
Lukas Czerner7360d172010-10-27 21:30:12 -04005333
5334 for (group = first_group; group <= last_group; group++) {
Lukas Czerner78944082011-05-24 18:16:27 -04005335 grp = ext4_get_group_info(sb, group);
5336 /* We only do this if the grp has never been initialized */
5337 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04005338 ret = ext4_mb_init_group(sb, group, GFP_NOFS);
Lukas Czerner78944082011-05-24 18:16:27 -04005339 if (ret)
5340 break;
Lukas Czerner7360d172010-10-27 21:30:12 -04005341 }
5342
Tao Ma0ba08512011-03-23 15:48:11 -04005343 /*
Lukas Czerner913eed832012-03-21 21:22:22 -04005344 * For all the groups except the last one, last cluster will
5345 * always be EXT4_CLUSTERS_PER_GROUP(sb)-1, so we only need to
5346 * change it for the last group, note that last_cluster is
5347 * already computed earlier by ext4_get_group_no_and_offset()
Tao Ma0ba08512011-03-23 15:48:11 -04005348 */
Lukas Czerner913eed832012-03-21 21:22:22 -04005349 if (group == last_group)
5350 end = last_cluster;
Lukas Czerner7360d172010-10-27 21:30:12 -04005351
Lukas Czerner78944082011-05-24 18:16:27 -04005352 if (grp->bb_free >= minlen) {
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005353 cnt = ext4_trim_all_free(sb, group, first_cluster,
Lukas Czerner913eed832012-03-21 21:22:22 -04005354 end, minlen);
Lukas Czerner7360d172010-10-27 21:30:12 -04005355 if (cnt < 0) {
5356 ret = cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04005357 break;
5358 }
Lukas Czerner21e7fd22012-03-21 21:24:22 -04005359 trimmed += cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04005360 }
Lukas Czerner913eed832012-03-21 21:22:22 -04005361
5362 /*
5363 * For every group except the first one, we are sure
5364 * that the first cluster to discard will be cluster #0.
5365 */
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005366 first_cluster = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005367 }
Lukas Czerner7360d172010-10-27 21:30:12 -04005368
Tao Ma3d56b8d2011-07-11 00:03:38 -04005369 if (!ret)
5370 atomic_set(&EXT4_SB(sb)->s_last_trim_minblks, minlen);
5371
Tao Ma22f10452011-07-10 23:52:37 -04005372out:
Lukas Czerneraaf7d732012-09-26 22:21:21 -04005373 range->len = EXT4_C2B(EXT4_SB(sb), trimmed) << sb->s_blocksize_bits;
Lukas Czerner7360d172010-10-27 21:30:12 -04005374 return ret;
5375}
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -04005376
5377/* Iterate all the free extents in the group. */
5378int
5379ext4_mballoc_query_range(
5380 struct super_block *sb,
5381 ext4_group_t group,
5382 ext4_grpblk_t start,
5383 ext4_grpblk_t end,
5384 ext4_mballoc_query_range_fn formatter,
5385 void *priv)
5386{
5387 void *bitmap;
5388 ext4_grpblk_t next;
5389 struct ext4_buddy e4b;
5390 int error;
5391
5392 error = ext4_mb_load_buddy(sb, group, &e4b);
5393 if (error)
5394 return error;
5395 bitmap = e4b.bd_bitmap;
5396
5397 ext4_lock_group(sb, group);
5398
5399 start = (e4b.bd_info->bb_first_free > start) ?
5400 e4b.bd_info->bb_first_free : start;
5401 if (end >= EXT4_CLUSTERS_PER_GROUP(sb))
5402 end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
5403
5404 while (start <= end) {
5405 start = mb_find_next_zero_bit(bitmap, end + 1, start);
5406 if (start > end)
5407 break;
5408 next = mb_find_next_bit(bitmap, end + 1, start);
5409
5410 ext4_unlock_group(sb, group);
5411 error = formatter(sb, group, start, next - start, priv);
5412 if (error)
5413 goto out_unload;
5414 ext4_lock_group(sb, group);
5415
5416 start = next + 1;
5417 }
5418
5419 ext4_unlock_group(sb, group);
5420out_unload:
5421 ext4_mb_unload_buddy(&e4b);
5422
5423 return error;
5424}