blob: 24af9ed5c3e52583461ce834b1da817ac1f829b7 [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
Alex Tomasc9de5602008-01-29 00:19:52 -050021/*
22 * MUSTDO:
23 * - test ext4_ext_search_left() and ext4_ext_search_right()
24 * - search for metadata in few groups
25 *
26 * TODO v4:
27 * - normalization should take into account whether file is still open
28 * - discard preallocations if no free space left (policy?)
29 * - don't normalize tails
30 * - quota
31 * - reservation for superuser
32 *
33 * TODO v3:
34 * - bitmap read-ahead (proposed by Oleg Drokin aka green)
35 * - track min/max extents in each group for better group selection
36 * - mb_mark_used() may allocate chunk right after splitting buddy
37 * - tree of groups sorted by number of free blocks
38 * - error handling
39 */
40
41/*
42 * The allocation request involve request for multiple number of blocks
43 * near to the goal(block) value specified.
44 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040045 * During initialization phase of the allocator we decide to use the
46 * group preallocation or inode preallocation depending on the size of
47 * the file. The size of the file could be the resulting file size we
48 * would have after allocation, or the current file size, which ever
49 * is larger. If the size is less than sbi->s_mb_stream_request we
50 * select to use the group preallocation. The default value of
51 * s_mb_stream_request is 16 blocks. This can also be tuned via
52 * /sys/fs/ext4/<partition>/mb_stream_req. The value is represented in
53 * terms of number of blocks.
Alex Tomasc9de5602008-01-29 00:19:52 -050054 *
55 * The main motivation for having small file use group preallocation is to
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040056 * ensure that we have small files closer together on the disk.
Alex Tomasc9de5602008-01-29 00:19:52 -050057 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -040058 * First stage the allocator looks at the inode prealloc list,
59 * ext4_inode_info->i_prealloc_list, which contains list of prealloc
60 * spaces for this particular inode. The inode prealloc space is
61 * represented as:
Alex Tomasc9de5602008-01-29 00:19:52 -050062 *
63 * pa_lstart -> the logical start block for this prealloc space
64 * pa_pstart -> the physical start block for this prealloc space
Theodore Ts'o53accfa2011-09-09 18:48:51 -040065 * pa_len -> length for this prealloc space (in clusters)
66 * pa_free -> free space available in this prealloc space (in clusters)
Alex Tomasc9de5602008-01-29 00:19:52 -050067 *
68 * The inode preallocation space is used looking at the _logical_ start
69 * block. If only the logical file block falls within the range of prealloc
Tao Macaaf7a22011-07-11 18:42:42 -040070 * space we will consume the particular prealloc space. This makes sure that
71 * we have contiguous physical blocks representing the file blocks
Alex Tomasc9de5602008-01-29 00:19:52 -050072 *
73 * The important thing to be noted in case of inode prealloc space is that
74 * we don't modify the values associated to inode prealloc space except
75 * pa_free.
76 *
77 * If we are not able to find blocks in the inode prealloc space and if we
78 * have the group allocation flag set then we look at the locality group
Tao Macaaf7a22011-07-11 18:42:42 -040079 * prealloc space. These are per CPU prealloc list represented as
Alex Tomasc9de5602008-01-29 00:19:52 -050080 *
81 * ext4_sb_info.s_locality_groups[smp_processor_id()]
82 *
83 * The reason for having a per cpu locality group is to reduce the contention
84 * between CPUs. It is possible to get scheduled at this point.
85 *
86 * The locality group prealloc space is used looking at whether we have
Lucas De Marchi25985ed2011-03-30 22:57:33 -030087 * enough free space (pa_free) within the prealloc space.
Alex Tomasc9de5602008-01-29 00:19:52 -050088 *
89 * If we can't allocate blocks via inode prealloc or/and locality group
90 * prealloc then we look at the buddy cache. The buddy cache is represented
91 * by ext4_sb_info.s_buddy_cache (struct inode) whose file offset gets
92 * mapped to the buddy and bitmap information regarding different
93 * groups. The buddy information is attached to buddy cache inode so that
94 * we can access them through the page cache. The information regarding
95 * each group is loaded via ext4_mb_load_buddy. The information involve
96 * block bitmap and buddy information. The information are stored in the
97 * inode as:
98 *
99 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500100 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500101 *
102 *
103 * one block each for bitmap and buddy information. So for each group we
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300104 * take up 2 blocks. A page can contain blocks_per_page (PAGE_SIZE /
Alex Tomasc9de5602008-01-29 00:19:52 -0500105 * blocksize) blocks. So it can have information regarding groups_per_page
106 * which is blocks_per_page/2
107 *
108 * The buddy cache inode is not stored on disk. The inode is thrown
109 * away when the filesystem is unmounted.
110 *
111 * We look for count number of blocks in the buddy cache. If we were able
112 * to locate that many free blocks we return with additional information
113 * regarding rest of the contiguous physical block available
114 *
115 * Before allocating blocks via buddy cache we normalize the request
116 * blocks. This ensure we ask for more blocks that we needed. The extra
117 * blocks that we get after allocation is added to the respective prealloc
118 * list. In case of inode preallocation we follow a list of heuristics
119 * based on file size. This can be found in ext4_mb_normalize_request. If
120 * we are doing a group prealloc we try to normalize the request to
Theodore Ts'o27baebb2011-09-09 19:02:51 -0400121 * sbi->s_mb_group_prealloc. The default value of s_mb_group_prealloc is
122 * dependent on the cluster size; for non-bigalloc file systems, it is
Alex Tomasc9de5602008-01-29 00:19:52 -0500123 * 512 blocks. This can be tuned via
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400124 * /sys/fs/ext4/<partition>/mb_group_prealloc. The value is represented in
Alex Tomasc9de5602008-01-29 00:19:52 -0500125 * terms of number of blocks. If we have mounted the file system with -O
126 * stripe=<value> option the group prealloc request is normalized to the
Randy Dunlapb483bb72020-08-04 19:48:50 -0700127 * smallest multiple of the stripe value (sbi->s_stripe) which is
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400128 * greater than the default mb_group_prealloc.
Alex Tomasc9de5602008-01-29 00:19:52 -0500129 *
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400130 * The regular allocator (using the buddy cache) supports a few tunables.
Alex Tomasc9de5602008-01-29 00:19:52 -0500131 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400132 * /sys/fs/ext4/<partition>/mb_min_to_scan
133 * /sys/fs/ext4/<partition>/mb_max_to_scan
134 * /sys/fs/ext4/<partition>/mb_order2_req
Alex Tomasc9de5602008-01-29 00:19:52 -0500135 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400136 * The regular allocator uses buddy scan only if the request len is power of
Alex Tomasc9de5602008-01-29 00:19:52 -0500137 * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The
138 * value of s_mb_order2_reqs can be tuned via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400139 * /sys/fs/ext4/<partition>/mb_order2_req. If the request len is equal to
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200140 * stripe size (sbi->s_stripe), we try to search for contiguous block in
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400141 * stripe size. This should result in better allocation on RAID setups. If
142 * not, we search in the specific group using bitmap for best extents. The
143 * tunable min_to_scan and max_to_scan control the behaviour here.
Alex Tomasc9de5602008-01-29 00:19:52 -0500144 * min_to_scan indicate how long the mballoc __must__ look for a best
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400145 * extent and max_to_scan indicates how long the mballoc __can__ look for a
Alex Tomasc9de5602008-01-29 00:19:52 -0500146 * best extent in the found extents. Searching for the blocks starts with
147 * the group specified as the goal value in allocation context via
148 * ac_g_ex. Each group is first checked based on the criteria whether it
Tao Macaaf7a22011-07-11 18:42:42 -0400149 * can be used for allocation. ext4_mb_good_group explains how the groups are
Alex Tomasc9de5602008-01-29 00:19:52 -0500150 * checked.
151 *
152 * Both the prealloc space are getting populated as above. So for the first
153 * request we will hit the buddy cache which will result in this prealloc
154 * space getting filled. The prealloc space is then later used for the
155 * subsequent request.
156 */
157
158/*
159 * mballoc operates on the following data:
160 * - on-disk bitmap
161 * - in-core buddy (actually includes buddy and bitmap)
162 * - preallocation descriptors (PAs)
163 *
164 * there are two types of preallocations:
165 * - inode
166 * assiged to specific inode and can be used for this inode only.
167 * it describes part of inode's space preallocated to specific
168 * physical blocks. any block from that preallocated can be used
169 * independent. the descriptor just tracks number of blocks left
170 * unused. so, before taking some block from descriptor, one must
171 * make sure corresponded logical block isn't allocated yet. this
172 * also means that freeing any block within descriptor's range
173 * must discard all preallocated blocks.
174 * - locality group
175 * assigned to specific locality group which does not translate to
176 * permanent set of inodes: inode can join and leave group. space
177 * from this type of preallocation can be used for any inode. thus
178 * it's consumed from the beginning to the end.
179 *
180 * relation between them can be expressed as:
181 * in-core buddy = on-disk bitmap + preallocation descriptors
182 *
183 * this mean blocks mballoc considers used are:
184 * - allocated blocks (persistent)
185 * - preallocated blocks (non-persistent)
186 *
187 * consistency in mballoc world means that at any time a block is either
188 * free or used in ALL structures. notice: "any time" should not be read
189 * literally -- time is discrete and delimited by locks.
190 *
191 * to keep it simple, we don't use block numbers, instead we count number of
192 * blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA.
193 *
194 * all operations can be expressed as:
195 * - init buddy: buddy = on-disk + PAs
196 * - new PA: buddy += N; PA = N
197 * - use inode PA: on-disk += N; PA -= N
198 * - discard inode PA buddy -= on-disk - PA; PA = 0
199 * - use locality group PA on-disk += N; PA -= N
200 * - discard locality group PA buddy -= PA; PA = 0
201 * note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap
202 * is used in real operation because we can't know actual used
203 * bits from PA, only from on-disk bitmap
204 *
205 * if we follow this strict logic, then all operations above should be atomic.
206 * given some of them can block, we'd have to use something like semaphores
207 * killing performance on high-end SMP hardware. let's try to relax it using
208 * the following knowledge:
209 * 1) if buddy is referenced, it's already initialized
210 * 2) while block is used in buddy and the buddy is referenced,
211 * nobody can re-allocate that block
212 * 3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has
213 * bit set and PA claims same block, it's OK. IOW, one can set bit in
214 * on-disk bitmap if buddy has same bit set or/and PA covers corresponded
215 * block
216 *
217 * so, now we're building a concurrency table:
218 * - init buddy vs.
219 * - new PA
220 * blocks for PA are allocated in the buddy, buddy must be referenced
221 * until PA is linked to allocation group to avoid concurrent buddy init
222 * - use inode PA
223 * we need to make sure that either on-disk bitmap or PA has uptodate data
224 * given (3) we care that PA-=N operation doesn't interfere with init
225 * - discard inode PA
226 * the simplest way would be to have buddy initialized by the discard
227 * - use locality group PA
228 * again PA-=N must be serialized with init
229 * - discard locality group PA
230 * the simplest way would be to have buddy initialized by the discard
231 * - new PA vs.
232 * - use inode PA
233 * i_data_sem serializes them
234 * - discard inode PA
235 * discard process must wait until PA isn't used by another process
236 * - use locality group PA
237 * some mutex should serialize them
238 * - discard locality group PA
239 * discard process must wait until PA isn't used by another process
240 * - use inode PA
241 * - use inode PA
242 * i_data_sem or another mutex should serializes them
243 * - discard inode PA
244 * discard process must wait until PA isn't used by another process
245 * - use locality group PA
246 * nothing wrong here -- they're different PAs covering different blocks
247 * - discard locality group PA
248 * discard process must wait until PA isn't used by another process
249 *
250 * now we're ready to make few consequences:
251 * - PA is referenced and while it is no discard is possible
252 * - PA is referenced until block isn't marked in on-disk bitmap
253 * - PA changes only after on-disk bitmap
254 * - discard must not compete with init. either init is done before
255 * any discard or they're serialized somehow
256 * - buddy init as sum of on-disk bitmap and PAs is done atomically
257 *
258 * a special case when we've used PA to emptiness. no need to modify buddy
259 * in this case, but we should care about concurrent init
260 *
261 */
262
263 /*
264 * Logic in few words:
265 *
266 * - allocation:
267 * load group
268 * find blocks
269 * mark bits in on-disk bitmap
270 * release group
271 *
272 * - use preallocation:
273 * find proper PA (per-inode or group)
274 * load group
275 * mark bits in on-disk bitmap
276 * release group
277 * release PA
278 *
279 * - free:
280 * load group
281 * mark bits in on-disk bitmap
282 * release group
283 *
284 * - discard preallocations in group:
285 * mark PAs deleted
286 * move them onto local list
287 * load on-disk bitmap
288 * load group
289 * remove PA from object (inode or locality group)
290 * mark free blocks in-core
291 *
292 * - discard inode's preallocations:
293 */
294
295/*
296 * Locking rules
297 *
298 * Locks:
299 * - bitlock on a group (group)
300 * - object (inode/locality) (object)
301 * - per-pa lock (pa)
302 *
303 * Paths:
304 * - new pa
305 * object
306 * group
307 *
308 * - find and use pa:
309 * pa
310 *
311 * - release consumed pa:
312 * pa
313 * group
314 * object
315 *
316 * - generate in-core bitmap:
317 * group
318 * pa
319 *
320 * - discard all for given object (inode, locality group):
321 * object
322 * pa
323 * group
324 *
325 * - discard all for given group:
326 * group
327 * pa
328 * group
329 * object
330 *
331 */
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500332static struct kmem_cache *ext4_pspace_cachep;
333static struct kmem_cache *ext4_ac_cachep;
Bobi Jam18aadd42012-02-20 17:53:02 -0500334static struct kmem_cache *ext4_free_data_cachep;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400335
336/* We create slab caches for groupinfo data structures based on the
337 * superblock block size. There will be one per mounted filesystem for
338 * each unique s_blocksize_bits */
Eric Sandeen2892c152011-02-12 08:12:18 -0500339#define NR_GRPINFO_CACHES 8
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400340static struct kmem_cache *ext4_groupinfo_caches[NR_GRPINFO_CACHES];
341
Eric Biggersd6006182017-04-29 23:47:50 -0400342static const char * const ext4_groupinfo_slab_names[NR_GRPINFO_CACHES] = {
Eric Sandeen2892c152011-02-12 08:12:18 -0500343 "ext4_groupinfo_1k", "ext4_groupinfo_2k", "ext4_groupinfo_4k",
344 "ext4_groupinfo_8k", "ext4_groupinfo_16k", "ext4_groupinfo_32k",
345 "ext4_groupinfo_64k", "ext4_groupinfo_128k"
346};
347
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500348static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
349 ext4_group_t group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500350static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
351 ext4_group_t group);
Ritesh Harjani53f86b12020-05-20 12:10:32 +0530352static void ext4_mb_new_preallocation(struct ext4_allocation_context *ac);
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500353
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +0530354/*
355 * The algorithm using this percpu seq counter goes below:
356 * 1. We sample the percpu discard_pa_seq counter before trying for block
357 * allocation in ext4_mb_new_blocks().
358 * 2. We increment this percpu discard_pa_seq counter when we either allocate
359 * or free these blocks i.e. while marking those blocks as used/free in
360 * mb_mark_used()/mb_free_blocks().
361 * 3. We also increment this percpu seq counter when we successfully identify
362 * that the bb_prealloc_list is not empty and hence proceed for discarding
363 * of those PAs inside ext4_mb_discard_group_preallocations().
364 *
365 * Now to make sure that the regular fast path of block allocation is not
366 * affected, as a small optimization we only sample the percpu seq counter
367 * on that cpu. Only when the block allocation fails and when freed blocks
368 * found were 0, that is when we sample percpu seq counter for all cpus using
369 * below function ext4_get_discard_pa_seq_sum(). This happens after making
370 * sure that all the PAs on grp->bb_prealloc_list got freed or if it's empty.
371 */
372static DEFINE_PER_CPU(u64, discard_pa_seq);
373static inline u64 ext4_get_discard_pa_seq_sum(void)
374{
375 int __cpu;
376 u64 __seq = 0;
377
378 for_each_possible_cpu(__cpu)
379 __seq += per_cpu(discard_pa_seq, __cpu);
380 return __seq;
381}
382
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500383static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
384{
Alex Tomasc9de5602008-01-29 00:19:52 -0500385#if BITS_PER_LONG == 64
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500386 *bit += ((unsigned long) addr & 7UL) << 3;
387 addr = (void *) ((unsigned long) addr & ~7UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500388#elif BITS_PER_LONG == 32
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500389 *bit += ((unsigned long) addr & 3UL) << 3;
390 addr = (void *) ((unsigned long) addr & ~3UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500391#else
392#error "how many bits you are?!"
393#endif
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500394 return addr;
395}
Alex Tomasc9de5602008-01-29 00:19:52 -0500396
397static inline int mb_test_bit(int bit, void *addr)
398{
399 /*
400 * ext4_test_bit on architecture like powerpc
401 * needs unsigned long aligned address
402 */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500403 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500404 return ext4_test_bit(bit, addr);
405}
406
407static inline void mb_set_bit(int bit, void *addr)
408{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500409 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500410 ext4_set_bit(bit, addr);
411}
412
Alex Tomasc9de5602008-01-29 00:19:52 -0500413static inline void mb_clear_bit(int bit, void *addr)
414{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500415 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500416 ext4_clear_bit(bit, addr);
417}
418
Andrey Sidoroveabe0442013-04-09 12:22:29 -0400419static inline int mb_test_and_clear_bit(int bit, void *addr)
420{
421 addr = mb_correct_addr_and_bit(&bit, addr);
422 return ext4_test_and_clear_bit(bit, addr);
423}
424
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500425static inline int mb_find_next_zero_bit(void *addr, int max, int start)
426{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400427 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500428 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400429 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500430 start += fix;
431
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400432 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix;
433 if (ret > max)
434 return max;
435 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500436}
437
438static inline int mb_find_next_bit(void *addr, int max, int start)
439{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400440 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500441 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400442 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500443 start += fix;
444
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400445 ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
446 if (ret > max)
447 return max;
448 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500449}
450
Alex Tomasc9de5602008-01-29 00:19:52 -0500451static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
452{
453 char *bb;
454
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500455 BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
Alex Tomasc9de5602008-01-29 00:19:52 -0500456 BUG_ON(max == NULL);
457
458 if (order > e4b->bd_blkbits + 1) {
459 *max = 0;
460 return NULL;
461 }
462
463 /* at order 0 we see each particular block */
Coly Li84b775a2011-02-24 12:51:59 -0500464 if (order == 0) {
465 *max = 1 << (e4b->bd_blkbits + 3);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500466 return e4b->bd_bitmap;
Coly Li84b775a2011-02-24 12:51:59 -0500467 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500468
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500469 bb = e4b->bd_buddy + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
Alex Tomasc9de5602008-01-29 00:19:52 -0500470 *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
471
472 return bb;
473}
474
475#ifdef DOUBLE_CHECK
476static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
477 int first, int count)
478{
479 int i;
480 struct super_block *sb = e4b->bd_sb;
481
482 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
483 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400484 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500485 for (i = 0; i < count; i++) {
486 if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
487 ext4_fsblk_t blocknr;
Akinobu Mita5661bd62010-03-03 23:53:39 -0500488
489 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Theodore Ts'o53accfa2011-09-09 18:48:51 -0400490 blocknr += EXT4_C2B(EXT4_SB(sb), first + i);
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500491 ext4_grp_locked_error(sb, e4b->bd_group,
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400492 inode ? inode->i_ino : 0,
493 blocknr,
494 "freeing block already freed "
495 "(bit %u)",
496 first + i);
Wang Shilong736dedb2018-05-12 12:37:58 -0400497 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
498 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Alex Tomasc9de5602008-01-29 00:19:52 -0500499 }
500 mb_clear_bit(first + i, e4b->bd_info->bb_bitmap);
501 }
502}
503
504static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count)
505{
506 int i;
507
508 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
509 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400510 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500511 for (i = 0; i < count; i++) {
512 BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap));
513 mb_set_bit(first + i, e4b->bd_info->bb_bitmap);
514 }
515}
516
517static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
518{
Ritesh Harjanieb2b8eb2020-05-10 11:54:49 +0530519 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
520 return;
Alex Tomasc9de5602008-01-29 00:19:52 -0500521 if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) {
522 unsigned char *b1, *b2;
523 int i;
524 b1 = (unsigned char *) e4b->bd_info->bb_bitmap;
525 b2 = (unsigned char *) bitmap;
526 for (i = 0; i < e4b->bd_sb->s_blocksize; i++) {
527 if (b1[i] != b2[i]) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -0400528 ext4_msg(e4b->bd_sb, KERN_ERR,
529 "corruption in group %u "
530 "at byte %u(%u): %x in copy != %x "
531 "on disk/prealloc",
532 e4b->bd_group, i, i * 8, b1[i], b2[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500533 BUG();
534 }
535 }
536 }
537}
538
Ritesh Harjania3450212020-05-10 11:54:48 +0530539static void mb_group_bb_bitmap_alloc(struct super_block *sb,
540 struct ext4_group_info *grp, ext4_group_t group)
541{
542 struct buffer_head *bh;
543
544 grp->bb_bitmap = kmalloc(sb->s_blocksize, GFP_NOFS);
Ritesh Harjanieb2b8eb2020-05-10 11:54:49 +0530545 if (!grp->bb_bitmap)
546 return;
Ritesh Harjania3450212020-05-10 11:54:48 +0530547
548 bh = ext4_read_block_bitmap(sb, group);
Ritesh Harjanieb2b8eb2020-05-10 11:54:49 +0530549 if (IS_ERR_OR_NULL(bh)) {
550 kfree(grp->bb_bitmap);
551 grp->bb_bitmap = NULL;
552 return;
553 }
Ritesh Harjania3450212020-05-10 11:54:48 +0530554
555 memcpy(grp->bb_bitmap, bh->b_data, sb->s_blocksize);
556 put_bh(bh);
557}
558
559static void mb_group_bb_bitmap_free(struct ext4_group_info *grp)
560{
561 kfree(grp->bb_bitmap);
562}
563
Alex Tomasc9de5602008-01-29 00:19:52 -0500564#else
565static inline void mb_free_blocks_double(struct inode *inode,
566 struct ext4_buddy *e4b, int first, int count)
567{
568 return;
569}
570static inline void mb_mark_used_double(struct ext4_buddy *e4b,
571 int first, int count)
572{
573 return;
574}
575static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
576{
577 return;
578}
Ritesh Harjania3450212020-05-10 11:54:48 +0530579
580static inline void mb_group_bb_bitmap_alloc(struct super_block *sb,
581 struct ext4_group_info *grp, ext4_group_t group)
582{
583 return;
584}
585
586static inline void mb_group_bb_bitmap_free(struct ext4_group_info *grp)
587{
588 return;
589}
Alex Tomasc9de5602008-01-29 00:19:52 -0500590#endif
591
592#ifdef AGGRESSIVE_CHECK
593
594#define MB_CHECK_ASSERT(assert) \
595do { \
596 if (!(assert)) { \
597 printk(KERN_EMERG \
598 "Assertion failure in %s() at %s:%d: \"%s\"\n", \
599 function, file, line, # assert); \
600 BUG(); \
601 } \
602} while (0)
603
604static int __mb_check_buddy(struct ext4_buddy *e4b, char *file,
605 const char *function, int line)
606{
607 struct super_block *sb = e4b->bd_sb;
608 int order = e4b->bd_blkbits + 1;
609 int max;
610 int max2;
611 int i;
612 int j;
613 int k;
614 int count;
615 struct ext4_group_info *grp;
616 int fragments = 0;
617 int fstart;
618 struct list_head *cur;
619 void *buddy;
620 void *buddy2;
621
Chunguang Xuaddd7522020-09-28 19:36:35 +0800622 if (e4b->bd_info->bb_check_counter++ % 10)
623 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -0500624
625 while (order > 1) {
626 buddy = mb_find_buddy(e4b, order, &max);
627 MB_CHECK_ASSERT(buddy);
628 buddy2 = mb_find_buddy(e4b, order - 1, &max2);
629 MB_CHECK_ASSERT(buddy2);
630 MB_CHECK_ASSERT(buddy != buddy2);
631 MB_CHECK_ASSERT(max * 2 == max2);
632
633 count = 0;
634 for (i = 0; i < max; i++) {
635
636 if (mb_test_bit(i, buddy)) {
637 /* only single bit in buddy2 may be 1 */
638 if (!mb_test_bit(i << 1, buddy2)) {
639 MB_CHECK_ASSERT(
640 mb_test_bit((i<<1)+1, buddy2));
641 } else if (!mb_test_bit((i << 1) + 1, buddy2)) {
642 MB_CHECK_ASSERT(
643 mb_test_bit(i << 1, buddy2));
644 }
645 continue;
646 }
647
Robin Dong0a10da72011-10-26 08:48:54 -0400648 /* both bits in buddy2 must be 1 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500649 MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2));
650 MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2));
651
652 for (j = 0; j < (1 << order); j++) {
653 k = (i * (1 << order)) + j;
654 MB_CHECK_ASSERT(
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500655 !mb_test_bit(k, e4b->bd_bitmap));
Alex Tomasc9de5602008-01-29 00:19:52 -0500656 }
657 count++;
658 }
659 MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count);
660 order--;
661 }
662
663 fstart = -1;
664 buddy = mb_find_buddy(e4b, 0, &max);
665 for (i = 0; i < max; i++) {
666 if (!mb_test_bit(i, buddy)) {
667 MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free);
668 if (fstart == -1) {
669 fragments++;
670 fstart = i;
671 }
672 continue;
673 }
674 fstart = -1;
675 /* check used bits only */
676 for (j = 0; j < e4b->bd_blkbits + 1; j++) {
677 buddy2 = mb_find_buddy(e4b, j, &max2);
678 k = i >> j;
679 MB_CHECK_ASSERT(k < max2);
680 MB_CHECK_ASSERT(mb_test_bit(k, buddy2));
681 }
682 }
683 MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info));
684 MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments);
685
686 grp = ext4_get_group_info(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500687 list_for_each(cur, &grp->bb_prealloc_list) {
688 ext4_group_t groupnr;
689 struct ext4_prealloc_space *pa;
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400690 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
691 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k);
Alex Tomasc9de5602008-01-29 00:19:52 -0500692 MB_CHECK_ASSERT(groupnr == e4b->bd_group);
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400693 for (i = 0; i < pa->pa_len; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500694 MB_CHECK_ASSERT(mb_test_bit(k + i, buddy));
695 }
696 return 0;
697}
698#undef MB_CHECK_ASSERT
699#define mb_check_buddy(e4b) __mb_check_buddy(e4b, \
Harvey Harrison46e665e2008-04-17 10:38:59 -0400700 __FILE__, __func__, __LINE__)
Alex Tomasc9de5602008-01-29 00:19:52 -0500701#else
702#define mb_check_buddy(e4b)
703#endif
704
Coly Li7c786052011-02-24 13:24:25 -0500705/*
706 * Divide blocks started from @first with length @len into
707 * smaller chunks with power of 2 blocks.
708 * Clear the bits in bitmap which the blocks of the chunk(s) covered,
709 * then increase bb_counters[] for corresponded chunk size.
710 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500711static void ext4_mb_mark_free_simple(struct super_block *sb,
Eric Sandeena36b4492009-08-25 22:36:45 -0400712 void *buddy, ext4_grpblk_t first, ext4_grpblk_t len,
Alex Tomasc9de5602008-01-29 00:19:52 -0500713 struct ext4_group_info *grp)
714{
715 struct ext4_sb_info *sbi = EXT4_SB(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400716 ext4_grpblk_t min;
717 ext4_grpblk_t max;
718 ext4_grpblk_t chunk;
Chandan Rajendra69e43e82016-11-14 21:04:37 -0500719 unsigned int border;
Alex Tomasc9de5602008-01-29 00:19:52 -0500720
Theodore Ts'o7137d7a2011-09-09 18:38:51 -0400721 BUG_ON(len > EXT4_CLUSTERS_PER_GROUP(sb));
Alex Tomasc9de5602008-01-29 00:19:52 -0500722
723 border = 2 << sb->s_blocksize_bits;
724
725 while (len > 0) {
726 /* find how many blocks can be covered since this position */
727 max = ffs(first | border) - 1;
728
729 /* find how many blocks of power 2 we need to mark */
730 min = fls(len) - 1;
731
732 if (max < min)
733 min = max;
734 chunk = 1 << min;
735
736 /* mark multiblock chunks only */
737 grp->bb_counters[min]++;
738 if (min > 0)
739 mb_clear_bit(first >> min,
740 buddy + sbi->s_mb_offsets[min]);
741
742 len -= chunk;
743 first += chunk;
744 }
745}
746
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400747/*
748 * Cache the order of the largest free extent we have available in this block
749 * group.
750 */
751static void
752mb_set_largest_free_order(struct super_block *sb, struct ext4_group_info *grp)
753{
754 int i;
755 int bits;
756
757 grp->bb_largest_free_order = -1; /* uninit */
758
759 bits = sb->s_blocksize_bits + 1;
760 for (i = bits; i >= 0; i--) {
761 if (grp->bb_counters[i] > 0) {
762 grp->bb_largest_free_order = i;
763 break;
764 }
765 }
766}
767
Eric Sandeen089ceec2009-07-05 22:17:31 -0400768static noinline_for_stack
769void ext4_mb_generate_buddy(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -0500770 void *buddy, void *bitmap, ext4_group_t group)
771{
772 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
Namjae Jeone43bb4e2014-06-26 10:11:53 -0400773 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -0400774 ext4_grpblk_t max = EXT4_CLUSTERS_PER_GROUP(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400775 ext4_grpblk_t i = 0;
776 ext4_grpblk_t first;
777 ext4_grpblk_t len;
Alex Tomasc9de5602008-01-29 00:19:52 -0500778 unsigned free = 0;
779 unsigned fragments = 0;
780 unsigned long long period = get_cycles();
781
782 /* initialize buddy from bitmap which is aggregation
783 * of on-disk bitmap and preallocations */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500784 i = mb_find_next_zero_bit(bitmap, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -0500785 grp->bb_first_free = i;
786 while (i < max) {
787 fragments++;
788 first = i;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500789 i = mb_find_next_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500790 len = i - first;
791 free += len;
792 if (len > 1)
793 ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
794 else
795 grp->bb_counters[0]++;
796 if (i < max)
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500797 i = mb_find_next_zero_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -0500798 }
799 grp->bb_fragments = fragments;
800
801 if (free != grp->bb_free) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400802 ext4_grp_locked_error(sb, group, 0, 0,
Theodore Ts'o94d4c062014-07-05 19:15:50 -0400803 "block bitmap and bg descriptor "
804 "inconsistent: %u vs %u free clusters",
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400805 free, grp->bb_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500806 /*
Darrick J. Wong163a2032013-08-28 17:35:51 -0400807 * If we intend to continue, we consider group descriptor
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -0500808 * corrupt and update bb_free using bitmap value
809 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500810 grp->bb_free = free;
Wang Shilongdb79e6d2018-05-12 11:39:40 -0400811 ext4_mark_group_bitmap_corrupted(sb, group,
812 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Alex Tomasc9de5602008-01-29 00:19:52 -0500813 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400814 mb_set_largest_free_order(sb, grp);
Alex Tomasc9de5602008-01-29 00:19:52 -0500815
816 clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
817
818 period = get_cycles() - period;
Jun Piao49598e02018-01-11 13:17:49 -0500819 spin_lock(&sbi->s_bal_lock);
820 sbi->s_mb_buddies_generated++;
821 sbi->s_mb_generation_time += period;
822 spin_unlock(&sbi->s_bal_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -0500823}
824
Andrey Sidoroveabe0442013-04-09 12:22:29 -0400825static void mb_regenerate_buddy(struct ext4_buddy *e4b)
826{
827 int count;
828 int order = 1;
829 void *buddy;
830
831 while ((buddy = mb_find_buddy(e4b, order++, &count))) {
832 ext4_set_bits(buddy, 0, count);
833 }
834 e4b->bd_info->bb_fragments = 0;
835 memset(e4b->bd_info->bb_counters, 0,
836 sizeof(*e4b->bd_info->bb_counters) *
837 (e4b->bd_sb->s_blocksize_bits + 2));
838
839 ext4_mb_generate_buddy(e4b->bd_sb, e4b->bd_buddy,
840 e4b->bd_bitmap, e4b->bd_group);
841}
842
Alex Tomasc9de5602008-01-29 00:19:52 -0500843/* The buddy information is attached the buddy cache inode
844 * for convenience. The information regarding each group
845 * is loaded via ext4_mb_load_buddy. The information involve
846 * block bitmap and buddy information. The information are
847 * stored in the inode as
848 *
849 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500850 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -0500851 *
852 *
853 * one block each for bitmap and buddy information.
854 * So for each group we take up 2 blocks. A page can
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300855 * contain blocks_per_page (PAGE_SIZE / blocksize) blocks.
Alex Tomasc9de5602008-01-29 00:19:52 -0500856 * So it can have information regarding groups_per_page which
857 * is blocks_per_page/2
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -0400858 *
859 * Locking note: This routine takes the block group lock of all groups
860 * for this page; do not hold this lock when calling this routine!
Alex Tomasc9de5602008-01-29 00:19:52 -0500861 */
862
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -0400863static int ext4_mb_init_cache(struct page *page, char *incore, gfp_t gfp)
Alex Tomasc9de5602008-01-29 00:19:52 -0500864{
Theodore Ts'o8df96752009-05-01 08:50:38 -0400865 ext4_group_t ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -0500866 int blocksize;
867 int blocks_per_page;
868 int groups_per_page;
869 int err = 0;
870 int i;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500871 ext4_group_t first_group, group;
Alex Tomasc9de5602008-01-29 00:19:52 -0500872 int first_block;
873 struct super_block *sb;
874 struct buffer_head *bhs;
Darrick J. Wongfa77dcf2012-04-29 18:35:10 -0400875 struct buffer_head **bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -0500876 struct inode *inode;
877 char *data;
878 char *bitmap;
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400879 struct ext4_group_info *grinfo;
Alex Tomasc9de5602008-01-29 00:19:52 -0500880
Alex Tomasc9de5602008-01-29 00:19:52 -0500881 inode = page->mapping->host;
882 sb = inode->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400883 ngroups = ext4_get_groups_count(sb);
Fabian Frederick93407472017-02-27 14:28:32 -0800884 blocksize = i_blocksize(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300885 blocks_per_page = PAGE_SIZE / blocksize;
Alex Tomasc9de5602008-01-29 00:19:52 -0500886
Ritesh Harjanid3df1452020-05-10 11:54:54 +0530887 mb_debug(sb, "init page %lu\n", page->index);
888
Alex Tomasc9de5602008-01-29 00:19:52 -0500889 groups_per_page = blocks_per_page >> 1;
890 if (groups_per_page == 0)
891 groups_per_page = 1;
892
893 /* allocate buffer_heads to read bitmaps */
894 if (groups_per_page > 1) {
Alex Tomasc9de5602008-01-29 00:19:52 -0500895 i = sizeof(struct buffer_head *) * groups_per_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -0400896 bh = kzalloc(i, gfp);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500897 if (bh == NULL) {
898 err = -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -0500899 goto out;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500900 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500901 } else
902 bh = &bhs;
903
904 first_group = page->index * blocks_per_page / 2;
905
906 /* read all groups the page covers into the cache */
Theodore Ts'o813e5722012-02-20 17:52:46 -0500907 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
908 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500909 break;
910
Theodore Ts'o813e5722012-02-20 17:52:46 -0500911 grinfo = ext4_get_group_info(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400912 /*
913 * If page is uptodate then we came here after online resize
914 * which added some new uninitialized group info structs, so
915 * we must skip all initialized uptodate buddies on the page,
916 * which may be currently in use by an allocating task.
917 */
918 if (PageUptodate(page) && !EXT4_MB_GRP_NEED_INIT(grinfo)) {
919 bh[i] = NULL;
920 continue;
921 }
Alex Zhuravlevcfd73232020-04-21 10:54:07 +0300922 bh[i] = ext4_read_block_bitmap_nowait(sb, group, false);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400923 if (IS_ERR(bh[i])) {
924 err = PTR_ERR(bh[i]);
925 bh[i] = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -0500926 goto out;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500927 }
Ritesh Harjanid3df1452020-05-10 11:54:54 +0530928 mb_debug(sb, "read bitmap for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500929 }
930
931 /* wait for I/O completion */
Theodore Ts'o813e5722012-02-20 17:52:46 -0500932 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
Darrick J. Wong9008a582015-10-17 21:33:24 -0400933 int err2;
934
935 if (!bh[i])
936 continue;
937 err2 = ext4_wait_block_bitmap(sb, group, bh[i]);
938 if (!err)
939 err = err2;
Theodore Ts'o813e5722012-02-20 17:52:46 -0500940 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500941
942 first_block = page->index * blocks_per_page;
943 for (i = 0; i < blocks_per_page; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -0500944 group = (first_block + i) >> 1;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400945 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -0500946 break;
947
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400948 if (!bh[group - first_group])
949 /* skip initialized uptodate buddy */
950 continue;
951
Lukas Czernerbbdc3222015-06-08 11:38:37 -0400952 if (!buffer_verified(bh[group - first_group]))
953 /* Skip faulty bitmaps */
954 continue;
955 err = 0;
956
Alex Tomasc9de5602008-01-29 00:19:52 -0500957 /*
958 * data carry information regarding this
959 * particular group in the format specified
960 * above
961 *
962 */
963 data = page_address(page) + (i * blocksize);
964 bitmap = bh[group - first_group]->b_data;
965
966 /*
967 * We place the buddy block and bitmap block
968 * close together
969 */
970 if ((first_block + i) & 1) {
971 /* this is block of buddy */
972 BUG_ON(incore == NULL);
Ritesh Harjanid3df1452020-05-10 11:54:54 +0530973 mb_debug(sb, "put buddy for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500974 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400975 trace_ext4_mb_buddy_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500976 grinfo = ext4_get_group_info(sb, group);
977 grinfo->bb_fragments = 0;
978 memset(grinfo->bb_counters, 0,
Eric Sandeen19278052009-08-25 22:36:25 -0400979 sizeof(*grinfo->bb_counters) *
980 (sb->s_blocksize_bits+2));
Alex Tomasc9de5602008-01-29 00:19:52 -0500981 /*
982 * incore got set to the group block bitmap below
983 */
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500984 ext4_lock_group(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -0400985 /* init the buddy */
986 memset(data, 0xff, blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -0500987 ext4_mb_generate_buddy(sb, data, incore, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500988 ext4_unlock_group(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500989 incore = NULL;
990 } else {
991 /* this is block of bitmap */
992 BUG_ON(incore != NULL);
Ritesh Harjanid3df1452020-05-10 11:54:54 +0530993 mb_debug(sb, "put bitmap for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -0500994 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -0400995 trace_ext4_mb_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500996
997 /* see comments in ext4_mb_put_pa() */
998 ext4_lock_group(sb, group);
999 memcpy(data, bitmap, blocksize);
1000
1001 /* mark all preallocated blks used in in-core bitmap */
1002 ext4_mb_generate_from_pa(sb, data, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05001003 ext4_mb_generate_from_freelist(sb, data, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001004 ext4_unlock_group(sb, group);
1005
1006 /* set incore so that the buddy information can be
1007 * generated using this
1008 */
1009 incore = data;
1010 }
1011 }
1012 SetPageUptodate(page);
1013
1014out:
1015 if (bh) {
Amir Goldstein9b8b7d32011-05-09 21:49:42 -04001016 for (i = 0; i < groups_per_page; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -05001017 brelse(bh[i]);
1018 if (bh != &bhs)
1019 kfree(bh);
1020 }
1021 return err;
1022}
1023
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001024/*
Amir Goldstein2de88072011-05-09 21:48:13 -04001025 * Lock the buddy and bitmap pages. This make sure other parallel init_group
1026 * on the same buddy page doesn't happen whild holding the buddy page lock.
1027 * Return locked buddy and bitmap pages on e4b struct. If buddy and bitmap
1028 * are on the same page e4b->bd_buddy_page is NULL and return value is 0.
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001029 */
Amir Goldstein2de88072011-05-09 21:48:13 -04001030static int ext4_mb_get_buddy_page_lock(struct super_block *sb,
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001031 ext4_group_t group, struct ext4_buddy *e4b, gfp_t gfp)
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001032{
Amir Goldstein2de88072011-05-09 21:48:13 -04001033 struct inode *inode = EXT4_SB(sb)->s_buddy_cache;
1034 int block, pnum, poff;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001035 int blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -04001036 struct page *page;
1037
1038 e4b->bd_buddy_page = NULL;
1039 e4b->bd_bitmap_page = NULL;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001040
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001041 blocks_per_page = PAGE_SIZE / sb->s_blocksize;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001042 /*
1043 * the buddy cache inode stores the block bitmap
1044 * and buddy information in consecutive blocks.
1045 * So for each group we need two blocks.
1046 */
1047 block = group * 2;
1048 pnum = block / blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -04001049 poff = block % blocks_per_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001050 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001051 if (!page)
Younger Liuc57ab392014-04-10 23:03:43 -04001052 return -ENOMEM;
Amir Goldstein2de88072011-05-09 21:48:13 -04001053 BUG_ON(page->mapping != inode->i_mapping);
1054 e4b->bd_bitmap_page = page;
1055 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001056
Amir Goldstein2de88072011-05-09 21:48:13 -04001057 if (blocks_per_page >= 2) {
1058 /* buddy and bitmap are on the same page */
1059 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001060 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001061
1062 block++;
1063 pnum = block / blocks_per_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001064 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001065 if (!page)
Younger Liuc57ab392014-04-10 23:03:43 -04001066 return -ENOMEM;
Amir Goldstein2de88072011-05-09 21:48:13 -04001067 BUG_ON(page->mapping != inode->i_mapping);
1068 e4b->bd_buddy_page = page;
1069 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001070}
1071
Amir Goldstein2de88072011-05-09 21:48:13 -04001072static void ext4_mb_put_buddy_page_lock(struct ext4_buddy *e4b)
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001073{
Amir Goldstein2de88072011-05-09 21:48:13 -04001074 if (e4b->bd_bitmap_page) {
1075 unlock_page(e4b->bd_bitmap_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001076 put_page(e4b->bd_bitmap_page);
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001077 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001078 if (e4b->bd_buddy_page) {
1079 unlock_page(e4b->bd_buddy_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001080 put_page(e4b->bd_buddy_page);
Amir Goldstein2de88072011-05-09 21:48:13 -04001081 }
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001082}
1083
1084/*
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001085 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1086 * block group lock of all groups for this page; do not hold the BG lock when
1087 * calling this routine!
1088 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001089static noinline_for_stack
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001090int ext4_mb_init_group(struct super_block *sb, ext4_group_t group, gfp_t gfp)
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001091{
1092
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001093 struct ext4_group_info *this_grp;
Amir Goldstein2de88072011-05-09 21:48:13 -04001094 struct ext4_buddy e4b;
1095 struct page *page;
1096 int ret = 0;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001097
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001098 might_sleep();
Ritesh Harjanid3df1452020-05-10 11:54:54 +05301099 mb_debug(sb, "init group %u\n", group);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001100 this_grp = ext4_get_group_info(sb, group);
1101 /*
Aneesh Kumar K.V08c3a812009-09-09 23:50:17 -04001102 * This ensures that we don't reinit the buddy cache
1103 * page which map to the group from which we are already
1104 * allocating. If we are looking at the buddy cache we would
1105 * have taken a reference using ext4_mb_load_buddy and that
Amir Goldstein2de88072011-05-09 21:48:13 -04001106 * would have pinned buddy page to page cache.
Mel Gorman2457aec2014-06-04 16:10:31 -07001107 * The call to ext4_mb_get_buddy_page_lock will mark the
1108 * page accessed.
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001109 */
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001110 ret = ext4_mb_get_buddy_page_lock(sb, group, &e4b, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001111 if (ret || !EXT4_MB_GRP_NEED_INIT(this_grp)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001112 /*
1113 * somebody initialized the group
1114 * return without doing anything
1115 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001116 goto err;
1117 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001118
1119 page = e4b.bd_bitmap_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001120 ret = ext4_mb_init_cache(page, NULL, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001121 if (ret)
1122 goto err;
1123 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001124 ret = -EIO;
1125 goto err;
1126 }
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001127
Amir Goldstein2de88072011-05-09 21:48:13 -04001128 if (e4b.bd_buddy_page == NULL) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001129 /*
1130 * If both the bitmap and buddy are in
1131 * the same page we don't need to force
1132 * init the buddy
1133 */
Amir Goldstein2de88072011-05-09 21:48:13 -04001134 ret = 0;
1135 goto err;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001136 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001137 /* init buddy cache */
1138 page = e4b.bd_buddy_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001139 ret = ext4_mb_init_cache(page, e4b.bd_bitmap, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001140 if (ret)
1141 goto err;
1142 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001143 ret = -EIO;
1144 goto err;
1145 }
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001146err:
Amir Goldstein2de88072011-05-09 21:48:13 -04001147 ext4_mb_put_buddy_page_lock(&e4b);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001148 return ret;
1149}
1150
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001151/*
1152 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1153 * block group lock of all groups for this page; do not hold the BG lock when
1154 * calling this routine!
1155 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04001156static noinline_for_stack int
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001157ext4_mb_load_buddy_gfp(struct super_block *sb, ext4_group_t group,
1158 struct ext4_buddy *e4b, gfp_t gfp)
Alex Tomasc9de5602008-01-29 00:19:52 -05001159{
Alex Tomasc9de5602008-01-29 00:19:52 -05001160 int blocks_per_page;
1161 int block;
1162 int pnum;
1163 int poff;
1164 struct page *page;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001165 int ret;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001166 struct ext4_group_info *grp;
1167 struct ext4_sb_info *sbi = EXT4_SB(sb);
1168 struct inode *inode = sbi->s_buddy_cache;
Alex Tomasc9de5602008-01-29 00:19:52 -05001169
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001170 might_sleep();
Ritesh Harjanid3df1452020-05-10 11:54:54 +05301171 mb_debug(sb, "load group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001172
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001173 blocks_per_page = PAGE_SIZE / sb->s_blocksize;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001174 grp = ext4_get_group_info(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001175
1176 e4b->bd_blkbits = sb->s_blocksize_bits;
Tao Ma529da702011-07-23 16:07:26 -04001177 e4b->bd_info = grp;
Alex Tomasc9de5602008-01-29 00:19:52 -05001178 e4b->bd_sb = sb;
1179 e4b->bd_group = group;
1180 e4b->bd_buddy_page = NULL;
1181 e4b->bd_bitmap_page = NULL;
1182
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001183 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001184 /*
1185 * we need full data about the group
1186 * to make a good selection
1187 */
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001188 ret = ext4_mb_init_group(sb, group, gfp);
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001189 if (ret)
1190 return ret;
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001191 }
1192
Alex Tomasc9de5602008-01-29 00:19:52 -05001193 /*
1194 * the buddy cache inode stores the block bitmap
1195 * and buddy information in consecutive blocks.
1196 * So for each group we need two blocks.
1197 */
1198 block = group * 2;
1199 pnum = block / blocks_per_page;
1200 poff = block % blocks_per_page;
1201
1202 /* we could use find_or_create_page(), but it locks page
1203 * what we'd like to avoid in fast path ... */
Mel Gorman2457aec2014-06-04 16:10:31 -07001204 page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
Alex Tomasc9de5602008-01-29 00:19:52 -05001205 if (page == NULL || !PageUptodate(page)) {
1206 if (page)
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001207 /*
1208 * drop the page reference and try
1209 * to get the page with lock. If we
1210 * are not uptodate that implies
1211 * somebody just created the page but
1212 * is yet to initialize the same. So
1213 * wait for it to initialize.
1214 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001215 put_page(page);
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001216 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001217 if (page) {
1218 BUG_ON(page->mapping != inode->i_mapping);
1219 if (!PageUptodate(page)) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001220 ret = ext4_mb_init_cache(page, NULL, gfp);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001221 if (ret) {
1222 unlock_page(page);
1223 goto err;
1224 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001225 mb_cmp_bitmaps(e4b, page_address(page) +
1226 (poff * sb->s_blocksize));
1227 }
1228 unlock_page(page);
1229 }
1230 }
Younger Liuc57ab392014-04-10 23:03:43 -04001231 if (page == NULL) {
1232 ret = -ENOMEM;
1233 goto err;
1234 }
1235 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001236 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001237 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001238 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001239
1240 /* Pages marked accessed already */
Alex Tomasc9de5602008-01-29 00:19:52 -05001241 e4b->bd_bitmap_page = page;
1242 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -05001243
1244 block++;
1245 pnum = block / blocks_per_page;
1246 poff = block % blocks_per_page;
1247
Mel Gorman2457aec2014-06-04 16:10:31 -07001248 page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
Alex Tomasc9de5602008-01-29 00:19:52 -05001249 if (page == NULL || !PageUptodate(page)) {
1250 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001251 put_page(page);
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001252 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001253 if (page) {
1254 BUG_ON(page->mapping != inode->i_mapping);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001255 if (!PageUptodate(page)) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001256 ret = ext4_mb_init_cache(page, e4b->bd_bitmap,
1257 gfp);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001258 if (ret) {
1259 unlock_page(page);
1260 goto err;
1261 }
1262 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001263 unlock_page(page);
1264 }
1265 }
Younger Liuc57ab392014-04-10 23:03:43 -04001266 if (page == NULL) {
1267 ret = -ENOMEM;
1268 goto err;
1269 }
1270 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001271 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001272 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001273 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001274
1275 /* Pages marked accessed already */
Alex Tomasc9de5602008-01-29 00:19:52 -05001276 e4b->bd_buddy_page = page;
1277 e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -05001278
Alex Tomasc9de5602008-01-29 00:19:52 -05001279 return 0;
1280
1281err:
Yang Ruirui26626f112011-04-16 19:17:48 -04001282 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001283 put_page(page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001284 if (e4b->bd_bitmap_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001285 put_page(e4b->bd_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001286 if (e4b->bd_buddy_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001287 put_page(e4b->bd_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001288 e4b->bd_buddy = NULL;
1289 e4b->bd_bitmap = NULL;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001290 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05001291}
1292
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001293static int ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
1294 struct ext4_buddy *e4b)
1295{
1296 return ext4_mb_load_buddy_gfp(sb, group, e4b, GFP_NOFS);
1297}
1298
Jing Zhange39e07f2010-05-14 00:00:00 -04001299static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001300{
1301 if (e4b->bd_bitmap_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001302 put_page(e4b->bd_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001303 if (e4b->bd_buddy_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001304 put_page(e4b->bd_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001305}
1306
1307
1308static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1309{
1310 int order = 1;
Nicolai Stangeb5cb3162016-05-05 17:38:03 -04001311 int bb_incr = 1 << (e4b->bd_blkbits - 1);
Alex Tomasc9de5602008-01-29 00:19:52 -05001312 void *bb;
1313
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001314 BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
Alex Tomasc9de5602008-01-29 00:19:52 -05001315 BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1316
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001317 bb = e4b->bd_buddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05001318 while (order <= e4b->bd_blkbits + 1) {
1319 block = block >> 1;
1320 if (!mb_test_bit(block, bb)) {
1321 /* this block is part of buddy of order 'order' */
1322 return order;
1323 }
Nicolai Stangeb5cb3162016-05-05 17:38:03 -04001324 bb += bb_incr;
1325 bb_incr >>= 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001326 order++;
1327 }
1328 return 0;
1329}
1330
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001331static void mb_clear_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001332{
1333 __u32 *addr;
1334
1335 len = cur + len;
1336 while (cur < len) {
1337 if ((cur & 31) == 0 && (len - cur) >= 32) {
1338 /* fast path: clear whole word at once */
1339 addr = bm + (cur >> 3);
1340 *addr = 0;
1341 cur += 32;
1342 continue;
1343 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001344 mb_clear_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001345 cur++;
1346 }
1347}
1348
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001349/* clear bits in given range
1350 * will return first found zero bit if any, -1 otherwise
1351 */
1352static int mb_test_and_clear_bits(void *bm, int cur, int len)
1353{
1354 __u32 *addr;
1355 int zero_bit = -1;
1356
1357 len = cur + len;
1358 while (cur < len) {
1359 if ((cur & 31) == 0 && (len - cur) >= 32) {
1360 /* fast path: clear whole word at once */
1361 addr = bm + (cur >> 3);
1362 if (*addr != (__u32)(-1) && zero_bit == -1)
1363 zero_bit = cur + mb_find_next_zero_bit(addr, 32, 0);
1364 *addr = 0;
1365 cur += 32;
1366 continue;
1367 }
1368 if (!mb_test_and_clear_bit(cur, bm) && zero_bit == -1)
1369 zero_bit = cur;
1370 cur++;
1371 }
1372
1373 return zero_bit;
1374}
1375
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04001376void ext4_set_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001377{
1378 __u32 *addr;
1379
1380 len = cur + len;
1381 while (cur < len) {
1382 if ((cur & 31) == 0 && (len - cur) >= 32) {
1383 /* fast path: set whole word at once */
1384 addr = bm + (cur >> 3);
1385 *addr = 0xffffffff;
1386 cur += 32;
1387 continue;
1388 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001389 mb_set_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001390 cur++;
1391 }
1392}
1393
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001394static inline int mb_buddy_adjust_border(int* bit, void* bitmap, int side)
Alex Tomasc9de5602008-01-29 00:19:52 -05001395{
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001396 if (mb_test_bit(*bit + side, bitmap)) {
1397 mb_clear_bit(*bit, bitmap);
1398 (*bit) -= side;
1399 return 1;
1400 }
1401 else {
1402 (*bit) += side;
1403 mb_set_bit(*bit, bitmap);
1404 return -1;
1405 }
1406}
1407
1408static void mb_buddy_mark_free(struct ext4_buddy *e4b, int first, int last)
1409{
1410 int max;
1411 int order = 1;
1412 void *buddy = mb_find_buddy(e4b, order, &max);
1413
1414 while (buddy) {
1415 void *buddy2;
1416
1417 /* Bits in range [first; last] are known to be set since
1418 * corresponding blocks were allocated. Bits in range
1419 * (first; last) will stay set because they form buddies on
1420 * upper layer. We just deal with borders if they don't
1421 * align with upper layer and then go up.
1422 * Releasing entire group is all about clearing
1423 * single bit of highest order buddy.
1424 */
1425
1426 /* Example:
1427 * ---------------------------------
1428 * | 1 | 1 | 1 | 1 |
1429 * ---------------------------------
1430 * | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
1431 * ---------------------------------
1432 * 0 1 2 3 4 5 6 7
1433 * \_____________________/
1434 *
1435 * Neither [1] nor [6] is aligned to above layer.
1436 * Left neighbour [0] is free, so mark it busy,
1437 * decrease bb_counters and extend range to
1438 * [0; 6]
1439 * Right neighbour [7] is busy. It can't be coaleasced with [6], so
1440 * mark [6] free, increase bb_counters and shrink range to
1441 * [0; 5].
1442 * Then shift range to [0; 2], go up and do the same.
1443 */
1444
1445
1446 if (first & 1)
1447 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&first, buddy, -1);
1448 if (!(last & 1))
1449 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&last, buddy, 1);
1450 if (first > last)
1451 break;
1452 order++;
1453
1454 if (first == last || !(buddy2 = mb_find_buddy(e4b, order, &max))) {
1455 mb_clear_bits(buddy, first, last - first + 1);
1456 e4b->bd_info->bb_counters[order - 1] += last - first + 1;
1457 break;
1458 }
1459 first >>= 1;
1460 last >>= 1;
1461 buddy = buddy2;
1462 }
1463}
1464
1465static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
1466 int first, int count)
1467{
1468 int left_is_free = 0;
1469 int right_is_free = 0;
1470 int block;
1471 int last = first + count - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001472 struct super_block *sb = e4b->bd_sb;
1473
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04001474 if (WARN_ON(count == 0))
1475 return;
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001476 BUG_ON(last >= (sb->s_blocksize << 3));
Vincent Minetbc8e6742009-05-15 08:33:18 -04001477 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Darrick J. Wong163a2032013-08-28 17:35:51 -04001478 /* Don't bother if the block group is corrupt. */
1479 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info)))
1480 return;
1481
Alex Tomasc9de5602008-01-29 00:19:52 -05001482 mb_check_buddy(e4b);
1483 mb_free_blocks_double(inode, e4b, first, count);
1484
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05301485 this_cpu_inc(discard_pa_seq);
Alex Tomasc9de5602008-01-29 00:19:52 -05001486 e4b->bd_info->bb_free += count;
1487 if (first < e4b->bd_info->bb_first_free)
1488 e4b->bd_info->bb_first_free = first;
1489
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001490 /* access memory sequentially: check left neighbour,
1491 * clear range and then check right neighbour
1492 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001493 if (first != 0)
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001494 left_is_free = !mb_test_bit(first - 1, e4b->bd_bitmap);
1495 block = mb_test_and_clear_bits(e4b->bd_bitmap, first, count);
1496 if (last + 1 < EXT4_SB(sb)->s_mb_maxs[0])
1497 right_is_free = !mb_test_bit(last + 1, e4b->bd_bitmap);
1498
1499 if (unlikely(block != -1)) {
Namjae Jeone43bb4e2014-06-26 10:11:53 -04001500 struct ext4_sb_info *sbi = EXT4_SB(sb);
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001501 ext4_fsblk_t blocknr;
1502
1503 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Jun Piao49598e02018-01-11 13:17:49 -05001504 blocknr += EXT4_C2B(sbi, block);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001505 if (!(sbi->s_mount_state & EXT4_FC_REPLAY)) {
1506 ext4_grp_locked_error(sb, e4b->bd_group,
1507 inode ? inode->i_ino : 0,
1508 blocknr,
1509 "freeing already freed block (bit %u); block bitmap corrupt.",
1510 block);
1511 ext4_mark_group_bitmap_corrupted(
1512 sb, e4b->bd_group,
Wang Shilongdb79e6d2018-05-12 11:39:40 -04001513 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001514 }
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001515 mb_regenerate_buddy(e4b);
1516 goto done;
1517 }
1518
1519 /* let's maintain fragments counter */
1520 if (left_is_free && right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001521 e4b->bd_info->bb_fragments--;
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001522 else if (!left_is_free && !right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001523 e4b->bd_info->bb_fragments++;
1524
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001525 /* buddy[0] == bd_bitmap is a special case, so handle
1526 * it right away and let mb_buddy_mark_free stay free of
1527 * zero order checks.
1528 * Check if neighbours are to be coaleasced,
1529 * adjust bitmap bb_counters and borders appropriately.
1530 */
1531 if (first & 1) {
1532 first += !left_is_free;
1533 e4b->bd_info->bb_counters[0] += left_is_free ? -1 : 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001534 }
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001535 if (!(last & 1)) {
1536 last -= !right_is_free;
1537 e4b->bd_info->bb_counters[0] += right_is_free ? -1 : 1;
1538 }
1539
1540 if (first <= last)
1541 mb_buddy_mark_free(e4b, first >> 1, last >> 1);
1542
1543done:
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001544 mb_set_largest_free_order(sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001545 mb_check_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001546}
1547
Robin Dong15c006a2012-08-17 10:02:17 -04001548static int mb_find_extent(struct ext4_buddy *e4b, int block,
Alex Tomasc9de5602008-01-29 00:19:52 -05001549 int needed, struct ext4_free_extent *ex)
1550{
1551 int next = block;
Robin Dong15c006a2012-08-17 10:02:17 -04001552 int max, order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001553 void *buddy;
1554
Vincent Minetbc8e6742009-05-15 08:33:18 -04001555 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001556 BUG_ON(ex == NULL);
1557
Robin Dong15c006a2012-08-17 10:02:17 -04001558 buddy = mb_find_buddy(e4b, 0, &max);
Alex Tomasc9de5602008-01-29 00:19:52 -05001559 BUG_ON(buddy == NULL);
1560 BUG_ON(block >= max);
1561 if (mb_test_bit(block, buddy)) {
1562 ex->fe_len = 0;
1563 ex->fe_start = 0;
1564 ex->fe_group = 0;
1565 return 0;
1566 }
1567
Robin Dong15c006a2012-08-17 10:02:17 -04001568 /* find actual order */
1569 order = mb_find_order_for_block(e4b, block);
1570 block = block >> order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001571
1572 ex->fe_len = 1 << order;
1573 ex->fe_start = block << order;
1574 ex->fe_group = e4b->bd_group;
1575
1576 /* calc difference from given start */
1577 next = next - ex->fe_start;
1578 ex->fe_len -= next;
1579 ex->fe_start += next;
1580
1581 while (needed > ex->fe_len &&
Alan Coxd8ec0c32012-11-08 12:19:58 -05001582 mb_find_buddy(e4b, order, &max)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001583
1584 if (block + 1 >= max)
1585 break;
1586
1587 next = (block + 1) * (1 << order);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001588 if (mb_test_bit(next, e4b->bd_bitmap))
Alex Tomasc9de5602008-01-29 00:19:52 -05001589 break;
1590
Robin Dongb051d8d2011-10-26 05:30:30 -04001591 order = mb_find_order_for_block(e4b, next);
Alex Tomasc9de5602008-01-29 00:19:52 -05001592
Alex Tomasc9de5602008-01-29 00:19:52 -05001593 block = next >> order;
1594 ex->fe_len += 1 << order;
1595 }
1596
Jan Kara31562b92019-04-06 18:33:06 -04001597 if (ex->fe_start + ex->fe_len > EXT4_CLUSTERS_PER_GROUP(e4b->bd_sb)) {
Theodore Ts'o43c73222017-01-22 19:35:52 -05001598 /* Should never happen! (but apparently sometimes does?!?) */
1599 WARN_ON(1);
1600 ext4_error(e4b->bd_sb, "corruption or bug in mb_find_extent "
1601 "block=%d, order=%d needed=%d ex=%u/%d/%d@%u",
1602 block, order, needed, ex->fe_group, ex->fe_start,
1603 ex->fe_len, ex->fe_logical);
1604 ex->fe_len = 0;
1605 ex->fe_start = 0;
1606 ex->fe_group = 0;
1607 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001608 return ex->fe_len;
1609}
1610
1611static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1612{
1613 int ord;
1614 int mlen = 0;
1615 int max = 0;
1616 int cur;
1617 int start = ex->fe_start;
1618 int len = ex->fe_len;
1619 unsigned ret = 0;
1620 int len0 = len;
1621 void *buddy;
1622
1623 BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1624 BUG_ON(e4b->bd_group != ex->fe_group);
Vincent Minetbc8e6742009-05-15 08:33:18 -04001625 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001626 mb_check_buddy(e4b);
1627 mb_mark_used_double(e4b, start, len);
1628
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05301629 this_cpu_inc(discard_pa_seq);
Alex Tomasc9de5602008-01-29 00:19:52 -05001630 e4b->bd_info->bb_free -= len;
1631 if (e4b->bd_info->bb_first_free == start)
1632 e4b->bd_info->bb_first_free += len;
1633
1634 /* let's maintain fragments counter */
1635 if (start != 0)
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001636 mlen = !mb_test_bit(start - 1, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001637 if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001638 max = !mb_test_bit(start + len, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001639 if (mlen && max)
1640 e4b->bd_info->bb_fragments++;
1641 else if (!mlen && !max)
1642 e4b->bd_info->bb_fragments--;
1643
1644 /* let's maintain buddy itself */
1645 while (len) {
1646 ord = mb_find_order_for_block(e4b, start);
1647
1648 if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1649 /* the whole chunk may be allocated at once! */
1650 mlen = 1 << ord;
1651 buddy = mb_find_buddy(e4b, ord, &max);
1652 BUG_ON((start >> ord) >= max);
1653 mb_set_bit(start >> ord, buddy);
1654 e4b->bd_info->bb_counters[ord]--;
1655 start += mlen;
1656 len -= mlen;
1657 BUG_ON(len < 0);
1658 continue;
1659 }
1660
1661 /* store for history */
1662 if (ret == 0)
1663 ret = len | (ord << 16);
1664
1665 /* we have to split large buddy */
1666 BUG_ON(ord <= 0);
1667 buddy = mb_find_buddy(e4b, ord, &max);
1668 mb_set_bit(start >> ord, buddy);
1669 e4b->bd_info->bb_counters[ord]--;
1670
1671 ord--;
1672 cur = (start >> ord) & ~1U;
1673 buddy = mb_find_buddy(e4b, ord, &max);
1674 mb_clear_bit(cur, buddy);
1675 mb_clear_bit(cur + 1, buddy);
1676 e4b->bd_info->bb_counters[ord]++;
1677 e4b->bd_info->bb_counters[ord]++;
1678 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001679 mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001680
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001681 ext4_set_bits(e4b->bd_bitmap, ex->fe_start, len0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001682 mb_check_buddy(e4b);
1683
1684 return ret;
1685}
1686
1687/*
1688 * Must be called under group lock!
1689 */
1690static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
1691 struct ext4_buddy *e4b)
1692{
1693 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1694 int ret;
1695
1696 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
1697 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1698
1699 ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
1700 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
1701 ret = mb_mark_used(e4b, &ac->ac_b_ex);
1702
1703 /* preallocation can change ac_b_ex, thus we store actually
1704 * allocated blocks for history */
1705 ac->ac_f_ex = ac->ac_b_ex;
1706
1707 ac->ac_status = AC_STATUS_FOUND;
1708 ac->ac_tail = ret & 0xffff;
1709 ac->ac_buddy = ret >> 16;
1710
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -05001711 /*
1712 * take the page reference. We want the page to be pinned
1713 * so that we don't get a ext4_mb_init_cache_call for this
1714 * group until we update the bitmap. That would mean we
1715 * double allocate blocks. The reference is dropped
1716 * in ext4_mb_release_context
1717 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001718 ac->ac_bitmap_page = e4b->bd_bitmap_page;
1719 get_page(ac->ac_bitmap_page);
1720 ac->ac_buddy_page = e4b->bd_buddy_page;
1721 get_page(ac->ac_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001722 /* store last allocated for subsequent stream allocation */
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04001723 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001724 spin_lock(&sbi->s_md_lock);
1725 sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
1726 sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
1727 spin_unlock(&sbi->s_md_lock);
1728 }
Ritesh Harjani53f86b12020-05-20 12:10:32 +05301729 /*
1730 * As we've just preallocated more space than
1731 * user requested originally, we store allocated
1732 * space in a special descriptor.
1733 */
1734 if (ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
1735 ext4_mb_new_preallocation(ac);
1736
Alex Tomasc9de5602008-01-29 00:19:52 -05001737}
1738
Alex Tomasc9de5602008-01-29 00:19:52 -05001739static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
1740 struct ext4_buddy *e4b,
1741 int finish_group)
1742{
1743 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1744 struct ext4_free_extent *bex = &ac->ac_b_ex;
1745 struct ext4_free_extent *gex = &ac->ac_g_ex;
1746 struct ext4_free_extent ex;
1747 int max;
1748
Aneesh Kumar K.V032115f2009-01-05 21:34:30 -05001749 if (ac->ac_status == AC_STATUS_FOUND)
1750 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05001751 /*
1752 * We don't want to scan for a whole year
1753 */
1754 if (ac->ac_found > sbi->s_mb_max_to_scan &&
1755 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1756 ac->ac_status = AC_STATUS_BREAK;
1757 return;
1758 }
1759
1760 /*
1761 * Haven't found good chunk so far, let's continue
1762 */
1763 if (bex->fe_len < gex->fe_len)
1764 return;
1765
1766 if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
1767 && bex->fe_group == e4b->bd_group) {
1768 /* recheck chunk's availability - we don't know
1769 * when it was found (within this lock-unlock
1770 * period or not) */
Robin Dong15c006a2012-08-17 10:02:17 -04001771 max = mb_find_extent(e4b, bex->fe_start, gex->fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001772 if (max >= gex->fe_len) {
1773 ext4_mb_use_best_found(ac, e4b);
1774 return;
1775 }
1776 }
1777}
1778
1779/*
1780 * The routine checks whether found extent is good enough. If it is,
1781 * then the extent gets marked used and flag is set to the context
1782 * to stop scanning. Otherwise, the extent is compared with the
1783 * previous found extent and if new one is better, then it's stored
1784 * in the context. Later, the best found extent will be used, if
1785 * mballoc can't find good enough extent.
1786 *
1787 * FIXME: real allocation policy is to be designed yet!
1788 */
1789static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
1790 struct ext4_free_extent *ex,
1791 struct ext4_buddy *e4b)
1792{
1793 struct ext4_free_extent *bex = &ac->ac_b_ex;
1794 struct ext4_free_extent *gex = &ac->ac_g_ex;
1795
1796 BUG_ON(ex->fe_len <= 0);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001797 BUG_ON(ex->fe_len > EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
1798 BUG_ON(ex->fe_start >= EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05001799 BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
1800
1801 ac->ac_found++;
1802
1803 /*
1804 * The special case - take what you catch first
1805 */
1806 if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1807 *bex = *ex;
1808 ext4_mb_use_best_found(ac, e4b);
1809 return;
1810 }
1811
1812 /*
1813 * Let's check whether the chuck is good enough
1814 */
1815 if (ex->fe_len == gex->fe_len) {
1816 *bex = *ex;
1817 ext4_mb_use_best_found(ac, e4b);
1818 return;
1819 }
1820
1821 /*
1822 * If this is first found extent, just store it in the context
1823 */
1824 if (bex->fe_len == 0) {
1825 *bex = *ex;
1826 return;
1827 }
1828
1829 /*
1830 * If new found extent is better, store it in the context
1831 */
1832 if (bex->fe_len < gex->fe_len) {
1833 /* if the request isn't satisfied, any found extent
1834 * larger than previous best one is better */
1835 if (ex->fe_len > bex->fe_len)
1836 *bex = *ex;
1837 } else if (ex->fe_len > gex->fe_len) {
1838 /* if the request is satisfied, then we try to find
1839 * an extent that still satisfy the request, but is
1840 * smaller than previous one */
1841 if (ex->fe_len < bex->fe_len)
1842 *bex = *ex;
1843 }
1844
1845 ext4_mb_check_limits(ac, e4b, 0);
1846}
1847
Eric Sandeen089ceec2009-07-05 22:17:31 -04001848static noinline_for_stack
1849int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001850 struct ext4_buddy *e4b)
1851{
1852 struct ext4_free_extent ex = ac->ac_b_ex;
1853 ext4_group_t group = ex.fe_group;
1854 int max;
1855 int err;
1856
1857 BUG_ON(ex.fe_len <= 0);
1858 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1859 if (err)
1860 return err;
1861
1862 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04001863 max = mb_find_extent(e4b, ex.fe_start, ex.fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05001864
1865 if (max > 0) {
1866 ac->ac_b_ex = ex;
1867 ext4_mb_use_best_found(ac, e4b);
1868 }
1869
1870 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001871 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001872
1873 return 0;
1874}
1875
Eric Sandeen089ceec2009-07-05 22:17:31 -04001876static noinline_for_stack
1877int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001878 struct ext4_buddy *e4b)
1879{
1880 ext4_group_t group = ac->ac_g_ex.fe_group;
1881 int max;
1882 int err;
1883 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04001884 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001885 struct ext4_free_extent ex;
1886
1887 if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
1888 return 0;
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04001889 if (grp->bb_free == 0)
1890 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05001891
1892 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1893 if (err)
1894 return err;
1895
Darrick J. Wong163a2032013-08-28 17:35:51 -04001896 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info))) {
1897 ext4_mb_unload_buddy(e4b);
1898 return 0;
1899 }
1900
Alex Tomasc9de5602008-01-29 00:19:52 -05001901 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04001902 max = mb_find_extent(e4b, ac->ac_g_ex.fe_start,
Alex Tomasc9de5602008-01-29 00:19:52 -05001903 ac->ac_g_ex.fe_len, &ex);
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05001904 ex.fe_logical = 0xDEADFA11; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05001905
1906 if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
1907 ext4_fsblk_t start;
1908
Akinobu Mita5661bd62010-03-03 23:53:39 -05001909 start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
1910 ex.fe_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05001911 /* use do_div to get remainder (would be 64-bit modulo) */
1912 if (do_div(start, sbi->s_stripe) == 0) {
1913 ac->ac_found++;
1914 ac->ac_b_ex = ex;
1915 ext4_mb_use_best_found(ac, e4b);
1916 }
1917 } else if (max >= ac->ac_g_ex.fe_len) {
1918 BUG_ON(ex.fe_len <= 0);
1919 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1920 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1921 ac->ac_found++;
1922 ac->ac_b_ex = ex;
1923 ext4_mb_use_best_found(ac, e4b);
1924 } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
1925 /* Sometimes, caller may want to merge even small
1926 * number of blocks to an existing extent */
1927 BUG_ON(ex.fe_len <= 0);
1928 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1929 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1930 ac->ac_found++;
1931 ac->ac_b_ex = ex;
1932 ext4_mb_use_best_found(ac, e4b);
1933 }
1934 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04001935 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001936
1937 return 0;
1938}
1939
1940/*
1941 * The routine scans buddy structures (not bitmap!) from given order
1942 * to max order and tries to find big enough chunk to satisfy the req
1943 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001944static noinline_for_stack
1945void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001946 struct ext4_buddy *e4b)
1947{
1948 struct super_block *sb = ac->ac_sb;
1949 struct ext4_group_info *grp = e4b->bd_info;
1950 void *buddy;
1951 int i;
1952 int k;
1953 int max;
1954
1955 BUG_ON(ac->ac_2order <= 0);
1956 for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
1957 if (grp->bb_counters[i] == 0)
1958 continue;
1959
1960 buddy = mb_find_buddy(e4b, i, &max);
1961 BUG_ON(buddy == NULL);
1962
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001963 k = mb_find_next_zero_bit(buddy, max, 0);
Dmitry Monakhoveb576082020-03-10 15:01:56 +00001964 if (k >= max) {
1965 ext4_grp_locked_error(ac->ac_sb, e4b->bd_group, 0, 0,
1966 "%d free clusters of order %d. But found 0",
1967 grp->bb_counters[i], i);
1968 ext4_mark_group_bitmap_corrupted(ac->ac_sb,
1969 e4b->bd_group,
1970 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
1971 break;
1972 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001973 ac->ac_found++;
1974
1975 ac->ac_b_ex.fe_len = 1 << i;
1976 ac->ac_b_ex.fe_start = k << i;
1977 ac->ac_b_ex.fe_group = e4b->bd_group;
1978
1979 ext4_mb_use_best_found(ac, e4b);
1980
Ritesh Harjani53f86b12020-05-20 12:10:32 +05301981 BUG_ON(ac->ac_f_ex.fe_len != ac->ac_g_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05001982
1983 if (EXT4_SB(sb)->s_mb_stats)
1984 atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
1985
1986 break;
1987 }
1988}
1989
1990/*
1991 * The routine scans the group and measures all found extents.
1992 * In order to optimize scanning, caller must pass number of
1993 * free blocks in the group, so the routine can know upper limit.
1994 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04001995static noinline_for_stack
1996void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05001997 struct ext4_buddy *e4b)
1998{
1999 struct super_block *sb = ac->ac_sb;
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05002000 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05002001 struct ext4_free_extent ex;
2002 int i;
2003 int free;
2004
2005 free = e4b->bd_info->bb_free;
Theodore Ts'o907ea522020-04-13 23:33:05 -04002006 if (WARN_ON(free <= 0))
2007 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05002008
2009 i = e4b->bd_info->bb_first_free;
2010
2011 while (free && ac->ac_status == AC_STATUS_CONTINUE) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05002012 i = mb_find_next_zero_bit(bitmap,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04002013 EXT4_CLUSTERS_PER_GROUP(sb), i);
2014 if (i >= EXT4_CLUSTERS_PER_GROUP(sb)) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002015 /*
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05002016 * IF we have corrupt bitmap, we won't find any
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002017 * free blocks even though group info says we
Randy Dunlapb483bb72020-08-04 19:48:50 -07002018 * have free blocks
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002019 */
Theodore Ts'oe29136f2010-06-29 12:54:28 -04002020 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002021 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05002022 "group info. But bitmap says 0",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002023 free);
Wang Shilong736dedb2018-05-12 12:37:58 -04002024 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
2025 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Alex Tomasc9de5602008-01-29 00:19:52 -05002026 break;
2027 }
2028
Robin Dong15c006a2012-08-17 10:02:17 -04002029 mb_find_extent(e4b, i, ac->ac_g_ex.fe_len, &ex);
Theodore Ts'o907ea522020-04-13 23:33:05 -04002030 if (WARN_ON(ex.fe_len <= 0))
2031 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002032 if (free < ex.fe_len) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04002033 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002034 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05002035 "group info. But got %d blocks",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002036 free, ex.fe_len);
Wang Shilong736dedb2018-05-12 12:37:58 -04002037 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
2038 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05002039 /*
2040 * The number of free blocks differs. This mostly
2041 * indicate that the bitmap is corrupt. So exit
2042 * without claiming the space.
2043 */
2044 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002045 }
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05002046 ex.fe_logical = 0xDEADC0DE; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05002047 ext4_mb_measure_extent(ac, &ex, e4b);
2048
2049 i += ex.fe_len;
2050 free -= ex.fe_len;
2051 }
2052
2053 ext4_mb_check_limits(ac, e4b, 1);
2054}
2055
2056/*
2057 * This is a special case for storages like raid5
Eric Sandeen506bf2d2010-07-27 11:56:06 -04002058 * we try to find stripe-aligned chunks for stripe-size-multiple requests
Alex Tomasc9de5602008-01-29 00:19:52 -05002059 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04002060static noinline_for_stack
2061void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002062 struct ext4_buddy *e4b)
2063{
2064 struct super_block *sb = ac->ac_sb;
2065 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05002066 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05002067 struct ext4_free_extent ex;
2068 ext4_fsblk_t first_group_block;
2069 ext4_fsblk_t a;
2070 ext4_grpblk_t i;
2071 int max;
2072
2073 BUG_ON(sbi->s_stripe == 0);
2074
2075 /* find first stripe-aligned block in group */
Akinobu Mita5661bd62010-03-03 23:53:39 -05002076 first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
2077
Alex Tomasc9de5602008-01-29 00:19:52 -05002078 a = first_group_block + sbi->s_stripe - 1;
2079 do_div(a, sbi->s_stripe);
2080 i = (a * sbi->s_stripe) - first_group_block;
2081
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04002082 while (i < EXT4_CLUSTERS_PER_GROUP(sb)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002083 if (!mb_test_bit(i, bitmap)) {
Robin Dong15c006a2012-08-17 10:02:17 -04002084 max = mb_find_extent(e4b, i, sbi->s_stripe, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002085 if (max >= sbi->s_stripe) {
2086 ac->ac_found++;
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05002087 ex.fe_logical = 0xDEADF00D; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05002088 ac->ac_b_ex = ex;
2089 ext4_mb_use_best_found(ac, e4b);
2090 break;
2091 }
2092 }
2093 i += sbi->s_stripe;
2094 }
2095}
2096
Lukas Czerner42ac1842015-06-08 11:40:40 -04002097/*
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302098 * This is also called BEFORE we load the buddy bitmap.
Lukas Czerner42ac1842015-06-08 11:40:40 -04002099 * Returns either 1 or 0 indicating that the group is either suitable
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302100 * for the allocation or not.
Lukas Czerner42ac1842015-06-08 11:40:40 -04002101 */
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302102static bool ext4_mb_good_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002103 ext4_group_t group, int cr)
2104{
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302105 ext4_grpblk_t free, fragments;
Theodore Ts'oa4912122009-03-12 12:18:34 -04002106 int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05002107 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
2108
2109 BUG_ON(cr < 0 || cr >= 4);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002110
brookxudddcd2f2020-08-07 22:01:39 +08002111 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(grp)))
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302112 return false;
Theodore Ts'o01fc48e2012-08-17 09:46:17 -04002113
brookxudddcd2f2020-08-07 22:01:39 +08002114 free = grp->bb_free;
2115 if (free == 0)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302116 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05002117
Alex Tomasc9de5602008-01-29 00:19:52 -05002118 fragments = grp->bb_fragments;
Alex Tomasc9de5602008-01-29 00:19:52 -05002119 if (fragments == 0)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302120 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05002121
2122 switch (cr) {
2123 case 0:
2124 BUG_ON(ac->ac_2order == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05002125
Theodore Ts'oa4912122009-03-12 12:18:34 -04002126 /* Avoid using the first bg of a flexgroup for data files */
2127 if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
2128 (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
2129 ((group % flex_size) == 0))
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302130 return false;
Theodore Ts'oa4912122009-03-12 12:18:34 -04002131
brookxudddcd2f2020-08-07 22:01:39 +08002132 if (free < ac->ac_g_ex.fe_len)
2133 return false;
2134
2135 if (ac->ac_2order > ac->ac_sb->s_blocksize_bits+1)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302136 return true;
Theodore Ts'o40ae3482013-02-04 15:08:40 -05002137
2138 if (grp->bb_largest_free_order < ac->ac_2order)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302139 return false;
Theodore Ts'o40ae3482013-02-04 15:08:40 -05002140
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302141 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05002142 case 1:
2143 if ((free / fragments) >= ac->ac_g_ex.fe_len)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302144 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05002145 break;
2146 case 2:
2147 if (free >= ac->ac_g_ex.fe_len)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302148 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05002149 break;
2150 case 3:
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302151 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05002152 default:
2153 BUG();
2154 }
2155
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302156 return false;
2157}
2158
2159/*
2160 * This could return negative error code if something goes wrong
2161 * during ext4_mb_init_group(). This should not be called with
2162 * ext4_lock_group() held.
2163 */
2164static int ext4_mb_good_group_nolock(struct ext4_allocation_context *ac,
2165 ext4_group_t group, int cr)
2166{
2167 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
Ritesh Harjani99377832020-05-20 12:10:36 +05302168 struct super_block *sb = ac->ac_sb;
Alex Zhuravlevc1d2c7d2020-06-19 22:08:56 -04002169 struct ext4_sb_info *sbi = EXT4_SB(sb);
Ritesh Harjani99377832020-05-20 12:10:36 +05302170 bool should_lock = ac->ac_flags & EXT4_MB_STRICT_CHECK;
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302171 ext4_grpblk_t free;
2172 int ret = 0;
2173
Ritesh Harjani99377832020-05-20 12:10:36 +05302174 if (should_lock)
2175 ext4_lock_group(sb, group);
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302176 free = grp->bb_free;
2177 if (free == 0)
2178 goto out;
2179 if (cr <= 2 && free < ac->ac_g_ex.fe_len)
2180 goto out;
2181 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(grp)))
2182 goto out;
Ritesh Harjani99377832020-05-20 12:10:36 +05302183 if (should_lock)
2184 ext4_unlock_group(sb, group);
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302185
2186 /* We only do this if the grp has never been initialized */
2187 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Alex Zhuravlevc1d2c7d2020-06-19 22:08:56 -04002188 struct ext4_group_desc *gdp =
2189 ext4_get_group_desc(sb, group, NULL);
2190 int ret;
2191
2192 /* cr=0/1 is a very optimistic search to find large
2193 * good chunks almost for free. If buddy data is not
2194 * ready, then this optimization makes no sense. But
2195 * we never skip the first block group in a flex_bg,
2196 * since this gets used for metadata block allocation,
2197 * and we want to make sure we locate metadata blocks
2198 * in the first block group in the flex_bg if possible.
2199 */
2200 if (cr < 2 &&
2201 (!sbi->s_log_groups_per_flex ||
2202 ((group & ((1 << sbi->s_log_groups_per_flex) - 1)) != 0)) &&
2203 !(ext4_has_group_desc_csum(sb) &&
2204 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))))
2205 return 0;
2206 ret = ext4_mb_init_group(sb, group, GFP_NOFS);
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302207 if (ret)
2208 return ret;
2209 }
2210
Ritesh Harjani99377832020-05-20 12:10:36 +05302211 if (should_lock)
2212 ext4_lock_group(sb, group);
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302213 ret = ext4_mb_good_group(ac, group, cr);
2214out:
Ritesh Harjani99377832020-05-20 12:10:36 +05302215 if (should_lock)
2216 ext4_unlock_group(sb, group);
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302217 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002218}
2219
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002220/*
2221 * Start prefetching @nr block bitmaps starting at @group.
2222 * Return the next group which needs to be prefetched.
2223 */
Theodore Ts'o3d392b22020-07-17 00:14:40 -04002224ext4_group_t ext4_mb_prefetch(struct super_block *sb, ext4_group_t group,
2225 unsigned int nr, int *cnt)
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002226{
2227 ext4_group_t ngroups = ext4_get_groups_count(sb);
2228 struct buffer_head *bh;
2229 struct blk_plug plug;
2230
2231 blk_start_plug(&plug);
2232 while (nr-- > 0) {
2233 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group,
2234 NULL);
2235 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
2236
2237 /*
2238 * Prefetch block groups with free blocks; but don't
2239 * bother if it is marked uninitialized on disk, since
2240 * it won't require I/O to read. Also only try to
2241 * prefetch once, so we avoid getblk() call, which can
2242 * be expensive.
2243 */
2244 if (!EXT4_MB_GRP_TEST_AND_SET_READ(grp) &&
2245 EXT4_MB_GRP_NEED_INIT(grp) &&
2246 ext4_free_group_clusters(sb, gdp) > 0 &&
2247 !(ext4_has_group_desc_csum(sb) &&
2248 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)))) {
2249 bh = ext4_read_block_bitmap_nowait(sb, group, true);
2250 if (bh && !IS_ERR(bh)) {
2251 if (!buffer_uptodate(bh) && cnt)
2252 (*cnt)++;
2253 brelse(bh);
2254 }
2255 }
2256 if (++group >= ngroups)
2257 group = 0;
2258 }
2259 blk_finish_plug(&plug);
2260 return group;
2261}
2262
2263/*
2264 * Prefetching reads the block bitmap into the buffer cache; but we
2265 * need to make sure that the buddy bitmap in the page cache has been
2266 * initialized. Note that ext4_mb_init_group() will block if the I/O
2267 * is not yet completed, or indeed if it was not initiated by
2268 * ext4_mb_prefetch did not start the I/O.
2269 *
2270 * TODO: We should actually kick off the buddy bitmap setup in a work
2271 * queue when the buffer I/O is completed, so that we don't block
2272 * waiting for the block allocation bitmap read to finish when
2273 * ext4_mb_prefetch_fini is called from ext4_mb_regular_allocator().
2274 */
Theodore Ts'o3d392b22020-07-17 00:14:40 -04002275void ext4_mb_prefetch_fini(struct super_block *sb, ext4_group_t group,
2276 unsigned int nr)
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002277{
2278 while (nr-- > 0) {
2279 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group,
2280 NULL);
2281 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
2282
2283 if (!group)
2284 group = ext4_get_groups_count(sb);
2285 group--;
2286 grp = ext4_get_group_info(sb, group);
2287
2288 if (EXT4_MB_GRP_NEED_INIT(grp) &&
2289 ext4_free_group_clusters(sb, gdp) > 0 &&
2290 !(ext4_has_group_desc_csum(sb) &&
2291 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)))) {
2292 if (ext4_mb_init_group(sb, group, GFP_NOFS))
2293 break;
2294 }
2295 }
2296}
2297
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002298static noinline_for_stack int
2299ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05002300{
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002301 ext4_group_t prefetch_grp = 0, ngroups, group, i;
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05302302 int cr = -1;
Lukas Czerner42ac1842015-06-08 11:40:40 -04002303 int err = 0, first_err = 0;
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002304 unsigned int nr = 0, prefetch_ios = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002305 struct ext4_sb_info *sbi;
2306 struct super_block *sb;
2307 struct ext4_buddy e4b;
brookxu66d5e022020-08-17 15:36:06 +08002308 int lost;
Alex Tomasc9de5602008-01-29 00:19:52 -05002309
2310 sb = ac->ac_sb;
2311 sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -04002312 ngroups = ext4_get_groups_count(sb);
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002313 /* non-extent files are limited to low blocks/groups */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002314 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002315 ngroups = sbi->s_blockfile_groups;
2316
Alex Tomasc9de5602008-01-29 00:19:52 -05002317 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
2318
2319 /* first, try the goal */
2320 err = ext4_mb_find_by_goal(ac, &e4b);
2321 if (err || ac->ac_status == AC_STATUS_FOUND)
2322 goto out;
2323
2324 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2325 goto out;
2326
2327 /*
brookxue9a3cd42020-08-07 22:01:23 +08002328 * ac->ac_2order is set only if the fe_len is a power of 2
2329 * if ac->ac_2order is set we also set criteria to 0 so that we
Alex Tomasc9de5602008-01-29 00:19:52 -05002330 * try exact allocation using buddy.
2331 */
2332 i = fls(ac->ac_g_ex.fe_len);
2333 ac->ac_2order = 0;
2334 /*
2335 * We search using buddy data only if the order of the request
2336 * is greater than equal to the sbi_s_mb_order2_reqs
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002337 * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
Jan Karad9b22cf2017-02-10 00:50:56 -05002338 * We also support searching for power-of-two requests only for
2339 * requests upto maximum buddy size we have constructed.
Alex Tomasc9de5602008-01-29 00:19:52 -05002340 */
Jan Karad9b22cf2017-02-10 00:50:56 -05002341 if (i >= sbi->s_mb_order2_reqs && i <= sb->s_blocksize_bits + 2) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002342 /*
2343 * This should tell if fe_len is exactly power of 2
2344 */
2345 if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
Jeremy Cline1a5d5e52018-08-02 00:03:40 -04002346 ac->ac_2order = array_index_nospec(i - 1,
2347 sb->s_blocksize_bits + 2);
Alex Tomasc9de5602008-01-29 00:19:52 -05002348 }
2349
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002350 /* if stream allocation is enabled, use global goal */
2351 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002352 /* TBD: may be hot point */
2353 spin_lock(&sbi->s_md_lock);
2354 ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
2355 ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
2356 spin_unlock(&sbi->s_md_lock);
2357 }
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002358
Alex Tomasc9de5602008-01-29 00:19:52 -05002359 /* Let's just scan groups to find more-less suitable blocks */
2360 cr = ac->ac_2order ? 0 : 1;
2361 /*
2362 * cr == 0 try to get exact allocation,
2363 * cr == 3 try to get anything
2364 */
2365repeat:
2366 for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
2367 ac->ac_criteria = cr;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04002368 /*
2369 * searching for the right group start
2370 * from the goal value specified
2371 */
2372 group = ac->ac_g_ex.fe_group;
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002373 prefetch_grp = group;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04002374
Theodore Ts'o8df96752009-05-01 08:50:38 -04002375 for (i = 0; i < ngroups; group++, i++) {
Lukas Czerner42ac1842015-06-08 11:40:40 -04002376 int ret = 0;
Theodore Ts'o2ed57242013-06-12 11:43:02 -04002377 cond_resched();
Lachlan McIlroye6155732013-05-05 23:10:00 -04002378 /*
2379 * Artificially restricted ngroups for non-extent
2380 * files makes group > ngroups possible on first loop.
2381 */
2382 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -05002383 group = 0;
2384
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002385 /*
2386 * Batch reads of the block allocation bitmaps
2387 * to get multiple READs in flight; limit
2388 * prefetching at cr=0/1, otherwise mballoc can
2389 * spend a lot of time loading imperfect groups
2390 */
2391 if ((prefetch_grp == group) &&
2392 (cr > 1 ||
2393 prefetch_ios < sbi->s_mb_prefetch_limit)) {
2394 unsigned int curr_ios = prefetch_ios;
2395
2396 nr = sbi->s_mb_prefetch;
2397 if (ext4_has_feature_flex_bg(sb)) {
2398 nr = (group / sbi->s_mb_prefetch) *
2399 sbi->s_mb_prefetch;
2400 nr = nr + sbi->s_mb_prefetch - group;
2401 }
2402 prefetch_grp = ext4_mb_prefetch(sb, group,
2403 nr, &prefetch_ios);
2404 if (prefetch_ios == curr_ios)
2405 nr = 0;
2406 }
2407
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002408 /* This now checks without needing the buddy page */
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302409 ret = ext4_mb_good_group_nolock(ac, group, cr);
Lukas Czerner42ac1842015-06-08 11:40:40 -04002410 if (ret <= 0) {
2411 if (!first_err)
2412 first_err = ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002413 continue;
Lukas Czerner42ac1842015-06-08 11:40:40 -04002414 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002415
Alex Tomasc9de5602008-01-29 00:19:52 -05002416 err = ext4_mb_load_buddy(sb, group, &e4b);
2417 if (err)
2418 goto out;
2419
2420 ext4_lock_group(sb, group);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002421
2422 /*
2423 * We need to check again after locking the
2424 * block group
2425 */
Lukas Czerner42ac1842015-06-08 11:40:40 -04002426 ret = ext4_mb_good_group(ac, group, cr);
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302427 if (ret == 0) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002428 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002429 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002430 continue;
2431 }
2432
2433 ac->ac_groups_scanned++;
Jan Karad9b22cf2017-02-10 00:50:56 -05002434 if (cr == 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002435 ext4_mb_simple_scan_group(ac, &e4b);
Eric Sandeen506bf2d2010-07-27 11:56:06 -04002436 else if (cr == 1 && sbi->s_stripe &&
2437 !(ac->ac_g_ex.fe_len % sbi->s_stripe))
Alex Tomasc9de5602008-01-29 00:19:52 -05002438 ext4_mb_scan_aligned(ac, &e4b);
2439 else
2440 ext4_mb_complex_scan_group(ac, &e4b);
2441
2442 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002443 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002444
2445 if (ac->ac_status != AC_STATUS_CONTINUE)
2446 break;
2447 }
2448 }
2449
2450 if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
2451 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2452 /*
2453 * We've been searching too long. Let's try to allocate
2454 * the best chunk we've found so far
2455 */
Alex Tomasc9de5602008-01-29 00:19:52 -05002456 ext4_mb_try_best_found(ac, &e4b);
2457 if (ac->ac_status != AC_STATUS_FOUND) {
2458 /*
2459 * Someone more lucky has already allocated it.
2460 * The only thing we can do is just take first
2461 * found block(s)
Alex Tomasc9de5602008-01-29 00:19:52 -05002462 */
brookxu66d5e022020-08-17 15:36:06 +08002463 lost = atomic_inc_return(&sbi->s_mb_lost_chunks);
2464 mb_debug(sb, "lost chunk, group: %u, start: %d, len: %d, lost: %d\n",
brookxuc55ee7d2020-08-15 08:10:44 +08002465 ac->ac_b_ex.fe_group, ac->ac_b_ex.fe_start,
2466 ac->ac_b_ex.fe_len, lost);
2467
Alex Tomasc9de5602008-01-29 00:19:52 -05002468 ac->ac_b_ex.fe_group = 0;
2469 ac->ac_b_ex.fe_start = 0;
2470 ac->ac_b_ex.fe_len = 0;
2471 ac->ac_status = AC_STATUS_CONTINUE;
2472 ac->ac_flags |= EXT4_MB_HINT_FIRST;
2473 cr = 3;
Alex Tomasc9de5602008-01-29 00:19:52 -05002474 goto repeat;
2475 }
2476 }
2477out:
Lukas Czerner42ac1842015-06-08 11:40:40 -04002478 if (!err && ac->ac_status != AC_STATUS_FOUND && first_err)
2479 err = first_err;
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05302480
Ritesh Harjanid3df1452020-05-10 11:54:54 +05302481 mb_debug(sb, "Best len %d, origin len %d, ac_status %u, ac_flags 0x%x, cr %d ret %d\n",
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05302482 ac->ac_b_ex.fe_len, ac->ac_o_ex.fe_len, ac->ac_status,
2483 ac->ac_flags, cr, err);
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002484
2485 if (nr)
2486 ext4_mb_prefetch_fini(sb, prefetch_grp, nr);
2487
Alex Tomasc9de5602008-01-29 00:19:52 -05002488 return err;
2489}
2490
Alex Tomasc9de5602008-01-29 00:19:52 -05002491static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2492{
Christoph Hellwig247dbed2018-04-11 11:37:23 +02002493 struct super_block *sb = PDE_DATA(file_inode(seq->file));
Alex Tomasc9de5602008-01-29 00:19:52 -05002494 ext4_group_t group;
2495
Theodore Ts'o8df96752009-05-01 08:50:38 -04002496 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002497 return NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002498 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002499 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002500}
2501
2502static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2503{
Christoph Hellwig247dbed2018-04-11 11:37:23 +02002504 struct super_block *sb = PDE_DATA(file_inode(seq->file));
Alex Tomasc9de5602008-01-29 00:19:52 -05002505 ext4_group_t group;
2506
2507 ++*pos;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002508 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002509 return NULL;
2510 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002511 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002512}
2513
2514static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2515{
Christoph Hellwig247dbed2018-04-11 11:37:23 +02002516 struct super_block *sb = PDE_DATA(file_inode(seq->file));
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002517 ext4_group_t group = (ext4_group_t) ((unsigned long) v);
Alex Tomasc9de5602008-01-29 00:19:52 -05002518 int i;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002519 int err, buddy_loaded = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002520 struct ext4_buddy e4b;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002521 struct ext4_group_info *grinfo;
Arnd Bergmann2df2c342017-08-05 21:57:46 -04002522 unsigned char blocksize_bits = min_t(unsigned char,
2523 sb->s_blocksize_bits,
2524 EXT4_MAX_BLOCK_LOG_SIZE);
Alex Tomasc9de5602008-01-29 00:19:52 -05002525 struct sg {
2526 struct ext4_group_info info;
Theodore Ts'ob80b32b2017-08-14 08:29:18 -04002527 ext4_grpblk_t counters[EXT4_MAX_BLOCK_LOG_SIZE + 2];
Alex Tomasc9de5602008-01-29 00:19:52 -05002528 } sg;
2529
2530 group--;
2531 if (group == 0)
Rasmus Villemoes97b4af22015-06-15 00:32:58 -04002532 seq_puts(seq, "#group: free frags first ["
2533 " 2^0 2^1 2^2 2^3 2^4 2^5 2^6 "
Huaitong Han802cf1f2016-02-12 00:17:16 -05002534 " 2^7 2^8 2^9 2^10 2^11 2^12 2^13 ]\n");
Alex Tomasc9de5602008-01-29 00:19:52 -05002535
Theodore Ts'ob80b32b2017-08-14 08:29:18 -04002536 i = (blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2537 sizeof(struct ext4_group_info);
2538
Aditya Kali1c8457c2012-06-30 19:10:57 -04002539 grinfo = ext4_get_group_info(sb, group);
2540 /* Load the group info in memory only if not already loaded. */
2541 if (unlikely(EXT4_MB_GRP_NEED_INIT(grinfo))) {
2542 err = ext4_mb_load_buddy(sb, group, &e4b);
2543 if (err) {
2544 seq_printf(seq, "#%-5u: I/O error\n", group);
2545 return 0;
2546 }
2547 buddy_loaded = 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002548 }
Aditya Kali1c8457c2012-06-30 19:10:57 -04002549
Theodore Ts'ob80b32b2017-08-14 08:29:18 -04002550 memcpy(&sg, ext4_get_group_info(sb, group), i);
Aditya Kali1c8457c2012-06-30 19:10:57 -04002551
2552 if (buddy_loaded)
2553 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002554
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002555 seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
Alex Tomasc9de5602008-01-29 00:19:52 -05002556 sg.info.bb_fragments, sg.info.bb_first_free);
2557 for (i = 0; i <= 13; i++)
Arnd Bergmann2df2c342017-08-05 21:57:46 -04002558 seq_printf(seq, " %-5u", i <= blocksize_bits + 1 ?
Alex Tomasc9de5602008-01-29 00:19:52 -05002559 sg.info.bb_counters[i] : 0);
Xu Wange0d438c2020-08-10 02:21:58 +00002560 seq_puts(seq, " ]\n");
Alex Tomasc9de5602008-01-29 00:19:52 -05002561
2562 return 0;
2563}
2564
2565static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2566{
2567}
2568
Christoph Hellwig247dbed2018-04-11 11:37:23 +02002569const struct seq_operations ext4_mb_seq_groups_ops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002570 .start = ext4_mb_seq_groups_start,
2571 .next = ext4_mb_seq_groups_next,
2572 .stop = ext4_mb_seq_groups_stop,
2573 .show = ext4_mb_seq_groups_show,
2574};
2575
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002576static struct kmem_cache *get_groupinfo_cache(int blocksize_bits)
2577{
2578 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2579 struct kmem_cache *cachep = ext4_groupinfo_caches[cache_index];
2580
2581 BUG_ON(!cachep);
2582 return cachep;
2583}
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002584
Theodore Ts'o28623c22012-09-05 01:31:50 -04002585/*
2586 * Allocate the top-level s_group_info array for the specified number
2587 * of groups
2588 */
2589int ext4_mb_alloc_groupinfo(struct super_block *sb, ext4_group_t ngroups)
2590{
2591 struct ext4_sb_info *sbi = EXT4_SB(sb);
2592 unsigned size;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002593 struct ext4_group_info ***old_groupinfo, ***new_groupinfo;
Theodore Ts'o28623c22012-09-05 01:31:50 -04002594
2595 size = (ngroups + EXT4_DESC_PER_BLOCK(sb) - 1) >>
2596 EXT4_DESC_PER_BLOCK_BITS(sb);
2597 if (size <= sbi->s_group_info_size)
2598 return 0;
2599
2600 size = roundup_pow_of_two(sizeof(*sbi->s_group_info) * size);
Michal Hockoa7c3e902017-05-08 15:57:09 -07002601 new_groupinfo = kvzalloc(size, GFP_KERNEL);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002602 if (!new_groupinfo) {
2603 ext4_msg(sb, KERN_ERR, "can't allocate buddy meta group");
2604 return -ENOMEM;
2605 }
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002606 rcu_read_lock();
2607 old_groupinfo = rcu_dereference(sbi->s_group_info);
2608 if (old_groupinfo)
2609 memcpy(new_groupinfo, old_groupinfo,
Theodore Ts'o28623c22012-09-05 01:31:50 -04002610 sbi->s_group_info_size * sizeof(*sbi->s_group_info));
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002611 rcu_read_unlock();
2612 rcu_assign_pointer(sbi->s_group_info, new_groupinfo);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002613 sbi->s_group_info_size = size / sizeof(*sbi->s_group_info);
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002614 if (old_groupinfo)
2615 ext4_kvfree_array_rcu(old_groupinfo);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002616 ext4_debug("allocated s_groupinfo array for %d meta_bg's\n",
2617 sbi->s_group_info_size);
2618 return 0;
2619}
2620
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002621/* Create and initialize ext4_group_info data for the given group. */
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002622int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002623 struct ext4_group_desc *desc)
2624{
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002625 int i;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002626 int metalen = 0;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002627 int idx = group >> EXT4_DESC_PER_BLOCK_BITS(sb);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002628 struct ext4_sb_info *sbi = EXT4_SB(sb);
2629 struct ext4_group_info **meta_group_info;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002630 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002631
2632 /*
2633 * First check if this group is the first of a reserved block.
2634 * If it's true, we have to allocate a new table of pointers
2635 * to ext4_group_info structures
2636 */
2637 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
2638 metalen = sizeof(*meta_group_info) <<
2639 EXT4_DESC_PER_BLOCK_BITS(sb);
Dmitry Monakhov4fdb5542014-11-25 13:08:04 -05002640 meta_group_info = kmalloc(metalen, GFP_NOFS);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002641 if (meta_group_info == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04002642 ext4_msg(sb, KERN_ERR, "can't allocate mem "
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002643 "for a buddy group");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002644 goto exit_meta_group_info;
2645 }
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002646 rcu_read_lock();
2647 rcu_dereference(sbi->s_group_info)[idx] = meta_group_info;
2648 rcu_read_unlock();
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002649 }
2650
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002651 meta_group_info = sbi_array_rcu_deref(sbi, s_group_info, idx);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002652 i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
2653
Dmitry Monakhov4fdb5542014-11-25 13:08:04 -05002654 meta_group_info[i] = kmem_cache_zalloc(cachep, GFP_NOFS);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002655 if (meta_group_info[i] == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04002656 ext4_msg(sb, KERN_ERR, "can't allocate buddy mem");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002657 goto exit_group_info;
2658 }
2659 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
2660 &(meta_group_info[i]->bb_state));
2661
2662 /*
2663 * initialize bb_free to be able to skip
2664 * empty groups without initialization
2665 */
Theodore Ts'o88446182018-06-14 00:58:00 -04002666 if (ext4_has_group_desc_csum(sb) &&
2667 (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002668 meta_group_info[i]->bb_free =
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04002669 ext4_free_clusters_after_init(sb, group, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002670 } else {
2671 meta_group_info[i]->bb_free =
Theodore Ts'o021b65b2011-09-09 19:08:51 -04002672 ext4_free_group_clusters(sb, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002673 }
2674
2675 INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05002676 init_rwsem(&meta_group_info[i]->alloc_sem);
Venkatesh Pallipadi64e290e2010-03-04 22:25:21 -05002677 meta_group_info[i]->bb_free_root = RB_ROOT;
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002678 meta_group_info[i]->bb_largest_free_order = -1; /* uninit */
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002679
Ritesh Harjania3450212020-05-10 11:54:48 +05302680 mb_group_bb_bitmap_alloc(sb, meta_group_info[i], group);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002681 return 0;
2682
2683exit_group_info:
2684 /* If a meta_group_info table has been allocated, release it now */
Tao Macaaf7a22011-07-11 18:42:42 -04002685 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002686 struct ext4_group_info ***group_info;
2687
2688 rcu_read_lock();
2689 group_info = rcu_dereference(sbi->s_group_info);
2690 kfree(group_info[idx]);
2691 group_info[idx] = NULL;
2692 rcu_read_unlock();
Tao Macaaf7a22011-07-11 18:42:42 -04002693 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002694exit_meta_group_info:
2695 return -ENOMEM;
2696} /* ext4_mb_add_groupinfo */
2697
Alex Tomasc9de5602008-01-29 00:19:52 -05002698static int ext4_mb_init_backend(struct super_block *sb)
2699{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002700 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002701 ext4_group_t i;
Alex Tomasc9de5602008-01-29 00:19:52 -05002702 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o28623c22012-09-05 01:31:50 -04002703 int err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002704 struct ext4_group_desc *desc;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002705 struct ext4_group_info ***group_info;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002706 struct kmem_cache *cachep;
Alex Tomasc9de5602008-01-29 00:19:52 -05002707
Theodore Ts'o28623c22012-09-05 01:31:50 -04002708 err = ext4_mb_alloc_groupinfo(sb, ngroups);
2709 if (err)
2710 return err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002711
Alex Tomasc9de5602008-01-29 00:19:52 -05002712 sbi->s_buddy_cache = new_inode(sb);
2713 if (sbi->s_buddy_cache == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002714 ext4_msg(sb, KERN_ERR, "can't get new inode");
Alex Tomasc9de5602008-01-29 00:19:52 -05002715 goto err_freesgi;
2716 }
Yu Jian48e60612011-08-01 17:41:39 -04002717 /* To avoid potentially colliding with an valid on-disk inode number,
2718 * use EXT4_BAD_INO for the buddy cache inode number. This inode is
2719 * not in the inode hash, so it should never be found by iget(), but
2720 * this will avoid confusion if it ever shows up during debugging. */
2721 sbi->s_buddy_cache->i_ino = EXT4_BAD_INO;
Alex Tomasc9de5602008-01-29 00:19:52 -05002722 EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002723 for (i = 0; i < ngroups; i++) {
Khazhismel Kumykov4b99faa2019-04-25 12:58:01 -04002724 cond_resched();
Alex Tomasc9de5602008-01-29 00:19:52 -05002725 desc = ext4_get_group_desc(sb, i, NULL);
2726 if (desc == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002727 ext4_msg(sb, KERN_ERR, "can't read descriptor %u", i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002728 goto err_freebuddy;
2729 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04002730 if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
2731 goto err_freebuddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05002732 }
2733
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002734 if (ext4_has_feature_flex_bg(sb)) {
2735 /* a single flex group is supposed to be read by a single IO */
2736 sbi->s_mb_prefetch = 1 << sbi->s_es->s_log_groups_per_flex;
2737 sbi->s_mb_prefetch *= 8; /* 8 prefetch IOs in flight at most */
2738 } else {
2739 sbi->s_mb_prefetch = 32;
2740 }
2741 if (sbi->s_mb_prefetch > ext4_get_groups_count(sb))
2742 sbi->s_mb_prefetch = ext4_get_groups_count(sb);
2743 /* now many real IOs to prefetch within a single allocation at cr=0
2744 * given cr=0 is an CPU-related optimization we shouldn't try to
2745 * load too many groups, at some point we should start to use what
2746 * we've got in memory.
2747 * with an average random access time 5ms, it'd take a second to get
2748 * 200 groups (* N with flex_bg), so let's make this limit 4
2749 */
2750 sbi->s_mb_prefetch_limit = sbi->s_mb_prefetch * 4;
2751 if (sbi->s_mb_prefetch_limit > ext4_get_groups_count(sb))
2752 sbi->s_mb_prefetch_limit = ext4_get_groups_count(sb);
2753
Alex Tomasc9de5602008-01-29 00:19:52 -05002754 return 0;
2755
2756err_freebuddy:
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002757 cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Roel Kluinf1fa3342008-04-29 22:01:15 -04002758 while (i-- > 0)
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002759 kmem_cache_free(cachep, ext4_get_group_info(sb, i));
Theodore Ts'o28623c22012-09-05 01:31:50 -04002760 i = sbi->s_group_info_size;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002761 rcu_read_lock();
2762 group_info = rcu_dereference(sbi->s_group_info);
Roel Kluinf1fa3342008-04-29 22:01:15 -04002763 while (i-- > 0)
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002764 kfree(group_info[i]);
2765 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05002766 iput(sbi->s_buddy_cache);
2767err_freesgi:
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002768 rcu_read_lock();
2769 kvfree(rcu_dereference(sbi->s_group_info));
2770 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05002771 return -ENOMEM;
2772}
2773
Eric Sandeen2892c152011-02-12 08:12:18 -05002774static void ext4_groupinfo_destroy_slabs(void)
2775{
2776 int i;
2777
2778 for (i = 0; i < NR_GRPINFO_CACHES; i++) {
Sean Fu21c580d2018-05-20 22:44:13 -04002779 kmem_cache_destroy(ext4_groupinfo_caches[i]);
Eric Sandeen2892c152011-02-12 08:12:18 -05002780 ext4_groupinfo_caches[i] = NULL;
2781 }
2782}
2783
2784static int ext4_groupinfo_create_slab(size_t size)
2785{
2786 static DEFINE_MUTEX(ext4_grpinfo_slab_create_mutex);
2787 int slab_size;
2788 int blocksize_bits = order_base_2(size);
2789 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2790 struct kmem_cache *cachep;
2791
2792 if (cache_index >= NR_GRPINFO_CACHES)
2793 return -EINVAL;
2794
2795 if (unlikely(cache_index < 0))
2796 cache_index = 0;
2797
2798 mutex_lock(&ext4_grpinfo_slab_create_mutex);
2799 if (ext4_groupinfo_caches[cache_index]) {
2800 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2801 return 0; /* Already created */
2802 }
2803
2804 slab_size = offsetof(struct ext4_group_info,
2805 bb_counters[blocksize_bits + 2]);
2806
2807 cachep = kmem_cache_create(ext4_groupinfo_slab_names[cache_index],
2808 slab_size, 0, SLAB_RECLAIM_ACCOUNT,
2809 NULL);
2810
Tao Ma823ba012011-07-11 18:26:01 -04002811 ext4_groupinfo_caches[cache_index] = cachep;
2812
Eric Sandeen2892c152011-02-12 08:12:18 -05002813 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
2814 if (!cachep) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002815 printk(KERN_EMERG
2816 "EXT4-fs: no memory for groupinfo slab cache\n");
Eric Sandeen2892c152011-02-12 08:12:18 -05002817 return -ENOMEM;
2818 }
2819
Eric Sandeen2892c152011-02-12 08:12:18 -05002820 return 0;
2821}
2822
Akira Fujita9d990122012-05-28 14:19:25 -04002823int ext4_mb_init(struct super_block *sb)
Alex Tomasc9de5602008-01-29 00:19:52 -05002824{
2825 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002826 unsigned i, j;
Nicolai Stange935244c2016-05-05 19:46:19 -04002827 unsigned offset, offset_incr;
Alex Tomasc9de5602008-01-29 00:19:52 -05002828 unsigned max;
Shen Feng74767c52008-07-11 19:27:31 -04002829 int ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002830
Eric Sandeen19278052009-08-25 22:36:25 -04002831 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_offsets);
Alex Tomasc9de5602008-01-29 00:19:52 -05002832
2833 sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
2834 if (sbi->s_mb_offsets == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002835 ret = -ENOMEM;
2836 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002837 }
Yasunori Gotoff7ef322008-12-17 00:48:39 -05002838
Eric Sandeen19278052009-08-25 22:36:25 -04002839 i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_maxs);
Alex Tomasc9de5602008-01-29 00:19:52 -05002840 sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
2841 if (sbi->s_mb_maxs == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002842 ret = -ENOMEM;
2843 goto out;
2844 }
2845
Eric Sandeen2892c152011-02-12 08:12:18 -05002846 ret = ext4_groupinfo_create_slab(sb->s_blocksize);
2847 if (ret < 0)
2848 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002849
2850 /* order 0 is regular bitmap */
2851 sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
2852 sbi->s_mb_offsets[0] = 0;
2853
2854 i = 1;
2855 offset = 0;
Nicolai Stange935244c2016-05-05 19:46:19 -04002856 offset_incr = 1 << (sb->s_blocksize_bits - 1);
Alex Tomasc9de5602008-01-29 00:19:52 -05002857 max = sb->s_blocksize << 2;
2858 do {
2859 sbi->s_mb_offsets[i] = offset;
2860 sbi->s_mb_maxs[i] = max;
Nicolai Stange935244c2016-05-05 19:46:19 -04002861 offset += offset_incr;
2862 offset_incr = offset_incr >> 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002863 max = max >> 1;
2864 i++;
2865 } while (i <= sb->s_blocksize_bits + 1);
2866
Alex Tomasc9de5602008-01-29 00:19:52 -05002867 spin_lock_init(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05002868 spin_lock_init(&sbi->s_bal_lock);
Theodore Ts'od08854f2016-06-26 18:24:01 -04002869 sbi->s_mb_free_pending = 0;
Daeho Jeonga0154342017-06-22 23:54:33 -04002870 INIT_LIST_HEAD(&sbi->s_freed_data_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05002871
2872 sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
2873 sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
2874 sbi->s_mb_stats = MB_DEFAULT_STATS;
2875 sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
2876 sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
brookxu27bc4462020-08-17 15:36:15 +08002877 sbi->s_mb_max_inode_prealloc = MB_DEFAULT_MAX_INODE_PREALLOC;
Theodore Ts'o27baebb2011-09-09 19:02:51 -04002878 /*
2879 * The default group preallocation is 512, which for 4k block
2880 * sizes translates to 2 megabytes. However for bigalloc file
2881 * systems, this is probably too big (i.e, if the cluster size
2882 * is 1 megabyte, then group preallocation size becomes half a
2883 * gigabyte!). As a default, we will keep a two megabyte
2884 * group pralloc size for cluster sizes up to 64k, and after
2885 * that, we will force a minimum group preallocation size of
2886 * 32 clusters. This translates to 8 megs when the cluster
2887 * size is 256k, and 32 megs when the cluster size is 1 meg,
2888 * which seems reasonable as a default.
2889 */
2890 sbi->s_mb_group_prealloc = max(MB_DEFAULT_GROUP_PREALLOC >>
2891 sbi->s_cluster_bits, 32);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04002892 /*
2893 * If there is a s_stripe > 1, then we set the s_mb_group_prealloc
2894 * to the lowest multiple of s_stripe which is bigger than
2895 * the s_mb_group_prealloc as determined above. We want
2896 * the preallocation size to be an exact multiple of the
2897 * RAID stripe size so that preallocations don't fragment
2898 * the stripes.
2899 */
2900 if (sbi->s_stripe > 1) {
2901 sbi->s_mb_group_prealloc = roundup(
2902 sbi->s_mb_group_prealloc, sbi->s_stripe);
2903 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002904
Eric Sandeen730c2132008-09-13 15:23:29 -04002905 sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002906 if (sbi->s_locality_groups == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002907 ret = -ENOMEM;
Andrey Tsyvarev029b10c2014-05-12 12:34:21 -04002908 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05002909 }
Eric Sandeen730c2132008-09-13 15:23:29 -04002910 for_each_possible_cpu(i) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002911 struct ext4_locality_group *lg;
Eric Sandeen730c2132008-09-13 15:23:29 -04002912 lg = per_cpu_ptr(sbi->s_locality_groups, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05002913 mutex_init(&lg->lg_mutex);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04002914 for (j = 0; j < PREALLOC_TB_SIZE; j++)
2915 INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
Alex Tomasc9de5602008-01-29 00:19:52 -05002916 spin_lock_init(&lg->lg_prealloc_lock);
2917 }
2918
Yu Jian79a77c52011-08-01 17:41:46 -04002919 /* init file for buddy data */
2920 ret = ext4_mb_init_backend(sb);
Tao Ma7aa0bae2011-10-06 10:22:28 -04002921 if (ret != 0)
2922 goto out_free_locality_groups;
Yu Jian79a77c52011-08-01 17:41:46 -04002923
Tao Ma7aa0bae2011-10-06 10:22:28 -04002924 return 0;
2925
2926out_free_locality_groups:
2927 free_percpu(sbi->s_locality_groups);
2928 sbi->s_locality_groups = NULL;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002929out:
Tao Ma7aa0bae2011-10-06 10:22:28 -04002930 kfree(sbi->s_mb_offsets);
2931 sbi->s_mb_offsets = NULL;
2932 kfree(sbi->s_mb_maxs);
2933 sbi->s_mb_maxs = NULL;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002934 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002935}
2936
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04002937/* need to called with the ext4 group lock held */
Ritesh Harjanid3df1452020-05-10 11:54:54 +05302938static int ext4_mb_cleanup_pa(struct ext4_group_info *grp)
Alex Tomasc9de5602008-01-29 00:19:52 -05002939{
2940 struct ext4_prealloc_space *pa;
2941 struct list_head *cur, *tmp;
2942 int count = 0;
2943
2944 list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
2945 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
2946 list_del(&pa->pa_group_list);
2947 count++;
Aneesh Kumar K.V688f05a2008-10-13 12:14:14 -04002948 kmem_cache_free(ext4_pspace_cachep, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05002949 }
Ritesh Harjanid3df1452020-05-10 11:54:54 +05302950 return count;
Alex Tomasc9de5602008-01-29 00:19:52 -05002951}
2952
2953int ext4_mb_release(struct super_block *sb)
2954{
Theodore Ts'o8df96752009-05-01 08:50:38 -04002955 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05002956 ext4_group_t i;
2957 int num_meta_group_infos;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002958 struct ext4_group_info *grinfo, ***group_info;
Alex Tomasc9de5602008-01-29 00:19:52 -05002959 struct ext4_sb_info *sbi = EXT4_SB(sb);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002960 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05302961 int count;
Alex Tomasc9de5602008-01-29 00:19:52 -05002962
Alex Tomasc9de5602008-01-29 00:19:52 -05002963 if (sbi->s_group_info) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04002964 for (i = 0; i < ngroups; i++) {
Khazhismel Kumykov4b99faa2019-04-25 12:58:01 -04002965 cond_resched();
Alex Tomasc9de5602008-01-29 00:19:52 -05002966 grinfo = ext4_get_group_info(sb, i);
Ritesh Harjania3450212020-05-10 11:54:48 +05302967 mb_group_bb_bitmap_free(grinfo);
Alex Tomasc9de5602008-01-29 00:19:52 -05002968 ext4_lock_group(sb, i);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05302969 count = ext4_mb_cleanup_pa(grinfo);
2970 if (count)
2971 mb_debug(sb, "mballoc: %d PAs left\n",
2972 count);
Alex Tomasc9de5602008-01-29 00:19:52 -05002973 ext4_unlock_group(sb, i);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04002974 kmem_cache_free(cachep, grinfo);
Alex Tomasc9de5602008-01-29 00:19:52 -05002975 }
Theodore Ts'o8df96752009-05-01 08:50:38 -04002976 num_meta_group_infos = (ngroups +
Alex Tomasc9de5602008-01-29 00:19:52 -05002977 EXT4_DESC_PER_BLOCK(sb) - 1) >>
2978 EXT4_DESC_PER_BLOCK_BITS(sb);
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002979 rcu_read_lock();
2980 group_info = rcu_dereference(sbi->s_group_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05002981 for (i = 0; i < num_meta_group_infos; i++)
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08002982 kfree(group_info[i]);
2983 kvfree(group_info);
2984 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05002985 }
2986 kfree(sbi->s_mb_offsets);
2987 kfree(sbi->s_mb_maxs);
Markus Elfringbfcba2d2014-11-25 20:01:37 -05002988 iput(sbi->s_buddy_cache);
Alex Tomasc9de5602008-01-29 00:19:52 -05002989 if (sbi->s_mb_stats) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002990 ext4_msg(sb, KERN_INFO,
2991 "mballoc: %u blocks %u reqs (%u success)",
Alex Tomasc9de5602008-01-29 00:19:52 -05002992 atomic_read(&sbi->s_bal_allocated),
2993 atomic_read(&sbi->s_bal_reqs),
2994 atomic_read(&sbi->s_bal_success));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04002995 ext4_msg(sb, KERN_INFO,
2996 "mballoc: %u extents scanned, %u goal hits, "
2997 "%u 2^N hits, %u breaks, %u lost",
Alex Tomasc9de5602008-01-29 00:19:52 -05002998 atomic_read(&sbi->s_bal_ex_scanned),
2999 atomic_read(&sbi->s_bal_goals),
3000 atomic_read(&sbi->s_bal_2orders),
3001 atomic_read(&sbi->s_bal_breaks),
3002 atomic_read(&sbi->s_mb_lost_chunks));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003003 ext4_msg(sb, KERN_INFO,
3004 "mballoc: %lu generated and it took %Lu",
Tao Maced156e2011-07-23 16:18:05 -04003005 sbi->s_mb_buddies_generated,
Alex Tomasc9de5602008-01-29 00:19:52 -05003006 sbi->s_mb_generation_time);
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003007 ext4_msg(sb, KERN_INFO,
3008 "mballoc: %u preallocated, %u discarded",
Alex Tomasc9de5602008-01-29 00:19:52 -05003009 atomic_read(&sbi->s_mb_preallocated),
3010 atomic_read(&sbi->s_mb_discarded));
3011 }
3012
Eric Sandeen730c2132008-09-13 15:23:29 -04003013 free_percpu(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05003014
3015 return 0;
3016}
3017
Lukas Czerner77ca6cd2010-10-27 21:30:11 -04003018static inline int ext4_issue_discard(struct super_block *sb,
Daeho Jeonga0154342017-06-22 23:54:33 -04003019 ext4_group_t block_group, ext4_grpblk_t cluster, int count,
3020 struct bio **biop)
Jiaying Zhang5c521832010-07-27 11:56:05 -04003021{
Jiaying Zhang5c521832010-07-27 11:56:05 -04003022 ext4_fsblk_t discard_block;
3023
Theodore Ts'o84130192011-09-09 18:50:51 -04003024 discard_block = (EXT4_C2B(EXT4_SB(sb), cluster) +
3025 ext4_group_first_block_no(sb, block_group));
3026 count = EXT4_C2B(EXT4_SB(sb), count);
Jiaying Zhang5c521832010-07-27 11:56:05 -04003027 trace_ext4_discard_blocks(sb,
3028 (unsigned long long) discard_block, count);
Daeho Jeonga0154342017-06-22 23:54:33 -04003029 if (biop) {
3030 return __blkdev_issue_discard(sb->s_bdev,
3031 (sector_t)discard_block << (sb->s_blocksize_bits - 9),
3032 (sector_t)count << (sb->s_blocksize_bits - 9),
3033 GFP_NOFS, 0, biop);
3034 } else
3035 return sb_issue_discard(sb, discard_block, count, GFP_NOFS, 0);
Jiaying Zhang5c521832010-07-27 11:56:05 -04003036}
3037
Daeho Jeonga0154342017-06-22 23:54:33 -04003038static void ext4_free_data_in_buddy(struct super_block *sb,
3039 struct ext4_free_data *entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05003040{
Alex Tomasc9de5602008-01-29 00:19:52 -05003041 struct ext4_buddy e4b;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04003042 struct ext4_group_info *db;
Theodore Ts'od9f34502011-04-30 13:47:24 -04003043 int err, count = 0, count2 = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003044
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303045 mb_debug(sb, "gonna free %u blocks in group %u (0x%p):",
Bobi Jam18aadd42012-02-20 17:53:02 -05003046 entry->efd_count, entry->efd_group, entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05003047
Bobi Jam18aadd42012-02-20 17:53:02 -05003048 err = ext4_mb_load_buddy(sb, entry->efd_group, &e4b);
3049 /* we expect to find existing buddy because it's pinned */
3050 BUG_ON(err != 0);
Theodore Ts'ob90f6872010-04-20 16:51:59 -04003051
Theodore Ts'od08854f2016-06-26 18:24:01 -04003052 spin_lock(&EXT4_SB(sb)->s_md_lock);
3053 EXT4_SB(sb)->s_mb_free_pending -= entry->efd_count;
3054 spin_unlock(&EXT4_SB(sb)->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003055
Bobi Jam18aadd42012-02-20 17:53:02 -05003056 db = e4b.bd_info;
3057 /* there are blocks to put in buddy to make them really free */
3058 count += entry->efd_count;
3059 count2++;
3060 ext4_lock_group(sb, entry->efd_group);
3061 /* Take it out of per group rb tree */
3062 rb_erase(&entry->efd_node, &(db->bb_free_root));
3063 mb_free_blocks(NULL, &e4b, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04003064
Bobi Jam18aadd42012-02-20 17:53:02 -05003065 /*
3066 * Clear the trimmed flag for the group so that the next
3067 * ext4_trim_fs can trim it.
3068 * If the volume is mounted with -o discard, online discard
3069 * is supported and the free blocks will be trimmed online.
3070 */
3071 if (!test_opt(sb, DISCARD))
3072 EXT4_MB_GRP_CLEAR_TRIMMED(db);
3073
3074 if (!db->bb_free_root.rb_node) {
3075 /* No more items in the per group rb tree
3076 * balance refcounts from ext4_mb_free_metadata()
Tao Ma3d56b8d2011-07-11 00:03:38 -04003077 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003078 put_page(e4b.bd_buddy_page);
3079 put_page(e4b.bd_bitmap_page);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04003080 }
Bobi Jam18aadd42012-02-20 17:53:02 -05003081 ext4_unlock_group(sb, entry->efd_group);
3082 kmem_cache_free(ext4_free_data_cachep, entry);
3083 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05003084
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303085 mb_debug(sb, "freed %d blocks in %d structures\n", count,
3086 count2);
Alex Tomasc9de5602008-01-29 00:19:52 -05003087}
3088
Daeho Jeonga0154342017-06-22 23:54:33 -04003089/*
3090 * This function is called by the jbd2 layer once the commit has finished,
3091 * so we know we can free the blocks that were released with that commit.
3092 */
3093void ext4_process_freed_data(struct super_block *sb, tid_t commit_tid)
3094{
3095 struct ext4_sb_info *sbi = EXT4_SB(sb);
3096 struct ext4_free_data *entry, *tmp;
3097 struct bio *discard_bio = NULL;
3098 struct list_head freed_data_list;
3099 struct list_head *cut_pos = NULL;
3100 int err;
3101
3102 INIT_LIST_HEAD(&freed_data_list);
3103
3104 spin_lock(&sbi->s_md_lock);
3105 list_for_each_entry(entry, &sbi->s_freed_data_list, efd_list) {
3106 if (entry->efd_tid != commit_tid)
3107 break;
3108 cut_pos = &entry->efd_list;
3109 }
3110 if (cut_pos)
3111 list_cut_position(&freed_data_list, &sbi->s_freed_data_list,
3112 cut_pos);
3113 spin_unlock(&sbi->s_md_lock);
3114
3115 if (test_opt(sb, DISCARD)) {
3116 list_for_each_entry(entry, &freed_data_list, efd_list) {
3117 err = ext4_issue_discard(sb, entry->efd_group,
3118 entry->efd_start_cluster,
3119 entry->efd_count,
3120 &discard_bio);
3121 if (err && err != -EOPNOTSUPP) {
3122 ext4_msg(sb, KERN_WARNING, "discard request in"
3123 " group:%d block:%d count:%d failed"
3124 " with %d", entry->efd_group,
3125 entry->efd_start_cluster,
3126 entry->efd_count, err);
3127 } else if (err == -EOPNOTSUPP)
3128 break;
3129 }
3130
Daeho Jeonge4510572017-08-05 13:11:57 -04003131 if (discard_bio) {
Daeho Jeonga0154342017-06-22 23:54:33 -04003132 submit_bio_wait(discard_bio);
Daeho Jeonge4510572017-08-05 13:11:57 -04003133 bio_put(discard_bio);
3134 }
Daeho Jeonga0154342017-06-22 23:54:33 -04003135 }
3136
3137 list_for_each_entry_safe(entry, tmp, &freed_data_list, efd_list)
3138 ext4_free_data_in_buddy(sb, entry);
3139}
3140
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04003141int __init ext4_init_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05003142{
Theodore Ts'o16828082010-10-27 21:30:09 -04003143 ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space,
3144 SLAB_RECLAIM_ACCOUNT);
Alex Tomasc9de5602008-01-29 00:19:52 -05003145 if (ext4_pspace_cachep == NULL)
Ritesh Harjanif2835292020-05-10 11:54:46 +05303146 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05003147
Theodore Ts'o16828082010-10-27 21:30:09 -04003148 ext4_ac_cachep = KMEM_CACHE(ext4_allocation_context,
3149 SLAB_RECLAIM_ACCOUNT);
Ritesh Harjanif2835292020-05-10 11:54:46 +05303150 if (ext4_ac_cachep == NULL)
3151 goto out_pa_free;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04003152
Bobi Jam18aadd42012-02-20 17:53:02 -05003153 ext4_free_data_cachep = KMEM_CACHE(ext4_free_data,
3154 SLAB_RECLAIM_ACCOUNT);
Ritesh Harjanif2835292020-05-10 11:54:46 +05303155 if (ext4_free_data_cachep == NULL)
3156 goto out_ac_free;
3157
Alex Tomasc9de5602008-01-29 00:19:52 -05003158 return 0;
Ritesh Harjanif2835292020-05-10 11:54:46 +05303159
3160out_ac_free:
3161 kmem_cache_destroy(ext4_ac_cachep);
3162out_pa_free:
3163 kmem_cache_destroy(ext4_pspace_cachep);
3164out:
3165 return -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -05003166}
3167
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04003168void ext4_exit_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05003169{
Theodore Ts'o60e66792010-05-17 07:00:00 -04003170 /*
Jesper Dangaard Brouer3e03f9c2009-07-05 22:29:27 -04003171 * Wait for completion of call_rcu()'s on ext4_pspace_cachep
3172 * before destroying the slab cache.
3173 */
3174 rcu_barrier();
Alex Tomasc9de5602008-01-29 00:19:52 -05003175 kmem_cache_destroy(ext4_pspace_cachep);
Eric Sandeen256bdb42008-02-10 01:13:33 -05003176 kmem_cache_destroy(ext4_ac_cachep);
Bobi Jam18aadd42012-02-20 17:53:02 -05003177 kmem_cache_destroy(ext4_free_data_cachep);
Eric Sandeen2892c152011-02-12 08:12:18 -05003178 ext4_groupinfo_destroy_slabs();
Alex Tomasc9de5602008-01-29 00:19:52 -05003179}
3180
3181
3182/*
Uwe Kleine-König73b2c712010-07-30 21:02:47 +02003183 * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
Alex Tomasc9de5602008-01-29 00:19:52 -05003184 * Returns 0 if success or error code
3185 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003186static noinline_for_stack int
3187ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003188 handle_t *handle, unsigned int reserv_clstrs)
Alex Tomasc9de5602008-01-29 00:19:52 -05003189{
3190 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05003191 struct ext4_group_desc *gdp;
3192 struct buffer_head *gdp_bh;
3193 struct ext4_sb_info *sbi;
3194 struct super_block *sb;
3195 ext4_fsblk_t block;
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003196 int err, len;
Alex Tomasc9de5602008-01-29 00:19:52 -05003197
3198 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3199 BUG_ON(ac->ac_b_ex.fe_len <= 0);
3200
3201 sb = ac->ac_sb;
3202 sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003203
Theodore Ts'o574ca172008-07-11 19:27:31 -04003204 bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04003205 if (IS_ERR(bitmap_bh)) {
3206 err = PTR_ERR(bitmap_bh);
3207 bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05003208 goto out_err;
Darrick J. Wong9008a582015-10-17 21:33:24 -04003209 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003210
liang xie5d601252014-05-12 22:06:43 -04003211 BUFFER_TRACE(bitmap_bh, "getting write access");
Alex Tomasc9de5602008-01-29 00:19:52 -05003212 err = ext4_journal_get_write_access(handle, bitmap_bh);
3213 if (err)
3214 goto out_err;
3215
3216 err = -EIO;
3217 gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
3218 if (!gdp)
3219 goto out_err;
3220
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003221 ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003222 ext4_free_group_clusters(sb, gdp));
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04003223
liang xie5d601252014-05-12 22:06:43 -04003224 BUFFER_TRACE(gdp_bh, "get_write_access");
Alex Tomasc9de5602008-01-29 00:19:52 -05003225 err = ext4_journal_get_write_access(handle, gdp_bh);
3226 if (err)
3227 goto out_err;
3228
Akinobu Mitabda00de2010-03-03 23:53:25 -05003229 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05003230
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003231 len = EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Jan Karace9f24c2020-07-28 15:04:34 +02003232 if (!ext4_inode_block_valid(ac->ac_inode, block, len)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003233 ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
Theodore Ts'o1084f252012-03-19 23:13:43 -04003234 "fs metadata", block, block+len);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003235 /* File system mounted not to panic on error
Vegard Nossum554a5cc2016-07-14 23:02:47 -04003236 * Fix the bitmap and return EFSCORRUPTED
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003237 * We leak some of the blocks here.
3238 */
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003239 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003240 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
3241 ac->ac_b_ex.fe_len);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003242 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Frank Mayhar03901312009-01-07 00:06:22 -05003243 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003244 if (!err)
Vegard Nossum554a5cc2016-07-14 23:02:47 -04003245 err = -EFSCORRUPTED;
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003246 goto out_err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003247 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003248
3249 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003250#ifdef AGGRESSIVE_CHECK
3251 {
3252 int i;
3253 for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
3254 BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
3255 bitmap_bh->b_data));
3256 }
3257 }
3258#endif
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003259 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
3260 ac->ac_b_ex.fe_len);
Theodore Ts'o88446182018-06-14 00:58:00 -04003261 if (ext4_has_group_desc_csum(sb) &&
3262 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003263 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003264 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04003265 ext4_free_clusters_after_init(sb,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003266 ac->ac_b_ex.fe_group, gdp));
Alex Tomasc9de5602008-01-29 00:19:52 -05003267 }
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003268 len = ext4_free_group_clusters(sb, gdp) - ac->ac_b_ex.fe_len;
3269 ext4_free_group_clusters_set(sb, gdp, len);
Tao Ma79f1ba42012-10-22 00:34:32 -04003270 ext4_block_bitmap_csum_set(sb, ac->ac_b_ex.fe_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04003271 ext4_group_desc_csum_set(sb, ac->ac_b_ex.fe_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003272
3273 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04003274 percpu_counter_sub(&sbi->s_freeclusters_counter, ac->ac_b_ex.fe_len);
Mingming Caod2a17632008-07-14 17:52:37 -04003275 /*
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003276 * Now reduce the dirty block count also. Should not go negative
Mingming Caod2a17632008-07-14 17:52:37 -04003277 */
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003278 if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
3279 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04003280 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
3281 reserv_clstrs);
Alex Tomasc9de5602008-01-29 00:19:52 -05003282
Jose R. Santos772cb7c2008-07-11 19:27:31 -04003283 if (sbi->s_log_groups_per_flex) {
3284 ext4_group_t flex_group = ext4_flex_group(sbi,
3285 ac->ac_b_ex.fe_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04003286 atomic64_sub(ac->ac_b_ex.fe_len,
Suraj Jitindar Singh7c990722020-02-18 19:08:51 -08003287 &sbi_array_rcu_deref(sbi, s_flex_groups,
3288 flex_group)->free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04003289 }
3290
Frank Mayhar03901312009-01-07 00:06:22 -05003291 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05003292 if (err)
3293 goto out_err;
Frank Mayhar03901312009-01-07 00:06:22 -05003294 err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05003295
3296out_err:
Aneesh Kumar K.V42a10ad2008-02-10 01:07:28 -05003297 brelse(bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05003298 return err;
3299}
3300
3301/*
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07003302 * Idempotent helper for Ext4 fast commit replay path to set the state of
3303 * blocks in bitmaps and update counters.
3304 */
3305void ext4_mb_mark_bb(struct super_block *sb, ext4_fsblk_t block,
3306 int len, int state)
3307{
3308 struct buffer_head *bitmap_bh = NULL;
3309 struct ext4_group_desc *gdp;
3310 struct buffer_head *gdp_bh;
3311 struct ext4_sb_info *sbi = EXT4_SB(sb);
3312 ext4_group_t group;
3313 ext4_grpblk_t blkoff;
3314 int i, clen, err;
3315 int already;
3316
3317 clen = EXT4_B2C(sbi, len);
3318
3319 ext4_get_group_no_and_offset(sb, block, &group, &blkoff);
3320 bitmap_bh = ext4_read_block_bitmap(sb, group);
3321 if (IS_ERR(bitmap_bh)) {
3322 err = PTR_ERR(bitmap_bh);
3323 bitmap_bh = NULL;
3324 goto out_err;
3325 }
3326
3327 err = -EIO;
3328 gdp = ext4_get_group_desc(sb, group, &gdp_bh);
3329 if (!gdp)
3330 goto out_err;
3331
3332 ext4_lock_group(sb, group);
3333 already = 0;
3334 for (i = 0; i < clen; i++)
3335 if (!mb_test_bit(blkoff + i, bitmap_bh->b_data) == !state)
3336 already++;
3337
3338 if (state)
3339 ext4_set_bits(bitmap_bh->b_data, blkoff, clen);
3340 else
3341 mb_test_and_clear_bits(bitmap_bh->b_data, blkoff, clen);
3342 if (ext4_has_group_desc_csum(sb) &&
3343 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
3344 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
3345 ext4_free_group_clusters_set(sb, gdp,
3346 ext4_free_clusters_after_init(sb,
3347 group, gdp));
3348 }
3349 if (state)
3350 clen = ext4_free_group_clusters(sb, gdp) - clen + already;
3351 else
3352 clen = ext4_free_group_clusters(sb, gdp) + clen - already;
3353
3354 ext4_free_group_clusters_set(sb, gdp, clen);
3355 ext4_block_bitmap_csum_set(sb, group, gdp, bitmap_bh);
3356 ext4_group_desc_csum_set(sb, group, gdp);
3357
3358 ext4_unlock_group(sb, group);
3359
3360 if (sbi->s_log_groups_per_flex) {
3361 ext4_group_t flex_group = ext4_flex_group(sbi, group);
3362
3363 atomic64_sub(len,
3364 &sbi_array_rcu_deref(sbi, s_flex_groups,
3365 flex_group)->free_clusters);
3366 }
3367
3368 err = ext4_handle_dirty_metadata(NULL, NULL, bitmap_bh);
3369 if (err)
3370 goto out_err;
3371 sync_dirty_buffer(bitmap_bh);
3372 err = ext4_handle_dirty_metadata(NULL, NULL, gdp_bh);
3373 sync_dirty_buffer(gdp_bh);
3374
3375out_err:
3376 brelse(bitmap_bh);
3377}
3378
3379/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003380 * here we normalize request for locality group
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04003381 * Group request are normalized to s_mb_group_prealloc, which goes to
3382 * s_strip if we set the same via mount option.
3383 * s_mb_group_prealloc can be configured via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003384 * /sys/fs/ext4/<partition>/mb_group_prealloc
Alex Tomasc9de5602008-01-29 00:19:52 -05003385 *
3386 * XXX: should we try to preallocate more than the group has now?
3387 */
3388static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
3389{
3390 struct super_block *sb = ac->ac_sb;
3391 struct ext4_locality_group *lg = ac->ac_lg;
3392
3393 BUG_ON(lg == NULL);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04003394 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303395 mb_debug(sb, "goal %u blocks for locality group\n", ac->ac_g_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003396}
3397
3398/*
3399 * Normalization means making request better in terms of
3400 * size and alignment
3401 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003402static noinline_for_stack void
3403ext4_mb_normalize_request(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05003404 struct ext4_allocation_request *ar)
3405{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003406 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003407 int bsbits, max;
3408 ext4_lblk_t end;
Curt Wohlgemuth1592d2c2012-02-20 17:53:03 -05003409 loff_t size, start_off;
3410 loff_t orig_size __maybe_unused;
Andi Kleen5a0790c2010-06-14 13:28:03 -04003411 ext4_lblk_t start;
Alex Tomasc9de5602008-01-29 00:19:52 -05003412 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003413 struct ext4_prealloc_space *pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05003414
3415 /* do normalize only data requests, metadata requests
3416 do not need preallocation */
3417 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3418 return;
3419
3420 /* sometime caller may want exact blocks */
3421 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
3422 return;
3423
3424 /* caller may indicate that preallocation isn't
3425 * required (it's a tail, for example) */
3426 if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
3427 return;
3428
3429 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
3430 ext4_mb_normalize_group_request(ac);
3431 return ;
3432 }
3433
3434 bsbits = ac->ac_sb->s_blocksize_bits;
3435
3436 /* first, let's learn actual file size
3437 * given current request is allocated */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003438 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003439 size = size << bsbits;
3440 if (size < i_size_read(ac->ac_inode))
3441 size = i_size_read(ac->ac_inode);
Andi Kleen5a0790c2010-06-14 13:28:03 -04003442 orig_size = size;
Alex Tomasc9de5602008-01-29 00:19:52 -05003443
Valerie Clement19304792008-05-13 19:31:14 -04003444 /* max size of free chunks */
3445 max = 2 << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003446
Valerie Clement19304792008-05-13 19:31:14 -04003447#define NRL_CHECK_SIZE(req, size, max, chunk_size) \
3448 (req <= (size) || max <= (chunk_size))
Alex Tomasc9de5602008-01-29 00:19:52 -05003449
3450 /* first, try to predict filesize */
3451 /* XXX: should this table be tunable? */
3452 start_off = 0;
3453 if (size <= 16 * 1024) {
3454 size = 16 * 1024;
3455 } else if (size <= 32 * 1024) {
3456 size = 32 * 1024;
3457 } else if (size <= 64 * 1024) {
3458 size = 64 * 1024;
3459 } else if (size <= 128 * 1024) {
3460 size = 128 * 1024;
3461 } else if (size <= 256 * 1024) {
3462 size = 256 * 1024;
3463 } else if (size <= 512 * 1024) {
3464 size = 512 * 1024;
3465 } else if (size <= 1024 * 1024) {
3466 size = 1024 * 1024;
Valerie Clement19304792008-05-13 19:31:14 -04003467 } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003468 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
Valerie Clement19304792008-05-13 19:31:14 -04003469 (21 - bsbits)) << 21;
3470 size = 2 * 1024 * 1024;
3471 } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003472 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3473 (22 - bsbits)) << 22;
3474 size = 4 * 1024 * 1024;
3475 } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
Valerie Clement19304792008-05-13 19:31:14 -04003476 (8<<20)>>bsbits, max, 8 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003477 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
3478 (23 - bsbits)) << 23;
3479 size = 8 * 1024 * 1024;
3480 } else {
Xiaoguang Wangb27b1532014-07-27 22:26:36 -04003481 start_off = (loff_t) ac->ac_o_ex.fe_logical << bsbits;
3482 size = (loff_t) EXT4_C2B(EXT4_SB(ac->ac_sb),
3483 ac->ac_o_ex.fe_len) << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003484 }
Andi Kleen5a0790c2010-06-14 13:28:03 -04003485 size = size >> bsbits;
3486 start = start_off >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05003487
3488 /* don't cover already allocated blocks in selected range */
3489 if (ar->pleft && start <= ar->lleft) {
3490 size -= ar->lleft + 1 - start;
3491 start = ar->lleft + 1;
3492 }
3493 if (ar->pright && start + size - 1 >= ar->lright)
3494 size -= start + size - ar->lright;
3495
Jan Karacd648b82017-01-27 14:34:30 -05003496 /*
3497 * Trim allocation request for filesystems with artificially small
3498 * groups.
3499 */
3500 if (size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb))
3501 size = EXT4_BLOCKS_PER_GROUP(ac->ac_sb);
3502
Alex Tomasc9de5602008-01-29 00:19:52 -05003503 end = start + size;
3504
3505 /* check we don't cross already preallocated blocks */
3506 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003507 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003508 ext4_lblk_t pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05003509
Alex Tomasc9de5602008-01-29 00:19:52 -05003510 if (pa->pa_deleted)
3511 continue;
3512 spin_lock(&pa->pa_lock);
3513 if (pa->pa_deleted) {
3514 spin_unlock(&pa->pa_lock);
3515 continue;
3516 }
3517
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003518 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3519 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003520
3521 /* PA must not overlap original request */
3522 BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
3523 ac->ac_o_ex.fe_logical < pa->pa_lstart));
3524
Eric Sandeen38877f42009-08-17 23:55:24 -04003525 /* skip PAs this normalized request doesn't overlap with */
3526 if (pa->pa_lstart >= end || pa_end <= start) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003527 spin_unlock(&pa->pa_lock);
3528 continue;
3529 }
3530 BUG_ON(pa->pa_lstart <= start && pa_end >= end);
3531
Eric Sandeen38877f42009-08-17 23:55:24 -04003532 /* adjust start or end to be adjacent to this pa */
Alex Tomasc9de5602008-01-29 00:19:52 -05003533 if (pa_end <= ac->ac_o_ex.fe_logical) {
3534 BUG_ON(pa_end < start);
3535 start = pa_end;
Eric Sandeen38877f42009-08-17 23:55:24 -04003536 } else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003537 BUG_ON(pa->pa_lstart > end);
3538 end = pa->pa_lstart;
3539 }
3540 spin_unlock(&pa->pa_lock);
3541 }
3542 rcu_read_unlock();
3543 size = end - start;
3544
3545 /* XXX: extra loop to check we really don't overlap preallocations */
3546 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003547 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05003548 ext4_lblk_t pa_end;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003549
Alex Tomasc9de5602008-01-29 00:19:52 -05003550 spin_lock(&pa->pa_lock);
3551 if (pa->pa_deleted == 0) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003552 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
3553 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003554 BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
3555 }
3556 spin_unlock(&pa->pa_lock);
3557 }
3558 rcu_read_unlock();
3559
3560 if (start + size <= ac->ac_o_ex.fe_logical &&
3561 start > ac->ac_o_ex.fe_logical) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003562 ext4_msg(ac->ac_sb, KERN_ERR,
3563 "start %lu, size %lu, fe_logical %lu",
3564 (unsigned long) start, (unsigned long) size,
3565 (unsigned long) ac->ac_o_ex.fe_logical);
Dmitry Monakhovdfe076c2014-10-01 22:26:17 -04003566 BUG();
Alex Tomasc9de5602008-01-29 00:19:52 -05003567 }
Maurizio Lombardib5b60772014-05-27 12:48:56 -04003568 BUG_ON(size <= 0 || size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05003569
3570 /* now prepare goal request */
3571
3572 /* XXX: is it better to align blocks WRT to logical
3573 * placement or satisfy big request as is */
3574 ac->ac_g_ex.fe_logical = start;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003575 ac->ac_g_ex.fe_len = EXT4_NUM_B2C(sbi, size);
Alex Tomasc9de5602008-01-29 00:19:52 -05003576
3577 /* define goal start in order to merge */
3578 if (ar->pright && (ar->lright == (start + size))) {
3579 /* merge to the right */
3580 ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
3581 &ac->ac_f_ex.fe_group,
3582 &ac->ac_f_ex.fe_start);
3583 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3584 }
3585 if (ar->pleft && (ar->lleft + 1 == start)) {
3586 /* merge to the left */
3587 ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
3588 &ac->ac_f_ex.fe_group,
3589 &ac->ac_f_ex.fe_start);
3590 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3591 }
3592
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303593 mb_debug(ac->ac_sb, "goal: %lld(was %lld) blocks at %u\n", size,
3594 orig_size, start);
Alex Tomasc9de5602008-01-29 00:19:52 -05003595}
3596
3597static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
3598{
3599 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3600
3601 if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
3602 atomic_inc(&sbi->s_bal_reqs);
3603 atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
Curt Wohlgemuth291dae42010-05-16 16:00:00 -04003604 if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
Alex Tomasc9de5602008-01-29 00:19:52 -05003605 atomic_inc(&sbi->s_bal_success);
3606 atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
3607 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
3608 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
3609 atomic_inc(&sbi->s_bal_goals);
3610 if (ac->ac_found > sbi->s_mb_max_to_scan)
3611 atomic_inc(&sbi->s_bal_breaks);
3612 }
3613
Theodore Ts'o296c3552009-09-30 00:32:42 -04003614 if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
3615 trace_ext4_mballoc_alloc(ac);
3616 else
3617 trace_ext4_mballoc_prealloc(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05003618}
3619
3620/*
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003621 * Called on failure; free up any blocks from the inode PA for this
3622 * context. We don't need this for MB_GROUP_PA because we only change
3623 * pa_free in ext4_mb_release_context(), but on failure, we've already
3624 * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
3625 */
3626static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
3627{
3628 struct ext4_prealloc_space *pa = ac->ac_pa;
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003629 struct ext4_buddy e4b;
3630 int err;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003631
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003632 if (pa == NULL) {
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04003633 if (ac->ac_f_ex.fe_len == 0)
3634 return;
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003635 err = ext4_mb_load_buddy(ac->ac_sb, ac->ac_f_ex.fe_group, &e4b);
3636 if (err) {
3637 /*
3638 * This should never happen since we pin the
3639 * pages in the ext4_allocation_context so
3640 * ext4_mb_load_buddy() should never fail.
3641 */
3642 WARN(1, "mb_load_buddy failed (%d)", err);
3643 return;
3644 }
3645 ext4_lock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
3646 mb_free_blocks(ac->ac_inode, &e4b, ac->ac_f_ex.fe_start,
3647 ac->ac_f_ex.fe_len);
3648 ext4_unlock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04003649 ext4_mb_unload_buddy(&e4b);
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04003650 return;
3651 }
3652 if (pa->pa_type == MB_INODE_PA)
Zheng Liu400db9d2012-05-28 17:53:53 -04003653 pa->pa_free += ac->ac_b_ex.fe_len;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05003654}
3655
3656/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003657 * use blocks preallocated to inode
3658 */
3659static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
3660 struct ext4_prealloc_space *pa)
3661{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003662 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003663 ext4_fsblk_t start;
3664 ext4_fsblk_t end;
3665 int len;
3666
3667 /* found preallocated blocks, use them */
3668 start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003669 end = min(pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len),
3670 start + EXT4_C2B(sbi, ac->ac_o_ex.fe_len));
3671 len = EXT4_NUM_B2C(sbi, end - start);
Alex Tomasc9de5602008-01-29 00:19:52 -05003672 ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
3673 &ac->ac_b_ex.fe_start);
3674 ac->ac_b_ex.fe_len = len;
3675 ac->ac_status = AC_STATUS_FOUND;
3676 ac->ac_pa = pa;
3677
3678 BUG_ON(start < pa->pa_pstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003679 BUG_ON(end > pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len));
Alex Tomasc9de5602008-01-29 00:19:52 -05003680 BUG_ON(pa->pa_free < len);
3681 pa->pa_free -= len;
3682
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303683 mb_debug(ac->ac_sb, "use %llu/%d from inode pa %p\n", start, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003684}
3685
3686/*
3687 * use blocks preallocated to locality group
3688 */
3689static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
3690 struct ext4_prealloc_space *pa)
3691{
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04003692 unsigned int len = ac->ac_o_ex.fe_len;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003693
Alex Tomasc9de5602008-01-29 00:19:52 -05003694 ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
3695 &ac->ac_b_ex.fe_group,
3696 &ac->ac_b_ex.fe_start);
3697 ac->ac_b_ex.fe_len = len;
3698 ac->ac_status = AC_STATUS_FOUND;
3699 ac->ac_pa = pa;
3700
3701 /* we don't correct pa_pstart or pa_plen here to avoid
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003702 * possible race when the group is being loaded concurrently
Alex Tomasc9de5602008-01-29 00:19:52 -05003703 * instead we correct pa later, after blocks are marked
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05003704 * in on-disk bitmap -- see ext4_mb_release_context()
3705 * Other CPUs are prevented from allocating from this pa by lg_mutex
Alex Tomasc9de5602008-01-29 00:19:52 -05003706 */
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303707 mb_debug(ac->ac_sb, "use %u/%u from group pa %p\n",
3708 pa->pa_lstart-len, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003709}
3710
3711/*
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003712 * Return the prealloc space that have minimal distance
3713 * from the goal block. @cpa is the prealloc
3714 * space that is having currently known minimal distance
3715 * from the goal block.
3716 */
3717static struct ext4_prealloc_space *
3718ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
3719 struct ext4_prealloc_space *pa,
3720 struct ext4_prealloc_space *cpa)
3721{
3722 ext4_fsblk_t cur_distance, new_distance;
3723
3724 if (cpa == NULL) {
3725 atomic_inc(&pa->pa_count);
3726 return pa;
3727 }
Andrew Morton79211c82015-11-09 14:58:13 -08003728 cur_distance = abs(goal_block - cpa->pa_pstart);
3729 new_distance = abs(goal_block - pa->pa_pstart);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003730
Coly Li5a54b2f2011-02-24 14:10:05 -05003731 if (cur_distance <= new_distance)
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003732 return cpa;
3733
3734 /* drop the previous reference */
3735 atomic_dec(&cpa->pa_count);
3736 atomic_inc(&pa->pa_count);
3737 return pa;
3738}
3739
3740/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003741 * search goal blocks in preallocated space
3742 */
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303743static noinline_for_stack bool
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003744ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003745{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003746 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003747 int order, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003748 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3749 struct ext4_locality_group *lg;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003750 struct ext4_prealloc_space *pa, *cpa = NULL;
3751 ext4_fsblk_t goal_block;
Alex Tomasc9de5602008-01-29 00:19:52 -05003752
3753 /* only data can be preallocated */
3754 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303755 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05003756
3757 /* first, try per-file preallocation */
3758 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04003759 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003760
3761 /* all fields in this condition don't change,
3762 * so we can skip locking for them */
3763 if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003764 ac->ac_o_ex.fe_logical >= (pa->pa_lstart +
3765 EXT4_C2B(sbi, pa->pa_len)))
Alex Tomasc9de5602008-01-29 00:19:52 -05003766 continue;
3767
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003768 /* non-extent files can't have physical blocks past 2^32 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04003769 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003770 (pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len) >
3771 EXT4_MAX_BLOCK_FILE_PHYS))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04003772 continue;
3773
Alex Tomasc9de5602008-01-29 00:19:52 -05003774 /* found preallocated blocks, use them */
3775 spin_lock(&pa->pa_lock);
3776 if (pa->pa_deleted == 0 && pa->pa_free) {
3777 atomic_inc(&pa->pa_count);
3778 ext4_mb_use_inode_pa(ac, pa);
3779 spin_unlock(&pa->pa_lock);
3780 ac->ac_criteria = 10;
3781 rcu_read_unlock();
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303782 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05003783 }
3784 spin_unlock(&pa->pa_lock);
3785 }
3786 rcu_read_unlock();
3787
3788 /* can we use group allocation? */
3789 if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303790 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05003791
3792 /* inode may have no locality group for some reason */
3793 lg = ac->ac_lg;
3794 if (lg == NULL)
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303795 return false;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003796 order = fls(ac->ac_o_ex.fe_len) - 1;
3797 if (order > PREALLOC_TB_SIZE - 1)
3798 /* The max size of hash table is PREALLOC_TB_SIZE */
3799 order = PREALLOC_TB_SIZE - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003800
Akinobu Mitabda00de2010-03-03 23:53:25 -05003801 goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003802 /*
3803 * search for the prealloc space that is having
3804 * minimal distance from the goal block.
3805 */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003806 for (i = order; i < PREALLOC_TB_SIZE; i++) {
3807 rcu_read_lock();
3808 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
3809 pa_inode_list) {
3810 spin_lock(&pa->pa_lock);
3811 if (pa->pa_deleted == 0 &&
3812 pa->pa_free >= ac->ac_o_ex.fe_len) {
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003813
3814 cpa = ext4_mb_check_group_pa(goal_block,
3815 pa, cpa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003816 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003817 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003818 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003819 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003820 }
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003821 if (cpa) {
3822 ext4_mb_use_group_pa(ac, cpa);
3823 ac->ac_criteria = 20;
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303824 return true;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04003825 }
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05303826 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05003827}
3828
3829/*
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003830 * the function goes through all block freed in the group
3831 * but not yet committed and marks them used in in-core bitmap.
3832 * buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003833 * Need to be called with the ext4 group lock held
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003834 */
3835static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
3836 ext4_group_t group)
3837{
3838 struct rb_node *n;
3839 struct ext4_group_info *grp;
3840 struct ext4_free_data *entry;
3841
3842 grp = ext4_get_group_info(sb, group);
3843 n = rb_first(&(grp->bb_free_root));
3844
3845 while (n) {
Bobi Jam18aadd42012-02-20 17:53:02 -05003846 entry = rb_entry(n, struct ext4_free_data, efd_node);
3847 ext4_set_bits(bitmap, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05003848 n = rb_next(n);
3849 }
3850 return;
3851}
3852
3853/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003854 * the function goes through all preallocation in this group and marks them
3855 * used in in-core bitmap. buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003856 * Need to be called with ext4 group lock held
Alex Tomasc9de5602008-01-29 00:19:52 -05003857 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04003858static noinline_for_stack
3859void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05003860 ext4_group_t group)
3861{
3862 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3863 struct ext4_prealloc_space *pa;
3864 struct list_head *cur;
3865 ext4_group_t groupnr;
3866 ext4_grpblk_t start;
3867 int preallocated = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003868 int len;
3869
3870 /* all form of preallocation discards first load group,
3871 * so the only competing code is preallocation use.
3872 * we don't need any locking here
3873 * notice we do NOT ignore preallocations with pa_deleted
3874 * otherwise we could leave used blocks available for
3875 * allocation in buddy when concurrent ext4_mb_put_pa()
3876 * is dropping preallocation
3877 */
3878 list_for_each(cur, &grp->bb_prealloc_list) {
3879 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3880 spin_lock(&pa->pa_lock);
3881 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3882 &groupnr, &start);
3883 len = pa->pa_len;
3884 spin_unlock(&pa->pa_lock);
3885 if (unlikely(len == 0))
3886 continue;
3887 BUG_ON(groupnr != group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003888 ext4_set_bits(bitmap, start, len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003889 preallocated += len;
Alex Tomasc9de5602008-01-29 00:19:52 -05003890 }
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303891 mb_debug(sb, "preallocated %d for group %u\n", preallocated, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003892}
3893
brookxu27bc4462020-08-17 15:36:15 +08003894static void ext4_mb_mark_pa_deleted(struct super_block *sb,
3895 struct ext4_prealloc_space *pa)
3896{
3897 struct ext4_inode_info *ei;
3898
3899 if (pa->pa_deleted) {
3900 ext4_warning(sb, "deleted pa, type:%d, pblk:%llu, lblk:%u, len:%d\n",
3901 pa->pa_type, pa->pa_pstart, pa->pa_lstart,
3902 pa->pa_len);
3903 return;
3904 }
3905
3906 pa->pa_deleted = 1;
3907
3908 if (pa->pa_type == MB_INODE_PA) {
3909 ei = EXT4_I(pa->pa_inode);
3910 atomic_dec(&ei->i_prealloc_active);
3911 }
3912}
3913
Alex Tomasc9de5602008-01-29 00:19:52 -05003914static void ext4_mb_pa_callback(struct rcu_head *head)
3915{
3916 struct ext4_prealloc_space *pa;
3917 pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
Junho Ryu4e8d2132013-12-03 18:10:28 -05003918
3919 BUG_ON(atomic_read(&pa->pa_count));
3920 BUG_ON(pa->pa_deleted == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05003921 kmem_cache_free(ext4_pspace_cachep, pa);
3922}
3923
3924/*
3925 * drops a reference to preallocated space descriptor
3926 * if this was the last reference and the space is consumed
3927 */
3928static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
3929 struct super_block *sb, struct ext4_prealloc_space *pa)
3930{
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003931 ext4_group_t grp;
Eric Sandeend33a1972009-03-16 23:25:40 -04003932 ext4_fsblk_t grp_blk;
Alex Tomasc9de5602008-01-29 00:19:52 -05003933
Alex Tomasc9de5602008-01-29 00:19:52 -05003934 /* in this short window concurrent discard can set pa_deleted */
3935 spin_lock(&pa->pa_lock);
Junho Ryu4e8d2132013-12-03 18:10:28 -05003936 if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0) {
3937 spin_unlock(&pa->pa_lock);
3938 return;
3939 }
3940
Alex Tomasc9de5602008-01-29 00:19:52 -05003941 if (pa->pa_deleted == 1) {
3942 spin_unlock(&pa->pa_lock);
3943 return;
3944 }
3945
brookxu27bc4462020-08-17 15:36:15 +08003946 ext4_mb_mark_pa_deleted(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003947 spin_unlock(&pa->pa_lock);
3948
Eric Sandeend33a1972009-03-16 23:25:40 -04003949 grp_blk = pa->pa_pstart;
Theodore Ts'o60e66792010-05-17 07:00:00 -04003950 /*
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04003951 * If doing group-based preallocation, pa_pstart may be in the
3952 * next group when pa is used up
3953 */
3954 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeend33a1972009-03-16 23:25:40 -04003955 grp_blk--;
3956
Lukas Czernerbd862982013-04-03 23:32:34 -04003957 grp = ext4_get_group_number(sb, grp_blk);
Alex Tomasc9de5602008-01-29 00:19:52 -05003958
3959 /*
3960 * possible race:
3961 *
3962 * P1 (buddy init) P2 (regular allocation)
3963 * find block B in PA
3964 * copy on-disk bitmap to buddy
3965 * mark B in on-disk bitmap
3966 * drop PA from group
3967 * mark all PAs in buddy
3968 *
3969 * thus, P1 initializes buddy with B available. to prevent this
3970 * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
3971 * against that pair
3972 */
3973 ext4_lock_group(sb, grp);
3974 list_del(&pa->pa_group_list);
3975 ext4_unlock_group(sb, grp);
3976
3977 spin_lock(pa->pa_obj_lock);
3978 list_del_rcu(&pa->pa_inode_list);
3979 spin_unlock(pa->pa_obj_lock);
3980
3981 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3982}
3983
3984/*
3985 * creates new preallocated space for given inode
3986 */
Ritesh Harjani53f86b12020-05-20 12:10:32 +05303987static noinline_for_stack void
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003988ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05003989{
3990 struct super_block *sb = ac->ac_sb;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003991 struct ext4_sb_info *sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003992 struct ext4_prealloc_space *pa;
3993 struct ext4_group_info *grp;
3994 struct ext4_inode_info *ei;
3995
3996 /* preallocate only when found space is larger then requested */
3997 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3998 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3999 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304000 BUG_ON(ac->ac_pa == NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05004001
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304002 pa = ac->ac_pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05004003
4004 if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
4005 int winl;
4006 int wins;
4007 int win;
4008 int offs;
4009
4010 /* we can't allocate as much as normalizer wants.
4011 * so, found space must get proper lstart
4012 * to cover original request */
4013 BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
4014 BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
4015
4016 /* we're limited by original request in that
4017 * logical block must be covered any way
4018 * winl is window we can move our chunk within */
4019 winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
4020
4021 /* also, we should cover whole original request */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004022 wins = EXT4_C2B(sbi, ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004023
4024 /* the smallest one defines real window */
4025 win = min(winl, wins);
4026
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004027 offs = ac->ac_o_ex.fe_logical %
4028 EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004029 if (offs && offs < win)
4030 win = offs;
4031
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004032 ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical -
Lukas Czerner810da242013-03-02 17:18:58 -05004033 EXT4_NUM_B2C(sbi, win);
Alex Tomasc9de5602008-01-29 00:19:52 -05004034 BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
4035 BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
4036 }
4037
4038 /* preallocation can change ac_b_ex, thus we store actually
4039 * allocated blocks for history */
4040 ac->ac_f_ex = ac->ac_b_ex;
4041
4042 pa->pa_lstart = ac->ac_b_ex.fe_logical;
4043 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4044 pa->pa_len = ac->ac_b_ex.fe_len;
4045 pa->pa_free = pa->pa_len;
Alex Tomasc9de5602008-01-29 00:19:52 -05004046 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05004047 INIT_LIST_HEAD(&pa->pa_inode_list);
4048 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004049 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004050 pa->pa_type = MB_INODE_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05004051
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304052 mb_debug(sb, "new inode pa %p: %llu/%d for %u\n", pa, pa->pa_pstart,
4053 pa->pa_len, pa->pa_lstart);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004054 trace_ext4_mb_new_inode_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004055
4056 ext4_mb_use_inode_pa(ac, pa);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004057 atomic_add(pa->pa_free, &sbi->s_mb_preallocated);
Alex Tomasc9de5602008-01-29 00:19:52 -05004058
4059 ei = EXT4_I(ac->ac_inode);
4060 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
4061
4062 pa->pa_obj_lock = &ei->i_prealloc_lock;
4063 pa->pa_inode = ac->ac_inode;
4064
Alex Tomasc9de5602008-01-29 00:19:52 -05004065 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004066
4067 spin_lock(pa->pa_obj_lock);
4068 list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
4069 spin_unlock(pa->pa_obj_lock);
brookxu27bc4462020-08-17 15:36:15 +08004070 atomic_inc(&ei->i_prealloc_active);
Alex Tomasc9de5602008-01-29 00:19:52 -05004071}
4072
4073/*
4074 * creates new preallocated space for locality group inodes belongs to
4075 */
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304076static noinline_for_stack void
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004077ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05004078{
4079 struct super_block *sb = ac->ac_sb;
4080 struct ext4_locality_group *lg;
4081 struct ext4_prealloc_space *pa;
4082 struct ext4_group_info *grp;
4083
4084 /* preallocate only when found space is larger then requested */
4085 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
4086 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
4087 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304088 BUG_ON(ac->ac_pa == NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05004089
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304090 pa = ac->ac_pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05004091
4092 /* preallocation can change ac_b_ex, thus we store actually
4093 * allocated blocks for history */
4094 ac->ac_f_ex = ac->ac_b_ex;
4095
4096 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4097 pa->pa_lstart = pa->pa_pstart;
4098 pa->pa_len = ac->ac_b_ex.fe_len;
4099 pa->pa_free = pa->pa_len;
Alex Tomasc9de5602008-01-29 00:19:52 -05004100 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004101 INIT_LIST_HEAD(&pa->pa_inode_list);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05004102 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004103 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004104 pa->pa_type = MB_GROUP_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05004105
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304106 mb_debug(sb, "new group pa %p: %llu/%d for %u\n", pa, pa->pa_pstart,
4107 pa->pa_len, pa->pa_lstart);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004108 trace_ext4_mb_new_group_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004109
4110 ext4_mb_use_group_pa(ac, pa);
4111 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
4112
4113 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
4114 lg = ac->ac_lg;
4115 BUG_ON(lg == NULL);
4116
4117 pa->pa_obj_lock = &lg->lg_prealloc_lock;
4118 pa->pa_inode = NULL;
4119
Alex Tomasc9de5602008-01-29 00:19:52 -05004120 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004121
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004122 /*
4123 * We will later add the new pa to the right bucket
4124 * after updating the pa_free in ext4_mb_release_context
4125 */
Alex Tomasc9de5602008-01-29 00:19:52 -05004126}
4127
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304128static void ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05004129{
Alex Tomasc9de5602008-01-29 00:19:52 -05004130 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304131 ext4_mb_new_group_pa(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004132 else
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304133 ext4_mb_new_inode_pa(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004134}
4135
4136/*
4137 * finds all unused blocks in on-disk bitmap, frees them in
4138 * in-core bitmap and buddy.
4139 * @pa must be unlinked from inode and group lists, so that
4140 * nobody else can find/use it.
4141 * the caller MUST hold group/inode locks.
4142 * TODO: optimize the case when there are no in-core structures yet
4143 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004144static noinline_for_stack int
4145ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004146 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05004147{
Alex Tomasc9de5602008-01-29 00:19:52 -05004148 struct super_block *sb = e4b->bd_sb;
4149 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004150 unsigned int end;
4151 unsigned int next;
Alex Tomasc9de5602008-01-29 00:19:52 -05004152 ext4_group_t group;
4153 ext4_grpblk_t bit;
Theodore Ts'oba80b102009-01-03 20:03:21 -05004154 unsigned long long grp_blk_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05004155 int free = 0;
4156
4157 BUG_ON(pa->pa_deleted == 0);
4158 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004159 grp_blk_start = pa->pa_pstart - EXT4_C2B(sbi, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05004160 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
4161 end = bit + pa->pa_len;
4162
Alex Tomasc9de5602008-01-29 00:19:52 -05004163 while (bit < end) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05004164 bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05004165 if (bit >= end)
4166 break;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05004167 next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304168 mb_debug(sb, "free preallocated %u/%u in group %u\n",
Andi Kleen5a0790c2010-06-14 13:28:03 -04004169 (unsigned) ext4_group_first_block_no(sb, group) + bit,
4170 (unsigned) next - bit, (unsigned) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004171 free += next - bit;
4172
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004173 trace_ext4_mballoc_discard(sb, NULL, group, bit, next - bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004174 trace_ext4_mb_release_inode_pa(pa, (grp_blk_start +
4175 EXT4_C2B(sbi, bit)),
Lukas Czernera9c667f2011-06-06 09:51:52 -04004176 next - bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05004177 mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
4178 bit = next + 1;
4179 }
4180 if (free != pa->pa_free) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004181 ext4_msg(e4b->bd_sb, KERN_CRIT,
Ritesh Harjani36bad422020-05-10 11:54:44 +05304182 "pa %p: logic %lu, phys. %lu, len %d",
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004183 pa, (unsigned long) pa->pa_lstart,
4184 (unsigned long) pa->pa_pstart,
Ritesh Harjani36bad422020-05-10 11:54:44 +05304185 pa->pa_len);
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004186 ext4_grp_locked_error(sb, group, 0, 0, "free %u, pa_free %u",
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05004187 free, pa->pa_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05004188 /*
4189 * pa is already deleted so we use the value obtained
4190 * from the bitmap and continue.
4191 */
Alex Tomasc9de5602008-01-29 00:19:52 -05004192 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004193 atomic_add(free, &sbi->s_mb_discarded);
4194
zhong jiang863c37f2018-08-04 17:34:07 -04004195 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004196}
4197
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004198static noinline_for_stack int
4199ext4_mb_release_group_pa(struct ext4_buddy *e4b,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004200 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05004201{
Alex Tomasc9de5602008-01-29 00:19:52 -05004202 struct super_block *sb = e4b->bd_sb;
4203 ext4_group_t group;
4204 ext4_grpblk_t bit;
4205
Yongqiang Yang60e07cf2011-12-18 15:49:54 -05004206 trace_ext4_mb_release_group_pa(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004207 BUG_ON(pa->pa_deleted == 0);
4208 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
4209 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
4210 mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
4211 atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004212 trace_ext4_mballoc_discard(sb, NULL, group, bit, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004213
4214 return 0;
4215}
4216
4217/*
4218 * releases all preallocations in given group
4219 *
4220 * first, we need to decide discard policy:
4221 * - when do we discard
4222 * 1) ENOSPC
4223 * - how many do we discard
4224 * 1) how many requested
4225 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004226static noinline_for_stack int
4227ext4_mb_discard_group_preallocations(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -05004228 ext4_group_t group, int needed)
4229{
4230 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
4231 struct buffer_head *bitmap_bh = NULL;
4232 struct ext4_prealloc_space *pa, *tmp;
4233 struct list_head list;
4234 struct ext4_buddy e4b;
4235 int err;
4236 int busy = 0;
Jan Kara5b3dc192020-09-24 17:09:59 +02004237 int free, free_total = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004238
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304239 mb_debug(sb, "discard preallocation for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004240 if (list_empty(&grp->bb_prealloc_list))
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304241 goto out_dbg;
Alex Tomasc9de5602008-01-29 00:19:52 -05004242
Theodore Ts'o574ca172008-07-11 19:27:31 -04004243 bitmap_bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04004244 if (IS_ERR(bitmap_bh)) {
4245 err = PTR_ERR(bitmap_bh);
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004246 ext4_error_err(sb, -err,
4247 "Error %d reading block bitmap for %u",
4248 err, group);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304249 goto out_dbg;
Alex Tomasc9de5602008-01-29 00:19:52 -05004250 }
4251
4252 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004253 if (err) {
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04004254 ext4_warning(sb, "Error %d loading buddy information for %u",
4255 err, group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004256 put_bh(bitmap_bh);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304257 goto out_dbg;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004258 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004259
4260 if (needed == 0)
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04004261 needed = EXT4_CLUSTERS_PER_GROUP(sb) + 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05004262
Alex Tomasc9de5602008-01-29 00:19:52 -05004263 INIT_LIST_HEAD(&list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004264repeat:
Jan Kara5b3dc192020-09-24 17:09:59 +02004265 free = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004266 ext4_lock_group(sb, group);
4267 list_for_each_entry_safe(pa, tmp,
4268 &grp->bb_prealloc_list, pa_group_list) {
4269 spin_lock(&pa->pa_lock);
4270 if (atomic_read(&pa->pa_count)) {
4271 spin_unlock(&pa->pa_lock);
4272 busy = 1;
4273 continue;
4274 }
4275 if (pa->pa_deleted) {
4276 spin_unlock(&pa->pa_lock);
4277 continue;
4278 }
4279
4280 /* seems this one can be freed ... */
brookxu27bc4462020-08-17 15:36:15 +08004281 ext4_mb_mark_pa_deleted(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004282
Ye Bin70022da2020-09-16 19:38:59 +08004283 if (!free)
4284 this_cpu_inc(discard_pa_seq);
4285
Alex Tomasc9de5602008-01-29 00:19:52 -05004286 /* we can trust pa_free ... */
4287 free += pa->pa_free;
4288
4289 spin_unlock(&pa->pa_lock);
4290
4291 list_del(&pa->pa_group_list);
4292 list_add(&pa->u.pa_tmp_list, &list);
4293 }
4294
Alex Tomasc9de5602008-01-29 00:19:52 -05004295 /* now free all selected PAs */
4296 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
4297
4298 /* remove from object (inode or locality group) */
4299 spin_lock(pa->pa_obj_lock);
4300 list_del_rcu(&pa->pa_inode_list);
4301 spin_unlock(pa->pa_obj_lock);
4302
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004303 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004304 ext4_mb_release_group_pa(&e4b, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004305 else
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004306 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004307
4308 list_del(&pa->u.pa_tmp_list);
4309 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4310 }
4311
Jan Kara5b3dc192020-09-24 17:09:59 +02004312 free_total += free;
4313
4314 /* if we still need more blocks and some PAs were used, try again */
4315 if (free_total < needed && busy) {
4316 ext4_unlock_group(sb, group);
4317 cond_resched();
4318 busy = 0;
4319 goto repeat;
4320 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004321 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04004322 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05004323 put_bh(bitmap_bh);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304324out_dbg:
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304325 mb_debug(sb, "discarded (%d) blocks preallocated for group %u bb_free (%d)\n",
Jan Kara5b3dc192020-09-24 17:09:59 +02004326 free_total, group, grp->bb_free);
4327 return free_total;
Alex Tomasc9de5602008-01-29 00:19:52 -05004328}
4329
4330/*
4331 * releases all non-used preallocated blocks for given inode
4332 *
4333 * It's important to discard preallocations under i_data_sem
4334 * We don't want another block to be served from the prealloc
4335 * space when we are discarding the inode prealloc space.
4336 *
4337 * FIXME!! Make sure it is valid at all the call sites
4338 */
brookxu27bc4462020-08-17 15:36:15 +08004339void ext4_discard_preallocations(struct inode *inode, unsigned int needed)
Alex Tomasc9de5602008-01-29 00:19:52 -05004340{
4341 struct ext4_inode_info *ei = EXT4_I(inode);
4342 struct super_block *sb = inode->i_sb;
4343 struct buffer_head *bitmap_bh = NULL;
4344 struct ext4_prealloc_space *pa, *tmp;
4345 ext4_group_t group = 0;
4346 struct list_head list;
4347 struct ext4_buddy e4b;
4348 int err;
4349
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004350 if (!S_ISREG(inode->i_mode)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004351 /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
4352 return;
4353 }
4354
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004355 if (EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY)
4356 return;
4357
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304358 mb_debug(sb, "discard preallocation for inode %lu\n",
4359 inode->i_ino);
brookxu27bc4462020-08-17 15:36:15 +08004360 trace_ext4_discard_preallocations(inode,
4361 atomic_read(&ei->i_prealloc_active), needed);
Alex Tomasc9de5602008-01-29 00:19:52 -05004362
4363 INIT_LIST_HEAD(&list);
4364
brookxu27bc4462020-08-17 15:36:15 +08004365 if (needed == 0)
4366 needed = UINT_MAX;
4367
Alex Tomasc9de5602008-01-29 00:19:52 -05004368repeat:
4369 /* first, collect all pa's in the inode */
4370 spin_lock(&ei->i_prealloc_lock);
brookxu27bc4462020-08-17 15:36:15 +08004371 while (!list_empty(&ei->i_prealloc_list) && needed) {
4372 pa = list_entry(ei->i_prealloc_list.prev,
Alex Tomasc9de5602008-01-29 00:19:52 -05004373 struct ext4_prealloc_space, pa_inode_list);
4374 BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
4375 spin_lock(&pa->pa_lock);
4376 if (atomic_read(&pa->pa_count)) {
4377 /* this shouldn't happen often - nobody should
4378 * use preallocation while we're discarding it */
4379 spin_unlock(&pa->pa_lock);
4380 spin_unlock(&ei->i_prealloc_lock);
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004381 ext4_msg(sb, KERN_ERR,
4382 "uh-oh! used pa while discarding");
Alex Tomasc9de5602008-01-29 00:19:52 -05004383 WARN_ON(1);
4384 schedule_timeout_uninterruptible(HZ);
4385 goto repeat;
4386
4387 }
4388 if (pa->pa_deleted == 0) {
brookxu27bc4462020-08-17 15:36:15 +08004389 ext4_mb_mark_pa_deleted(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004390 spin_unlock(&pa->pa_lock);
4391 list_del_rcu(&pa->pa_inode_list);
4392 list_add(&pa->u.pa_tmp_list, &list);
brookxu27bc4462020-08-17 15:36:15 +08004393 needed--;
Alex Tomasc9de5602008-01-29 00:19:52 -05004394 continue;
4395 }
4396
4397 /* someone is deleting pa right now */
4398 spin_unlock(&pa->pa_lock);
4399 spin_unlock(&ei->i_prealloc_lock);
4400
4401 /* we have to wait here because pa_deleted
4402 * doesn't mean pa is already unlinked from
4403 * the list. as we might be called from
4404 * ->clear_inode() the inode will get freed
4405 * and concurrent thread which is unlinking
4406 * pa from inode's list may access already
4407 * freed memory, bad-bad-bad */
4408
4409 /* XXX: if this happens too often, we can
4410 * add a flag to force wait only in case
4411 * of ->clear_inode(), but not in case of
4412 * regular truncate */
4413 schedule_timeout_uninterruptible(HZ);
4414 goto repeat;
4415 }
4416 spin_unlock(&ei->i_prealloc_lock);
4417
4418 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004419 BUG_ON(pa->pa_type != MB_INODE_PA);
Lukas Czernerbd862982013-04-03 23:32:34 -04004420 group = ext4_get_group_number(sb, pa->pa_pstart);
Alex Tomasc9de5602008-01-29 00:19:52 -05004421
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04004422 err = ext4_mb_load_buddy_gfp(sb, group, &e4b,
4423 GFP_NOFS|__GFP_NOFAIL);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004424 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004425 ext4_error_err(sb, -err, "Error %d loading buddy information for %u",
4426 err, group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004427 continue;
4428 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004429
Theodore Ts'o574ca172008-07-11 19:27:31 -04004430 bitmap_bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04004431 if (IS_ERR(bitmap_bh)) {
4432 err = PTR_ERR(bitmap_bh);
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004433 ext4_error_err(sb, -err, "Error %d reading block bitmap for %u",
4434 err, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04004435 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004436 continue;
Alex Tomasc9de5602008-01-29 00:19:52 -05004437 }
4438
4439 ext4_lock_group(sb, group);
4440 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004441 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004442 ext4_unlock_group(sb, group);
4443
Jing Zhange39e07f2010-05-14 00:00:00 -04004444 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05004445 put_bh(bitmap_bh);
4446
4447 list_del(&pa->u.pa_tmp_list);
4448 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4449 }
4450}
4451
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304452static int ext4_mb_pa_alloc(struct ext4_allocation_context *ac)
4453{
4454 struct ext4_prealloc_space *pa;
4455
4456 BUG_ON(ext4_pspace_cachep == NULL);
4457 pa = kmem_cache_zalloc(ext4_pspace_cachep, GFP_NOFS);
4458 if (!pa)
4459 return -ENOMEM;
4460 atomic_set(&pa->pa_count, 1);
4461 ac->ac_pa = pa;
4462 return 0;
4463}
4464
4465static void ext4_mb_pa_free(struct ext4_allocation_context *ac)
4466{
4467 struct ext4_prealloc_space *pa = ac->ac_pa;
4468
4469 BUG_ON(!pa);
4470 ac->ac_pa = NULL;
4471 WARN_ON(!atomic_dec_and_test(&pa->pa_count));
4472 kmem_cache_free(ext4_pspace_cachep, pa);
4473}
4474
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04004475#ifdef CONFIG_EXT4_DEBUG
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304476static inline void ext4_mb_show_pa(struct super_block *sb)
Alex Tomasc9de5602008-01-29 00:19:52 -05004477{
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304478 ext4_group_t i, ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -05004479
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08004480 if (ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
Eric Sandeene3570632010-07-27 11:56:08 -04004481 return;
4482
Theodore Ts'o8df96752009-05-01 08:50:38 -04004483 ngroups = ext4_get_groups_count(sb);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304484 mb_debug(sb, "groups: ");
Theodore Ts'o8df96752009-05-01 08:50:38 -04004485 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004486 struct ext4_group_info *grp = ext4_get_group_info(sb, i);
4487 struct ext4_prealloc_space *pa;
4488 ext4_grpblk_t start;
4489 struct list_head *cur;
4490 ext4_lock_group(sb, i);
4491 list_for_each(cur, &grp->bb_prealloc_list) {
4492 pa = list_entry(cur, struct ext4_prealloc_space,
4493 pa_group_list);
4494 spin_lock(&pa->pa_lock);
4495 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
4496 NULL, &start);
4497 spin_unlock(&pa->pa_lock);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304498 mb_debug(sb, "PA:%u:%d:%d\n", i, start,
4499 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004500 }
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04004501 ext4_unlock_group(sb, i);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304502 mb_debug(sb, "%u: %d/%d\n", i, grp->bb_free,
4503 grp->bb_fragments);
Alex Tomasc9de5602008-01-29 00:19:52 -05004504 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004505}
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304506
4507static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
4508{
4509 struct super_block *sb = ac->ac_sb;
4510
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08004511 if (ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304512 return;
4513
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304514 mb_debug(sb, "Can't allocate:"
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304515 " Allocation context details:");
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304516 mb_debug(sb, "status %u flags 0x%x",
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304517 ac->ac_status, ac->ac_flags);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304518 mb_debug(sb, "orig %lu/%lu/%lu@%lu, "
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304519 "goal %lu/%lu/%lu@%lu, "
4520 "best %lu/%lu/%lu@%lu cr %d",
4521 (unsigned long)ac->ac_o_ex.fe_group,
4522 (unsigned long)ac->ac_o_ex.fe_start,
4523 (unsigned long)ac->ac_o_ex.fe_len,
4524 (unsigned long)ac->ac_o_ex.fe_logical,
4525 (unsigned long)ac->ac_g_ex.fe_group,
4526 (unsigned long)ac->ac_g_ex.fe_start,
4527 (unsigned long)ac->ac_g_ex.fe_len,
4528 (unsigned long)ac->ac_g_ex.fe_logical,
4529 (unsigned long)ac->ac_b_ex.fe_group,
4530 (unsigned long)ac->ac_b_ex.fe_start,
4531 (unsigned long)ac->ac_b_ex.fe_len,
4532 (unsigned long)ac->ac_b_ex.fe_logical,
4533 (int)ac->ac_criteria);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304534 mb_debug(sb, "%u found", ac->ac_found);
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304535 ext4_mb_show_pa(sb);
4536}
Alex Tomasc9de5602008-01-29 00:19:52 -05004537#else
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304538static inline void ext4_mb_show_pa(struct super_block *sb)
4539{
4540 return;
4541}
Alex Tomasc9de5602008-01-29 00:19:52 -05004542static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
4543{
Ritesh Harjanie68cf402020-05-10 11:54:42 +05304544 ext4_mb_show_pa(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004545 return;
4546}
4547#endif
4548
4549/*
4550 * We use locality group preallocation for small size file. The size of the
4551 * file is determined by the current size or the resulting size after
4552 * allocation which ever is larger
4553 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04004554 * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
Alex Tomasc9de5602008-01-29 00:19:52 -05004555 */
4556static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
4557{
4558 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
4559 int bsbits = ac->ac_sb->s_blocksize_bits;
4560 loff_t size, isize;
4561
4562 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
4563 return;
4564
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004565 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
4566 return;
4567
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004568 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Theodore Ts'o50797482009-09-18 13:34:02 -04004569 isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
4570 >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05004571
Nikolay Borisov82dd1242019-02-10 23:04:16 -05004572 if ((size == isize) && !ext4_fs_is_busy(sbi) &&
4573 !inode_is_open_for_write(ac->ac_inode)) {
Theodore Ts'o50797482009-09-18 13:34:02 -04004574 ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
4575 return;
4576 }
4577
Robin Dongebbe0272011-10-26 05:14:27 -04004578 if (sbi->s_mb_group_prealloc <= 0) {
4579 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
4580 return;
4581 }
4582
Alex Tomasc9de5602008-01-29 00:19:52 -05004583 /* don't use group allocation for large files */
Theodore Ts'o71780572009-09-28 00:06:20 -04004584 size = max(size, isize);
Tao Macc483f12010-03-01 19:06:35 -05004585 if (size > sbi->s_mb_stream_request) {
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004586 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05004587 return;
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04004588 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004589
4590 BUG_ON(ac->ac_lg != NULL);
4591 /*
4592 * locality group prealloc space are per cpu. The reason for having
4593 * per cpu locality group is to reduce the contention between block
4594 * request from multiple CPUs.
4595 */
Christoph Lametera0b6bc62014-08-17 12:30:28 -05004596 ac->ac_lg = raw_cpu_ptr(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05004597
4598 /* we're going to use group allocation */
4599 ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
4600
4601 /* serialize all allocations in the group */
4602 mutex_lock(&ac->ac_lg->lg_mutex);
4603}
4604
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004605static noinline_for_stack int
4606ext4_mb_initialize_context(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05004607 struct ext4_allocation_request *ar)
4608{
4609 struct super_block *sb = ar->inode->i_sb;
4610 struct ext4_sb_info *sbi = EXT4_SB(sb);
4611 struct ext4_super_block *es = sbi->s_es;
4612 ext4_group_t group;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004613 unsigned int len;
4614 ext4_fsblk_t goal;
Alex Tomasc9de5602008-01-29 00:19:52 -05004615 ext4_grpblk_t block;
4616
4617 /* we can't allocate > group size */
4618 len = ar->len;
4619
4620 /* just a dirty hack to filter too big requests */
Theodore Ts'o40ae3482013-02-04 15:08:40 -05004621 if (len >= EXT4_CLUSTERS_PER_GROUP(sb))
4622 len = EXT4_CLUSTERS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004623
4624 /* start searching from the goal */
4625 goal = ar->goal;
4626 if (goal < le32_to_cpu(es->s_first_data_block) ||
4627 goal >= ext4_blocks_count(es))
4628 goal = le32_to_cpu(es->s_first_data_block);
4629 ext4_get_group_no_and_offset(sb, goal, &group, &block);
4630
4631 /* set up allocation goals */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05004632 ac->ac_b_ex.fe_logical = EXT4_LBLK_CMASK(sbi, ar->logical);
Alex Tomasc9de5602008-01-29 00:19:52 -05004633 ac->ac_status = AC_STATUS_CONTINUE;
Alex Tomasc9de5602008-01-29 00:19:52 -05004634 ac->ac_sb = sb;
4635 ac->ac_inode = ar->inode;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004636 ac->ac_o_ex.fe_logical = ac->ac_b_ex.fe_logical;
Alex Tomasc9de5602008-01-29 00:19:52 -05004637 ac->ac_o_ex.fe_group = group;
4638 ac->ac_o_ex.fe_start = block;
4639 ac->ac_o_ex.fe_len = len;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004640 ac->ac_g_ex = ac->ac_o_ex;
Alex Tomasc9de5602008-01-29 00:19:52 -05004641 ac->ac_flags = ar->flags;
Alex Tomasc9de5602008-01-29 00:19:52 -05004642
brookxu3cb77bd2020-07-15 11:00:44 +08004643 /* we have to define context: we'll work with a file or
Alex Tomasc9de5602008-01-29 00:19:52 -05004644 * locality group. this is a policy, actually */
4645 ext4_mb_group_or_file(ac);
4646
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304647 mb_debug(sb, "init ac: %u blocks @ %u, goal %u, flags 0x%x, 2^%d, "
Alex Tomasc9de5602008-01-29 00:19:52 -05004648 "left: %u/%u, right %u/%u to %swritable\n",
4649 (unsigned) ar->len, (unsigned) ar->logical,
4650 (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
4651 (unsigned) ar->lleft, (unsigned) ar->pleft,
4652 (unsigned) ar->lright, (unsigned) ar->pright,
Nikolay Borisov82dd1242019-02-10 23:04:16 -05004653 inode_is_open_for_write(ar->inode) ? "" : "non-");
Alex Tomasc9de5602008-01-29 00:19:52 -05004654 return 0;
4655
4656}
4657
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004658static noinline_for_stack void
4659ext4_mb_discard_lg_preallocations(struct super_block *sb,
4660 struct ext4_locality_group *lg,
4661 int order, int total_entries)
4662{
4663 ext4_group_t group = 0;
4664 struct ext4_buddy e4b;
4665 struct list_head discard_list;
4666 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004667
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304668 mb_debug(sb, "discard locality group preallocation\n");
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004669
4670 INIT_LIST_HEAD(&discard_list);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004671
4672 spin_lock(&lg->lg_prealloc_lock);
4673 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
Madhuparna Bhowmik92e9c582020-02-13 20:55:58 +05304674 pa_inode_list,
4675 lockdep_is_held(&lg->lg_prealloc_lock)) {
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004676 spin_lock(&pa->pa_lock);
4677 if (atomic_read(&pa->pa_count)) {
4678 /*
4679 * This is the pa that we just used
4680 * for block allocation. So don't
4681 * free that
4682 */
4683 spin_unlock(&pa->pa_lock);
4684 continue;
4685 }
4686 if (pa->pa_deleted) {
4687 spin_unlock(&pa->pa_lock);
4688 continue;
4689 }
4690 /* only lg prealloc space */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004691 BUG_ON(pa->pa_type != MB_GROUP_PA);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004692
4693 /* seems this one can be freed ... */
brookxu27bc4462020-08-17 15:36:15 +08004694 ext4_mb_mark_pa_deleted(sb, pa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004695 spin_unlock(&pa->pa_lock);
4696
4697 list_del_rcu(&pa->pa_inode_list);
4698 list_add(&pa->u.pa_tmp_list, &discard_list);
4699
4700 total_entries--;
4701 if (total_entries <= 5) {
4702 /*
4703 * we want to keep only 5 entries
4704 * allowing it to grow to 8. This
4705 * mak sure we don't call discard
4706 * soon for this list.
4707 */
4708 break;
4709 }
4710 }
4711 spin_unlock(&lg->lg_prealloc_lock);
4712
4713 list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04004714 int err;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004715
Lukas Czernerbd862982013-04-03 23:32:34 -04004716 group = ext4_get_group_number(sb, pa->pa_pstart);
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04004717 err = ext4_mb_load_buddy_gfp(sb, group, &e4b,
4718 GFP_NOFS|__GFP_NOFAIL);
4719 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004720 ext4_error_err(sb, -err, "Error %d loading buddy information for %u",
4721 err, group);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004722 continue;
4723 }
4724 ext4_lock_group(sb, group);
4725 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004726 ext4_mb_release_group_pa(&e4b, pa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004727 ext4_unlock_group(sb, group);
4728
Jing Zhange39e07f2010-05-14 00:00:00 -04004729 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004730 list_del(&pa->u.pa_tmp_list);
4731 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4732 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004733}
4734
4735/*
4736 * We have incremented pa_count. So it cannot be freed at this
4737 * point. Also we hold lg_mutex. So no parallel allocation is
4738 * possible from this lg. That means pa_free cannot be updated.
4739 *
4740 * A parallel ext4_mb_discard_group_preallocations is possible.
4741 * which can cause the lg_prealloc_list to be updated.
4742 */
4743
4744static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
4745{
4746 int order, added = 0, lg_prealloc_count = 1;
4747 struct super_block *sb = ac->ac_sb;
4748 struct ext4_locality_group *lg = ac->ac_lg;
4749 struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
4750
4751 order = fls(pa->pa_free) - 1;
4752 if (order > PREALLOC_TB_SIZE - 1)
4753 /* The max size of hash table is PREALLOC_TB_SIZE */
4754 order = PREALLOC_TB_SIZE - 1;
4755 /* Add the prealloc space to lg */
Niu Yaweif1167002013-02-01 21:31:27 -05004756 spin_lock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004757 list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
Madhuparna Bhowmik92e9c582020-02-13 20:55:58 +05304758 pa_inode_list,
4759 lockdep_is_held(&lg->lg_prealloc_lock)) {
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004760 spin_lock(&tmp_pa->pa_lock);
4761 if (tmp_pa->pa_deleted) {
Theodore Ts'oe7c9e3e2009-03-27 19:43:21 -04004762 spin_unlock(&tmp_pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004763 continue;
4764 }
4765 if (!added && pa->pa_free < tmp_pa->pa_free) {
4766 /* Add to the tail of the previous entry */
4767 list_add_tail_rcu(&pa->pa_inode_list,
4768 &tmp_pa->pa_inode_list);
4769 added = 1;
4770 /*
4771 * we want to count the total
4772 * number of entries in the list
4773 */
4774 }
4775 spin_unlock(&tmp_pa->pa_lock);
4776 lg_prealloc_count++;
4777 }
4778 if (!added)
4779 list_add_tail_rcu(&pa->pa_inode_list,
4780 &lg->lg_prealloc_list[order]);
Niu Yaweif1167002013-02-01 21:31:27 -05004781 spin_unlock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004782
4783 /* Now trim the list to be not more than 8 elements */
4784 if (lg_prealloc_count > 8) {
4785 ext4_mb_discard_lg_preallocations(sb, lg,
Niu Yaweif1167002013-02-01 21:31:27 -05004786 order, lg_prealloc_count);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004787 return;
4788 }
4789 return ;
4790}
4791
Alex Tomasc9de5602008-01-29 00:19:52 -05004792/*
brookxu27bc4462020-08-17 15:36:15 +08004793 * if per-inode prealloc list is too long, trim some PA
4794 */
4795static void ext4_mb_trim_inode_pa(struct inode *inode)
4796{
4797 struct ext4_inode_info *ei = EXT4_I(inode);
4798 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
4799 int count, delta;
4800
4801 count = atomic_read(&ei->i_prealloc_active);
4802 delta = (sbi->s_mb_max_inode_prealloc >> 2) + 1;
4803 if (count > sbi->s_mb_max_inode_prealloc + delta) {
4804 count -= sbi->s_mb_max_inode_prealloc;
4805 ext4_discard_preallocations(inode, count);
4806 }
4807}
4808
4809/*
Alex Tomasc9de5602008-01-29 00:19:52 -05004810 * release all resource we used in allocation
4811 */
4812static int ext4_mb_release_context(struct ext4_allocation_context *ac)
4813{
brookxu27bc4462020-08-17 15:36:15 +08004814 struct inode *inode = ac->ac_inode;
4815 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004816 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004817 struct ext4_prealloc_space *pa = ac->ac_pa;
4818 if (pa) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004819 if (pa->pa_type == MB_GROUP_PA) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004820 /* see comment in ext4_mb_use_group_pa() */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004821 spin_lock(&pa->pa_lock);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004822 pa->pa_pstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
4823 pa->pa_lstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004824 pa->pa_free -= ac->ac_b_ex.fe_len;
4825 pa->pa_len -= ac->ac_b_ex.fe_len;
4826 spin_unlock(&pa->pa_lock);
brookxu66d5e022020-08-17 15:36:06 +08004827
4828 /*
4829 * We want to add the pa to the right bucket.
4830 * Remove it from the list and while adding
4831 * make sure the list to which we are adding
4832 * doesn't grow big.
4833 */
4834 if (likely(pa->pa_free)) {
4835 spin_lock(pa->pa_obj_lock);
4836 list_del_rcu(&pa->pa_inode_list);
4837 spin_unlock(pa->pa_obj_lock);
4838 ext4_mb_add_n_trim(ac);
4839 }
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004840 }
brookxu27bc4462020-08-17 15:36:15 +08004841
4842 if (pa->pa_type == MB_INODE_PA) {
4843 /*
4844 * treat per-inode prealloc list as a lru list, then try
4845 * to trim the least recently used PA.
4846 */
4847 spin_lock(pa->pa_obj_lock);
4848 list_move(&pa->pa_inode_list, &ei->i_prealloc_list);
4849 spin_unlock(pa->pa_obj_lock);
4850 }
4851
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05004852 ext4_mb_put_pa(ac, ac->ac_sb, pa);
4853 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004854 if (ac->ac_bitmap_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004855 put_page(ac->ac_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05004856 if (ac->ac_buddy_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004857 put_page(ac->ac_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05004858 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
4859 mutex_unlock(&ac->ac_lg->lg_mutex);
4860 ext4_mb_collect_stats(ac);
brookxu27bc4462020-08-17 15:36:15 +08004861 ext4_mb_trim_inode_pa(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05004862 return 0;
4863}
4864
4865static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
4866{
Theodore Ts'o8df96752009-05-01 08:50:38 -04004867 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004868 int ret;
4869 int freed = 0;
4870
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004871 trace_ext4_mb_discard_preallocations(sb, needed);
Theodore Ts'o8df96752009-05-01 08:50:38 -04004872 for (i = 0; i < ngroups && needed > 0; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004873 ret = ext4_mb_discard_group_preallocations(sb, i, needed);
4874 freed += ret;
4875 needed -= ret;
4876 }
4877
4878 return freed;
4879}
4880
Ritesh Harjanicf5e2ca2020-05-20 12:10:33 +05304881static bool ext4_mb_discard_preallocations_should_retry(struct super_block *sb,
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05304882 struct ext4_allocation_context *ac, u64 *seq)
Ritesh Harjanicf5e2ca2020-05-20 12:10:33 +05304883{
4884 int freed;
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05304885 u64 seq_retry = 0;
4886 bool ret = false;
Ritesh Harjanicf5e2ca2020-05-20 12:10:33 +05304887
4888 freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05304889 if (freed) {
4890 ret = true;
4891 goto out_dbg;
4892 }
4893 seq_retry = ext4_get_discard_pa_seq_sum();
Ritesh Harjani99377832020-05-20 12:10:36 +05304894 if (!(ac->ac_flags & EXT4_MB_STRICT_CHECK) || seq_retry != *seq) {
4895 ac->ac_flags |= EXT4_MB_STRICT_CHECK;
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05304896 *seq = seq_retry;
4897 ret = true;
4898 }
4899
4900out_dbg:
4901 mb_debug(sb, "freed %d, retry ? %s\n", freed, ret ? "yes" : "no");
4902 return ret;
Ritesh Harjanicf5e2ca2020-05-20 12:10:33 +05304903}
4904
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004905static ext4_fsblk_t ext4_mb_new_blocks_simple(handle_t *handle,
4906 struct ext4_allocation_request *ar, int *errp);
4907
Alex Tomasc9de5602008-01-29 00:19:52 -05004908/*
4909 * Main entry point into mballoc to allocate blocks
4910 * it tries to use preallocation first, then falls back
4911 * to usual allocation
4912 */
4913ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
Aditya Kali6c7a1202010-08-05 16:22:24 -04004914 struct ext4_allocation_request *ar, int *errp)
Alex Tomasc9de5602008-01-29 00:19:52 -05004915{
Eric Sandeen256bdb42008-02-10 01:13:33 -05004916 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05004917 struct ext4_sb_info *sbi;
4918 struct super_block *sb;
4919 ext4_fsblk_t block = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01004920 unsigned int inquota = 0;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004921 unsigned int reserv_clstrs = 0;
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05304922 u64 seq;
Alex Tomasc9de5602008-01-29 00:19:52 -05004923
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04004924 might_sleep();
Alex Tomasc9de5602008-01-29 00:19:52 -05004925 sb = ar->inode->i_sb;
4926 sbi = EXT4_SB(sb);
4927
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004928 trace_ext4_request_blocks(ar);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004929 if (sbi->s_mount_state & EXT4_FC_REPLAY)
4930 return ext4_mb_new_blocks_simple(handle, ar, errp);
Theodore Ts'oba80b102009-01-03 20:03:21 -05004931
Dmitry Monakhov45dc63e2011-10-20 20:07:23 -04004932 /* Allow to use superuser reservation for quota file */
Tahsin Erdogan02749a42017-06-22 11:31:25 -04004933 if (ext4_is_quota_file(ar->inode))
Dmitry Monakhov45dc63e2011-10-20 20:07:23 -04004934 ar->flags |= EXT4_MB_USE_ROOT_BLOCKS;
4935
Theodore Ts'oe3cf5d52014-09-04 18:07:25 -04004936 if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0) {
Mingming Cao60e58e02009-01-22 18:13:05 +01004937 /* Without delayed allocation we need to verify
4938 * there is enough free blocks to do block allocation
4939 * and verify allocation doesn't exceed the quota limits.
Mingming Caod2a17632008-07-14 17:52:37 -04004940 */
Allison Henderson55f020d2011-05-25 07:41:26 -04004941 while (ar->len &&
Theodore Ts'oe7d5f312011-09-09 19:14:51 -04004942 ext4_claim_free_clusters(sbi, ar->len, ar->flags)) {
Allison Henderson55f020d2011-05-25 07:41:26 -04004943
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004944 /* let others to free the space */
Lukas Czernerbb8b20e2013-03-10 22:28:09 -04004945 cond_resched();
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04004946 ar->len = ar->len >> 1;
4947 }
4948 if (!ar->len) {
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304949 ext4_mb_show_pa(sb);
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -04004950 *errp = -ENOSPC;
4951 return 0;
4952 }
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004953 reserv_clstrs = ar->len;
Allison Henderson55f020d2011-05-25 07:41:26 -04004954 if (ar->flags & EXT4_MB_USE_ROOT_BLOCKS) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004955 dquot_alloc_block_nofail(ar->inode,
4956 EXT4_C2B(sbi, ar->len));
Allison Henderson55f020d2011-05-25 07:41:26 -04004957 } else {
4958 while (ar->len &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004959 dquot_alloc_block(ar->inode,
4960 EXT4_C2B(sbi, ar->len))) {
Allison Henderson55f020d2011-05-25 07:41:26 -04004961
4962 ar->flags |= EXT4_MB_HINT_NOPREALLOC;
4963 ar->len--;
4964 }
Mingming Cao60e58e02009-01-22 18:13:05 +01004965 }
4966 inquota = ar->len;
4967 if (ar->len == 0) {
4968 *errp = -EDQUOT;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004969 goto out;
Mingming Cao60e58e02009-01-22 18:13:05 +01004970 }
Mingming Caod2a17632008-07-14 17:52:37 -04004971 }
Mingming Caod2a17632008-07-14 17:52:37 -04004972
Wei Yongjun85556c92012-09-26 20:43:37 -04004973 ac = kmem_cache_zalloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o833576b2009-07-13 09:45:52 -04004974 if (!ac) {
Shen Feng363d4252008-07-11 19:27:31 -04004975 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004976 *errp = -ENOMEM;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004977 goto out;
Eric Sandeen256bdb42008-02-10 01:13:33 -05004978 }
4979
Eric Sandeen256bdb42008-02-10 01:13:33 -05004980 *errp = ext4_mb_initialize_context(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05004981 if (*errp) {
4982 ar->len = 0;
Aditya Kali6c7a1202010-08-05 16:22:24 -04004983 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05004984 }
4985
Eric Sandeen256bdb42008-02-10 01:13:33 -05004986 ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
Ritesh Harjani81198532020-06-09 16:23:10 +05304987 seq = this_cpu_read(discard_pa_seq);
Eric Sandeen256bdb42008-02-10 01:13:33 -05004988 if (!ext4_mb_use_preallocated(ac)) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05004989 ac->ac_op = EXT4_MB_HISTORY_ALLOC;
4990 ext4_mb_normalize_request(ac, ar);
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304991
4992 *errp = ext4_mb_pa_alloc(ac);
4993 if (*errp)
4994 goto errout;
Alex Tomasc9de5602008-01-29 00:19:52 -05004995repeat:
4996 /* allocate space in core */
Aditya Kali6c7a1202010-08-05 16:22:24 -04004997 *errp = ext4_mb_regular_allocator(ac);
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304998 /*
4999 * pa allocated above is added to grp->bb_prealloc_list only
5000 * when we were able to allocate some block i.e. when
5001 * ac->ac_status == AC_STATUS_FOUND.
5002 * And error from above mean ac->ac_status != AC_STATUS_FOUND
5003 * So we have to free this pa here itself.
5004 */
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005005 if (*errp) {
Ritesh Harjani53f86b12020-05-20 12:10:32 +05305006 ext4_mb_pa_free(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005007 ext4_discard_allocated_blocks(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04005008 goto errout;
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005009 }
Ritesh Harjani53f86b12020-05-20 12:10:32 +05305010 if (ac->ac_status == AC_STATUS_FOUND &&
5011 ac->ac_o_ex.fe_len >= ac->ac_f_ex.fe_len)
5012 ext4_mb_pa_free(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05005013 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05005014 if (likely(ac->ac_status == AC_STATUS_FOUND)) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005015 *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_clstrs);
Vegard Nossum554a5cc2016-07-14 23:02:47 -04005016 if (*errp) {
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05005017 ext4_discard_allocated_blocks(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005018 goto errout;
5019 } else {
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04005020 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
5021 ar->len = ac->ac_b_ex.fe_len;
5022 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005023 } else {
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05305024 if (ext4_mb_discard_preallocations_should_retry(sb, ac, &seq))
Alex Tomasc9de5602008-01-29 00:19:52 -05005025 goto repeat;
Ritesh Harjani53f86b12020-05-20 12:10:32 +05305026 /*
5027 * If block allocation fails then the pa allocated above
5028 * needs to be freed here itself.
5029 */
5030 ext4_mb_pa_free(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05005031 *errp = -ENOSPC;
Aditya Kali6c7a1202010-08-05 16:22:24 -04005032 }
5033
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005034errout:
Aditya Kali6c7a1202010-08-05 16:22:24 -04005035 if (*errp) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05005036 ac->ac_b_ex.fe_len = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05005037 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05005038 ext4_mb_show_ac(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05005039 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05005040 ext4_mb_release_context(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04005041out:
5042 if (ac)
5043 kmem_cache_free(ext4_ac_cachep, ac);
Mingming Cao60e58e02009-01-22 18:13:05 +01005044 if (inquota && ar->len < inquota)
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005045 dquot_free_block(ar->inode, EXT4_C2B(sbi, inquota - ar->len));
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05005046 if (!ar->len) {
Theodore Ts'oe3cf5d52014-09-04 18:07:25 -04005047 if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0)
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05005048 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04005049 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005050 reserv_clstrs);
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05005051 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005052
Theodore Ts'o9bffad12009-06-17 11:48:11 -04005053 trace_ext4_allocate_blocks(ar, (unsigned long long)block);
Theodore Ts'oba80b102009-01-03 20:03:21 -05005054
Alex Tomasc9de5602008-01-29 00:19:52 -05005055 return block;
5056}
Alex Tomasc9de5602008-01-29 00:19:52 -05005057
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005058/*
5059 * We can merge two free data extents only if the physical blocks
5060 * are contiguous, AND the extents were freed by the same transaction,
5061 * AND the blocks are associated with the same group.
5062 */
Daeho Jeonga0154342017-06-22 23:54:33 -04005063static void ext4_try_merge_freed_extent(struct ext4_sb_info *sbi,
5064 struct ext4_free_data *entry,
5065 struct ext4_free_data *new_entry,
5066 struct rb_root *entry_rb_root)
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005067{
Daeho Jeonga0154342017-06-22 23:54:33 -04005068 if ((entry->efd_tid != new_entry->efd_tid) ||
5069 (entry->efd_group != new_entry->efd_group))
5070 return;
5071 if (entry->efd_start_cluster + entry->efd_count ==
5072 new_entry->efd_start_cluster) {
5073 new_entry->efd_start_cluster = entry->efd_start_cluster;
5074 new_entry->efd_count += entry->efd_count;
5075 } else if (new_entry->efd_start_cluster + new_entry->efd_count ==
5076 entry->efd_start_cluster) {
5077 new_entry->efd_count += entry->efd_count;
5078 } else
5079 return;
5080 spin_lock(&sbi->s_md_lock);
5081 list_del(&entry->efd_list);
5082 spin_unlock(&sbi->s_md_lock);
5083 rb_erase(&entry->efd_node, entry_rb_root);
5084 kmem_cache_free(ext4_free_data_cachep, entry);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005085}
5086
Eric Sandeen4ddfef72008-04-29 08:11:12 -04005087static noinline_for_stack int
5088ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005089 struct ext4_free_data *new_entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05005090{
Theodore Ts'oe29136f2010-06-29 12:54:28 -04005091 ext4_group_t group = e4b->bd_group;
Theodore Ts'o84130192011-09-09 18:50:51 -04005092 ext4_grpblk_t cluster;
Theodore Ts'od08854f2016-06-26 18:24:01 -04005093 ext4_grpblk_t clusters = new_entry->efd_count;
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005094 struct ext4_free_data *entry;
Alex Tomasc9de5602008-01-29 00:19:52 -05005095 struct ext4_group_info *db = e4b->bd_info;
5096 struct super_block *sb = e4b->bd_sb;
5097 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005098 struct rb_node **n = &db->bb_free_root.rb_node, *node;
5099 struct rb_node *parent = NULL, *new_node;
5100
Frank Mayhar03901312009-01-07 00:06:22 -05005101 BUG_ON(!ext4_handle_valid(handle));
Alex Tomasc9de5602008-01-29 00:19:52 -05005102 BUG_ON(e4b->bd_bitmap_page == NULL);
5103 BUG_ON(e4b->bd_buddy_page == NULL);
5104
Bobi Jam18aadd42012-02-20 17:53:02 -05005105 new_node = &new_entry->efd_node;
5106 cluster = new_entry->efd_start_cluster;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005107
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005108 if (!*n) {
5109 /* first free block exent. We need to
5110 protect buddy cache from being freed,
5111 * otherwise we'll refresh it from
5112 * on-disk bitmap and lose not-yet-available
5113 * blocks */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005114 get_page(e4b->bd_buddy_page);
5115 get_page(e4b->bd_bitmap_page);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005116 }
5117 while (*n) {
5118 parent = *n;
Bobi Jam18aadd42012-02-20 17:53:02 -05005119 entry = rb_entry(parent, struct ext4_free_data, efd_node);
5120 if (cluster < entry->efd_start_cluster)
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005121 n = &(*n)->rb_left;
Bobi Jam18aadd42012-02-20 17:53:02 -05005122 else if (cluster >= (entry->efd_start_cluster + entry->efd_count))
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005123 n = &(*n)->rb_right;
5124 else {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04005125 ext4_grp_locked_error(sb, group, 0,
Theodore Ts'o84130192011-09-09 18:50:51 -04005126 ext4_group_first_block_no(sb, group) +
5127 EXT4_C2B(sbi, cluster),
Theodore Ts'oe29136f2010-06-29 12:54:28 -04005128 "Block already on to-be-freed list");
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005129 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05005130 }
5131 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005132
5133 rb_link_node(new_node, parent, n);
5134 rb_insert_color(new_node, &db->bb_free_root);
5135
5136 /* Now try to see the extent can be merged to left and right */
5137 node = rb_prev(new_node);
5138 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05005139 entry = rb_entry(node, struct ext4_free_data, efd_node);
Daeho Jeonga0154342017-06-22 23:54:33 -04005140 ext4_try_merge_freed_extent(sbi, entry, new_entry,
5141 &(db->bb_free_root));
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005142 }
5143
5144 node = rb_next(new_node);
5145 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05005146 entry = rb_entry(node, struct ext4_free_data, efd_node);
Daeho Jeonga0154342017-06-22 23:54:33 -04005147 ext4_try_merge_freed_extent(sbi, entry, new_entry,
5148 &(db->bb_free_root));
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005149 }
Daeho Jeonga0154342017-06-22 23:54:33 -04005150
Theodore Ts'od08854f2016-06-26 18:24:01 -04005151 spin_lock(&sbi->s_md_lock);
Daeho Jeonga0154342017-06-22 23:54:33 -04005152 list_add_tail(&new_entry->efd_list, &sbi->s_freed_data_list);
Theodore Ts'od08854f2016-06-26 18:24:01 -04005153 sbi->s_mb_free_pending += clusters;
5154 spin_unlock(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05005155 return 0;
5156}
5157
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005158/*
5159 * Simple allocator for Ext4 fast commit replay path. It searches for blocks
5160 * linearly starting at the goal block and also excludes the blocks which
5161 * are going to be in use after fast commit replay.
5162 */
5163static ext4_fsblk_t ext4_mb_new_blocks_simple(handle_t *handle,
5164 struct ext4_allocation_request *ar, int *errp)
5165{
5166 struct buffer_head *bitmap_bh;
5167 struct super_block *sb = ar->inode->i_sb;
5168 ext4_group_t group;
5169 ext4_grpblk_t blkoff;
Dan Carpentere121bd42020-10-30 14:46:20 +03005170 int i = sb->s_blocksize;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005171 ext4_fsblk_t goal, block;
5172 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
5173
5174 goal = ar->goal;
5175 if (goal < le32_to_cpu(es->s_first_data_block) ||
5176 goal >= ext4_blocks_count(es))
5177 goal = le32_to_cpu(es->s_first_data_block);
5178
5179 ar->len = 0;
5180 ext4_get_group_no_and_offset(sb, goal, &group, &blkoff);
5181 for (; group < ext4_get_groups_count(sb); group++) {
5182 bitmap_bh = ext4_read_block_bitmap(sb, group);
5183 if (IS_ERR(bitmap_bh)) {
5184 *errp = PTR_ERR(bitmap_bh);
5185 pr_warn("Failed to read block bitmap\n");
5186 return 0;
5187 }
5188
5189 ext4_get_group_no_and_offset(sb,
5190 max(ext4_group_first_block_no(sb, group), goal),
5191 NULL, &blkoff);
5192 i = mb_find_next_zero_bit(bitmap_bh->b_data, sb->s_blocksize,
5193 blkoff);
5194 brelse(bitmap_bh);
5195 if (i >= sb->s_blocksize)
5196 continue;
5197 if (ext4_fc_replay_check_excluded(sb,
5198 ext4_group_first_block_no(sb, group) + i))
5199 continue;
5200 break;
5201 }
5202
5203 if (group >= ext4_get_groups_count(sb) && i >= sb->s_blocksize)
5204 return 0;
5205
5206 block = ext4_group_first_block_no(sb, group) + i;
5207 ext4_mb_mark_bb(sb, block, 1, 1);
5208 ar->len = 1;
5209
5210 return block;
5211}
5212
5213static void ext4_free_blocks_simple(struct inode *inode, ext4_fsblk_t block,
5214 unsigned long count)
5215{
5216 struct buffer_head *bitmap_bh;
5217 struct super_block *sb = inode->i_sb;
5218 struct ext4_group_desc *gdp;
5219 struct buffer_head *gdp_bh;
5220 ext4_group_t group;
5221 ext4_grpblk_t blkoff;
5222 int already_freed = 0, err, i;
5223
5224 ext4_get_group_no_and_offset(sb, block, &group, &blkoff);
5225 bitmap_bh = ext4_read_block_bitmap(sb, group);
5226 if (IS_ERR(bitmap_bh)) {
5227 err = PTR_ERR(bitmap_bh);
5228 pr_warn("Failed to read block bitmap\n");
5229 return;
5230 }
5231 gdp = ext4_get_group_desc(sb, group, &gdp_bh);
5232 if (!gdp)
5233 return;
5234
5235 for (i = 0; i < count; i++) {
5236 if (!mb_test_bit(blkoff + i, bitmap_bh->b_data))
5237 already_freed++;
5238 }
5239 mb_clear_bits(bitmap_bh->b_data, blkoff, count);
5240 err = ext4_handle_dirty_metadata(NULL, NULL, bitmap_bh);
5241 if (err)
5242 return;
5243 ext4_free_group_clusters_set(
5244 sb, gdp, ext4_free_group_clusters(sb, gdp) +
5245 count - already_freed);
5246 ext4_block_bitmap_csum_set(sb, group, gdp, bitmap_bh);
5247 ext4_group_desc_csum_set(sb, group, gdp);
5248 ext4_handle_dirty_metadata(NULL, NULL, gdp_bh);
5249 sync_dirty_buffer(bitmap_bh);
5250 sync_dirty_buffer(gdp_bh);
5251 brelse(bitmap_bh);
5252}
5253
Theodore Ts'o44338712009-11-22 07:44:56 -05005254/**
5255 * ext4_free_blocks() -- Free given blocks and update quota
5256 * @handle: handle for this transaction
5257 * @inode: inode
Theodore Ts'oc60990b2019-06-19 16:30:03 -04005258 * @bh: optional buffer of the block to be freed
5259 * @block: starting physical block to be freed
5260 * @count: number of blocks to be freed
Yongqiang Yang5def1362011-06-05 23:26:40 -04005261 * @flags: flags used by ext4_free_blocks
Alex Tomasc9de5602008-01-29 00:19:52 -05005262 */
Theodore Ts'o44338712009-11-22 07:44:56 -05005263void ext4_free_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'oe6362602009-11-23 07:17:05 -05005264 struct buffer_head *bh, ext4_fsblk_t block,
5265 unsigned long count, int flags)
Alex Tomasc9de5602008-01-29 00:19:52 -05005266{
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05005267 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05005268 struct super_block *sb = inode->i_sb;
Alex Tomasc9de5602008-01-29 00:19:52 -05005269 struct ext4_group_desc *gdp;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05005270 unsigned int overflow;
Alex Tomasc9de5602008-01-29 00:19:52 -05005271 ext4_grpblk_t bit;
5272 struct buffer_head *gd_bh;
5273 ext4_group_t block_group;
5274 struct ext4_sb_info *sbi;
5275 struct ext4_buddy e4b;
Theodore Ts'o84130192011-09-09 18:50:51 -04005276 unsigned int count_clusters;
Alex Tomasc9de5602008-01-29 00:19:52 -05005277 int err = 0;
5278 int ret;
5279
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005280 sbi = EXT4_SB(sb);
5281
5282 if (sbi->s_mount_state & EXT4_FC_REPLAY) {
5283 ext4_free_blocks_simple(inode, block, count);
5284 return;
5285 }
5286
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04005287 might_sleep();
Theodore Ts'oe6362602009-11-23 07:17:05 -05005288 if (bh) {
5289 if (block)
5290 BUG_ON(block != bh->b_blocknr);
5291 else
5292 block = bh->b_blocknr;
5293 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005294
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05005295 if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
Jan Karace9f24c2020-07-28 15:04:34 +02005296 !ext4_inode_block_valid(inode, block, count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05005297 ext4_error(sb, "Freeing blocks not in datazone - "
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05005298 "block = %llu, count = %lu", block, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05005299 goto error_return;
5300 }
5301
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04005302 ext4_debug("freeing block %llu\n", block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05005303 trace_ext4_free_blocks(inode, block, count, flags);
5304
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005305 if (bh && (flags & EXT4_FREE_BLOCKS_FORGET)) {
5306 BUG_ON(count > 1);
Theodore Ts'oe6362602009-11-23 07:17:05 -05005307
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005308 ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
5309 inode, bh, block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05005310 }
5311
Theodore Ts'o60e66792010-05-17 07:00:00 -04005312 /*
Theodore Ts'o84130192011-09-09 18:50:51 -04005313 * If the extent to be freed does not begin on a cluster
5314 * boundary, we need to deal with partial clusters at the
5315 * beginning and end of the extent. Normally we will free
5316 * blocks at the beginning or the end unless we are explicitly
5317 * requested to avoid doing so.
5318 */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05005319 overflow = EXT4_PBLK_COFF(sbi, block);
Theodore Ts'o84130192011-09-09 18:50:51 -04005320 if (overflow) {
5321 if (flags & EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER) {
5322 overflow = sbi->s_cluster_ratio - overflow;
5323 block += overflow;
5324 if (count > overflow)
5325 count -= overflow;
5326 else
5327 return;
5328 } else {
5329 block -= overflow;
5330 count += overflow;
5331 }
5332 }
Theodore Ts'of5a44db2013-12-20 09:29:35 -05005333 overflow = EXT4_LBLK_COFF(sbi, count);
Theodore Ts'o84130192011-09-09 18:50:51 -04005334 if (overflow) {
5335 if (flags & EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER) {
5336 if (count > overflow)
5337 count -= overflow;
5338 else
5339 return;
5340 } else
5341 count += sbi->s_cluster_ratio - overflow;
5342 }
5343
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005344 if (!bh && (flags & EXT4_FREE_BLOCKS_FORGET)) {
5345 int i;
Daeho Jeongf96c4502016-02-21 18:31:41 -05005346 int is_metadata = flags & EXT4_FREE_BLOCKS_METADATA;
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005347
5348 for (i = 0; i < count; i++) {
5349 cond_resched();
Daeho Jeongf96c4502016-02-21 18:31:41 -05005350 if (is_metadata)
5351 bh = sb_find_get_block(inode->i_sb, block + i);
5352 ext4_forget(handle, is_metadata, inode, bh, block + i);
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005353 }
5354 }
5355
Alex Tomasc9de5602008-01-29 00:19:52 -05005356do_more:
5357 overflow = 0;
5358 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
5359
Darrick J. Wong163a2032013-08-28 17:35:51 -04005360 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(
5361 ext4_get_group_info(sb, block_group))))
5362 return;
5363
Alex Tomasc9de5602008-01-29 00:19:52 -05005364 /*
5365 * Check to see if we are freeing blocks across a group
5366 * boundary.
5367 */
Theodore Ts'o84130192011-09-09 18:50:51 -04005368 if (EXT4_C2B(sbi, bit) + count > EXT4_BLOCKS_PER_GROUP(sb)) {
5369 overflow = EXT4_C2B(sbi, bit) + count -
5370 EXT4_BLOCKS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05005371 count -= overflow;
5372 }
Lukas Czerner810da242013-03-02 17:18:58 -05005373 count_clusters = EXT4_NUM_B2C(sbi, count);
Theodore Ts'o574ca172008-07-11 19:27:31 -04005374 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04005375 if (IS_ERR(bitmap_bh)) {
5376 err = PTR_ERR(bitmap_bh);
5377 bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05005378 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04005379 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005380 gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04005381 if (!gdp) {
5382 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05005383 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04005384 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005385
5386 if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
5387 in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
5388 in_range(block, ext4_inode_table(sb, gdp),
Jun Piao49598e02018-01-11 13:17:49 -05005389 sbi->s_itb_per_group) ||
Alex Tomasc9de5602008-01-29 00:19:52 -05005390 in_range(block + count - 1, ext4_inode_table(sb, gdp),
Jun Piao49598e02018-01-11 13:17:49 -05005391 sbi->s_itb_per_group)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05005392
Eric Sandeen12062dd2010-02-15 14:19:27 -05005393 ext4_error(sb, "Freeing blocks in system zone - "
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04005394 "Block = %llu, count = %lu", block, count);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04005395 /* err = 0. ext4_std_error should be a no op */
5396 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05005397 }
5398
5399 BUFFER_TRACE(bitmap_bh, "getting write access");
5400 err = ext4_journal_get_write_access(handle, bitmap_bh);
5401 if (err)
5402 goto error_return;
5403
5404 /*
5405 * We are about to modify some metadata. Call the journal APIs
5406 * to unshare ->b_data if a currently-committing transaction is
5407 * using it
5408 */
5409 BUFFER_TRACE(gd_bh, "get_write_access");
5410 err = ext4_journal_get_write_access(handle, gd_bh);
5411 if (err)
5412 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05005413#ifdef AGGRESSIVE_CHECK
5414 {
5415 int i;
Theodore Ts'o84130192011-09-09 18:50:51 -04005416 for (i = 0; i < count_clusters; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -05005417 BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
5418 }
5419#endif
Theodore Ts'o84130192011-09-09 18:50:51 -04005420 trace_ext4_mballoc_free(sb, inode, block_group, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05005421
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04005422 /* __GFP_NOFAIL: retry infinitely, ignore TIF_MEMDIE and memcg limit. */
5423 err = ext4_mb_load_buddy_gfp(sb, block_group, &e4b,
5424 GFP_NOFS|__GFP_NOFAIL);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05005425 if (err)
5426 goto error_return;
Theodore Ts'oe6362602009-11-23 07:17:05 -05005427
Daeho Jeongf96c4502016-02-21 18:31:41 -05005428 /*
5429 * We need to make sure we don't reuse the freed block until after the
5430 * transaction is committed. We make an exception if the inode is to be
5431 * written in writeback mode since writeback mode has weak data
5432 * consistency guarantees.
5433 */
5434 if (ext4_handle_valid(handle) &&
5435 ((flags & EXT4_FREE_BLOCKS_METADATA) ||
5436 !ext4_should_writeback_data(inode))) {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005437 struct ext4_free_data *new_entry;
5438 /*
Michal Hocko7444a072015-07-05 12:33:44 -04005439 * We use __GFP_NOFAIL because ext4_free_blocks() is not allowed
5440 * to fail.
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005441 */
Michal Hocko7444a072015-07-05 12:33:44 -04005442 new_entry = kmem_cache_alloc(ext4_free_data_cachep,
5443 GFP_NOFS|__GFP_NOFAIL);
Bobi Jam18aadd42012-02-20 17:53:02 -05005444 new_entry->efd_start_cluster = bit;
5445 new_entry->efd_group = block_group;
5446 new_entry->efd_count = count_clusters;
5447 new_entry->efd_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04005448
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005449 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04005450 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005451 ext4_mb_free_metadata(handle, &e4b, new_entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05005452 } else {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005453 /* need to update group_info->bb_free and bitmap
5454 * with group lock held. generate_buddy look at
5455 * them with group lock_held
5456 */
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005457 if (test_opt(sb, DISCARD)) {
Daeho Jeonga0154342017-06-22 23:54:33 -04005458 err = ext4_issue_discard(sb, block_group, bit, count,
5459 NULL);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005460 if (err && err != -EOPNOTSUPP)
5461 ext4_msg(sb, KERN_WARNING, "discard request in"
5462 " group:%d block:%d count:%lu failed"
5463 " with %d", block_group, bit, count,
5464 err);
Lukas Czerner8f9ff182013-10-30 11:10:52 -04005465 } else
5466 EXT4_MB_GRP_CLEAR_TRIMMED(e4b.bd_info);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005467
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04005468 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04005469 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
5470 mb_free_blocks(inode, &e4b, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05005471 }
5472
Theodore Ts'o021b65b2011-09-09 19:08:51 -04005473 ret = ext4_free_group_clusters(sb, gdp) + count_clusters;
5474 ext4_free_group_clusters_set(sb, gdp, ret);
Tao Ma79f1ba42012-10-22 00:34:32 -04005475 ext4_block_bitmap_csum_set(sb, block_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04005476 ext4_group_desc_csum_set(sb, block_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04005477 ext4_unlock_group(sb, block_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05005478
Jose R. Santos772cb7c2008-07-11 19:27:31 -04005479 if (sbi->s_log_groups_per_flex) {
5480 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04005481 atomic64_add(count_clusters,
Suraj Jitindar Singh7c990722020-02-18 19:08:51 -08005482 &sbi_array_rcu_deref(sbi, s_flex_groups,
5483 flex_group)->free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04005484 }
5485
Eric Whitney9fe67142018-10-01 14:25:08 -04005486 /*
5487 * on a bigalloc file system, defer the s_freeclusters_counter
5488 * update to the caller (ext4_remove_space and friends) so they
5489 * can determine if a cluster freed here should be rereserved
5490 */
5491 if (!(flags & EXT4_FREE_BLOCKS_RERESERVE_CLUSTER)) {
5492 if (!(flags & EXT4_FREE_BLOCKS_NO_QUOT_UPDATE))
5493 dquot_free_block(inode, EXT4_C2B(sbi, count_clusters));
5494 percpu_counter_add(&sbi->s_freeclusters_counter,
5495 count_clusters);
5496 }
Jan Kara7d734532013-08-17 09:36:54 -04005497
5498 ext4_mb_unload_buddy(&e4b);
Aditya Kali7b415bf2011-09-09 19:04:51 -04005499
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005500 /* We dirtied the bitmap block */
5501 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
5502 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
5503
Alex Tomasc9de5602008-01-29 00:19:52 -05005504 /* And the group descriptor block */
5505 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
Frank Mayhar03901312009-01-07 00:06:22 -05005506 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05005507 if (!err)
5508 err = ret;
5509
5510 if (overflow && !err) {
5511 block += count;
5512 count = overflow;
5513 put_bh(bitmap_bh);
5514 goto do_more;
5515 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005516error_return:
5517 brelse(bitmap_bh);
5518 ext4_std_error(sb, err);
Alex Tomasc9de5602008-01-29 00:19:52 -05005519 return;
5520}
Lukas Czerner7360d172010-10-27 21:30:12 -04005521
5522/**
Yongqiang Yang05291552011-07-26 21:43:56 -04005523 * ext4_group_add_blocks() -- Add given blocks to an existing group
Amir Goldstein2846e822011-05-09 10:46:41 -04005524 * @handle: handle to this transaction
5525 * @sb: super block
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005526 * @block: start physical block to add to the block group
Amir Goldstein2846e822011-05-09 10:46:41 -04005527 * @count: number of blocks to free
5528 *
Amir Goldsteine73a3472011-05-09 21:40:01 -04005529 * This marks the blocks as free in the bitmap and buddy.
Amir Goldstein2846e822011-05-09 10:46:41 -04005530 */
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005531int ext4_group_add_blocks(handle_t *handle, struct super_block *sb,
Amir Goldstein2846e822011-05-09 10:46:41 -04005532 ext4_fsblk_t block, unsigned long count)
5533{
5534 struct buffer_head *bitmap_bh = NULL;
5535 struct buffer_head *gd_bh;
5536 ext4_group_t block_group;
5537 ext4_grpblk_t bit;
5538 unsigned int i;
5539 struct ext4_group_desc *desc;
5540 struct ext4_sb_info *sbi = EXT4_SB(sb);
Amir Goldsteine73a3472011-05-09 21:40:01 -04005541 struct ext4_buddy e4b;
harshadsd77147f2017-10-29 09:38:46 -04005542 int err = 0, ret, free_clusters_count;
5543 ext4_grpblk_t clusters_freed;
5544 ext4_fsblk_t first_cluster = EXT4_B2C(sbi, block);
5545 ext4_fsblk_t last_cluster = EXT4_B2C(sbi, block + count - 1);
5546 unsigned long cluster_count = last_cluster - first_cluster + 1;
Amir Goldstein2846e822011-05-09 10:46:41 -04005547
5548 ext4_debug("Adding block(s) %llu-%llu\n", block, block + count - 1);
5549
Yongqiang Yang4740b832011-07-26 21:51:08 -04005550 if (count == 0)
5551 return 0;
5552
Amir Goldstein2846e822011-05-09 10:46:41 -04005553 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
Amir Goldstein2846e822011-05-09 10:46:41 -04005554 /*
5555 * Check to see if we are freeing blocks across a group
5556 * boundary.
5557 */
harshadsd77147f2017-10-29 09:38:46 -04005558 if (bit + cluster_count > EXT4_CLUSTERS_PER_GROUP(sb)) {
5559 ext4_warning(sb, "too many blocks added to group %u",
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005560 block_group);
5561 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04005562 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005563 }
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04005564
Amir Goldstein2846e822011-05-09 10:46:41 -04005565 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04005566 if (IS_ERR(bitmap_bh)) {
5567 err = PTR_ERR(bitmap_bh);
5568 bitmap_bh = NULL;
Amir Goldstein2846e822011-05-09 10:46:41 -04005569 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005570 }
5571
Amir Goldstein2846e822011-05-09 10:46:41 -04005572 desc = ext4_get_group_desc(sb, block_group, &gd_bh);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005573 if (!desc) {
5574 err = -EIO;
Amir Goldstein2846e822011-05-09 10:46:41 -04005575 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005576 }
Amir Goldstein2846e822011-05-09 10:46:41 -04005577
5578 if (in_range(ext4_block_bitmap(sb, desc), block, count) ||
5579 in_range(ext4_inode_bitmap(sb, desc), block, count) ||
5580 in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) ||
5581 in_range(block + count - 1, ext4_inode_table(sb, desc),
5582 sbi->s_itb_per_group)) {
5583 ext4_error(sb, "Adding blocks in system zones - "
5584 "Block = %llu, count = %lu",
5585 block, count);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005586 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04005587 goto error_return;
5588 }
5589
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04005590 BUFFER_TRACE(bitmap_bh, "getting write access");
5591 err = ext4_journal_get_write_access(handle, bitmap_bh);
Amir Goldstein2846e822011-05-09 10:46:41 -04005592 if (err)
5593 goto error_return;
5594
5595 /*
5596 * We are about to modify some metadata. Call the journal APIs
5597 * to unshare ->b_data if a currently-committing transaction is
5598 * using it
5599 */
5600 BUFFER_TRACE(gd_bh, "get_write_access");
5601 err = ext4_journal_get_write_access(handle, gd_bh);
5602 if (err)
5603 goto error_return;
Amir Goldsteine73a3472011-05-09 21:40:01 -04005604
harshadsd77147f2017-10-29 09:38:46 -04005605 for (i = 0, clusters_freed = 0; i < cluster_count; i++) {
Amir Goldstein2846e822011-05-09 10:46:41 -04005606 BUFFER_TRACE(bitmap_bh, "clear bit");
Amir Goldsteine73a3472011-05-09 21:40:01 -04005607 if (!mb_test_bit(bit + i, bitmap_bh->b_data)) {
Amir Goldstein2846e822011-05-09 10:46:41 -04005608 ext4_error(sb, "bit already cleared for block %llu",
5609 (ext4_fsblk_t)(block + i));
5610 BUFFER_TRACE(bitmap_bh, "bit already cleared");
5611 } else {
harshadsd77147f2017-10-29 09:38:46 -04005612 clusters_freed++;
Amir Goldstein2846e822011-05-09 10:46:41 -04005613 }
5614 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04005615
5616 err = ext4_mb_load_buddy(sb, block_group, &e4b);
5617 if (err)
5618 goto error_return;
5619
5620 /*
5621 * need to update group_info->bb_free and bitmap
5622 * with group lock held. generate_buddy look at
5623 * them with group lock_held
5624 */
Amir Goldstein2846e822011-05-09 10:46:41 -04005625 ext4_lock_group(sb, block_group);
harshadsd77147f2017-10-29 09:38:46 -04005626 mb_clear_bits(bitmap_bh->b_data, bit, cluster_count);
5627 mb_free_blocks(NULL, &e4b, bit, cluster_count);
5628 free_clusters_count = clusters_freed +
5629 ext4_free_group_clusters(sb, desc);
5630 ext4_free_group_clusters_set(sb, desc, free_clusters_count);
Tao Ma79f1ba42012-10-22 00:34:32 -04005631 ext4_block_bitmap_csum_set(sb, block_group, desc, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04005632 ext4_group_desc_csum_set(sb, block_group, desc);
Amir Goldstein2846e822011-05-09 10:46:41 -04005633 ext4_unlock_group(sb, block_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04005634 percpu_counter_add(&sbi->s_freeclusters_counter,
harshadsd77147f2017-10-29 09:38:46 -04005635 clusters_freed);
Amir Goldstein2846e822011-05-09 10:46:41 -04005636
5637 if (sbi->s_log_groups_per_flex) {
5638 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
harshadsd77147f2017-10-29 09:38:46 -04005639 atomic64_add(clusters_freed,
Suraj Jitindar Singh7c990722020-02-18 19:08:51 -08005640 &sbi_array_rcu_deref(sbi, s_flex_groups,
5641 flex_group)->free_clusters);
Amir Goldstein2846e822011-05-09 10:46:41 -04005642 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04005643
5644 ext4_mb_unload_buddy(&e4b);
Amir Goldstein2846e822011-05-09 10:46:41 -04005645
5646 /* We dirtied the bitmap block */
5647 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
5648 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
5649
5650 /* And the group descriptor block */
5651 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
5652 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
5653 if (!err)
5654 err = ret;
5655
5656error_return:
5657 brelse(bitmap_bh);
5658 ext4_std_error(sb, err);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04005659 return err;
Amir Goldstein2846e822011-05-09 10:46:41 -04005660}
5661
5662/**
Lukas Czerner7360d172010-10-27 21:30:12 -04005663 * ext4_trim_extent -- function to TRIM one single free extent in the group
5664 * @sb: super block for the file system
5665 * @start: starting block of the free extent in the alloc. group
5666 * @count: number of blocks to TRIM
5667 * @group: alloc. group we are working with
5668 * @e4b: ext4 buddy for the group
5669 *
5670 * Trim "count" blocks starting at "start" in the "group". To assure that no
5671 * one will allocate those blocks, mark it as used in buddy bitmap. This must
5672 * be called with under the group lock.
5673 */
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005674static int ext4_trim_extent(struct super_block *sb, int start, int count,
Theodore Ts'od9f34502011-04-30 13:47:24 -04005675 ext4_group_t group, struct ext4_buddy *e4b)
jon ernste2cbd582014-04-12 23:01:28 -04005676__releases(bitlock)
5677__acquires(bitlock)
Lukas Czerner7360d172010-10-27 21:30:12 -04005678{
5679 struct ext4_free_extent ex;
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005680 int ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005681
Tao Mab3d4c2b2011-07-11 00:01:52 -04005682 trace_ext4_trim_extent(sb, group, start, count);
5683
Lukas Czerner7360d172010-10-27 21:30:12 -04005684 assert_spin_locked(ext4_group_lock_ptr(sb, group));
5685
5686 ex.fe_start = start;
5687 ex.fe_group = group;
5688 ex.fe_len = count;
5689
5690 /*
5691 * Mark blocks used, so no one can reuse them while
5692 * being trimmed.
5693 */
5694 mb_mark_used(e4b, &ex);
5695 ext4_unlock_group(sb, group);
Daeho Jeonga0154342017-06-22 23:54:33 -04005696 ret = ext4_issue_discard(sb, group, start, count, NULL);
Lukas Czerner7360d172010-10-27 21:30:12 -04005697 ext4_lock_group(sb, group);
5698 mb_free_blocks(NULL, e4b, start, ex.fe_len);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005699 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04005700}
5701
5702/**
5703 * ext4_trim_all_free -- function to trim all free space in alloc. group
5704 * @sb: super block for file system
Tao Ma22612282011-07-11 00:04:34 -04005705 * @group: group to be trimmed
Lukas Czerner7360d172010-10-27 21:30:12 -04005706 * @start: first group block to examine
5707 * @max: last group block to examine
5708 * @minblocks: minimum extent block count
5709 *
5710 * ext4_trim_all_free walks through group's buddy bitmap searching for free
5711 * extents. When the free block is found, ext4_trim_extent is called to TRIM
5712 * the extent.
5713 *
5714 *
5715 * ext4_trim_all_free walks through group's block bitmap searching for free
5716 * extents. When the free extent is found, mark it as used in group buddy
5717 * bitmap. Then issue a TRIM command on this extent and free the extent in
5718 * the group buddy bitmap. This is done until whole group is scanned.
5719 */
Lukas Czerner0b75a842011-02-23 12:22:49 -05005720static ext4_grpblk_t
Lukas Czerner78944082011-05-24 18:16:27 -04005721ext4_trim_all_free(struct super_block *sb, ext4_group_t group,
5722 ext4_grpblk_t start, ext4_grpblk_t max,
5723 ext4_grpblk_t minblocks)
Lukas Czerner7360d172010-10-27 21:30:12 -04005724{
5725 void *bitmap;
Tao Ma169ddc32011-07-11 00:00:07 -04005726 ext4_grpblk_t next, count = 0, free_count = 0;
Lukas Czerner78944082011-05-24 18:16:27 -04005727 struct ext4_buddy e4b;
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005728 int ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005729
Tao Mab3d4c2b2011-07-11 00:01:52 -04005730 trace_ext4_trim_all_free(sb, group, start, max);
5731
Lukas Czerner78944082011-05-24 18:16:27 -04005732 ret = ext4_mb_load_buddy(sb, group, &e4b);
5733 if (ret) {
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04005734 ext4_warning(sb, "Error %d loading buddy information for %u",
5735 ret, group);
Lukas Czerner78944082011-05-24 18:16:27 -04005736 return ret;
5737 }
Lukas Czerner78944082011-05-24 18:16:27 -04005738 bitmap = e4b.bd_bitmap;
Lukas Czerner28739ee2011-05-24 18:28:07 -04005739
5740 ext4_lock_group(sb, group);
Tao Ma3d56b8d2011-07-11 00:03:38 -04005741 if (EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) &&
5742 minblocks >= atomic_read(&EXT4_SB(sb)->s_last_trim_minblks))
5743 goto out;
5744
Lukas Czerner78944082011-05-24 18:16:27 -04005745 start = (e4b.bd_info->bb_first_free > start) ?
5746 e4b.bd_info->bb_first_free : start;
Lukas Czerner7360d172010-10-27 21:30:12 -04005747
Lukas Czerner913eed832012-03-21 21:22:22 -04005748 while (start <= max) {
5749 start = mb_find_next_zero_bit(bitmap, max + 1, start);
5750 if (start > max)
Lukas Czerner7360d172010-10-27 21:30:12 -04005751 break;
Lukas Czerner913eed832012-03-21 21:22:22 -04005752 next = mb_find_next_bit(bitmap, max + 1, start);
Lukas Czerner7360d172010-10-27 21:30:12 -04005753
5754 if ((next - start) >= minblocks) {
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005755 ret = ext4_trim_extent(sb, start,
5756 next - start, group, &e4b);
5757 if (ret && ret != -EOPNOTSUPP)
5758 break;
5759 ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005760 count += next - start;
5761 }
Tao Ma169ddc32011-07-11 00:00:07 -04005762 free_count += next - start;
Lukas Czerner7360d172010-10-27 21:30:12 -04005763 start = next + 1;
5764
5765 if (fatal_signal_pending(current)) {
5766 count = -ERESTARTSYS;
5767 break;
5768 }
5769
5770 if (need_resched()) {
5771 ext4_unlock_group(sb, group);
5772 cond_resched();
5773 ext4_lock_group(sb, group);
5774 }
5775
Tao Ma169ddc32011-07-11 00:00:07 -04005776 if ((e4b.bd_info->bb_free - free_count) < minblocks)
Lukas Czerner7360d172010-10-27 21:30:12 -04005777 break;
5778 }
Tao Ma3d56b8d2011-07-11 00:03:38 -04005779
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005780 if (!ret) {
5781 ret = count;
Tao Ma3d56b8d2011-07-11 00:03:38 -04005782 EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005783 }
Tao Ma3d56b8d2011-07-11 00:03:38 -04005784out:
Lukas Czerner7360d172010-10-27 21:30:12 -04005785 ext4_unlock_group(sb, group);
Lukas Czerner78944082011-05-24 18:16:27 -04005786 ext4_mb_unload_buddy(&e4b);
Lukas Czerner7360d172010-10-27 21:30:12 -04005787
5788 ext4_debug("trimmed %d blocks in the group %d\n",
5789 count, group);
5790
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05005791 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04005792}
5793
5794/**
5795 * ext4_trim_fs() -- trim ioctl handle function
5796 * @sb: superblock for filesystem
5797 * @range: fstrim_range structure
5798 *
5799 * start: First Byte to trim
5800 * len: number of Bytes to trim from start
5801 * minlen: minimum extent length in Bytes
5802 * ext4_trim_fs goes through all allocation groups containing Bytes from
5803 * start to start+len. For each such a group ext4_trim_all_free function
5804 * is invoked to trim all free space.
5805 */
5806int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range)
5807{
Lukas Czerner78944082011-05-24 18:16:27 -04005808 struct ext4_group_info *grp;
Lukas Czerner913eed832012-03-21 21:22:22 -04005809 ext4_group_t group, first_group, last_group;
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005810 ext4_grpblk_t cnt = 0, first_cluster, last_cluster;
Lukas Czerner913eed832012-03-21 21:22:22 -04005811 uint64_t start, end, minlen, trimmed = 0;
Jan Kara0f0a25b2011-01-11 15:16:31 -05005812 ext4_fsblk_t first_data_blk =
5813 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
Lukas Czerner913eed832012-03-21 21:22:22 -04005814 ext4_fsblk_t max_blks = ext4_blocks_count(EXT4_SB(sb)->s_es);
Lukas Czerner7360d172010-10-27 21:30:12 -04005815 int ret = 0;
5816
5817 start = range->start >> sb->s_blocksize_bits;
Lukas Czerner913eed832012-03-21 21:22:22 -04005818 end = start + (range->len >> sb->s_blocksize_bits) - 1;
Lukas Czerneraaf7d732012-09-26 22:21:21 -04005819 minlen = EXT4_NUM_B2C(EXT4_SB(sb),
5820 range->minlen >> sb->s_blocksize_bits);
Lukas Czerner7360d172010-10-27 21:30:12 -04005821
Lukas Czerner5de35e82012-10-22 18:01:19 -04005822 if (minlen > EXT4_CLUSTERS_PER_GROUP(sb) ||
5823 start >= max_blks ||
5824 range->len < sb->s_blocksize)
Lukas Czerner7360d172010-10-27 21:30:12 -04005825 return -EINVAL;
Lukas Czerner913eed832012-03-21 21:22:22 -04005826 if (end >= max_blks)
5827 end = max_blks - 1;
5828 if (end <= first_data_blk)
Tao Ma22f10452011-07-10 23:52:37 -04005829 goto out;
Lukas Czerner913eed832012-03-21 21:22:22 -04005830 if (start < first_data_blk)
Jan Kara0f0a25b2011-01-11 15:16:31 -05005831 start = first_data_blk;
Lukas Czerner7360d172010-10-27 21:30:12 -04005832
Lukas Czerner913eed832012-03-21 21:22:22 -04005833 /* Determine first and last group to examine based on start and end */
Lukas Czerner7360d172010-10-27 21:30:12 -04005834 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) start,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005835 &first_group, &first_cluster);
Lukas Czerner913eed832012-03-21 21:22:22 -04005836 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) end,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005837 &last_group, &last_cluster);
Lukas Czerner7360d172010-10-27 21:30:12 -04005838
Lukas Czerner913eed832012-03-21 21:22:22 -04005839 /* end now represents the last cluster to discard in this group */
5840 end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
Lukas Czerner7360d172010-10-27 21:30:12 -04005841
5842 for (group = first_group; group <= last_group; group++) {
Lukas Czerner78944082011-05-24 18:16:27 -04005843 grp = ext4_get_group_info(sb, group);
5844 /* We only do this if the grp has never been initialized */
5845 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04005846 ret = ext4_mb_init_group(sb, group, GFP_NOFS);
Lukas Czerner78944082011-05-24 18:16:27 -04005847 if (ret)
5848 break;
Lukas Czerner7360d172010-10-27 21:30:12 -04005849 }
5850
Tao Ma0ba08512011-03-23 15:48:11 -04005851 /*
Lukas Czerner913eed832012-03-21 21:22:22 -04005852 * For all the groups except the last one, last cluster will
5853 * always be EXT4_CLUSTERS_PER_GROUP(sb)-1, so we only need to
5854 * change it for the last group, note that last_cluster is
5855 * already computed earlier by ext4_get_group_no_and_offset()
Tao Ma0ba08512011-03-23 15:48:11 -04005856 */
Lukas Czerner913eed832012-03-21 21:22:22 -04005857 if (group == last_group)
5858 end = last_cluster;
Lukas Czerner7360d172010-10-27 21:30:12 -04005859
Lukas Czerner78944082011-05-24 18:16:27 -04005860 if (grp->bb_free >= minlen) {
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005861 cnt = ext4_trim_all_free(sb, group, first_cluster,
Lukas Czerner913eed832012-03-21 21:22:22 -04005862 end, minlen);
Lukas Czerner7360d172010-10-27 21:30:12 -04005863 if (cnt < 0) {
5864 ret = cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04005865 break;
5866 }
Lukas Czerner21e7fd22012-03-21 21:24:22 -04005867 trimmed += cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04005868 }
Lukas Czerner913eed832012-03-21 21:22:22 -04005869
5870 /*
5871 * For every group except the first one, we are sure
5872 * that the first cluster to discard will be cluster #0.
5873 */
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04005874 first_cluster = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04005875 }
Lukas Czerner7360d172010-10-27 21:30:12 -04005876
Tao Ma3d56b8d2011-07-11 00:03:38 -04005877 if (!ret)
5878 atomic_set(&EXT4_SB(sb)->s_last_trim_minblks, minlen);
5879
Tao Ma22f10452011-07-10 23:52:37 -04005880out:
Lukas Czerneraaf7d732012-09-26 22:21:21 -04005881 range->len = EXT4_C2B(EXT4_SB(sb), trimmed) << sb->s_blocksize_bits;
Lukas Czerner7360d172010-10-27 21:30:12 -04005882 return ret;
5883}
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -04005884
5885/* Iterate all the free extents in the group. */
5886int
5887ext4_mballoc_query_range(
5888 struct super_block *sb,
5889 ext4_group_t group,
5890 ext4_grpblk_t start,
5891 ext4_grpblk_t end,
5892 ext4_mballoc_query_range_fn formatter,
5893 void *priv)
5894{
5895 void *bitmap;
5896 ext4_grpblk_t next;
5897 struct ext4_buddy e4b;
5898 int error;
5899
5900 error = ext4_mb_load_buddy(sb, group, &e4b);
5901 if (error)
5902 return error;
5903 bitmap = e4b.bd_bitmap;
5904
5905 ext4_lock_group(sb, group);
5906
5907 start = (e4b.bd_info->bb_first_free > start) ?
5908 e4b.bd_info->bb_first_free : start;
5909 if (end >= EXT4_CLUSTERS_PER_GROUP(sb))
5910 end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
5911
5912 while (start <= end) {
5913 start = mb_find_next_zero_bit(bitmap, end + 1, start);
5914 if (start > end)
5915 break;
5916 next = mb_find_next_bit(bitmap, end + 1, start);
5917
5918 ext4_unlock_group(sb, group);
5919 error = formatter(sb, group, start, next - start, priv);
5920 if (error)
5921 goto out_unload;
5922 ext4_lock_group(sb, group);
5923
5924 start = next + 1;
5925 }
5926
5927 ext4_unlock_group(sb, group);
5928out_unload:
5929 ext4_mb_unload_buddy(&e4b);
5930
5931 return error;
5932}