blob: 67ac95c4cd9b8308e9ab60d2fbaea55514d9c0ca [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 *
Harshad Shirwadkar196e4022021-04-01 10:21:27 -0700130 * If "mb_optimize_scan" mount option is set, we maintain in memory group info
131 * structures in two data structures:
132 *
133 * 1) Array of largest free order lists (sbi->s_mb_largest_free_orders)
134 *
135 * Locking: sbi->s_mb_largest_free_orders_locks(array of rw locks)
136 *
137 * This is an array of lists where the index in the array represents the
138 * largest free order in the buddy bitmap of the participating group infos of
139 * that list. So, there are exactly MB_NUM_ORDERS(sb) (which means total
140 * number of buddy bitmap orders possible) number of lists. Group-infos are
141 * placed in appropriate lists.
142 *
143 * 2) Average fragment size rb tree (sbi->s_mb_avg_fragment_size_root)
144 *
145 * Locking: sbi->s_mb_rb_lock (rwlock)
146 *
147 * This is a red black tree consisting of group infos and the tree is sorted
148 * by average fragment sizes (which is calculated as ext4_group_info->bb_free
149 * / ext4_group_info->bb_fragments).
150 *
151 * When "mb_optimize_scan" mount option is set, mballoc consults the above data
152 * structures to decide the order in which groups are to be traversed for
153 * fulfilling an allocation request.
154 *
155 * At CR = 0, we look for groups which have the largest_free_order >= the order
156 * of the request. We directly look at the largest free order list in the data
157 * structure (1) above where largest_free_order = order of the request. If that
158 * list is empty, we look at remaining list in the increasing order of
159 * largest_free_order. This allows us to perform CR = 0 lookup in O(1) time.
160 *
161 * At CR = 1, we only consider groups where average fragment size > request
162 * size. So, we lookup a group which has average fragment size just above or
163 * equal to request size using our rb tree (data structure 2) in O(log N) time.
164 *
165 * If "mb_optimize_scan" mount option is not set, mballoc traverses groups in
166 * linear order which requires O(N) search time for each CR 0 and CR 1 phase.
167 *
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -0400168 * The regular allocator (using the buddy cache) supports a few tunables.
Alex Tomasc9de5602008-01-29 00:19:52 -0500169 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400170 * /sys/fs/ext4/<partition>/mb_min_to_scan
171 * /sys/fs/ext4/<partition>/mb_max_to_scan
172 * /sys/fs/ext4/<partition>/mb_order2_req
Harshad Shirwadkar196e4022021-04-01 10:21:27 -0700173 * /sys/fs/ext4/<partition>/mb_linear_limit
Alex Tomasc9de5602008-01-29 00:19:52 -0500174 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400175 * The regular allocator uses buddy scan only if the request len is power of
Alex Tomasc9de5602008-01-29 00:19:52 -0500176 * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The
177 * value of s_mb_order2_reqs can be tuned via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400178 * /sys/fs/ext4/<partition>/mb_order2_req. If the request len is equal to
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200179 * stripe size (sbi->s_stripe), we try to search for contiguous block in
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400180 * stripe size. This should result in better allocation on RAID setups. If
181 * not, we search in the specific group using bitmap for best extents. The
182 * tunable min_to_scan and max_to_scan control the behaviour here.
Alex Tomasc9de5602008-01-29 00:19:52 -0500183 * min_to_scan indicate how long the mballoc __must__ look for a best
Theodore Ts'ob713a5e2009-03-31 09:11:14 -0400184 * extent and max_to_scan indicates how long the mballoc __can__ look for a
Alex Tomasc9de5602008-01-29 00:19:52 -0500185 * best extent in the found extents. Searching for the blocks starts with
186 * the group specified as the goal value in allocation context via
187 * ac_g_ex. Each group is first checked based on the criteria whether it
Tao Macaaf7a22011-07-11 18:42:42 -0400188 * can be used for allocation. ext4_mb_good_group explains how the groups are
Alex Tomasc9de5602008-01-29 00:19:52 -0500189 * checked.
190 *
Harshad Shirwadkar196e4022021-04-01 10:21:27 -0700191 * When "mb_optimize_scan" is turned on, as mentioned above, the groups may not
192 * get traversed linearly. That may result in subsequent allocations being not
193 * close to each other. And so, the underlying device may get filled up in a
194 * non-linear fashion. While that may not matter on non-rotational devices, for
195 * rotational devices that may result in higher seek times. "mb_linear_limit"
196 * tells mballoc how many groups mballoc should search linearly before
197 * performing consulting above data structures for more efficient lookups. For
198 * non rotational devices, this value defaults to 0 and for rotational devices
199 * this is set to MB_DEFAULT_LINEAR_LIMIT.
200 *
Alex Tomasc9de5602008-01-29 00:19:52 -0500201 * Both the prealloc space are getting populated as above. So for the first
202 * request we will hit the buddy cache which will result in this prealloc
203 * space getting filled. The prealloc space is then later used for the
204 * subsequent request.
205 */
206
207/*
208 * mballoc operates on the following data:
209 * - on-disk bitmap
210 * - in-core buddy (actually includes buddy and bitmap)
211 * - preallocation descriptors (PAs)
212 *
213 * there are two types of preallocations:
214 * - inode
215 * assiged to specific inode and can be used for this inode only.
216 * it describes part of inode's space preallocated to specific
217 * physical blocks. any block from that preallocated can be used
218 * independent. the descriptor just tracks number of blocks left
219 * unused. so, before taking some block from descriptor, one must
220 * make sure corresponded logical block isn't allocated yet. this
221 * also means that freeing any block within descriptor's range
222 * must discard all preallocated blocks.
223 * - locality group
224 * assigned to specific locality group which does not translate to
225 * permanent set of inodes: inode can join and leave group. space
226 * from this type of preallocation can be used for any inode. thus
227 * it's consumed from the beginning to the end.
228 *
229 * relation between them can be expressed as:
230 * in-core buddy = on-disk bitmap + preallocation descriptors
231 *
232 * this mean blocks mballoc considers used are:
233 * - allocated blocks (persistent)
234 * - preallocated blocks (non-persistent)
235 *
236 * consistency in mballoc world means that at any time a block is either
237 * free or used in ALL structures. notice: "any time" should not be read
238 * literally -- time is discrete and delimited by locks.
239 *
240 * to keep it simple, we don't use block numbers, instead we count number of
241 * blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA.
242 *
243 * all operations can be expressed as:
244 * - init buddy: buddy = on-disk + PAs
245 * - new PA: buddy += N; PA = N
246 * - use inode PA: on-disk += N; PA -= N
247 * - discard inode PA buddy -= on-disk - PA; PA = 0
248 * - use locality group PA on-disk += N; PA -= N
249 * - discard locality group PA buddy -= PA; PA = 0
250 * note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap
251 * is used in real operation because we can't know actual used
252 * bits from PA, only from on-disk bitmap
253 *
254 * if we follow this strict logic, then all operations above should be atomic.
255 * given some of them can block, we'd have to use something like semaphores
256 * killing performance on high-end SMP hardware. let's try to relax it using
257 * the following knowledge:
258 * 1) if buddy is referenced, it's already initialized
259 * 2) while block is used in buddy and the buddy is referenced,
260 * nobody can re-allocate that block
261 * 3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has
262 * bit set and PA claims same block, it's OK. IOW, one can set bit in
263 * on-disk bitmap if buddy has same bit set or/and PA covers corresponded
264 * block
265 *
266 * so, now we're building a concurrency table:
267 * - init buddy vs.
268 * - new PA
269 * blocks for PA are allocated in the buddy, buddy must be referenced
270 * until PA is linked to allocation group to avoid concurrent buddy init
271 * - use inode PA
272 * we need to make sure that either on-disk bitmap or PA has uptodate data
273 * given (3) we care that PA-=N operation doesn't interfere with init
274 * - discard inode PA
275 * the simplest way would be to have buddy initialized by the discard
276 * - use locality group PA
277 * again PA-=N must be serialized with init
278 * - discard locality group PA
279 * the simplest way would be to have buddy initialized by the discard
280 * - new PA vs.
281 * - use inode PA
282 * i_data_sem serializes them
283 * - discard inode PA
284 * discard process must wait until PA isn't used by another process
285 * - use locality group PA
286 * some mutex should serialize them
287 * - discard locality group PA
288 * discard process must wait until PA isn't used by another process
289 * - use inode PA
290 * - use inode PA
291 * i_data_sem or another mutex should serializes them
292 * - discard inode PA
293 * discard process must wait until PA isn't used by another process
294 * - use locality group PA
295 * nothing wrong here -- they're different PAs covering different blocks
296 * - discard locality group PA
297 * discard process must wait until PA isn't used by another process
298 *
299 * now we're ready to make few consequences:
300 * - PA is referenced and while it is no discard is possible
301 * - PA is referenced until block isn't marked in on-disk bitmap
302 * - PA changes only after on-disk bitmap
303 * - discard must not compete with init. either init is done before
304 * any discard or they're serialized somehow
305 * - buddy init as sum of on-disk bitmap and PAs is done atomically
306 *
307 * a special case when we've used PA to emptiness. no need to modify buddy
308 * in this case, but we should care about concurrent init
309 *
310 */
311
312 /*
313 * Logic in few words:
314 *
315 * - allocation:
316 * load group
317 * find blocks
318 * mark bits in on-disk bitmap
319 * release group
320 *
321 * - use preallocation:
322 * find proper PA (per-inode or group)
323 * load group
324 * mark bits in on-disk bitmap
325 * release group
326 * release PA
327 *
328 * - free:
329 * load group
330 * mark bits in on-disk bitmap
331 * release group
332 *
333 * - discard preallocations in group:
334 * mark PAs deleted
335 * move them onto local list
336 * load on-disk bitmap
337 * load group
338 * remove PA from object (inode or locality group)
339 * mark free blocks in-core
340 *
341 * - discard inode's preallocations:
342 */
343
344/*
345 * Locking rules
346 *
347 * Locks:
348 * - bitlock on a group (group)
349 * - object (inode/locality) (object)
350 * - per-pa lock (pa)
Harshad Shirwadkar196e4022021-04-01 10:21:27 -0700351 * - cr0 lists lock (cr0)
352 * - cr1 tree lock (cr1)
Alex Tomasc9de5602008-01-29 00:19:52 -0500353 *
354 * Paths:
355 * - new pa
356 * object
357 * group
358 *
359 * - find and use pa:
360 * pa
361 *
362 * - release consumed pa:
363 * pa
364 * group
365 * object
366 *
367 * - generate in-core bitmap:
368 * group
369 * pa
370 *
371 * - discard all for given object (inode, locality group):
372 * object
373 * pa
374 * group
375 *
376 * - discard all for given group:
377 * group
378 * pa
379 * group
380 * object
381 *
Harshad Shirwadkar196e4022021-04-01 10:21:27 -0700382 * - allocation path (ext4_mb_regular_allocator)
383 * group
384 * cr0/cr1
Alex Tomasc9de5602008-01-29 00:19:52 -0500385 */
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500386static struct kmem_cache *ext4_pspace_cachep;
387static struct kmem_cache *ext4_ac_cachep;
Bobi Jam18aadd42012-02-20 17:53:02 -0500388static struct kmem_cache *ext4_free_data_cachep;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400389
390/* We create slab caches for groupinfo data structures based on the
391 * superblock block size. There will be one per mounted filesystem for
392 * each unique s_blocksize_bits */
Eric Sandeen2892c152011-02-12 08:12:18 -0500393#define NR_GRPINFO_CACHES 8
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -0400394static struct kmem_cache *ext4_groupinfo_caches[NR_GRPINFO_CACHES];
395
Eric Biggersd6006182017-04-29 23:47:50 -0400396static const char * const ext4_groupinfo_slab_names[NR_GRPINFO_CACHES] = {
Eric Sandeen2892c152011-02-12 08:12:18 -0500397 "ext4_groupinfo_1k", "ext4_groupinfo_2k", "ext4_groupinfo_4k",
398 "ext4_groupinfo_8k", "ext4_groupinfo_16k", "ext4_groupinfo_32k",
399 "ext4_groupinfo_64k", "ext4_groupinfo_128k"
400};
401
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500402static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
403 ext4_group_t group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -0500404static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
405 ext4_group_t group);
Ritesh Harjani53f86b12020-05-20 12:10:32 +0530406static void ext4_mb_new_preallocation(struct ext4_allocation_context *ac);
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -0500407
Harshad Shirwadkar196e4022021-04-01 10:21:27 -0700408static bool ext4_mb_good_group(struct ext4_allocation_context *ac,
409 ext4_group_t group, int cr);
410
Wang Jianchao55cdd0a2021-07-24 15:41:23 +0800411static int ext4_try_to_trim_range(struct super_block *sb,
412 struct ext4_buddy *e4b, ext4_grpblk_t start,
413 ext4_grpblk_t max, ext4_grpblk_t minblocks);
414
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +0530415/*
416 * The algorithm using this percpu seq counter goes below:
417 * 1. We sample the percpu discard_pa_seq counter before trying for block
418 * allocation in ext4_mb_new_blocks().
419 * 2. We increment this percpu discard_pa_seq counter when we either allocate
420 * or free these blocks i.e. while marking those blocks as used/free in
421 * mb_mark_used()/mb_free_blocks().
422 * 3. We also increment this percpu seq counter when we successfully identify
423 * that the bb_prealloc_list is not empty and hence proceed for discarding
424 * of those PAs inside ext4_mb_discard_group_preallocations().
425 *
426 * Now to make sure that the regular fast path of block allocation is not
427 * affected, as a small optimization we only sample the percpu seq counter
428 * on that cpu. Only when the block allocation fails and when freed blocks
429 * found were 0, that is when we sample percpu seq counter for all cpus using
430 * below function ext4_get_discard_pa_seq_sum(). This happens after making
431 * sure that all the PAs on grp->bb_prealloc_list got freed or if it's empty.
432 */
433static DEFINE_PER_CPU(u64, discard_pa_seq);
434static inline u64 ext4_get_discard_pa_seq_sum(void)
435{
436 int __cpu;
437 u64 __seq = 0;
438
439 for_each_possible_cpu(__cpu)
440 __seq += per_cpu(discard_pa_seq, __cpu);
441 return __seq;
442}
443
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500444static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
445{
Alex Tomasc9de5602008-01-29 00:19:52 -0500446#if BITS_PER_LONG == 64
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500447 *bit += ((unsigned long) addr & 7UL) << 3;
448 addr = (void *) ((unsigned long) addr & ~7UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500449#elif BITS_PER_LONG == 32
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500450 *bit += ((unsigned long) addr & 3UL) << 3;
451 addr = (void *) ((unsigned long) addr & ~3UL);
Alex Tomasc9de5602008-01-29 00:19:52 -0500452#else
453#error "how many bits you are?!"
454#endif
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500455 return addr;
456}
Alex Tomasc9de5602008-01-29 00:19:52 -0500457
458static inline int mb_test_bit(int bit, void *addr)
459{
460 /*
461 * ext4_test_bit on architecture like powerpc
462 * needs unsigned long aligned address
463 */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500464 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500465 return ext4_test_bit(bit, addr);
466}
467
468static inline void mb_set_bit(int bit, void *addr)
469{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500470 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500471 ext4_set_bit(bit, addr);
472}
473
Alex Tomasc9de5602008-01-29 00:19:52 -0500474static inline void mb_clear_bit(int bit, void *addr)
475{
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500476 addr = mb_correct_addr_and_bit(&bit, addr);
Alex Tomasc9de5602008-01-29 00:19:52 -0500477 ext4_clear_bit(bit, addr);
478}
479
Andrey Sidoroveabe0442013-04-09 12:22:29 -0400480static inline int mb_test_and_clear_bit(int bit, void *addr)
481{
482 addr = mb_correct_addr_and_bit(&bit, addr);
483 return ext4_test_and_clear_bit(bit, addr);
484}
485
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500486static inline int mb_find_next_zero_bit(void *addr, int max, int start)
487{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400488 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500489 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400490 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500491 start += fix;
492
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400493 ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix;
494 if (ret > max)
495 return max;
496 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500497}
498
499static inline int mb_find_next_bit(void *addr, int max, int start)
500{
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400501 int fix = 0, ret, tmpmax;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500502 addr = mb_correct_addr_and_bit(&fix, addr);
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400503 tmpmax = max + fix;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500504 start += fix;
505
Aneesh Kumar K.Ve7dfb242008-07-11 19:27:31 -0400506 ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
507 if (ret > max)
508 return max;
509 return ret;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -0500510}
511
Alex Tomasc9de5602008-01-29 00:19:52 -0500512static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
513{
514 char *bb;
515
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500516 BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
Alex Tomasc9de5602008-01-29 00:19:52 -0500517 BUG_ON(max == NULL);
518
519 if (order > e4b->bd_blkbits + 1) {
520 *max = 0;
521 return NULL;
522 }
523
524 /* at order 0 we see each particular block */
Coly Li84b775a2011-02-24 12:51:59 -0500525 if (order == 0) {
526 *max = 1 << (e4b->bd_blkbits + 3);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500527 return e4b->bd_bitmap;
Coly Li84b775a2011-02-24 12:51:59 -0500528 }
Alex Tomasc9de5602008-01-29 00:19:52 -0500529
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500530 bb = e4b->bd_buddy + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
Alex Tomasc9de5602008-01-29 00:19:52 -0500531 *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
532
533 return bb;
534}
535
536#ifdef DOUBLE_CHECK
537static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
538 int first, int count)
539{
540 int i;
541 struct super_block *sb = e4b->bd_sb;
542
543 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
544 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400545 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500546 for (i = 0; i < count; i++) {
547 if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
548 ext4_fsblk_t blocknr;
Akinobu Mita5661bd62010-03-03 23:53:39 -0500549
550 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Theodore Ts'o53accfa2011-09-09 18:48:51 -0400551 blocknr += EXT4_C2B(EXT4_SB(sb), first + i);
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500552 ext4_grp_locked_error(sb, e4b->bd_group,
Theodore Ts'oe29136f2010-06-29 12:54:28 -0400553 inode ? inode->i_ino : 0,
554 blocknr,
555 "freeing block already freed "
556 "(bit %u)",
557 first + i);
Wang Shilong736dedb2018-05-12 12:37:58 -0400558 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
559 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Alex Tomasc9de5602008-01-29 00:19:52 -0500560 }
561 mb_clear_bit(first + i, e4b->bd_info->bb_bitmap);
562 }
563}
564
565static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count)
566{
567 int i;
568
569 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
570 return;
Vincent Minetbc8e6742009-05-15 08:33:18 -0400571 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -0500572 for (i = 0; i < count; i++) {
573 BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap));
574 mb_set_bit(first + i, e4b->bd_info->bb_bitmap);
575 }
576}
577
578static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
579{
Ritesh Harjanieb2b8eb2020-05-10 11:54:49 +0530580 if (unlikely(e4b->bd_info->bb_bitmap == NULL))
581 return;
Alex Tomasc9de5602008-01-29 00:19:52 -0500582 if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) {
583 unsigned char *b1, *b2;
584 int i;
585 b1 = (unsigned char *) e4b->bd_info->bb_bitmap;
586 b2 = (unsigned char *) bitmap;
587 for (i = 0; i < e4b->bd_sb->s_blocksize; i++) {
588 if (b1[i] != b2[i]) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -0400589 ext4_msg(e4b->bd_sb, KERN_ERR,
590 "corruption in group %u "
591 "at byte %u(%u): %x in copy != %x "
592 "on disk/prealloc",
593 e4b->bd_group, i, i * 8, b1[i], b2[i]);
Alex Tomasc9de5602008-01-29 00:19:52 -0500594 BUG();
595 }
596 }
597 }
598}
599
Ritesh Harjania3450212020-05-10 11:54:48 +0530600static void mb_group_bb_bitmap_alloc(struct super_block *sb,
601 struct ext4_group_info *grp, ext4_group_t group)
602{
603 struct buffer_head *bh;
604
605 grp->bb_bitmap = kmalloc(sb->s_blocksize, GFP_NOFS);
Ritesh Harjanieb2b8eb2020-05-10 11:54:49 +0530606 if (!grp->bb_bitmap)
607 return;
Ritesh Harjania3450212020-05-10 11:54:48 +0530608
609 bh = ext4_read_block_bitmap(sb, group);
Ritesh Harjanieb2b8eb2020-05-10 11:54:49 +0530610 if (IS_ERR_OR_NULL(bh)) {
611 kfree(grp->bb_bitmap);
612 grp->bb_bitmap = NULL;
613 return;
614 }
Ritesh Harjania3450212020-05-10 11:54:48 +0530615
616 memcpy(grp->bb_bitmap, bh->b_data, sb->s_blocksize);
617 put_bh(bh);
618}
619
620static void mb_group_bb_bitmap_free(struct ext4_group_info *grp)
621{
622 kfree(grp->bb_bitmap);
623}
624
Alex Tomasc9de5602008-01-29 00:19:52 -0500625#else
626static inline void mb_free_blocks_double(struct inode *inode,
627 struct ext4_buddy *e4b, int first, int count)
628{
629 return;
630}
631static inline void mb_mark_used_double(struct ext4_buddy *e4b,
632 int first, int count)
633{
634 return;
635}
636static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
637{
638 return;
639}
Ritesh Harjania3450212020-05-10 11:54:48 +0530640
641static inline void mb_group_bb_bitmap_alloc(struct super_block *sb,
642 struct ext4_group_info *grp, ext4_group_t group)
643{
644 return;
645}
646
647static inline void mb_group_bb_bitmap_free(struct ext4_group_info *grp)
648{
649 return;
650}
Alex Tomasc9de5602008-01-29 00:19:52 -0500651#endif
652
653#ifdef AGGRESSIVE_CHECK
654
655#define MB_CHECK_ASSERT(assert) \
656do { \
657 if (!(assert)) { \
658 printk(KERN_EMERG \
659 "Assertion failure in %s() at %s:%d: \"%s\"\n", \
660 function, file, line, # assert); \
661 BUG(); \
662 } \
663} while (0)
664
665static int __mb_check_buddy(struct ext4_buddy *e4b, char *file,
666 const char *function, int line)
667{
668 struct super_block *sb = e4b->bd_sb;
669 int order = e4b->bd_blkbits + 1;
670 int max;
671 int max2;
672 int i;
673 int j;
674 int k;
675 int count;
676 struct ext4_group_info *grp;
677 int fragments = 0;
678 int fstart;
679 struct list_head *cur;
680 void *buddy;
681 void *buddy2;
682
Chunguang Xuaddd7522020-09-28 19:36:35 +0800683 if (e4b->bd_info->bb_check_counter++ % 10)
684 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -0500685
686 while (order > 1) {
687 buddy = mb_find_buddy(e4b, order, &max);
688 MB_CHECK_ASSERT(buddy);
689 buddy2 = mb_find_buddy(e4b, order - 1, &max2);
690 MB_CHECK_ASSERT(buddy2);
691 MB_CHECK_ASSERT(buddy != buddy2);
692 MB_CHECK_ASSERT(max * 2 == max2);
693
694 count = 0;
695 for (i = 0; i < max; i++) {
696
697 if (mb_test_bit(i, buddy)) {
698 /* only single bit in buddy2 may be 1 */
699 if (!mb_test_bit(i << 1, buddy2)) {
700 MB_CHECK_ASSERT(
701 mb_test_bit((i<<1)+1, buddy2));
702 } else if (!mb_test_bit((i << 1) + 1, buddy2)) {
703 MB_CHECK_ASSERT(
704 mb_test_bit(i << 1, buddy2));
705 }
706 continue;
707 }
708
Robin Dong0a10da72011-10-26 08:48:54 -0400709 /* both bits in buddy2 must be 1 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500710 MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2));
711 MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2));
712
713 for (j = 0; j < (1 << order); j++) {
714 k = (i * (1 << order)) + j;
715 MB_CHECK_ASSERT(
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -0500716 !mb_test_bit(k, e4b->bd_bitmap));
Alex Tomasc9de5602008-01-29 00:19:52 -0500717 }
718 count++;
719 }
720 MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count);
721 order--;
722 }
723
724 fstart = -1;
725 buddy = mb_find_buddy(e4b, 0, &max);
726 for (i = 0; i < max; i++) {
727 if (!mb_test_bit(i, buddy)) {
728 MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free);
729 if (fstart == -1) {
730 fragments++;
731 fstart = i;
732 }
733 continue;
734 }
735 fstart = -1;
736 /* check used bits only */
737 for (j = 0; j < e4b->bd_blkbits + 1; j++) {
738 buddy2 = mb_find_buddy(e4b, j, &max2);
739 k = i >> j;
740 MB_CHECK_ASSERT(k < max2);
741 MB_CHECK_ASSERT(mb_test_bit(k, buddy2));
742 }
743 }
744 MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info));
745 MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments);
746
747 grp = ext4_get_group_info(sb, e4b->bd_group);
Alex Tomasc9de5602008-01-29 00:19:52 -0500748 list_for_each(cur, &grp->bb_prealloc_list) {
749 ext4_group_t groupnr;
750 struct ext4_prealloc_space *pa;
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400751 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
752 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k);
Alex Tomasc9de5602008-01-29 00:19:52 -0500753 MB_CHECK_ASSERT(groupnr == e4b->bd_group);
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -0400754 for (i = 0; i < pa->pa_len; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -0500755 MB_CHECK_ASSERT(mb_test_bit(k + i, buddy));
756 }
757 return 0;
758}
759#undef MB_CHECK_ASSERT
760#define mb_check_buddy(e4b) __mb_check_buddy(e4b, \
Harvey Harrison46e665e2008-04-17 10:38:59 -0400761 __FILE__, __func__, __LINE__)
Alex Tomasc9de5602008-01-29 00:19:52 -0500762#else
763#define mb_check_buddy(e4b)
764#endif
765
Coly Li7c786052011-02-24 13:24:25 -0500766/*
767 * Divide blocks started from @first with length @len into
768 * smaller chunks with power of 2 blocks.
769 * Clear the bits in bitmap which the blocks of the chunk(s) covered,
770 * then increase bb_counters[] for corresponded chunk size.
771 */
Alex Tomasc9de5602008-01-29 00:19:52 -0500772static void ext4_mb_mark_free_simple(struct super_block *sb,
Eric Sandeena36b4492009-08-25 22:36:45 -0400773 void *buddy, ext4_grpblk_t first, ext4_grpblk_t len,
Alex Tomasc9de5602008-01-29 00:19:52 -0500774 struct ext4_group_info *grp)
775{
776 struct ext4_sb_info *sbi = EXT4_SB(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -0400777 ext4_grpblk_t min;
778 ext4_grpblk_t max;
779 ext4_grpblk_t chunk;
Chandan Rajendra69e43e82016-11-14 21:04:37 -0500780 unsigned int border;
Alex Tomasc9de5602008-01-29 00:19:52 -0500781
Theodore Ts'o7137d7a2011-09-09 18:38:51 -0400782 BUG_ON(len > EXT4_CLUSTERS_PER_GROUP(sb));
Alex Tomasc9de5602008-01-29 00:19:52 -0500783
784 border = 2 << sb->s_blocksize_bits;
785
786 while (len > 0) {
787 /* find how many blocks can be covered since this position */
788 max = ffs(first | border) - 1;
789
790 /* find how many blocks of power 2 we need to mark */
791 min = fls(len) - 1;
792
793 if (max < min)
794 min = max;
795 chunk = 1 << min;
796
797 /* mark multiblock chunks only */
798 grp->bb_counters[min]++;
799 if (min > 0)
800 mb_clear_bit(first >> min,
801 buddy + sbi->s_mb_offsets[min]);
802
803 len -= chunk;
804 first += chunk;
805 }
806}
807
Harshad Shirwadkar196e4022021-04-01 10:21:27 -0700808static void ext4_mb_rb_insert(struct rb_root *root, struct rb_node *new,
809 int (*cmp)(struct rb_node *, struct rb_node *))
810{
811 struct rb_node **iter = &root->rb_node, *parent = NULL;
812
813 while (*iter) {
814 parent = *iter;
815 if (cmp(new, *iter) > 0)
816 iter = &((*iter)->rb_left);
817 else
818 iter = &((*iter)->rb_right);
819 }
820
821 rb_link_node(new, parent, iter);
822 rb_insert_color(new, root);
823}
824
825static int
826ext4_mb_avg_fragment_size_cmp(struct rb_node *rb1, struct rb_node *rb2)
827{
828 struct ext4_group_info *grp1 = rb_entry(rb1,
829 struct ext4_group_info,
830 bb_avg_fragment_size_rb);
831 struct ext4_group_info *grp2 = rb_entry(rb2,
832 struct ext4_group_info,
833 bb_avg_fragment_size_rb);
834 int num_frags_1, num_frags_2;
835
836 num_frags_1 = grp1->bb_fragments ?
837 grp1->bb_free / grp1->bb_fragments : 0;
838 num_frags_2 = grp2->bb_fragments ?
839 grp2->bb_free / grp2->bb_fragments : 0;
840
841 return (num_frags_2 - num_frags_1);
842}
843
844/*
845 * Reinsert grpinfo into the avg_fragment_size tree with new average
846 * fragment size.
847 */
848static void
849mb_update_avg_fragment_size(struct super_block *sb, struct ext4_group_info *grp)
850{
851 struct ext4_sb_info *sbi = EXT4_SB(sb);
852
853 if (!test_opt2(sb, MB_OPTIMIZE_SCAN) || grp->bb_free == 0)
854 return;
855
856 write_lock(&sbi->s_mb_rb_lock);
857 if (!RB_EMPTY_NODE(&grp->bb_avg_fragment_size_rb)) {
858 rb_erase(&grp->bb_avg_fragment_size_rb,
859 &sbi->s_mb_avg_fragment_size_root);
860 RB_CLEAR_NODE(&grp->bb_avg_fragment_size_rb);
861 }
862
863 ext4_mb_rb_insert(&sbi->s_mb_avg_fragment_size_root,
864 &grp->bb_avg_fragment_size_rb,
865 ext4_mb_avg_fragment_size_cmp);
866 write_unlock(&sbi->s_mb_rb_lock);
867}
868
869/*
870 * Choose next group by traversing largest_free_order lists. Updates *new_cr if
871 * cr level needs an update.
872 */
873static void ext4_mb_choose_next_group_cr0(struct ext4_allocation_context *ac,
874 int *new_cr, ext4_group_t *group, ext4_group_t ngroups)
875{
876 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
877 struct ext4_group_info *iter, *grp;
878 int i;
879
880 if (ac->ac_status == AC_STATUS_FOUND)
881 return;
882
883 if (unlikely(sbi->s_mb_stats && ac->ac_flags & EXT4_MB_CR0_OPTIMIZED))
884 atomic_inc(&sbi->s_bal_cr0_bad_suggestions);
885
886 grp = NULL;
887 for (i = ac->ac_2order; i < MB_NUM_ORDERS(ac->ac_sb); i++) {
888 if (list_empty(&sbi->s_mb_largest_free_orders[i]))
889 continue;
890 read_lock(&sbi->s_mb_largest_free_orders_locks[i]);
891 if (list_empty(&sbi->s_mb_largest_free_orders[i])) {
892 read_unlock(&sbi->s_mb_largest_free_orders_locks[i]);
893 continue;
894 }
895 grp = NULL;
896 list_for_each_entry(iter, &sbi->s_mb_largest_free_orders[i],
897 bb_largest_free_order_node) {
898 if (sbi->s_mb_stats)
899 atomic64_inc(&sbi->s_bal_cX_groups_considered[0]);
900 if (likely(ext4_mb_good_group(ac, iter->bb_group, 0))) {
901 grp = iter;
902 break;
903 }
904 }
905 read_unlock(&sbi->s_mb_largest_free_orders_locks[i]);
906 if (grp)
907 break;
908 }
909
910 if (!grp) {
911 /* Increment cr and search again */
912 *new_cr = 1;
913 } else {
914 *group = grp->bb_group;
915 ac->ac_last_optimal_group = *group;
916 ac->ac_flags |= EXT4_MB_CR0_OPTIMIZED;
917 }
918}
919
920/*
921 * Choose next group by traversing average fragment size tree. Updates *new_cr
922 * if cr lvel needs an update. Sets EXT4_MB_SEARCH_NEXT_LINEAR to indicate that
923 * the linear search should continue for one iteration since there's lock
924 * contention on the rb tree lock.
925 */
926static void ext4_mb_choose_next_group_cr1(struct ext4_allocation_context *ac,
927 int *new_cr, ext4_group_t *group, ext4_group_t ngroups)
928{
929 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
930 int avg_fragment_size, best_so_far;
931 struct rb_node *node, *found;
932 struct ext4_group_info *grp;
933
934 /*
935 * If there is contention on the lock, instead of waiting for the lock
936 * to become available, just continue searching lineraly. We'll resume
937 * our rb tree search later starting at ac->ac_last_optimal_group.
938 */
939 if (!read_trylock(&sbi->s_mb_rb_lock)) {
940 ac->ac_flags |= EXT4_MB_SEARCH_NEXT_LINEAR;
941 return;
942 }
943
944 if (unlikely(ac->ac_flags & EXT4_MB_CR1_OPTIMIZED)) {
945 if (sbi->s_mb_stats)
946 atomic_inc(&sbi->s_bal_cr1_bad_suggestions);
947 /* We have found something at CR 1 in the past */
948 grp = ext4_get_group_info(ac->ac_sb, ac->ac_last_optimal_group);
949 for (found = rb_next(&grp->bb_avg_fragment_size_rb); found != NULL;
950 found = rb_next(found)) {
951 grp = rb_entry(found, struct ext4_group_info,
952 bb_avg_fragment_size_rb);
953 if (sbi->s_mb_stats)
954 atomic64_inc(&sbi->s_bal_cX_groups_considered[1]);
955 if (likely(ext4_mb_good_group(ac, grp->bb_group, 1)))
956 break;
957 }
958 goto done;
959 }
960
961 node = sbi->s_mb_avg_fragment_size_root.rb_node;
962 best_so_far = 0;
963 found = NULL;
964
965 while (node) {
966 grp = rb_entry(node, struct ext4_group_info,
967 bb_avg_fragment_size_rb);
968 avg_fragment_size = 0;
969 if (ext4_mb_good_group(ac, grp->bb_group, 1)) {
970 avg_fragment_size = grp->bb_fragments ?
971 grp->bb_free / grp->bb_fragments : 0;
972 if (!best_so_far || avg_fragment_size < best_so_far) {
973 best_so_far = avg_fragment_size;
974 found = node;
975 }
976 }
977 if (avg_fragment_size > ac->ac_g_ex.fe_len)
978 node = node->rb_right;
979 else
980 node = node->rb_left;
981 }
982
983done:
984 if (found) {
985 grp = rb_entry(found, struct ext4_group_info,
986 bb_avg_fragment_size_rb);
987 *group = grp->bb_group;
988 ac->ac_flags |= EXT4_MB_CR1_OPTIMIZED;
989 } else {
990 *new_cr = 2;
991 }
992
993 read_unlock(&sbi->s_mb_rb_lock);
994 ac->ac_last_optimal_group = *group;
995}
996
997static inline int should_optimize_scan(struct ext4_allocation_context *ac)
998{
999 if (unlikely(!test_opt2(ac->ac_sb, MB_OPTIMIZE_SCAN)))
1000 return 0;
1001 if (ac->ac_criteria >= 2)
1002 return 0;
1003 if (ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS))
1004 return 0;
1005 return 1;
1006}
1007
1008/*
1009 * Return next linear group for allocation. If linear traversal should not be
1010 * performed, this function just returns the same group
1011 */
1012static int
1013next_linear_group(struct ext4_allocation_context *ac, int group, int ngroups)
1014{
1015 if (!should_optimize_scan(ac))
1016 goto inc_and_return;
1017
1018 if (ac->ac_groups_linear_remaining) {
1019 ac->ac_groups_linear_remaining--;
1020 goto inc_and_return;
1021 }
1022
1023 if (ac->ac_flags & EXT4_MB_SEARCH_NEXT_LINEAR) {
1024 ac->ac_flags &= ~EXT4_MB_SEARCH_NEXT_LINEAR;
1025 goto inc_and_return;
1026 }
1027
1028 return group;
1029inc_and_return:
1030 /*
1031 * Artificially restricted ngroups for non-extent
1032 * files makes group > ngroups possible on first loop.
1033 */
1034 return group + 1 >= ngroups ? 0 : group + 1;
1035}
1036
1037/*
1038 * ext4_mb_choose_next_group: choose next group for allocation.
1039 *
1040 * @ac Allocation Context
1041 * @new_cr This is an output parameter. If the there is no good group
1042 * available at current CR level, this field is updated to indicate
1043 * the new cr level that should be used.
1044 * @group This is an input / output parameter. As an input it indicates the
1045 * next group that the allocator intends to use for allocation. As
1046 * output, this field indicates the next group that should be used as
1047 * determined by the optimization functions.
1048 * @ngroups Total number of groups
1049 */
1050static void ext4_mb_choose_next_group(struct ext4_allocation_context *ac,
1051 int *new_cr, ext4_group_t *group, ext4_group_t ngroups)
1052{
1053 *new_cr = ac->ac_criteria;
1054
1055 if (!should_optimize_scan(ac) || ac->ac_groups_linear_remaining)
1056 return;
1057
1058 if (*new_cr == 0) {
1059 ext4_mb_choose_next_group_cr0(ac, new_cr, group, ngroups);
1060 } else if (*new_cr == 1) {
1061 ext4_mb_choose_next_group_cr1(ac, new_cr, group, ngroups);
1062 } else {
1063 /*
1064 * TODO: For CR=2, we can arrange groups in an rb tree sorted by
1065 * bb_free. But until that happens, we should never come here.
1066 */
1067 WARN_ON(1);
1068 }
1069}
1070
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001071/*
1072 * Cache the order of the largest free extent we have available in this block
1073 * group.
1074 */
1075static void
1076mb_set_largest_free_order(struct super_block *sb, struct ext4_group_info *grp)
1077{
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07001078 struct ext4_sb_info *sbi = EXT4_SB(sb);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001079 int i;
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001080
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07001081 if (test_opt2(sb, MB_OPTIMIZE_SCAN) && grp->bb_largest_free_order >= 0) {
1082 write_lock(&sbi->s_mb_largest_free_orders_locks[
1083 grp->bb_largest_free_order]);
1084 list_del_init(&grp->bb_largest_free_order_node);
1085 write_unlock(&sbi->s_mb_largest_free_orders_locks[
1086 grp->bb_largest_free_order]);
1087 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001088 grp->bb_largest_free_order = -1; /* uninit */
1089
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07001090 for (i = MB_NUM_ORDERS(sb) - 1; i >= 0; i--) {
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001091 if (grp->bb_counters[i] > 0) {
1092 grp->bb_largest_free_order = i;
1093 break;
1094 }
1095 }
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07001096 if (test_opt2(sb, MB_OPTIMIZE_SCAN) &&
1097 grp->bb_largest_free_order >= 0 && grp->bb_free) {
1098 write_lock(&sbi->s_mb_largest_free_orders_locks[
1099 grp->bb_largest_free_order]);
1100 list_add_tail(&grp->bb_largest_free_order_node,
1101 &sbi->s_mb_largest_free_orders[grp->bb_largest_free_order]);
1102 write_unlock(&sbi->s_mb_largest_free_orders_locks[
1103 grp->bb_largest_free_order]);
1104 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001105}
1106
Eric Sandeen089ceec2009-07-05 22:17:31 -04001107static noinline_for_stack
1108void ext4_mb_generate_buddy(struct super_block *sb,
Alex Tomasc9de5602008-01-29 00:19:52 -05001109 void *buddy, void *bitmap, ext4_group_t group)
1110{
1111 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
Namjae Jeone43bb4e2014-06-26 10:11:53 -04001112 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04001113 ext4_grpblk_t max = EXT4_CLUSTERS_PER_GROUP(sb);
Eric Sandeena36b4492009-08-25 22:36:45 -04001114 ext4_grpblk_t i = 0;
1115 ext4_grpblk_t first;
1116 ext4_grpblk_t len;
Alex Tomasc9de5602008-01-29 00:19:52 -05001117 unsigned free = 0;
1118 unsigned fragments = 0;
1119 unsigned long long period = get_cycles();
1120
1121 /* initialize buddy from bitmap which is aggregation
1122 * of on-disk bitmap and preallocations */
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001123 i = mb_find_next_zero_bit(bitmap, max, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05001124 grp->bb_first_free = i;
1125 while (i < max) {
1126 fragments++;
1127 first = i;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001128 i = mb_find_next_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05001129 len = i - first;
1130 free += len;
1131 if (len > 1)
1132 ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
1133 else
1134 grp->bb_counters[0]++;
1135 if (i < max)
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05001136 i = mb_find_next_zero_bit(bitmap, max, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05001137 }
1138 grp->bb_fragments = fragments;
1139
1140 if (free != grp->bb_free) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001141 ext4_grp_locked_error(sb, group, 0, 0,
Theodore Ts'o94d4c062014-07-05 19:15:50 -04001142 "block bitmap and bg descriptor "
1143 "inconsistent: %u vs %u free clusters",
Theodore Ts'oe29136f2010-06-29 12:54:28 -04001144 free, grp->bb_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001145 /*
Darrick J. Wong163a2032013-08-28 17:35:51 -04001146 * If we intend to continue, we consider group descriptor
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05001147 * corrupt and update bb_free using bitmap value
1148 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001149 grp->bb_free = free;
Wang Shilongdb79e6d2018-05-12 11:39:40 -04001150 ext4_mark_group_bitmap_corrupted(sb, group,
1151 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Alex Tomasc9de5602008-01-29 00:19:52 -05001152 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001153 mb_set_largest_free_order(sb, grp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001154
1155 clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
1156
1157 period = get_cycles() - period;
Harshad Shirwadkar67d25182021-04-01 10:21:23 -07001158 atomic_inc(&sbi->s_mb_buddies_generated);
1159 atomic64_add(period, &sbi->s_mb_generation_time);
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07001160 mb_update_avg_fragment_size(sb, grp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001161}
1162
1163/* The buddy information is attached the buddy cache inode
1164 * for convenience. The information regarding each group
1165 * is loaded via ext4_mb_load_buddy. The information involve
1166 * block bitmap and buddy information. The information are
1167 * stored in the inode as
1168 *
1169 * { page }
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -05001170 * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
Alex Tomasc9de5602008-01-29 00:19:52 -05001171 *
1172 *
1173 * one block each for bitmap and buddy information.
1174 * So for each group we take up 2 blocks. A page can
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +03001175 * contain blocks_per_page (PAGE_SIZE / blocksize) blocks.
Alex Tomasc9de5602008-01-29 00:19:52 -05001176 * So it can have information regarding groups_per_page which
1177 * is blocks_per_page/2
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001178 *
1179 * Locking note: This routine takes the block group lock of all groups
1180 * for this page; do not hold this lock when calling this routine!
Alex Tomasc9de5602008-01-29 00:19:52 -05001181 */
1182
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001183static int ext4_mb_init_cache(struct page *page, char *incore, gfp_t gfp)
Alex Tomasc9de5602008-01-29 00:19:52 -05001184{
Theodore Ts'o8df96752009-05-01 08:50:38 -04001185 ext4_group_t ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -05001186 int blocksize;
1187 int blocks_per_page;
1188 int groups_per_page;
1189 int err = 0;
1190 int i;
Theodore Ts'o813e5722012-02-20 17:52:46 -05001191 ext4_group_t first_group, group;
Alex Tomasc9de5602008-01-29 00:19:52 -05001192 int first_block;
1193 struct super_block *sb;
1194 struct buffer_head *bhs;
Darrick J. Wongfa77dcf2012-04-29 18:35:10 -04001195 struct buffer_head **bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05001196 struct inode *inode;
1197 char *data;
1198 char *bitmap;
Amir Goldstein9b8b7d32011-05-09 21:49:42 -04001199 struct ext4_group_info *grinfo;
Alex Tomasc9de5602008-01-29 00:19:52 -05001200
Alex Tomasc9de5602008-01-29 00:19:52 -05001201 inode = page->mapping->host;
1202 sb = inode->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001203 ngroups = ext4_get_groups_count(sb);
Fabian Frederick93407472017-02-27 14:28:32 -08001204 blocksize = i_blocksize(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001205 blocks_per_page = PAGE_SIZE / blocksize;
Alex Tomasc9de5602008-01-29 00:19:52 -05001206
Ritesh Harjanid3df1452020-05-10 11:54:54 +05301207 mb_debug(sb, "init page %lu\n", page->index);
1208
Alex Tomasc9de5602008-01-29 00:19:52 -05001209 groups_per_page = blocks_per_page >> 1;
1210 if (groups_per_page == 0)
1211 groups_per_page = 1;
1212
1213 /* allocate buffer_heads to read bitmaps */
1214 if (groups_per_page > 1) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001215 i = sizeof(struct buffer_head *) * groups_per_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001216 bh = kzalloc(i, gfp);
Theodore Ts'o813e5722012-02-20 17:52:46 -05001217 if (bh == NULL) {
1218 err = -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -05001219 goto out;
Theodore Ts'o813e5722012-02-20 17:52:46 -05001220 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001221 } else
1222 bh = &bhs;
1223
1224 first_group = page->index * blocks_per_page / 2;
1225
1226 /* read all groups the page covers into the cache */
Theodore Ts'o813e5722012-02-20 17:52:46 -05001227 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
1228 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -05001229 break;
1230
Theodore Ts'o813e5722012-02-20 17:52:46 -05001231 grinfo = ext4_get_group_info(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -04001232 /*
1233 * If page is uptodate then we came here after online resize
1234 * which added some new uninitialized group info structs, so
1235 * we must skip all initialized uptodate buddies on the page,
1236 * which may be currently in use by an allocating task.
1237 */
1238 if (PageUptodate(page) && !EXT4_MB_GRP_NEED_INIT(grinfo)) {
1239 bh[i] = NULL;
1240 continue;
1241 }
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03001242 bh[i] = ext4_read_block_bitmap_nowait(sb, group, false);
Darrick J. Wong9008a582015-10-17 21:33:24 -04001243 if (IS_ERR(bh[i])) {
1244 err = PTR_ERR(bh[i]);
1245 bh[i] = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05001246 goto out;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -05001247 }
Ritesh Harjanid3df1452020-05-10 11:54:54 +05301248 mb_debug(sb, "read bitmap for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001249 }
1250
1251 /* wait for I/O completion */
Theodore Ts'o813e5722012-02-20 17:52:46 -05001252 for (i = 0, group = first_group; i < groups_per_page; i++, group++) {
Darrick J. Wong9008a582015-10-17 21:33:24 -04001253 int err2;
1254
1255 if (!bh[i])
1256 continue;
1257 err2 = ext4_wait_block_bitmap(sb, group, bh[i]);
1258 if (!err)
1259 err = err2;
Theodore Ts'o813e5722012-02-20 17:52:46 -05001260 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001261
1262 first_block = page->index * blocks_per_page;
1263 for (i = 0; i < blocks_per_page; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001264 group = (first_block + i) >> 1;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001265 if (group >= ngroups)
Alex Tomasc9de5602008-01-29 00:19:52 -05001266 break;
1267
Amir Goldstein9b8b7d32011-05-09 21:49:42 -04001268 if (!bh[group - first_group])
1269 /* skip initialized uptodate buddy */
1270 continue;
1271
Lukas Czernerbbdc3222015-06-08 11:38:37 -04001272 if (!buffer_verified(bh[group - first_group]))
1273 /* Skip faulty bitmaps */
1274 continue;
1275 err = 0;
1276
Alex Tomasc9de5602008-01-29 00:19:52 -05001277 /*
1278 * data carry information regarding this
1279 * particular group in the format specified
1280 * above
1281 *
1282 */
1283 data = page_address(page) + (i * blocksize);
1284 bitmap = bh[group - first_group]->b_data;
1285
1286 /*
1287 * We place the buddy block and bitmap block
1288 * close together
1289 */
1290 if ((first_block + i) & 1) {
1291 /* this is block of buddy */
1292 BUG_ON(incore == NULL);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05301293 mb_debug(sb, "put buddy for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05001294 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -04001295 trace_ext4_mb_buddy_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001296 grinfo = ext4_get_group_info(sb, group);
1297 grinfo->bb_fragments = 0;
1298 memset(grinfo->bb_counters, 0,
Eric Sandeen19278052009-08-25 22:36:25 -04001299 sizeof(*grinfo->bb_counters) *
Harshad Shirwadkar4b68f6d2021-04-01 10:21:26 -07001300 (MB_NUM_ORDERS(sb)));
Alex Tomasc9de5602008-01-29 00:19:52 -05001301 /*
1302 * incore got set to the group block bitmap below
1303 */
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05001304 ext4_lock_group(sb, group);
Amir Goldstein9b8b7d32011-05-09 21:49:42 -04001305 /* init the buddy */
1306 memset(data, 0xff, blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -05001307 ext4_mb_generate_buddy(sb, data, incore, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05001308 ext4_unlock_group(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001309 incore = NULL;
1310 } else {
1311 /* this is block of bitmap */
1312 BUG_ON(incore != NULL);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05301313 mb_debug(sb, "put bitmap for group %u in page %lu/%x\n",
Alex Tomasc9de5602008-01-29 00:19:52 -05001314 group, page->index, i * blocksize);
Theodore Ts'of3073332010-05-17 03:00:00 -04001315 trace_ext4_mb_bitmap_load(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001316
1317 /* see comments in ext4_mb_put_pa() */
1318 ext4_lock_group(sb, group);
1319 memcpy(data, bitmap, blocksize);
1320
1321 /* mark all preallocated blks used in in-core bitmap */
1322 ext4_mb_generate_from_pa(sb, data, group);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05001323 ext4_mb_generate_from_freelist(sb, data, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001324 ext4_unlock_group(sb, group);
1325
1326 /* set incore so that the buddy information can be
1327 * generated using this
1328 */
1329 incore = data;
1330 }
1331 }
1332 SetPageUptodate(page);
1333
1334out:
1335 if (bh) {
Amir Goldstein9b8b7d32011-05-09 21:49:42 -04001336 for (i = 0; i < groups_per_page; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -05001337 brelse(bh[i]);
1338 if (bh != &bhs)
1339 kfree(bh);
1340 }
1341 return err;
1342}
1343
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001344/*
Amir Goldstein2de88072011-05-09 21:48:13 -04001345 * Lock the buddy and bitmap pages. This make sure other parallel init_group
1346 * on the same buddy page doesn't happen whild holding the buddy page lock.
1347 * Return locked buddy and bitmap pages on e4b struct. If buddy and bitmap
1348 * are on the same page e4b->bd_buddy_page is NULL and return value is 0.
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001349 */
Amir Goldstein2de88072011-05-09 21:48:13 -04001350static int ext4_mb_get_buddy_page_lock(struct super_block *sb,
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001351 ext4_group_t group, struct ext4_buddy *e4b, gfp_t gfp)
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001352{
Amir Goldstein2de88072011-05-09 21:48:13 -04001353 struct inode *inode = EXT4_SB(sb)->s_buddy_cache;
1354 int block, pnum, poff;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001355 int blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -04001356 struct page *page;
1357
1358 e4b->bd_buddy_page = NULL;
1359 e4b->bd_bitmap_page = NULL;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001360
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001361 blocks_per_page = PAGE_SIZE / sb->s_blocksize;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001362 /*
1363 * the buddy cache inode stores the block bitmap
1364 * and buddy information in consecutive blocks.
1365 * So for each group we need two blocks.
1366 */
1367 block = group * 2;
1368 pnum = block / blocks_per_page;
Amir Goldstein2de88072011-05-09 21:48:13 -04001369 poff = block % blocks_per_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001370 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001371 if (!page)
Younger Liuc57ab392014-04-10 23:03:43 -04001372 return -ENOMEM;
Amir Goldstein2de88072011-05-09 21:48:13 -04001373 BUG_ON(page->mapping != inode->i_mapping);
1374 e4b->bd_bitmap_page = page;
1375 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001376
Amir Goldstein2de88072011-05-09 21:48:13 -04001377 if (blocks_per_page >= 2) {
1378 /* buddy and bitmap are on the same page */
1379 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001380 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001381
1382 block++;
1383 pnum = block / blocks_per_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001384 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001385 if (!page)
Younger Liuc57ab392014-04-10 23:03:43 -04001386 return -ENOMEM;
Amir Goldstein2de88072011-05-09 21:48:13 -04001387 BUG_ON(page->mapping != inode->i_mapping);
1388 e4b->bd_buddy_page = page;
1389 return 0;
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001390}
1391
Amir Goldstein2de88072011-05-09 21:48:13 -04001392static void ext4_mb_put_buddy_page_lock(struct ext4_buddy *e4b)
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001393{
Amir Goldstein2de88072011-05-09 21:48:13 -04001394 if (e4b->bd_bitmap_page) {
1395 unlock_page(e4b->bd_bitmap_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001396 put_page(e4b->bd_bitmap_page);
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001397 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001398 if (e4b->bd_buddy_page) {
1399 unlock_page(e4b->bd_buddy_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001400 put_page(e4b->bd_buddy_page);
Amir Goldstein2de88072011-05-09 21:48:13 -04001401 }
Eric Sandeeneee4adc2010-10-27 21:30:15 -04001402}
1403
1404/*
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001405 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1406 * block group lock of all groups for this page; do not hold the BG lock when
1407 * calling this routine!
1408 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001409static noinline_for_stack
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001410int ext4_mb_init_group(struct super_block *sb, ext4_group_t group, gfp_t gfp)
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001411{
1412
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001413 struct ext4_group_info *this_grp;
Amir Goldstein2de88072011-05-09 21:48:13 -04001414 struct ext4_buddy e4b;
1415 struct page *page;
1416 int ret = 0;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001417
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001418 might_sleep();
Ritesh Harjanid3df1452020-05-10 11:54:54 +05301419 mb_debug(sb, "init group %u\n", group);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001420 this_grp = ext4_get_group_info(sb, group);
1421 /*
Aneesh Kumar K.V08c3a812009-09-09 23:50:17 -04001422 * This ensures that we don't reinit the buddy cache
1423 * page which map to the group from which we are already
1424 * allocating. If we are looking at the buddy cache we would
1425 * have taken a reference using ext4_mb_load_buddy and that
Amir Goldstein2de88072011-05-09 21:48:13 -04001426 * would have pinned buddy page to page cache.
Mel Gorman2457aec2014-06-04 16:10:31 -07001427 * The call to ext4_mb_get_buddy_page_lock will mark the
1428 * page accessed.
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001429 */
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001430 ret = ext4_mb_get_buddy_page_lock(sb, group, &e4b, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001431 if (ret || !EXT4_MB_GRP_NEED_INIT(this_grp)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001432 /*
1433 * somebody initialized the group
1434 * return without doing anything
1435 */
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001436 goto err;
1437 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001438
1439 page = e4b.bd_bitmap_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001440 ret = ext4_mb_init_cache(page, NULL, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001441 if (ret)
1442 goto err;
1443 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001444 ret = -EIO;
1445 goto err;
1446 }
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001447
Amir Goldstein2de88072011-05-09 21:48:13 -04001448 if (e4b.bd_buddy_page == NULL) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001449 /*
1450 * If both the bitmap and buddy are in
1451 * the same page we don't need to force
1452 * init the buddy
1453 */
Amir Goldstein2de88072011-05-09 21:48:13 -04001454 ret = 0;
1455 goto err;
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001456 }
Amir Goldstein2de88072011-05-09 21:48:13 -04001457 /* init buddy cache */
1458 page = e4b.bd_buddy_page;
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001459 ret = ext4_mb_init_cache(page, e4b.bd_bitmap, gfp);
Amir Goldstein2de88072011-05-09 21:48:13 -04001460 if (ret)
1461 goto err;
1462 if (!PageUptodate(page)) {
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001463 ret = -EIO;
1464 goto err;
1465 }
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001466err:
Amir Goldstein2de88072011-05-09 21:48:13 -04001467 ext4_mb_put_buddy_page_lock(&e4b);
Aneesh Kumar K.Vb6a758e2009-09-09 23:47:46 -04001468 return ret;
1469}
1470
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001471/*
1472 * Locking note: This routine calls ext4_mb_init_cache(), which takes the
1473 * block group lock of all groups for this page; do not hold the BG lock when
1474 * calling this routine!
1475 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04001476static noinline_for_stack int
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001477ext4_mb_load_buddy_gfp(struct super_block *sb, ext4_group_t group,
1478 struct ext4_buddy *e4b, gfp_t gfp)
Alex Tomasc9de5602008-01-29 00:19:52 -05001479{
Alex Tomasc9de5602008-01-29 00:19:52 -05001480 int blocks_per_page;
1481 int block;
1482 int pnum;
1483 int poff;
1484 struct page *page;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001485 int ret;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001486 struct ext4_group_info *grp;
1487 struct ext4_sb_info *sbi = EXT4_SB(sb);
1488 struct inode *inode = sbi->s_buddy_cache;
Alex Tomasc9de5602008-01-29 00:19:52 -05001489
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04001490 might_sleep();
Ritesh Harjanid3df1452020-05-10 11:54:54 +05301491 mb_debug(sb, "load group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001492
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001493 blocks_per_page = PAGE_SIZE / sb->s_blocksize;
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001494 grp = ext4_get_group_info(sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05001495
1496 e4b->bd_blkbits = sb->s_blocksize_bits;
Tao Ma529da702011-07-23 16:07:26 -04001497 e4b->bd_info = grp;
Alex Tomasc9de5602008-01-29 00:19:52 -05001498 e4b->bd_sb = sb;
1499 e4b->bd_group = group;
1500 e4b->bd_buddy_page = NULL;
1501 e4b->bd_bitmap_page = NULL;
1502
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001503 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001504 /*
1505 * we need full data about the group
1506 * to make a good selection
1507 */
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001508 ret = ext4_mb_init_group(sb, group, gfp);
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001509 if (ret)
1510 return ret;
Aneesh Kumar K.Vf41c0752009-09-09 23:34:50 -04001511 }
1512
Alex Tomasc9de5602008-01-29 00:19:52 -05001513 /*
1514 * the buddy cache inode stores the block bitmap
1515 * and buddy information in consecutive blocks.
1516 * So for each group we need two blocks.
1517 */
1518 block = group * 2;
1519 pnum = block / blocks_per_page;
1520 poff = block % blocks_per_page;
1521
1522 /* we could use find_or_create_page(), but it locks page
1523 * what we'd like to avoid in fast path ... */
Mel Gorman2457aec2014-06-04 16:10:31 -07001524 page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
Alex Tomasc9de5602008-01-29 00:19:52 -05001525 if (page == NULL || !PageUptodate(page)) {
1526 if (page)
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05001527 /*
1528 * drop the page reference and try
1529 * to get the page with lock. If we
1530 * are not uptodate that implies
1531 * somebody just created the page but
1532 * is yet to initialize the same. So
1533 * wait for it to initialize.
1534 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001535 put_page(page);
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001536 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001537 if (page) {
1538 BUG_ON(page->mapping != inode->i_mapping);
1539 if (!PageUptodate(page)) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001540 ret = ext4_mb_init_cache(page, NULL, gfp);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001541 if (ret) {
1542 unlock_page(page);
1543 goto err;
1544 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001545 mb_cmp_bitmaps(e4b, page_address(page) +
1546 (poff * sb->s_blocksize));
1547 }
1548 unlock_page(page);
1549 }
1550 }
Younger Liuc57ab392014-04-10 23:03:43 -04001551 if (page == NULL) {
1552 ret = -ENOMEM;
1553 goto err;
1554 }
1555 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001556 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001557 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001558 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001559
1560 /* Pages marked accessed already */
Alex Tomasc9de5602008-01-29 00:19:52 -05001561 e4b->bd_bitmap_page = page;
1562 e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -05001563
1564 block++;
1565 pnum = block / blocks_per_page;
1566 poff = block % blocks_per_page;
1567
Mel Gorman2457aec2014-06-04 16:10:31 -07001568 page = find_get_page_flags(inode->i_mapping, pnum, FGP_ACCESSED);
Alex Tomasc9de5602008-01-29 00:19:52 -05001569 if (page == NULL || !PageUptodate(page)) {
1570 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001571 put_page(page);
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001572 page = find_or_create_page(inode->i_mapping, pnum, gfp);
Alex Tomasc9de5602008-01-29 00:19:52 -05001573 if (page) {
1574 BUG_ON(page->mapping != inode->i_mapping);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001575 if (!PageUptodate(page)) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001576 ret = ext4_mb_init_cache(page, e4b->bd_bitmap,
1577 gfp);
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001578 if (ret) {
1579 unlock_page(page);
1580 goto err;
1581 }
1582 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001583 unlock_page(page);
1584 }
1585 }
Younger Liuc57ab392014-04-10 23:03:43 -04001586 if (page == NULL) {
1587 ret = -ENOMEM;
1588 goto err;
1589 }
1590 if (!PageUptodate(page)) {
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001591 ret = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05001592 goto err;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001593 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001594
1595 /* Pages marked accessed already */
Alex Tomasc9de5602008-01-29 00:19:52 -05001596 e4b->bd_buddy_page = page;
1597 e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
Alex Tomasc9de5602008-01-29 00:19:52 -05001598
Alex Tomasc9de5602008-01-29 00:19:52 -05001599 return 0;
1600
1601err:
Yang Ruirui26626f112011-04-16 19:17:48 -04001602 if (page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001603 put_page(page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001604 if (e4b->bd_bitmap_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001605 put_page(e4b->bd_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001606 if (e4b->bd_buddy_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001607 put_page(e4b->bd_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001608 e4b->bd_buddy = NULL;
1609 e4b->bd_bitmap = NULL;
Shen Fengfdf6c7a2008-07-11 19:27:31 -04001610 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05001611}
1612
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04001613static int ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
1614 struct ext4_buddy *e4b)
1615{
1616 return ext4_mb_load_buddy_gfp(sb, group, e4b, GFP_NOFS);
1617}
1618
Jing Zhange39e07f2010-05-14 00:00:00 -04001619static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
Alex Tomasc9de5602008-01-29 00:19:52 -05001620{
1621 if (e4b->bd_bitmap_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001622 put_page(e4b->bd_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001623 if (e4b->bd_buddy_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001624 put_page(e4b->bd_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05001625}
1626
1627
1628static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1629{
Chunguang Xuce3cca32020-11-07 23:58:13 +08001630 int order = 1, max;
Alex Tomasc9de5602008-01-29 00:19:52 -05001631 void *bb;
1632
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001633 BUG_ON(e4b->bd_bitmap == e4b->bd_buddy);
Alex Tomasc9de5602008-01-29 00:19:52 -05001634 BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1635
Alex Tomasc9de5602008-01-29 00:19:52 -05001636 while (order <= e4b->bd_blkbits + 1) {
Chunguang Xuce3cca32020-11-07 23:58:13 +08001637 bb = mb_find_buddy(e4b, order, &max);
1638 if (!mb_test_bit(block >> order, bb)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001639 /* this block is part of buddy of order 'order' */
1640 return order;
1641 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001642 order++;
1643 }
1644 return 0;
1645}
1646
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001647static void mb_clear_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001648{
1649 __u32 *addr;
1650
1651 len = cur + len;
1652 while (cur < len) {
1653 if ((cur & 31) == 0 && (len - cur) >= 32) {
1654 /* fast path: clear whole word at once */
1655 addr = bm + (cur >> 3);
1656 *addr = 0;
1657 cur += 32;
1658 continue;
1659 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001660 mb_clear_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001661 cur++;
1662 }
1663}
1664
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001665/* clear bits in given range
1666 * will return first found zero bit if any, -1 otherwise
1667 */
1668static int mb_test_and_clear_bits(void *bm, int cur, int len)
1669{
1670 __u32 *addr;
1671 int zero_bit = -1;
1672
1673 len = cur + len;
1674 while (cur < len) {
1675 if ((cur & 31) == 0 && (len - cur) >= 32) {
1676 /* fast path: clear whole word at once */
1677 addr = bm + (cur >> 3);
1678 if (*addr != (__u32)(-1) && zero_bit == -1)
1679 zero_bit = cur + mb_find_next_zero_bit(addr, 32, 0);
1680 *addr = 0;
1681 cur += 32;
1682 continue;
1683 }
1684 if (!mb_test_and_clear_bit(cur, bm) && zero_bit == -1)
1685 zero_bit = cur;
1686 cur++;
1687 }
1688
1689 return zero_bit;
1690}
1691
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04001692void ext4_set_bits(void *bm, int cur, int len)
Alex Tomasc9de5602008-01-29 00:19:52 -05001693{
1694 __u32 *addr;
1695
1696 len = cur + len;
1697 while (cur < len) {
1698 if ((cur & 31) == 0 && (len - cur) >= 32) {
1699 /* fast path: set whole word at once */
1700 addr = bm + (cur >> 3);
1701 *addr = 0xffffffff;
1702 cur += 32;
1703 continue;
1704 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001705 mb_set_bit(cur, bm);
Alex Tomasc9de5602008-01-29 00:19:52 -05001706 cur++;
1707 }
1708}
1709
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001710static inline int mb_buddy_adjust_border(int* bit, void* bitmap, int side)
Alex Tomasc9de5602008-01-29 00:19:52 -05001711{
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001712 if (mb_test_bit(*bit + side, bitmap)) {
1713 mb_clear_bit(*bit, bitmap);
1714 (*bit) -= side;
1715 return 1;
1716 }
1717 else {
1718 (*bit) += side;
1719 mb_set_bit(*bit, bitmap);
1720 return -1;
1721 }
1722}
1723
1724static void mb_buddy_mark_free(struct ext4_buddy *e4b, int first, int last)
1725{
1726 int max;
1727 int order = 1;
1728 void *buddy = mb_find_buddy(e4b, order, &max);
1729
1730 while (buddy) {
1731 void *buddy2;
1732
1733 /* Bits in range [first; last] are known to be set since
1734 * corresponding blocks were allocated. Bits in range
1735 * (first; last) will stay set because they form buddies on
1736 * upper layer. We just deal with borders if they don't
1737 * align with upper layer and then go up.
1738 * Releasing entire group is all about clearing
1739 * single bit of highest order buddy.
1740 */
1741
1742 /* Example:
1743 * ---------------------------------
1744 * | 1 | 1 | 1 | 1 |
1745 * ---------------------------------
1746 * | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
1747 * ---------------------------------
1748 * 0 1 2 3 4 5 6 7
1749 * \_____________________/
1750 *
1751 * Neither [1] nor [6] is aligned to above layer.
1752 * Left neighbour [0] is free, so mark it busy,
1753 * decrease bb_counters and extend range to
1754 * [0; 6]
1755 * Right neighbour [7] is busy. It can't be coaleasced with [6], so
1756 * mark [6] free, increase bb_counters and shrink range to
1757 * [0; 5].
1758 * Then shift range to [0; 2], go up and do the same.
1759 */
1760
1761
1762 if (first & 1)
1763 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&first, buddy, -1);
1764 if (!(last & 1))
1765 e4b->bd_info->bb_counters[order] += mb_buddy_adjust_border(&last, buddy, 1);
1766 if (first > last)
1767 break;
1768 order++;
1769
1770 if (first == last || !(buddy2 = mb_find_buddy(e4b, order, &max))) {
1771 mb_clear_bits(buddy, first, last - first + 1);
1772 e4b->bd_info->bb_counters[order - 1] += last - first + 1;
1773 break;
1774 }
1775 first >>= 1;
1776 last >>= 1;
1777 buddy = buddy2;
1778 }
1779}
1780
1781static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
1782 int first, int count)
1783{
1784 int left_is_free = 0;
1785 int right_is_free = 0;
1786 int block;
1787 int last = first + count - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001788 struct super_block *sb = e4b->bd_sb;
1789
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04001790 if (WARN_ON(count == 0))
1791 return;
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001792 BUG_ON(last >= (sb->s_blocksize << 3));
Vincent Minetbc8e6742009-05-15 08:33:18 -04001793 assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
Darrick J. Wong163a2032013-08-28 17:35:51 -04001794 /* Don't bother if the block group is corrupt. */
1795 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info)))
1796 return;
1797
Alex Tomasc9de5602008-01-29 00:19:52 -05001798 mb_check_buddy(e4b);
1799 mb_free_blocks_double(inode, e4b, first, count);
1800
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05301801 this_cpu_inc(discard_pa_seq);
Alex Tomasc9de5602008-01-29 00:19:52 -05001802 e4b->bd_info->bb_free += count;
1803 if (first < e4b->bd_info->bb_first_free)
1804 e4b->bd_info->bb_first_free = first;
1805
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001806 /* access memory sequentially: check left neighbour,
1807 * clear range and then check right neighbour
1808 */
Alex Tomasc9de5602008-01-29 00:19:52 -05001809 if (first != 0)
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001810 left_is_free = !mb_test_bit(first - 1, e4b->bd_bitmap);
1811 block = mb_test_and_clear_bits(e4b->bd_bitmap, first, count);
1812 if (last + 1 < EXT4_SB(sb)->s_mb_maxs[0])
1813 right_is_free = !mb_test_bit(last + 1, e4b->bd_bitmap);
1814
1815 if (unlikely(block != -1)) {
Namjae Jeone43bb4e2014-06-26 10:11:53 -04001816 struct ext4_sb_info *sbi = EXT4_SB(sb);
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001817 ext4_fsblk_t blocknr;
1818
1819 blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
Jun Piao49598e02018-01-11 13:17:49 -05001820 blocknr += EXT4_C2B(sbi, block);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001821 if (!(sbi->s_mount_state & EXT4_FC_REPLAY)) {
1822 ext4_grp_locked_error(sb, e4b->bd_group,
1823 inode ? inode->i_ino : 0,
1824 blocknr,
1825 "freeing already freed block (bit %u); block bitmap corrupt.",
1826 block);
1827 ext4_mark_group_bitmap_corrupted(
1828 sb, e4b->bd_group,
Wang Shilongdb79e6d2018-05-12 11:39:40 -04001829 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07001830 }
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001831 goto done;
1832 }
1833
1834 /* let's maintain fragments counter */
1835 if (left_is_free && right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001836 e4b->bd_info->bb_fragments--;
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001837 else if (!left_is_free && !right_is_free)
Alex Tomasc9de5602008-01-29 00:19:52 -05001838 e4b->bd_info->bb_fragments++;
1839
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001840 /* buddy[0] == bd_bitmap is a special case, so handle
1841 * it right away and let mb_buddy_mark_free stay free of
1842 * zero order checks.
1843 * Check if neighbours are to be coaleasced,
1844 * adjust bitmap bb_counters and borders appropriately.
1845 */
1846 if (first & 1) {
1847 first += !left_is_free;
1848 e4b->bd_info->bb_counters[0] += left_is_free ? -1 : 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05001849 }
Andrey Sidoroveabe0442013-04-09 12:22:29 -04001850 if (!(last & 1)) {
1851 last -= !right_is_free;
1852 e4b->bd_info->bb_counters[0] += right_is_free ? -1 : 1;
1853 }
1854
1855 if (first <= last)
1856 mb_buddy_mark_free(e4b, first >> 1, last >> 1);
1857
1858done:
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001859 mb_set_largest_free_order(sb, e4b->bd_info);
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07001860 mb_update_avg_fragment_size(sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001861 mb_check_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05001862}
1863
Robin Dong15c006a2012-08-17 10:02:17 -04001864static int mb_find_extent(struct ext4_buddy *e4b, int block,
Alex Tomasc9de5602008-01-29 00:19:52 -05001865 int needed, struct ext4_free_extent *ex)
1866{
1867 int next = block;
Robin Dong15c006a2012-08-17 10:02:17 -04001868 int max, order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001869 void *buddy;
1870
Vincent Minetbc8e6742009-05-15 08:33:18 -04001871 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001872 BUG_ON(ex == NULL);
1873
Robin Dong15c006a2012-08-17 10:02:17 -04001874 buddy = mb_find_buddy(e4b, 0, &max);
Alex Tomasc9de5602008-01-29 00:19:52 -05001875 BUG_ON(buddy == NULL);
1876 BUG_ON(block >= max);
1877 if (mb_test_bit(block, buddy)) {
1878 ex->fe_len = 0;
1879 ex->fe_start = 0;
1880 ex->fe_group = 0;
1881 return 0;
1882 }
1883
Robin Dong15c006a2012-08-17 10:02:17 -04001884 /* find actual order */
1885 order = mb_find_order_for_block(e4b, block);
1886 block = block >> order;
Alex Tomasc9de5602008-01-29 00:19:52 -05001887
1888 ex->fe_len = 1 << order;
1889 ex->fe_start = block << order;
1890 ex->fe_group = e4b->bd_group;
1891
1892 /* calc difference from given start */
1893 next = next - ex->fe_start;
1894 ex->fe_len -= next;
1895 ex->fe_start += next;
1896
1897 while (needed > ex->fe_len &&
Alan Coxd8ec0c32012-11-08 12:19:58 -05001898 mb_find_buddy(e4b, order, &max)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05001899
1900 if (block + 1 >= max)
1901 break;
1902
1903 next = (block + 1) * (1 << order);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001904 if (mb_test_bit(next, e4b->bd_bitmap))
Alex Tomasc9de5602008-01-29 00:19:52 -05001905 break;
1906
Robin Dongb051d8d2011-10-26 05:30:30 -04001907 order = mb_find_order_for_block(e4b, next);
Alex Tomasc9de5602008-01-29 00:19:52 -05001908
Alex Tomasc9de5602008-01-29 00:19:52 -05001909 block = next >> order;
1910 ex->fe_len += 1 << order;
1911 }
1912
Jan Kara31562b92019-04-06 18:33:06 -04001913 if (ex->fe_start + ex->fe_len > EXT4_CLUSTERS_PER_GROUP(e4b->bd_sb)) {
Theodore Ts'o43c73222017-01-22 19:35:52 -05001914 /* Should never happen! (but apparently sometimes does?!?) */
1915 WARN_ON(1);
Stephen Brennancd84bbb2021-06-23 16:21:14 -07001916 ext4_grp_locked_error(e4b->bd_sb, e4b->bd_group, 0, 0,
1917 "corruption or bug in mb_find_extent "
1918 "block=%d, order=%d needed=%d ex=%u/%d/%d@%u",
1919 block, order, needed, ex->fe_group, ex->fe_start,
1920 ex->fe_len, ex->fe_logical);
Theodore Ts'o43c73222017-01-22 19:35:52 -05001921 ex->fe_len = 0;
1922 ex->fe_start = 0;
1923 ex->fe_group = 0;
1924 }
Alex Tomasc9de5602008-01-29 00:19:52 -05001925 return ex->fe_len;
1926}
1927
1928static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1929{
1930 int ord;
1931 int mlen = 0;
1932 int max = 0;
1933 int cur;
1934 int start = ex->fe_start;
1935 int len = ex->fe_len;
1936 unsigned ret = 0;
1937 int len0 = len;
1938 void *buddy;
1939
1940 BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1941 BUG_ON(e4b->bd_group != ex->fe_group);
Vincent Minetbc8e6742009-05-15 08:33:18 -04001942 assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
Alex Tomasc9de5602008-01-29 00:19:52 -05001943 mb_check_buddy(e4b);
1944 mb_mark_used_double(e4b, start, len);
1945
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05301946 this_cpu_inc(discard_pa_seq);
Alex Tomasc9de5602008-01-29 00:19:52 -05001947 e4b->bd_info->bb_free -= len;
1948 if (e4b->bd_info->bb_first_free == start)
1949 e4b->bd_info->bb_first_free += len;
1950
1951 /* let's maintain fragments counter */
1952 if (start != 0)
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001953 mlen = !mb_test_bit(start - 1, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001954 if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001955 max = !mb_test_bit(start + len, e4b->bd_bitmap);
Alex Tomasc9de5602008-01-29 00:19:52 -05001956 if (mlen && max)
1957 e4b->bd_info->bb_fragments++;
1958 else if (!mlen && !max)
1959 e4b->bd_info->bb_fragments--;
1960
1961 /* let's maintain buddy itself */
1962 while (len) {
1963 ord = mb_find_order_for_block(e4b, start);
1964
1965 if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1966 /* the whole chunk may be allocated at once! */
1967 mlen = 1 << ord;
1968 buddy = mb_find_buddy(e4b, ord, &max);
1969 BUG_ON((start >> ord) >= max);
1970 mb_set_bit(start >> ord, buddy);
1971 e4b->bd_info->bb_counters[ord]--;
1972 start += mlen;
1973 len -= mlen;
1974 BUG_ON(len < 0);
1975 continue;
1976 }
1977
1978 /* store for history */
1979 if (ret == 0)
1980 ret = len | (ord << 16);
1981
1982 /* we have to split large buddy */
1983 BUG_ON(ord <= 0);
1984 buddy = mb_find_buddy(e4b, ord, &max);
1985 mb_set_bit(start >> ord, buddy);
1986 e4b->bd_info->bb_counters[ord]--;
1987
1988 ord--;
1989 cur = (start >> ord) & ~1U;
1990 buddy = mb_find_buddy(e4b, ord, &max);
1991 mb_clear_bit(cur, buddy);
1992 mb_clear_bit(cur + 1, buddy);
1993 e4b->bd_info->bb_counters[ord]++;
1994 e4b->bd_info->bb_counters[ord]++;
1995 }
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04001996 mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05001997
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07001998 mb_update_avg_fragment_size(e4b->bd_sb, e4b->bd_info);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05001999 ext4_set_bits(e4b->bd_bitmap, ex->fe_start, len0);
Alex Tomasc9de5602008-01-29 00:19:52 -05002000 mb_check_buddy(e4b);
2001
2002 return ret;
2003}
2004
2005/*
2006 * Must be called under group lock!
2007 */
2008static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
2009 struct ext4_buddy *e4b)
2010{
2011 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
2012 int ret;
2013
2014 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
2015 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
2016
2017 ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
2018 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
2019 ret = mb_mark_used(e4b, &ac->ac_b_ex);
2020
2021 /* preallocation can change ac_b_ex, thus we store actually
2022 * allocated blocks for history */
2023 ac->ac_f_ex = ac->ac_b_ex;
2024
2025 ac->ac_status = AC_STATUS_FOUND;
2026 ac->ac_tail = ret & 0xffff;
2027 ac->ac_buddy = ret >> 16;
2028
Aneesh Kumar K.Vc3a326a2008-11-25 15:11:52 -05002029 /*
2030 * take the page reference. We want the page to be pinned
2031 * so that we don't get a ext4_mb_init_cache_call for this
2032 * group until we update the bitmap. That would mean we
2033 * double allocate blocks. The reference is dropped
2034 * in ext4_mb_release_context
2035 */
Alex Tomasc9de5602008-01-29 00:19:52 -05002036 ac->ac_bitmap_page = e4b->bd_bitmap_page;
2037 get_page(ac->ac_bitmap_page);
2038 ac->ac_buddy_page = e4b->bd_buddy_page;
2039 get_page(ac->ac_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05002040 /* store last allocated for subsequent stream allocation */
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002041 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002042 spin_lock(&sbi->s_md_lock);
2043 sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
2044 sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
2045 spin_unlock(&sbi->s_md_lock);
2046 }
Ritesh Harjani53f86b12020-05-20 12:10:32 +05302047 /*
2048 * As we've just preallocated more space than
2049 * user requested originally, we store allocated
2050 * space in a special descriptor.
2051 */
2052 if (ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
2053 ext4_mb_new_preallocation(ac);
2054
Alex Tomasc9de5602008-01-29 00:19:52 -05002055}
2056
Alex Tomasc9de5602008-01-29 00:19:52 -05002057static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
2058 struct ext4_buddy *e4b,
2059 int finish_group)
2060{
2061 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
2062 struct ext4_free_extent *bex = &ac->ac_b_ex;
2063 struct ext4_free_extent *gex = &ac->ac_g_ex;
2064 struct ext4_free_extent ex;
2065 int max;
2066
Aneesh Kumar K.V032115f2009-01-05 21:34:30 -05002067 if (ac->ac_status == AC_STATUS_FOUND)
2068 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05002069 /*
2070 * We don't want to scan for a whole year
2071 */
2072 if (ac->ac_found > sbi->s_mb_max_to_scan &&
2073 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2074 ac->ac_status = AC_STATUS_BREAK;
2075 return;
2076 }
2077
2078 /*
2079 * Haven't found good chunk so far, let's continue
2080 */
2081 if (bex->fe_len < gex->fe_len)
2082 return;
2083
2084 if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
2085 && bex->fe_group == e4b->bd_group) {
2086 /* recheck chunk's availability - we don't know
2087 * when it was found (within this lock-unlock
2088 * period or not) */
Robin Dong15c006a2012-08-17 10:02:17 -04002089 max = mb_find_extent(e4b, bex->fe_start, gex->fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002090 if (max >= gex->fe_len) {
2091 ext4_mb_use_best_found(ac, e4b);
2092 return;
2093 }
2094 }
2095}
2096
2097/*
2098 * The routine checks whether found extent is good enough. If it is,
2099 * then the extent gets marked used and flag is set to the context
2100 * to stop scanning. Otherwise, the extent is compared with the
2101 * previous found extent and if new one is better, then it's stored
2102 * in the context. Later, the best found extent will be used, if
2103 * mballoc can't find good enough extent.
2104 *
2105 * FIXME: real allocation policy is to be designed yet!
2106 */
2107static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
2108 struct ext4_free_extent *ex,
2109 struct ext4_buddy *e4b)
2110{
2111 struct ext4_free_extent *bex = &ac->ac_b_ex;
2112 struct ext4_free_extent *gex = &ac->ac_g_ex;
2113
2114 BUG_ON(ex->fe_len <= 0);
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04002115 BUG_ON(ex->fe_len > EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
2116 BUG_ON(ex->fe_start >= EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05002117 BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
2118
2119 ac->ac_found++;
2120
2121 /*
2122 * The special case - take what you catch first
2123 */
2124 if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2125 *bex = *ex;
2126 ext4_mb_use_best_found(ac, e4b);
2127 return;
2128 }
2129
2130 /*
2131 * Let's check whether the chuck is good enough
2132 */
2133 if (ex->fe_len == gex->fe_len) {
2134 *bex = *ex;
2135 ext4_mb_use_best_found(ac, e4b);
2136 return;
2137 }
2138
2139 /*
2140 * If this is first found extent, just store it in the context
2141 */
2142 if (bex->fe_len == 0) {
2143 *bex = *ex;
2144 return;
2145 }
2146
2147 /*
2148 * If new found extent is better, store it in the context
2149 */
2150 if (bex->fe_len < gex->fe_len) {
2151 /* if the request isn't satisfied, any found extent
2152 * larger than previous best one is better */
2153 if (ex->fe_len > bex->fe_len)
2154 *bex = *ex;
2155 } else if (ex->fe_len > gex->fe_len) {
2156 /* if the request is satisfied, then we try to find
2157 * an extent that still satisfy the request, but is
2158 * smaller than previous one */
2159 if (ex->fe_len < bex->fe_len)
2160 *bex = *ex;
2161 }
2162
2163 ext4_mb_check_limits(ac, e4b, 0);
2164}
2165
Eric Sandeen089ceec2009-07-05 22:17:31 -04002166static noinline_for_stack
2167int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002168 struct ext4_buddy *e4b)
2169{
2170 struct ext4_free_extent ex = ac->ac_b_ex;
2171 ext4_group_t group = ex.fe_group;
2172 int max;
2173 int err;
2174
2175 BUG_ON(ex.fe_len <= 0);
2176 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
2177 if (err)
2178 return err;
2179
2180 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04002181 max = mb_find_extent(e4b, ex.fe_start, ex.fe_len, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002182
2183 if (max > 0) {
2184 ac->ac_b_ex = ex;
2185 ext4_mb_use_best_found(ac, e4b);
2186 }
2187
2188 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002189 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002190
2191 return 0;
2192}
2193
Eric Sandeen089ceec2009-07-05 22:17:31 -04002194static noinline_for_stack
2195int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002196 struct ext4_buddy *e4b)
2197{
2198 ext4_group_t group = ac->ac_g_ex.fe_group;
2199 int max;
2200 int err;
2201 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04002202 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002203 struct ext4_free_extent ex;
2204
2205 if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
2206 return 0;
Yongqiang Yang838cd0c2012-09-23 23:10:51 -04002207 if (grp->bb_free == 0)
2208 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002209
2210 err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
2211 if (err)
2212 return err;
2213
Darrick J. Wong163a2032013-08-28 17:35:51 -04002214 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info))) {
2215 ext4_mb_unload_buddy(e4b);
2216 return 0;
2217 }
2218
Alex Tomasc9de5602008-01-29 00:19:52 -05002219 ext4_lock_group(ac->ac_sb, group);
Robin Dong15c006a2012-08-17 10:02:17 -04002220 max = mb_find_extent(e4b, ac->ac_g_ex.fe_start,
Alex Tomasc9de5602008-01-29 00:19:52 -05002221 ac->ac_g_ex.fe_len, &ex);
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05002222 ex.fe_logical = 0xDEADFA11; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05002223
2224 if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
2225 ext4_fsblk_t start;
2226
Akinobu Mita5661bd62010-03-03 23:53:39 -05002227 start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
2228 ex.fe_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05002229 /* use do_div to get remainder (would be 64-bit modulo) */
2230 if (do_div(start, sbi->s_stripe) == 0) {
2231 ac->ac_found++;
2232 ac->ac_b_ex = ex;
2233 ext4_mb_use_best_found(ac, e4b);
2234 }
2235 } else if (max >= ac->ac_g_ex.fe_len) {
2236 BUG_ON(ex.fe_len <= 0);
2237 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
2238 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
2239 ac->ac_found++;
2240 ac->ac_b_ex = ex;
2241 ext4_mb_use_best_found(ac, e4b);
2242 } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
2243 /* Sometimes, caller may want to merge even small
2244 * number of blocks to an existing extent */
2245 BUG_ON(ex.fe_len <= 0);
2246 BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
2247 BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
2248 ac->ac_found++;
2249 ac->ac_b_ex = ex;
2250 ext4_mb_use_best_found(ac, e4b);
2251 }
2252 ext4_unlock_group(ac->ac_sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002253 ext4_mb_unload_buddy(e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002254
2255 return 0;
2256}
2257
2258/*
2259 * The routine scans buddy structures (not bitmap!) from given order
2260 * to max order and tries to find big enough chunk to satisfy the req
2261 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04002262static noinline_for_stack
2263void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002264 struct ext4_buddy *e4b)
2265{
2266 struct super_block *sb = ac->ac_sb;
2267 struct ext4_group_info *grp = e4b->bd_info;
2268 void *buddy;
2269 int i;
2270 int k;
2271 int max;
2272
2273 BUG_ON(ac->ac_2order <= 0);
Harshad Shirwadkar4b68f6d2021-04-01 10:21:26 -07002274 for (i = ac->ac_2order; i < MB_NUM_ORDERS(sb); i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002275 if (grp->bb_counters[i] == 0)
2276 continue;
2277
2278 buddy = mb_find_buddy(e4b, i, &max);
2279 BUG_ON(buddy == NULL);
2280
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05002281 k = mb_find_next_zero_bit(buddy, max, 0);
Dmitry Monakhoveb576082020-03-10 15:01:56 +00002282 if (k >= max) {
2283 ext4_grp_locked_error(ac->ac_sb, e4b->bd_group, 0, 0,
2284 "%d free clusters of order %d. But found 0",
2285 grp->bb_counters[i], i);
2286 ext4_mark_group_bitmap_corrupted(ac->ac_sb,
2287 e4b->bd_group,
2288 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
2289 break;
2290 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002291 ac->ac_found++;
2292
2293 ac->ac_b_ex.fe_len = 1 << i;
2294 ac->ac_b_ex.fe_start = k << i;
2295 ac->ac_b_ex.fe_group = e4b->bd_group;
2296
2297 ext4_mb_use_best_found(ac, e4b);
2298
Ritesh Harjani53f86b12020-05-20 12:10:32 +05302299 BUG_ON(ac->ac_f_ex.fe_len != ac->ac_g_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05002300
2301 if (EXT4_SB(sb)->s_mb_stats)
2302 atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
2303
2304 break;
2305 }
2306}
2307
2308/*
2309 * The routine scans the group and measures all found extents.
2310 * In order to optimize scanning, caller must pass number of
2311 * free blocks in the group, so the routine can know upper limit.
2312 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04002313static noinline_for_stack
2314void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002315 struct ext4_buddy *e4b)
2316{
2317 struct super_block *sb = ac->ac_sb;
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05002318 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05002319 struct ext4_free_extent ex;
2320 int i;
2321 int free;
2322
2323 free = e4b->bd_info->bb_free;
Theodore Ts'o907ea522020-04-13 23:33:05 -04002324 if (WARN_ON(free <= 0))
2325 return;
Alex Tomasc9de5602008-01-29 00:19:52 -05002326
2327 i = e4b->bd_info->bb_first_free;
2328
2329 while (free && ac->ac_status == AC_STATUS_CONTINUE) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05002330 i = mb_find_next_zero_bit(bitmap,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04002331 EXT4_CLUSTERS_PER_GROUP(sb), i);
2332 if (i >= EXT4_CLUSTERS_PER_GROUP(sb)) {
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002333 /*
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05002334 * IF we have corrupt bitmap, we won't find any
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002335 * free blocks even though group info says we
Randy Dunlapb483bb72020-08-04 19:48:50 -07002336 * have free blocks
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002337 */
Theodore Ts'oe29136f2010-06-29 12:54:28 -04002338 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002339 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05002340 "group info. But bitmap says 0",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002341 free);
Wang Shilong736dedb2018-05-12 12:37:58 -04002342 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
2343 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Alex Tomasc9de5602008-01-29 00:19:52 -05002344 break;
2345 }
2346
Robin Dong15c006a2012-08-17 10:02:17 -04002347 mb_find_extent(e4b, i, ac->ac_g_ex.fe_len, &ex);
Theodore Ts'o907ea522020-04-13 23:33:05 -04002348 if (WARN_ON(ex.fe_len <= 0))
2349 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002350 if (free < ex.fe_len) {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04002351 ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04002352 "%d free clusters as per "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05002353 "group info. But got %d blocks",
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002354 free, ex.fe_len);
Wang Shilong736dedb2018-05-12 12:37:58 -04002355 ext4_mark_group_bitmap_corrupted(sb, e4b->bd_group,
2356 EXT4_GROUP_INFO_BBITMAP_CORRUPT);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05002357 /*
2358 * The number of free blocks differs. This mostly
2359 * indicate that the bitmap is corrupt. So exit
2360 * without claiming the space.
2361 */
2362 break;
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05002363 }
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05002364 ex.fe_logical = 0xDEADC0DE; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05002365 ext4_mb_measure_extent(ac, &ex, e4b);
2366
2367 i += ex.fe_len;
2368 free -= ex.fe_len;
2369 }
2370
2371 ext4_mb_check_limits(ac, e4b, 1);
2372}
2373
2374/*
2375 * This is a special case for storages like raid5
Eric Sandeen506bf2d2010-07-27 11:56:06 -04002376 * we try to find stripe-aligned chunks for stripe-size-multiple requests
Alex Tomasc9de5602008-01-29 00:19:52 -05002377 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04002378static noinline_for_stack
2379void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002380 struct ext4_buddy *e4b)
2381{
2382 struct super_block *sb = ac->ac_sb;
2383 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'oc5e8f3f2012-02-20 17:54:06 -05002384 void *bitmap = e4b->bd_bitmap;
Alex Tomasc9de5602008-01-29 00:19:52 -05002385 struct ext4_free_extent ex;
2386 ext4_fsblk_t first_group_block;
2387 ext4_fsblk_t a;
2388 ext4_grpblk_t i;
2389 int max;
2390
2391 BUG_ON(sbi->s_stripe == 0);
2392
2393 /* find first stripe-aligned block in group */
Akinobu Mita5661bd62010-03-03 23:53:39 -05002394 first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
2395
Alex Tomasc9de5602008-01-29 00:19:52 -05002396 a = first_group_block + sbi->s_stripe - 1;
2397 do_div(a, sbi->s_stripe);
2398 i = (a * sbi->s_stripe) - first_group_block;
2399
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04002400 while (i < EXT4_CLUSTERS_PER_GROUP(sb)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002401 if (!mb_test_bit(i, bitmap)) {
Robin Dong15c006a2012-08-17 10:02:17 -04002402 max = mb_find_extent(e4b, i, sbi->s_stripe, &ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05002403 if (max >= sbi->s_stripe) {
2404 ac->ac_found++;
Theodore Ts'oab0c00f2014-02-20 00:36:41 -05002405 ex.fe_logical = 0xDEADF00D; /* debug value */
Alex Tomasc9de5602008-01-29 00:19:52 -05002406 ac->ac_b_ex = ex;
2407 ext4_mb_use_best_found(ac, e4b);
2408 break;
2409 }
2410 }
2411 i += sbi->s_stripe;
2412 }
2413}
2414
Lukas Czerner42ac1842015-06-08 11:40:40 -04002415/*
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302416 * This is also called BEFORE we load the buddy bitmap.
Lukas Czerner42ac1842015-06-08 11:40:40 -04002417 * Returns either 1 or 0 indicating that the group is either suitable
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302418 * for the allocation or not.
Lukas Czerner42ac1842015-06-08 11:40:40 -04002419 */
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302420static bool ext4_mb_good_group(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05002421 ext4_group_t group, int cr)
2422{
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302423 ext4_grpblk_t free, fragments;
Theodore Ts'oa4912122009-03-12 12:18:34 -04002424 int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05002425 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
2426
2427 BUG_ON(cr < 0 || cr >= 4);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002428
brookxudddcd2f2020-08-07 22:01:39 +08002429 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(grp)))
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302430 return false;
Theodore Ts'o01fc48e2012-08-17 09:46:17 -04002431
brookxudddcd2f2020-08-07 22:01:39 +08002432 free = grp->bb_free;
2433 if (free == 0)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302434 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05002435
Alex Tomasc9de5602008-01-29 00:19:52 -05002436 fragments = grp->bb_fragments;
Alex Tomasc9de5602008-01-29 00:19:52 -05002437 if (fragments == 0)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302438 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05002439
2440 switch (cr) {
2441 case 0:
2442 BUG_ON(ac->ac_2order == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05002443
Theodore Ts'oa4912122009-03-12 12:18:34 -04002444 /* Avoid using the first bg of a flexgroup for data files */
2445 if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
2446 (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
2447 ((group % flex_size) == 0))
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302448 return false;
Theodore Ts'oa4912122009-03-12 12:18:34 -04002449
brookxudddcd2f2020-08-07 22:01:39 +08002450 if (free < ac->ac_g_ex.fe_len)
2451 return false;
2452
Harshad Shirwadkar4b68f6d2021-04-01 10:21:26 -07002453 if (ac->ac_2order >= MB_NUM_ORDERS(ac->ac_sb))
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302454 return true;
Theodore Ts'o40ae3482013-02-04 15:08:40 -05002455
2456 if (grp->bb_largest_free_order < ac->ac_2order)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302457 return false;
Theodore Ts'o40ae3482013-02-04 15:08:40 -05002458
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302459 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05002460 case 1:
2461 if ((free / fragments) >= ac->ac_g_ex.fe_len)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302462 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05002463 break;
2464 case 2:
2465 if (free >= ac->ac_g_ex.fe_len)
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302466 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05002467 break;
2468 case 3:
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302469 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05002470 default:
2471 BUG();
2472 }
2473
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302474 return false;
2475}
2476
2477/*
2478 * This could return negative error code if something goes wrong
2479 * during ext4_mb_init_group(). This should not be called with
2480 * ext4_lock_group() held.
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002481 *
2482 * Note: because we are conditionally operating with the group lock in
2483 * the EXT4_MB_STRICT_CHECK case, we need to fake out sparse in this
2484 * function using __acquire and __release. This means we need to be
2485 * super careful before messing with the error path handling via "goto
2486 * out"!
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302487 */
2488static int ext4_mb_good_group_nolock(struct ext4_allocation_context *ac,
2489 ext4_group_t group, int cr)
2490{
2491 struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
Ritesh Harjani99377832020-05-20 12:10:36 +05302492 struct super_block *sb = ac->ac_sb;
Alex Zhuravlevc1d2c7d2020-06-19 22:08:56 -04002493 struct ext4_sb_info *sbi = EXT4_SB(sb);
Ritesh Harjani99377832020-05-20 12:10:36 +05302494 bool should_lock = ac->ac_flags & EXT4_MB_STRICT_CHECK;
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302495 ext4_grpblk_t free;
2496 int ret = 0;
2497
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07002498 if (sbi->s_mb_stats)
2499 atomic64_inc(&sbi->s_bal_cX_groups_considered[ac->ac_criteria]);
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002500 if (should_lock) {
Ritesh Harjani99377832020-05-20 12:10:36 +05302501 ext4_lock_group(sb, group);
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002502 __release(ext4_group_lock_ptr(sb, group));
2503 }
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302504 free = grp->bb_free;
2505 if (free == 0)
2506 goto out;
2507 if (cr <= 2 && free < ac->ac_g_ex.fe_len)
2508 goto out;
2509 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(grp)))
2510 goto out;
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002511 if (should_lock) {
2512 __acquire(ext4_group_lock_ptr(sb, group));
Ritesh Harjani99377832020-05-20 12:10:36 +05302513 ext4_unlock_group(sb, group);
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002514 }
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302515
2516 /* We only do this if the grp has never been initialized */
2517 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Alex Zhuravlevc1d2c7d2020-06-19 22:08:56 -04002518 struct ext4_group_desc *gdp =
2519 ext4_get_group_desc(sb, group, NULL);
2520 int ret;
2521
2522 /* cr=0/1 is a very optimistic search to find large
2523 * good chunks almost for free. If buddy data is not
2524 * ready, then this optimization makes no sense. But
2525 * we never skip the first block group in a flex_bg,
2526 * since this gets used for metadata block allocation,
2527 * and we want to make sure we locate metadata blocks
2528 * in the first block group in the flex_bg if possible.
2529 */
2530 if (cr < 2 &&
2531 (!sbi->s_log_groups_per_flex ||
2532 ((group & ((1 << sbi->s_log_groups_per_flex) - 1)) != 0)) &&
2533 !(ext4_has_group_desc_csum(sb) &&
2534 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))))
2535 return 0;
2536 ret = ext4_mb_init_group(sb, group, GFP_NOFS);
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302537 if (ret)
2538 return ret;
2539 }
2540
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002541 if (should_lock) {
Ritesh Harjani99377832020-05-20 12:10:36 +05302542 ext4_lock_group(sb, group);
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002543 __release(ext4_group_lock_ptr(sb, group));
2544 }
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302545 ret = ext4_mb_good_group(ac, group, cr);
2546out:
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002547 if (should_lock) {
2548 __acquire(ext4_group_lock_ptr(sb, group));
Ritesh Harjani99377832020-05-20 12:10:36 +05302549 ext4_unlock_group(sb, group);
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002550 }
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302551 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002552}
2553
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002554/*
2555 * Start prefetching @nr block bitmaps starting at @group.
2556 * Return the next group which needs to be prefetched.
2557 */
Theodore Ts'o3d392b22020-07-17 00:14:40 -04002558ext4_group_t ext4_mb_prefetch(struct super_block *sb, ext4_group_t group,
2559 unsigned int nr, int *cnt)
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002560{
2561 ext4_group_t ngroups = ext4_get_groups_count(sb);
2562 struct buffer_head *bh;
2563 struct blk_plug plug;
2564
2565 blk_start_plug(&plug);
2566 while (nr-- > 0) {
2567 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group,
2568 NULL);
2569 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
2570
2571 /*
2572 * Prefetch block groups with free blocks; but don't
2573 * bother if it is marked uninitialized on disk, since
2574 * it won't require I/O to read. Also only try to
2575 * prefetch once, so we avoid getblk() call, which can
2576 * be expensive.
2577 */
2578 if (!EXT4_MB_GRP_TEST_AND_SET_READ(grp) &&
2579 EXT4_MB_GRP_NEED_INIT(grp) &&
2580 ext4_free_group_clusters(sb, gdp) > 0 &&
2581 !(ext4_has_group_desc_csum(sb) &&
2582 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)))) {
2583 bh = ext4_read_block_bitmap_nowait(sb, group, true);
2584 if (bh && !IS_ERR(bh)) {
2585 if (!buffer_uptodate(bh) && cnt)
2586 (*cnt)++;
2587 brelse(bh);
2588 }
2589 }
2590 if (++group >= ngroups)
2591 group = 0;
2592 }
2593 blk_finish_plug(&plug);
2594 return group;
2595}
2596
2597/*
2598 * Prefetching reads the block bitmap into the buffer cache; but we
2599 * need to make sure that the buddy bitmap in the page cache has been
2600 * initialized. Note that ext4_mb_init_group() will block if the I/O
2601 * is not yet completed, or indeed if it was not initiated by
2602 * ext4_mb_prefetch did not start the I/O.
2603 *
2604 * TODO: We should actually kick off the buddy bitmap setup in a work
2605 * queue when the buffer I/O is completed, so that we don't block
2606 * waiting for the block allocation bitmap read to finish when
2607 * ext4_mb_prefetch_fini is called from ext4_mb_regular_allocator().
2608 */
Theodore Ts'o3d392b22020-07-17 00:14:40 -04002609void ext4_mb_prefetch_fini(struct super_block *sb, ext4_group_t group,
2610 unsigned int nr)
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002611{
2612 while (nr-- > 0) {
2613 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group,
2614 NULL);
2615 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
2616
2617 if (!group)
2618 group = ext4_get_groups_count(sb);
2619 group--;
2620 grp = ext4_get_group_info(sb, group);
2621
2622 if (EXT4_MB_GRP_NEED_INIT(grp) &&
2623 ext4_free_group_clusters(sb, gdp) > 0 &&
2624 !(ext4_has_group_desc_csum(sb) &&
2625 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)))) {
2626 if (ext4_mb_init_group(sb, group, GFP_NOFS))
2627 break;
2628 }
2629 }
2630}
2631
Eric Sandeen4ddfef72008-04-29 08:11:12 -04002632static noinline_for_stack int
2633ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05002634{
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002635 ext4_group_t prefetch_grp = 0, ngroups, group, i;
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05302636 int cr = -1;
Lukas Czerner42ac1842015-06-08 11:40:40 -04002637 int err = 0, first_err = 0;
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002638 unsigned int nr = 0, prefetch_ios = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002639 struct ext4_sb_info *sbi;
2640 struct super_block *sb;
2641 struct ext4_buddy e4b;
brookxu66d5e022020-08-17 15:36:06 +08002642 int lost;
Alex Tomasc9de5602008-01-29 00:19:52 -05002643
2644 sb = ac->ac_sb;
2645 sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -04002646 ngroups = ext4_get_groups_count(sb);
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002647 /* non-extent files are limited to low blocks/groups */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04002648 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002649 ngroups = sbi->s_blockfile_groups;
2650
Alex Tomasc9de5602008-01-29 00:19:52 -05002651 BUG_ON(ac->ac_status == AC_STATUS_FOUND);
2652
2653 /* first, try the goal */
2654 err = ext4_mb_find_by_goal(ac, &e4b);
2655 if (err || ac->ac_status == AC_STATUS_FOUND)
2656 goto out;
2657
2658 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2659 goto out;
2660
2661 /*
brookxue9a3cd42020-08-07 22:01:23 +08002662 * ac->ac_2order is set only if the fe_len is a power of 2
2663 * if ac->ac_2order is set we also set criteria to 0 so that we
Alex Tomasc9de5602008-01-29 00:19:52 -05002664 * try exact allocation using buddy.
2665 */
2666 i = fls(ac->ac_g_ex.fe_len);
2667 ac->ac_2order = 0;
2668 /*
2669 * We search using buddy data only if the order of the request
2670 * is greater than equal to the sbi_s_mb_order2_reqs
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04002671 * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
Jan Karad9b22cf2017-02-10 00:50:56 -05002672 * We also support searching for power-of-two requests only for
2673 * requests upto maximum buddy size we have constructed.
Alex Tomasc9de5602008-01-29 00:19:52 -05002674 */
Harshad Shirwadkar4b68f6d2021-04-01 10:21:26 -07002675 if (i >= sbi->s_mb_order2_reqs && i <= MB_NUM_ORDERS(sb)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002676 /*
2677 * This should tell if fe_len is exactly power of 2
2678 */
2679 if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
Jeremy Cline1a5d5e52018-08-02 00:03:40 -04002680 ac->ac_2order = array_index_nospec(i - 1,
Harshad Shirwadkar4b68f6d2021-04-01 10:21:26 -07002681 MB_NUM_ORDERS(sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05002682 }
2683
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002684 /* if stream allocation is enabled, use global goal */
2685 if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002686 /* TBD: may be hot point */
2687 spin_lock(&sbi->s_md_lock);
2688 ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
2689 ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
2690 spin_unlock(&sbi->s_md_lock);
2691 }
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04002692
Alex Tomasc9de5602008-01-29 00:19:52 -05002693 /* Let's just scan groups to find more-less suitable blocks */
2694 cr = ac->ac_2order ? 0 : 1;
2695 /*
2696 * cr == 0 try to get exact allocation,
2697 * cr == 3 try to get anything
2698 */
2699repeat:
2700 for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
2701 ac->ac_criteria = cr;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04002702 /*
2703 * searching for the right group start
2704 * from the goal value specified
2705 */
2706 group = ac->ac_g_ex.fe_group;
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07002707 ac->ac_last_optimal_group = group;
2708 ac->ac_groups_linear_remaining = sbi->s_mb_max_linear_groups;
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002709 prefetch_grp = group;
Aneesh Kumar K.Ved8f9c72008-07-11 19:27:31 -04002710
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07002711 for (i = 0; i < ngroups; group = next_linear_group(ac, group, ngroups),
2712 i++) {
2713 int ret = 0, new_cr;
2714
Theodore Ts'o2ed57242013-06-12 11:43:02 -04002715 cond_resched();
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07002716
2717 ext4_mb_choose_next_group(ac, &new_cr, &group, ngroups);
2718 if (new_cr != cr) {
2719 cr = new_cr;
2720 goto repeat;
2721 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002722
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002723 /*
2724 * Batch reads of the block allocation bitmaps
2725 * to get multiple READs in flight; limit
2726 * prefetching at cr=0/1, otherwise mballoc can
2727 * spend a lot of time loading imperfect groups
2728 */
2729 if ((prefetch_grp == group) &&
2730 (cr > 1 ||
2731 prefetch_ios < sbi->s_mb_prefetch_limit)) {
2732 unsigned int curr_ios = prefetch_ios;
2733
2734 nr = sbi->s_mb_prefetch;
2735 if (ext4_has_feature_flex_bg(sb)) {
Chunguang Xu82ef1372020-12-04 11:05:43 +08002736 nr = 1 << sbi->s_log_groups_per_flex;
2737 nr -= group & (nr - 1);
2738 nr = min(nr, sbi->s_mb_prefetch);
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002739 }
2740 prefetch_grp = ext4_mb_prefetch(sb, group,
2741 nr, &prefetch_ios);
2742 if (prefetch_ios == curr_ios)
2743 nr = 0;
2744 }
2745
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002746 /* This now checks without needing the buddy page */
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302747 ret = ext4_mb_good_group_nolock(ac, group, cr);
Lukas Czerner42ac1842015-06-08 11:40:40 -04002748 if (ret <= 0) {
2749 if (!first_err)
2750 first_err = ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05002751 continue;
Lukas Czerner42ac1842015-06-08 11:40:40 -04002752 }
Alex Tomasc9de5602008-01-29 00:19:52 -05002753
Alex Tomasc9de5602008-01-29 00:19:52 -05002754 err = ext4_mb_load_buddy(sb, group, &e4b);
2755 if (err)
2756 goto out;
2757
2758 ext4_lock_group(sb, group);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04002759
2760 /*
2761 * We need to check again after locking the
2762 * block group
2763 */
Lukas Czerner42ac1842015-06-08 11:40:40 -04002764 ret = ext4_mb_good_group(ac, group, cr);
Ritesh Harjani8ef123fe2020-05-20 12:10:35 +05302765 if (ret == 0) {
Alex Tomasc9de5602008-01-29 00:19:52 -05002766 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002767 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002768 continue;
2769 }
2770
2771 ac->ac_groups_scanned++;
Jan Karad9b22cf2017-02-10 00:50:56 -05002772 if (cr == 0)
Alex Tomasc9de5602008-01-29 00:19:52 -05002773 ext4_mb_simple_scan_group(ac, &e4b);
Eric Sandeen506bf2d2010-07-27 11:56:06 -04002774 else if (cr == 1 && sbi->s_stripe &&
2775 !(ac->ac_g_ex.fe_len % sbi->s_stripe))
Alex Tomasc9de5602008-01-29 00:19:52 -05002776 ext4_mb_scan_aligned(ac, &e4b);
2777 else
2778 ext4_mb_complex_scan_group(ac, &e4b);
2779
2780 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04002781 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002782
2783 if (ac->ac_status != AC_STATUS_CONTINUE)
2784 break;
2785 }
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07002786 /* Processed all groups and haven't found blocks */
2787 if (sbi->s_mb_stats && i == ngroups)
2788 atomic64_inc(&sbi->s_bal_cX_failed[cr]);
Alex Tomasc9de5602008-01-29 00:19:52 -05002789 }
2790
2791 if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
2792 !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2793 /*
2794 * We've been searching too long. Let's try to allocate
2795 * the best chunk we've found so far
2796 */
Alex Tomasc9de5602008-01-29 00:19:52 -05002797 ext4_mb_try_best_found(ac, &e4b);
2798 if (ac->ac_status != AC_STATUS_FOUND) {
2799 /*
2800 * Someone more lucky has already allocated it.
2801 * The only thing we can do is just take first
2802 * found block(s)
Alex Tomasc9de5602008-01-29 00:19:52 -05002803 */
brookxu66d5e022020-08-17 15:36:06 +08002804 lost = atomic_inc_return(&sbi->s_mb_lost_chunks);
2805 mb_debug(sb, "lost chunk, group: %u, start: %d, len: %d, lost: %d\n",
brookxuc55ee7d2020-08-15 08:10:44 +08002806 ac->ac_b_ex.fe_group, ac->ac_b_ex.fe_start,
2807 ac->ac_b_ex.fe_len, lost);
2808
Alex Tomasc9de5602008-01-29 00:19:52 -05002809 ac->ac_b_ex.fe_group = 0;
2810 ac->ac_b_ex.fe_start = 0;
2811 ac->ac_b_ex.fe_len = 0;
2812 ac->ac_status = AC_STATUS_CONTINUE;
2813 ac->ac_flags |= EXT4_MB_HINT_FIRST;
2814 cr = 3;
Alex Tomasc9de5602008-01-29 00:19:52 -05002815 goto repeat;
2816 }
2817 }
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07002818
2819 if (sbi->s_mb_stats && ac->ac_status == AC_STATUS_FOUND)
2820 atomic64_inc(&sbi->s_bal_cX_hits[ac->ac_criteria]);
Alex Tomasc9de5602008-01-29 00:19:52 -05002821out:
Lukas Czerner42ac1842015-06-08 11:40:40 -04002822 if (!err && ac->ac_status != AC_STATUS_FOUND && first_err)
2823 err = first_err;
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05302824
Ritesh Harjanid3df1452020-05-10 11:54:54 +05302825 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 +05302826 ac->ac_b_ex.fe_len, ac->ac_o_ex.fe_len, ac->ac_status,
2827 ac->ac_flags, cr, err);
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03002828
2829 if (nr)
2830 ext4_mb_prefetch_fini(sb, prefetch_grp, nr);
2831
Alex Tomasc9de5602008-01-29 00:19:52 -05002832 return err;
2833}
2834
Alex Tomasc9de5602008-01-29 00:19:52 -05002835static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2836{
Muchun Song359745d2022-01-21 22:14:23 -08002837 struct super_block *sb = pde_data(file_inode(seq->file));
Alex Tomasc9de5602008-01-29 00:19:52 -05002838 ext4_group_t group;
2839
Theodore Ts'o8df96752009-05-01 08:50:38 -04002840 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002841 return NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05002842 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002843 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002844}
2845
2846static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2847{
Muchun Song359745d2022-01-21 22:14:23 -08002848 struct super_block *sb = pde_data(file_inode(seq->file));
Alex Tomasc9de5602008-01-29 00:19:52 -05002849 ext4_group_t group;
2850
2851 ++*pos;
Theodore Ts'o8df96752009-05-01 08:50:38 -04002852 if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
Alex Tomasc9de5602008-01-29 00:19:52 -05002853 return NULL;
2854 group = *pos + 1;
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002855 return (void *) ((unsigned long) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05002856}
2857
2858static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2859{
Muchun Song359745d2022-01-21 22:14:23 -08002860 struct super_block *sb = pde_data(file_inode(seq->file));
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002861 ext4_group_t group = (ext4_group_t) ((unsigned long) v);
Alex Tomasc9de5602008-01-29 00:19:52 -05002862 int i;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002863 int err, buddy_loaded = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05002864 struct ext4_buddy e4b;
Aditya Kali1c8457c2012-06-30 19:10:57 -04002865 struct ext4_group_info *grinfo;
Arnd Bergmann2df2c342017-08-05 21:57:46 -04002866 unsigned char blocksize_bits = min_t(unsigned char,
2867 sb->s_blocksize_bits,
2868 EXT4_MAX_BLOCK_LOG_SIZE);
Alex Tomasc9de5602008-01-29 00:19:52 -05002869 struct sg {
2870 struct ext4_group_info info;
Theodore Ts'ob80b32b2017-08-14 08:29:18 -04002871 ext4_grpblk_t counters[EXT4_MAX_BLOCK_LOG_SIZE + 2];
Alex Tomasc9de5602008-01-29 00:19:52 -05002872 } sg;
2873
2874 group--;
2875 if (group == 0)
Rasmus Villemoes97b4af22015-06-15 00:32:58 -04002876 seq_puts(seq, "#group: free frags first ["
2877 " 2^0 2^1 2^2 2^3 2^4 2^5 2^6 "
Huaitong Han802cf1f2016-02-12 00:17:16 -05002878 " 2^7 2^8 2^9 2^10 2^11 2^12 2^13 ]\n");
Alex Tomasc9de5602008-01-29 00:19:52 -05002879
Theodore Ts'ob80b32b2017-08-14 08:29:18 -04002880 i = (blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2881 sizeof(struct ext4_group_info);
2882
Aditya Kali1c8457c2012-06-30 19:10:57 -04002883 grinfo = ext4_get_group_info(sb, group);
2884 /* Load the group info in memory only if not already loaded. */
2885 if (unlikely(EXT4_MB_GRP_NEED_INIT(grinfo))) {
2886 err = ext4_mb_load_buddy(sb, group, &e4b);
2887 if (err) {
2888 seq_printf(seq, "#%-5u: I/O error\n", group);
2889 return 0;
2890 }
2891 buddy_loaded = 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05002892 }
Aditya Kali1c8457c2012-06-30 19:10:57 -04002893
Theodore Ts'ob80b32b2017-08-14 08:29:18 -04002894 memcpy(&sg, ext4_get_group_info(sb, group), i);
Aditya Kali1c8457c2012-06-30 19:10:57 -04002895
2896 if (buddy_loaded)
2897 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05002898
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05002899 seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
Alex Tomasc9de5602008-01-29 00:19:52 -05002900 sg.info.bb_fragments, sg.info.bb_first_free);
2901 for (i = 0; i <= 13; i++)
Arnd Bergmann2df2c342017-08-05 21:57:46 -04002902 seq_printf(seq, " %-5u", i <= blocksize_bits + 1 ?
Alex Tomasc9de5602008-01-29 00:19:52 -05002903 sg.info.bb_counters[i] : 0);
Xu Wange0d438c2020-08-10 02:21:58 +00002904 seq_puts(seq, " ]\n");
Alex Tomasc9de5602008-01-29 00:19:52 -05002905
2906 return 0;
2907}
2908
2909static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2910{
2911}
2912
Christoph Hellwig247dbed2018-04-11 11:37:23 +02002913const struct seq_operations ext4_mb_seq_groups_ops = {
Alex Tomasc9de5602008-01-29 00:19:52 -05002914 .start = ext4_mb_seq_groups_start,
2915 .next = ext4_mb_seq_groups_next,
2916 .stop = ext4_mb_seq_groups_stop,
2917 .show = ext4_mb_seq_groups_show,
2918};
2919
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07002920int ext4_seq_mb_stats_show(struct seq_file *seq, void *offset)
2921{
2922 struct super_block *sb = (struct super_block *)seq->private;
2923 struct ext4_sb_info *sbi = EXT4_SB(sb);
2924
2925 seq_puts(seq, "mballoc:\n");
2926 if (!sbi->s_mb_stats) {
2927 seq_puts(seq, "\tmb stats collection turned off.\n");
2928 seq_puts(seq, "\tTo enable, please write \"1\" to sysfs file mb_stats.\n");
2929 return 0;
2930 }
2931 seq_printf(seq, "\treqs: %u\n", atomic_read(&sbi->s_bal_reqs));
2932 seq_printf(seq, "\tsuccess: %u\n", atomic_read(&sbi->s_bal_success));
2933
2934 seq_printf(seq, "\tgroups_scanned: %u\n", atomic_read(&sbi->s_bal_groups_scanned));
2935
2936 seq_puts(seq, "\tcr0_stats:\n");
2937 seq_printf(seq, "\t\thits: %llu\n", atomic64_read(&sbi->s_bal_cX_hits[0]));
2938 seq_printf(seq, "\t\tgroups_considered: %llu\n",
2939 atomic64_read(&sbi->s_bal_cX_groups_considered[0]));
2940 seq_printf(seq, "\t\tuseless_loops: %llu\n",
2941 atomic64_read(&sbi->s_bal_cX_failed[0]));
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07002942 seq_printf(seq, "\t\tbad_suggestions: %u\n",
2943 atomic_read(&sbi->s_bal_cr0_bad_suggestions));
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07002944
2945 seq_puts(seq, "\tcr1_stats:\n");
2946 seq_printf(seq, "\t\thits: %llu\n", atomic64_read(&sbi->s_bal_cX_hits[1]));
2947 seq_printf(seq, "\t\tgroups_considered: %llu\n",
2948 atomic64_read(&sbi->s_bal_cX_groups_considered[1]));
2949 seq_printf(seq, "\t\tuseless_loops: %llu\n",
2950 atomic64_read(&sbi->s_bal_cX_failed[1]));
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07002951 seq_printf(seq, "\t\tbad_suggestions: %u\n",
2952 atomic_read(&sbi->s_bal_cr1_bad_suggestions));
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07002953
2954 seq_puts(seq, "\tcr2_stats:\n");
2955 seq_printf(seq, "\t\thits: %llu\n", atomic64_read(&sbi->s_bal_cX_hits[2]));
2956 seq_printf(seq, "\t\tgroups_considered: %llu\n",
2957 atomic64_read(&sbi->s_bal_cX_groups_considered[2]));
2958 seq_printf(seq, "\t\tuseless_loops: %llu\n",
2959 atomic64_read(&sbi->s_bal_cX_failed[2]));
2960
2961 seq_puts(seq, "\tcr3_stats:\n");
2962 seq_printf(seq, "\t\thits: %llu\n", atomic64_read(&sbi->s_bal_cX_hits[3]));
2963 seq_printf(seq, "\t\tgroups_considered: %llu\n",
2964 atomic64_read(&sbi->s_bal_cX_groups_considered[3]));
2965 seq_printf(seq, "\t\tuseless_loops: %llu\n",
2966 atomic64_read(&sbi->s_bal_cX_failed[3]));
2967 seq_printf(seq, "\textents_scanned: %u\n", atomic_read(&sbi->s_bal_ex_scanned));
2968 seq_printf(seq, "\t\tgoal_hits: %u\n", atomic_read(&sbi->s_bal_goals));
2969 seq_printf(seq, "\t\t2^n_hits: %u\n", atomic_read(&sbi->s_bal_2orders));
2970 seq_printf(seq, "\t\tbreaks: %u\n", atomic_read(&sbi->s_bal_breaks));
2971 seq_printf(seq, "\t\tlost: %u\n", atomic_read(&sbi->s_mb_lost_chunks));
2972
2973 seq_printf(seq, "\tbuddies_generated: %u/%u\n",
2974 atomic_read(&sbi->s_mb_buddies_generated),
2975 ext4_get_groups_count(sb));
2976 seq_printf(seq, "\tbuddies_time_used: %llu\n",
2977 atomic64_read(&sbi->s_mb_generation_time));
2978 seq_printf(seq, "\tpreallocated: %u\n",
2979 atomic_read(&sbi->s_mb_preallocated));
2980 seq_printf(seq, "\tdiscarded: %u\n",
2981 atomic_read(&sbi->s_mb_discarded));
2982 return 0;
2983}
2984
Harshad Shirwadkarf68f4062021-04-01 10:21:28 -07002985static void *ext4_mb_seq_structs_summary_start(struct seq_file *seq, loff_t *pos)
Theodore Ts'oa5fda112021-08-14 10:41:30 -04002986__acquires(&EXT4_SB(sb)->s_mb_rb_lock)
Harshad Shirwadkarf68f4062021-04-01 10:21:28 -07002987{
Muchun Song359745d2022-01-21 22:14:23 -08002988 struct super_block *sb = pde_data(file_inode(seq->file));
Harshad Shirwadkarf68f4062021-04-01 10:21:28 -07002989 unsigned long position;
2990
2991 read_lock(&EXT4_SB(sb)->s_mb_rb_lock);
2992
2993 if (*pos < 0 || *pos >= MB_NUM_ORDERS(sb) + 1)
2994 return NULL;
2995 position = *pos + 1;
2996 return (void *) ((unsigned long) position);
2997}
2998
2999static void *ext4_mb_seq_structs_summary_next(struct seq_file *seq, void *v, loff_t *pos)
3000{
Muchun Song359745d2022-01-21 22:14:23 -08003001 struct super_block *sb = pde_data(file_inode(seq->file));
Harshad Shirwadkarf68f4062021-04-01 10:21:28 -07003002 unsigned long position;
3003
3004 ++*pos;
3005 if (*pos < 0 || *pos >= MB_NUM_ORDERS(sb) + 1)
3006 return NULL;
3007 position = *pos + 1;
3008 return (void *) ((unsigned long) position);
3009}
3010
3011static int ext4_mb_seq_structs_summary_show(struct seq_file *seq, void *v)
3012{
Muchun Song359745d2022-01-21 22:14:23 -08003013 struct super_block *sb = pde_data(file_inode(seq->file));
Harshad Shirwadkarf68f4062021-04-01 10:21:28 -07003014 struct ext4_sb_info *sbi = EXT4_SB(sb);
3015 unsigned long position = ((unsigned long) v);
3016 struct ext4_group_info *grp;
3017 struct rb_node *n;
3018 unsigned int count, min, max;
3019
3020 position--;
3021 if (position >= MB_NUM_ORDERS(sb)) {
3022 seq_puts(seq, "fragment_size_tree:\n");
3023 n = rb_first(&sbi->s_mb_avg_fragment_size_root);
3024 if (!n) {
3025 seq_puts(seq, "\ttree_min: 0\n\ttree_max: 0\n\ttree_nodes: 0\n");
3026 return 0;
3027 }
3028 grp = rb_entry(n, struct ext4_group_info, bb_avg_fragment_size_rb);
3029 min = grp->bb_fragments ? grp->bb_free / grp->bb_fragments : 0;
3030 count = 1;
3031 while (rb_next(n)) {
3032 count++;
3033 n = rb_next(n);
3034 }
3035 grp = rb_entry(n, struct ext4_group_info, bb_avg_fragment_size_rb);
3036 max = grp->bb_fragments ? grp->bb_free / grp->bb_fragments : 0;
3037
3038 seq_printf(seq, "\ttree_min: %u\n\ttree_max: %u\n\ttree_nodes: %u\n",
3039 min, max, count);
3040 return 0;
3041 }
3042
3043 if (position == 0) {
3044 seq_printf(seq, "optimize_scan: %d\n",
3045 test_opt2(sb, MB_OPTIMIZE_SCAN) ? 1 : 0);
3046 seq_puts(seq, "max_free_order_lists:\n");
3047 }
3048 count = 0;
3049 list_for_each_entry(grp, &sbi->s_mb_largest_free_orders[position],
3050 bb_largest_free_order_node)
3051 count++;
3052 seq_printf(seq, "\tlist_order_%u_groups: %u\n",
3053 (unsigned int)position, count);
3054
3055 return 0;
3056}
3057
3058static void ext4_mb_seq_structs_summary_stop(struct seq_file *seq, void *v)
Theodore Ts'oa5fda112021-08-14 10:41:30 -04003059__releases(&EXT4_SB(sb)->s_mb_rb_lock)
Harshad Shirwadkarf68f4062021-04-01 10:21:28 -07003060{
Muchun Song359745d2022-01-21 22:14:23 -08003061 struct super_block *sb = pde_data(file_inode(seq->file));
Harshad Shirwadkarf68f4062021-04-01 10:21:28 -07003062
3063 read_unlock(&EXT4_SB(sb)->s_mb_rb_lock);
3064}
3065
3066const struct seq_operations ext4_mb_seq_structs_summary_ops = {
3067 .start = ext4_mb_seq_structs_summary_start,
3068 .next = ext4_mb_seq_structs_summary_next,
3069 .stop = ext4_mb_seq_structs_summary_stop,
3070 .show = ext4_mb_seq_structs_summary_show,
3071};
3072
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003073static struct kmem_cache *get_groupinfo_cache(int blocksize_bits)
3074{
3075 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
3076 struct kmem_cache *cachep = ext4_groupinfo_caches[cache_index];
3077
3078 BUG_ON(!cachep);
3079 return cachep;
3080}
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003081
Theodore Ts'o28623c22012-09-05 01:31:50 -04003082/*
3083 * Allocate the top-level s_group_info array for the specified number
3084 * of groups
3085 */
3086int ext4_mb_alloc_groupinfo(struct super_block *sb, ext4_group_t ngroups)
3087{
3088 struct ext4_sb_info *sbi = EXT4_SB(sb);
3089 unsigned size;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003090 struct ext4_group_info ***old_groupinfo, ***new_groupinfo;
Theodore Ts'o28623c22012-09-05 01:31:50 -04003091
3092 size = (ngroups + EXT4_DESC_PER_BLOCK(sb) - 1) >>
3093 EXT4_DESC_PER_BLOCK_BITS(sb);
3094 if (size <= sbi->s_group_info_size)
3095 return 0;
3096
3097 size = roundup_pow_of_two(sizeof(*sbi->s_group_info) * size);
Michal Hockoa7c3e902017-05-08 15:57:09 -07003098 new_groupinfo = kvzalloc(size, GFP_KERNEL);
Theodore Ts'o28623c22012-09-05 01:31:50 -04003099 if (!new_groupinfo) {
3100 ext4_msg(sb, KERN_ERR, "can't allocate buddy meta group");
3101 return -ENOMEM;
3102 }
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003103 rcu_read_lock();
3104 old_groupinfo = rcu_dereference(sbi->s_group_info);
3105 if (old_groupinfo)
3106 memcpy(new_groupinfo, old_groupinfo,
Theodore Ts'o28623c22012-09-05 01:31:50 -04003107 sbi->s_group_info_size * sizeof(*sbi->s_group_info));
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003108 rcu_read_unlock();
3109 rcu_assign_pointer(sbi->s_group_info, new_groupinfo);
Theodore Ts'o28623c22012-09-05 01:31:50 -04003110 sbi->s_group_info_size = size / sizeof(*sbi->s_group_info);
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003111 if (old_groupinfo)
3112 ext4_kvfree_array_rcu(old_groupinfo);
Jack Qiu666245d2021-04-09 12:20:35 +08003113 ext4_debug("allocated s_groupinfo array for %d meta_bg's\n",
Theodore Ts'o28623c22012-09-05 01:31:50 -04003114 sbi->s_group_info_size);
3115 return 0;
3116}
3117
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003118/* Create and initialize ext4_group_info data for the given group. */
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05003119int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003120 struct ext4_group_desc *desc)
3121{
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003122 int i;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003123 int metalen = 0;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003124 int idx = group >> EXT4_DESC_PER_BLOCK_BITS(sb);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003125 struct ext4_sb_info *sbi = EXT4_SB(sb);
3126 struct ext4_group_info **meta_group_info;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003127 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003128
3129 /*
3130 * First check if this group is the first of a reserved block.
3131 * If it's true, we have to allocate a new table of pointers
3132 * to ext4_group_info structures
3133 */
3134 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
3135 metalen = sizeof(*meta_group_info) <<
3136 EXT4_DESC_PER_BLOCK_BITS(sb);
Dmitry Monakhov4fdb5542014-11-25 13:08:04 -05003137 meta_group_info = kmalloc(metalen, GFP_NOFS);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003138 if (meta_group_info == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04003139 ext4_msg(sb, KERN_ERR, "can't allocate mem "
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003140 "for a buddy group");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003141 goto exit_meta_group_info;
3142 }
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003143 rcu_read_lock();
3144 rcu_dereference(sbi->s_group_info)[idx] = meta_group_info;
3145 rcu_read_unlock();
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003146 }
3147
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003148 meta_group_info = sbi_array_rcu_deref(sbi, s_group_info, idx);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003149 i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
3150
Dmitry Monakhov4fdb5542014-11-25 13:08:04 -05003151 meta_group_info[i] = kmem_cache_zalloc(cachep, GFP_NOFS);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003152 if (meta_group_info[i] == NULL) {
Joe Perches7f6a11e2012-03-19 23:09:43 -04003153 ext4_msg(sb, KERN_ERR, "can't allocate buddy mem");
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003154 goto exit_group_info;
3155 }
3156 set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
3157 &(meta_group_info[i]->bb_state));
3158
3159 /*
3160 * initialize bb_free to be able to skip
3161 * empty groups without initialization
3162 */
Theodore Ts'o88446182018-06-14 00:58:00 -04003163 if (ext4_has_group_desc_csum(sb) &&
3164 (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003165 meta_group_info[i]->bb_free =
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04003166 ext4_free_clusters_after_init(sb, group, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003167 } else {
3168 meta_group_info[i]->bb_free =
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003169 ext4_free_group_clusters(sb, desc);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003170 }
3171
3172 INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05003173 init_rwsem(&meta_group_info[i]->alloc_sem);
Venkatesh Pallipadi64e290e2010-03-04 22:25:21 -05003174 meta_group_info[i]->bb_free_root = RB_ROOT;
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07003175 INIT_LIST_HEAD(&meta_group_info[i]->bb_largest_free_order_node);
3176 RB_CLEAR_NODE(&meta_group_info[i]->bb_avg_fragment_size_rb);
Curt Wohlgemuth8a57d9d2010-05-16 15:00:00 -04003177 meta_group_info[i]->bb_largest_free_order = -1; /* uninit */
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07003178 meta_group_info[i]->bb_group = group;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003179
Ritesh Harjania3450212020-05-10 11:54:48 +05303180 mb_group_bb_bitmap_alloc(sb, meta_group_info[i], group);
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003181 return 0;
3182
3183exit_group_info:
3184 /* If a meta_group_info table has been allocated, release it now */
Tao Macaaf7a22011-07-11 18:42:42 -04003185 if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003186 struct ext4_group_info ***group_info;
3187
3188 rcu_read_lock();
3189 group_info = rcu_dereference(sbi->s_group_info);
3190 kfree(group_info[idx]);
3191 group_info[idx] = NULL;
3192 rcu_read_unlock();
Tao Macaaf7a22011-07-11 18:42:42 -04003193 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003194exit_meta_group_info:
3195 return -ENOMEM;
3196} /* ext4_mb_add_groupinfo */
3197
Alex Tomasc9de5602008-01-29 00:19:52 -05003198static int ext4_mb_init_backend(struct super_block *sb)
3199{
Theodore Ts'o8df96752009-05-01 08:50:38 -04003200 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003201 ext4_group_t i;
Alex Tomasc9de5602008-01-29 00:19:52 -05003202 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o28623c22012-09-05 01:31:50 -04003203 int err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003204 struct ext4_group_desc *desc;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003205 struct ext4_group_info ***group_info;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003206 struct kmem_cache *cachep;
Alex Tomasc9de5602008-01-29 00:19:52 -05003207
Theodore Ts'o28623c22012-09-05 01:31:50 -04003208 err = ext4_mb_alloc_groupinfo(sb, ngroups);
3209 if (err)
3210 return err;
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003211
Alex Tomasc9de5602008-01-29 00:19:52 -05003212 sbi->s_buddy_cache = new_inode(sb);
3213 if (sbi->s_buddy_cache == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003214 ext4_msg(sb, KERN_ERR, "can't get new inode");
Alex Tomasc9de5602008-01-29 00:19:52 -05003215 goto err_freesgi;
3216 }
Yu Jian48e60612011-08-01 17:41:39 -04003217 /* To avoid potentially colliding with an valid on-disk inode number,
3218 * use EXT4_BAD_INO for the buddy cache inode number. This inode is
3219 * not in the inode hash, so it should never be found by iget(), but
3220 * this will avoid confusion if it ever shows up during debugging. */
3221 sbi->s_buddy_cache->i_ino = EXT4_BAD_INO;
Alex Tomasc9de5602008-01-29 00:19:52 -05003222 EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04003223 for (i = 0; i < ngroups; i++) {
Khazhismel Kumykov4b99faa2019-04-25 12:58:01 -04003224 cond_resched();
Alex Tomasc9de5602008-01-29 00:19:52 -05003225 desc = ext4_get_group_desc(sb, i, NULL);
3226 if (desc == NULL) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003227 ext4_msg(sb, KERN_ERR, "can't read descriptor %u", i);
Alex Tomasc9de5602008-01-29 00:19:52 -05003228 goto err_freebuddy;
3229 }
Frederic Bohe5f21b0e2008-07-11 19:27:31 -04003230 if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
3231 goto err_freebuddy;
Alex Tomasc9de5602008-01-29 00:19:52 -05003232 }
3233
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03003234 if (ext4_has_feature_flex_bg(sb)) {
Sabyrzhan Tasbolatovf91436d2021-02-24 15:58:00 +06003235 /* a single flex group is supposed to be read by a single IO.
3236 * 2 ^ s_log_groups_per_flex != UINT_MAX as s_mb_prefetch is
3237 * unsigned integer, so the maximum shift is 32.
3238 */
3239 if (sbi->s_es->s_log_groups_per_flex >= 32) {
3240 ext4_msg(sb, KERN_ERR, "too many log groups per flexible block group");
Phillip Pottera8867f42021-04-12 08:38:37 +01003241 goto err_freebuddy;
Sabyrzhan Tasbolatovf91436d2021-02-24 15:58:00 +06003242 }
3243 sbi->s_mb_prefetch = min_t(uint, 1 << sbi->s_es->s_log_groups_per_flex,
Chunguang Xu82ef1372020-12-04 11:05:43 +08003244 BLK_MAX_SEGMENT_SIZE >> (sb->s_blocksize_bits - 9));
Alex Zhuravlevcfd73232020-04-21 10:54:07 +03003245 sbi->s_mb_prefetch *= 8; /* 8 prefetch IOs in flight at most */
3246 } else {
3247 sbi->s_mb_prefetch = 32;
3248 }
3249 if (sbi->s_mb_prefetch > ext4_get_groups_count(sb))
3250 sbi->s_mb_prefetch = ext4_get_groups_count(sb);
3251 /* now many real IOs to prefetch within a single allocation at cr=0
3252 * given cr=0 is an CPU-related optimization we shouldn't try to
3253 * load too many groups, at some point we should start to use what
3254 * we've got in memory.
3255 * with an average random access time 5ms, it'd take a second to get
3256 * 200 groups (* N with flex_bg), so let's make this limit 4
3257 */
3258 sbi->s_mb_prefetch_limit = sbi->s_mb_prefetch * 4;
3259 if (sbi->s_mb_prefetch_limit > ext4_get_groups_count(sb))
3260 sbi->s_mb_prefetch_limit = ext4_get_groups_count(sb);
3261
Alex Tomasc9de5602008-01-29 00:19:52 -05003262 return 0;
3263
3264err_freebuddy:
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003265 cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Roel Kluinf1fa3342008-04-29 22:01:15 -04003266 while (i-- > 0)
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003267 kmem_cache_free(cachep, ext4_get_group_info(sb, i));
Theodore Ts'o28623c22012-09-05 01:31:50 -04003268 i = sbi->s_group_info_size;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003269 rcu_read_lock();
3270 group_info = rcu_dereference(sbi->s_group_info);
Roel Kluinf1fa3342008-04-29 22:01:15 -04003271 while (i-- > 0)
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003272 kfree(group_info[i]);
3273 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003274 iput(sbi->s_buddy_cache);
3275err_freesgi:
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003276 rcu_read_lock();
3277 kvfree(rcu_dereference(sbi->s_group_info));
3278 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003279 return -ENOMEM;
3280}
3281
Eric Sandeen2892c152011-02-12 08:12:18 -05003282static void ext4_groupinfo_destroy_slabs(void)
3283{
3284 int i;
3285
3286 for (i = 0; i < NR_GRPINFO_CACHES; i++) {
Sean Fu21c580d2018-05-20 22:44:13 -04003287 kmem_cache_destroy(ext4_groupinfo_caches[i]);
Eric Sandeen2892c152011-02-12 08:12:18 -05003288 ext4_groupinfo_caches[i] = NULL;
3289 }
3290}
3291
3292static int ext4_groupinfo_create_slab(size_t size)
3293{
3294 static DEFINE_MUTEX(ext4_grpinfo_slab_create_mutex);
3295 int slab_size;
3296 int blocksize_bits = order_base_2(size);
3297 int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
3298 struct kmem_cache *cachep;
3299
3300 if (cache_index >= NR_GRPINFO_CACHES)
3301 return -EINVAL;
3302
3303 if (unlikely(cache_index < 0))
3304 cache_index = 0;
3305
3306 mutex_lock(&ext4_grpinfo_slab_create_mutex);
3307 if (ext4_groupinfo_caches[cache_index]) {
3308 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
3309 return 0; /* Already created */
3310 }
3311
3312 slab_size = offsetof(struct ext4_group_info,
3313 bb_counters[blocksize_bits + 2]);
3314
3315 cachep = kmem_cache_create(ext4_groupinfo_slab_names[cache_index],
3316 slab_size, 0, SLAB_RECLAIM_ACCOUNT,
3317 NULL);
3318
Tao Ma823ba012011-07-11 18:26:01 -04003319 ext4_groupinfo_caches[cache_index] = cachep;
3320
Eric Sandeen2892c152011-02-12 08:12:18 -05003321 mutex_unlock(&ext4_grpinfo_slab_create_mutex);
3322 if (!cachep) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003323 printk(KERN_EMERG
3324 "EXT4-fs: no memory for groupinfo slab cache\n");
Eric Sandeen2892c152011-02-12 08:12:18 -05003325 return -ENOMEM;
3326 }
3327
Eric Sandeen2892c152011-02-12 08:12:18 -05003328 return 0;
3329}
3330
Wang Jianchao55cdd0a2021-07-24 15:41:23 +08003331static void ext4_discard_work(struct work_struct *work)
3332{
3333 struct ext4_sb_info *sbi = container_of(work,
3334 struct ext4_sb_info, s_discard_work);
3335 struct super_block *sb = sbi->s_sb;
3336 struct ext4_free_data *fd, *nfd;
3337 struct ext4_buddy e4b;
3338 struct list_head discard_list;
3339 ext4_group_t grp, load_grp;
3340 int err = 0;
3341
3342 INIT_LIST_HEAD(&discard_list);
3343 spin_lock(&sbi->s_md_lock);
3344 list_splice_init(&sbi->s_discard_list, &discard_list);
3345 spin_unlock(&sbi->s_md_lock);
3346
3347 load_grp = UINT_MAX;
3348 list_for_each_entry_safe(fd, nfd, &discard_list, efd_list) {
3349 /*
Wang Jianchao5036ab82021-08-30 15:52:46 +08003350 * If filesystem is umounting or no memory or suffering
3351 * from no space, give up the discard
Wang Jianchao55cdd0a2021-07-24 15:41:23 +08003352 */
Wang Jianchao5036ab82021-08-30 15:52:46 +08003353 if ((sb->s_flags & SB_ACTIVE) && !err &&
3354 !atomic_read(&sbi->s_retry_alloc_pending)) {
Wang Jianchao55cdd0a2021-07-24 15:41:23 +08003355 grp = fd->efd_group;
3356 if (grp != load_grp) {
3357 if (load_grp != UINT_MAX)
3358 ext4_mb_unload_buddy(&e4b);
3359
3360 err = ext4_mb_load_buddy(sb, grp, &e4b);
3361 if (err) {
3362 kmem_cache_free(ext4_free_data_cachep, fd);
3363 load_grp = UINT_MAX;
3364 continue;
3365 } else {
3366 load_grp = grp;
3367 }
3368 }
3369
3370 ext4_lock_group(sb, grp);
3371 ext4_try_to_trim_range(sb, &e4b, fd->efd_start_cluster,
3372 fd->efd_start_cluster + fd->efd_count - 1, 1);
3373 ext4_unlock_group(sb, grp);
3374 }
3375 kmem_cache_free(ext4_free_data_cachep, fd);
3376 }
3377
3378 if (load_grp != UINT_MAX)
3379 ext4_mb_unload_buddy(&e4b);
3380}
3381
Akira Fujita9d990122012-05-28 14:19:25 -04003382int ext4_mb_init(struct super_block *sb)
Alex Tomasc9de5602008-01-29 00:19:52 -05003383{
3384 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003385 unsigned i, j;
Nicolai Stange935244c2016-05-05 19:46:19 -04003386 unsigned offset, offset_incr;
Alex Tomasc9de5602008-01-29 00:19:52 -05003387 unsigned max;
Shen Feng74767c52008-07-11 19:27:31 -04003388 int ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05003389
Harshad Shirwadkar4b68f6d2021-04-01 10:21:26 -07003390 i = MB_NUM_ORDERS(sb) * sizeof(*sbi->s_mb_offsets);
Alex Tomasc9de5602008-01-29 00:19:52 -05003391
3392 sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
3393 if (sbi->s_mb_offsets == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003394 ret = -ENOMEM;
3395 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05003396 }
Yasunori Gotoff7ef322008-12-17 00:48:39 -05003397
Harshad Shirwadkar4b68f6d2021-04-01 10:21:26 -07003398 i = MB_NUM_ORDERS(sb) * sizeof(*sbi->s_mb_maxs);
Alex Tomasc9de5602008-01-29 00:19:52 -05003399 sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
3400 if (sbi->s_mb_maxs == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003401 ret = -ENOMEM;
3402 goto out;
3403 }
3404
Eric Sandeen2892c152011-02-12 08:12:18 -05003405 ret = ext4_groupinfo_create_slab(sb->s_blocksize);
3406 if (ret < 0)
3407 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05003408
3409 /* order 0 is regular bitmap */
3410 sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
3411 sbi->s_mb_offsets[0] = 0;
3412
3413 i = 1;
3414 offset = 0;
Nicolai Stange935244c2016-05-05 19:46:19 -04003415 offset_incr = 1 << (sb->s_blocksize_bits - 1);
Alex Tomasc9de5602008-01-29 00:19:52 -05003416 max = sb->s_blocksize << 2;
3417 do {
3418 sbi->s_mb_offsets[i] = offset;
3419 sbi->s_mb_maxs[i] = max;
Nicolai Stange935244c2016-05-05 19:46:19 -04003420 offset += offset_incr;
3421 offset_incr = offset_incr >> 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05003422 max = max >> 1;
3423 i++;
Harshad Shirwadkar4b68f6d2021-04-01 10:21:26 -07003424 } while (i < MB_NUM_ORDERS(sb));
3425
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07003426 sbi->s_mb_avg_fragment_size_root = RB_ROOT;
3427 sbi->s_mb_largest_free_orders =
3428 kmalloc_array(MB_NUM_ORDERS(sb), sizeof(struct list_head),
3429 GFP_KERNEL);
3430 if (!sbi->s_mb_largest_free_orders) {
3431 ret = -ENOMEM;
3432 goto out;
3433 }
3434 sbi->s_mb_largest_free_orders_locks =
3435 kmalloc_array(MB_NUM_ORDERS(sb), sizeof(rwlock_t),
3436 GFP_KERNEL);
3437 if (!sbi->s_mb_largest_free_orders_locks) {
3438 ret = -ENOMEM;
3439 goto out;
3440 }
3441 for (i = 0; i < MB_NUM_ORDERS(sb); i++) {
3442 INIT_LIST_HEAD(&sbi->s_mb_largest_free_orders[i]);
3443 rwlock_init(&sbi->s_mb_largest_free_orders_locks[i]);
3444 }
3445 rwlock_init(&sbi->s_mb_rb_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003446
Alex Tomasc9de5602008-01-29 00:19:52 -05003447 spin_lock_init(&sbi->s_md_lock);
Theodore Ts'od08854f2016-06-26 18:24:01 -04003448 sbi->s_mb_free_pending = 0;
Daeho Jeonga0154342017-06-22 23:54:33 -04003449 INIT_LIST_HEAD(&sbi->s_freed_data_list);
Wang Jianchao55cdd0a2021-07-24 15:41:23 +08003450 INIT_LIST_HEAD(&sbi->s_discard_list);
3451 INIT_WORK(&sbi->s_discard_work, ext4_discard_work);
Wang Jianchao5036ab82021-08-30 15:52:46 +08003452 atomic_set(&sbi->s_retry_alloc_pending, 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05003453
3454 sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
3455 sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
3456 sbi->s_mb_stats = MB_DEFAULT_STATS;
3457 sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
3458 sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
brookxu27bc4462020-08-17 15:36:15 +08003459 sbi->s_mb_max_inode_prealloc = MB_DEFAULT_MAX_INODE_PREALLOC;
Theodore Ts'o27baebb2011-09-09 19:02:51 -04003460 /*
3461 * The default group preallocation is 512, which for 4k block
3462 * sizes translates to 2 megabytes. However for bigalloc file
3463 * systems, this is probably too big (i.e, if the cluster size
3464 * is 1 megabyte, then group preallocation size becomes half a
3465 * gigabyte!). As a default, we will keep a two megabyte
3466 * group pralloc size for cluster sizes up to 64k, and after
3467 * that, we will force a minimum group preallocation size of
3468 * 32 clusters. This translates to 8 megs when the cluster
3469 * size is 256k, and 32 megs when the cluster size is 1 meg,
3470 * which seems reasonable as a default.
3471 */
3472 sbi->s_mb_group_prealloc = max(MB_DEFAULT_GROUP_PREALLOC >>
3473 sbi->s_cluster_bits, 32);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04003474 /*
3475 * If there is a s_stripe > 1, then we set the s_mb_group_prealloc
3476 * to the lowest multiple of s_stripe which is bigger than
3477 * the s_mb_group_prealloc as determined above. We want
3478 * the preallocation size to be an exact multiple of the
3479 * RAID stripe size so that preallocations don't fragment
3480 * the stripes.
3481 */
3482 if (sbi->s_stripe > 1) {
3483 sbi->s_mb_group_prealloc = roundup(
3484 sbi->s_mb_group_prealloc, sbi->s_stripe);
3485 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003486
Eric Sandeen730c2132008-09-13 15:23:29 -04003487 sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003488 if (sbi->s_locality_groups == NULL) {
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003489 ret = -ENOMEM;
Andrey Tsyvarev029b10c2014-05-12 12:34:21 -04003490 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05003491 }
Eric Sandeen730c2132008-09-13 15:23:29 -04003492 for_each_possible_cpu(i) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003493 struct ext4_locality_group *lg;
Eric Sandeen730c2132008-09-13 15:23:29 -04003494 lg = per_cpu_ptr(sbi->s_locality_groups, i);
Alex Tomasc9de5602008-01-29 00:19:52 -05003495 mutex_init(&lg->lg_mutex);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04003496 for (j = 0; j < PREALLOC_TB_SIZE; j++)
3497 INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
Alex Tomasc9de5602008-01-29 00:19:52 -05003498 spin_lock_init(&lg->lg_prealloc_lock);
3499 }
3500
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07003501 if (blk_queue_nonrot(bdev_get_queue(sb->s_bdev)))
3502 sbi->s_mb_max_linear_groups = 0;
3503 else
3504 sbi->s_mb_max_linear_groups = MB_DEFAULT_LINEAR_LIMIT;
Yu Jian79a77c52011-08-01 17:41:46 -04003505 /* init file for buddy data */
3506 ret = ext4_mb_init_backend(sb);
Tao Ma7aa0bae2011-10-06 10:22:28 -04003507 if (ret != 0)
3508 goto out_free_locality_groups;
Yu Jian79a77c52011-08-01 17:41:46 -04003509
Tao Ma7aa0bae2011-10-06 10:22:28 -04003510 return 0;
3511
3512out_free_locality_groups:
3513 free_percpu(sbi->s_locality_groups);
3514 sbi->s_locality_groups = NULL;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003515out:
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07003516 kfree(sbi->s_mb_largest_free_orders);
3517 kfree(sbi->s_mb_largest_free_orders_locks);
Tao Ma7aa0bae2011-10-06 10:22:28 -04003518 kfree(sbi->s_mb_offsets);
3519 sbi->s_mb_offsets = NULL;
3520 kfree(sbi->s_mb_maxs);
3521 sbi->s_mb_maxs = NULL;
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003522 return ret;
Alex Tomasc9de5602008-01-29 00:19:52 -05003523}
3524
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003525/* need to called with the ext4 group lock held */
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303526static int ext4_mb_cleanup_pa(struct ext4_group_info *grp)
Alex Tomasc9de5602008-01-29 00:19:52 -05003527{
3528 struct ext4_prealloc_space *pa;
3529 struct list_head *cur, *tmp;
3530 int count = 0;
3531
3532 list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
3533 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3534 list_del(&pa->pa_group_list);
3535 count++;
Aneesh Kumar K.V688f05a2008-10-13 12:14:14 -04003536 kmem_cache_free(ext4_pspace_cachep, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05003537 }
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303538 return count;
Alex Tomasc9de5602008-01-29 00:19:52 -05003539}
3540
3541int ext4_mb_release(struct super_block *sb)
3542{
Theodore Ts'o8df96752009-05-01 08:50:38 -04003543 ext4_group_t ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003544 ext4_group_t i;
3545 int num_meta_group_infos;
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003546 struct ext4_group_info *grinfo, ***group_info;
Alex Tomasc9de5602008-01-29 00:19:52 -05003547 struct ext4_sb_info *sbi = EXT4_SB(sb);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003548 struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303549 int count;
Alex Tomasc9de5602008-01-29 00:19:52 -05003550
Wang Jianchao55cdd0a2021-07-24 15:41:23 +08003551 if (test_opt(sb, DISCARD)) {
3552 /*
3553 * wait the discard work to drain all of ext4_free_data
3554 */
3555 flush_work(&sbi->s_discard_work);
3556 WARN_ON_ONCE(!list_empty(&sbi->s_discard_list));
3557 }
3558
Alex Tomasc9de5602008-01-29 00:19:52 -05003559 if (sbi->s_group_info) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04003560 for (i = 0; i < ngroups; i++) {
Khazhismel Kumykov4b99faa2019-04-25 12:58:01 -04003561 cond_resched();
Alex Tomasc9de5602008-01-29 00:19:52 -05003562 grinfo = ext4_get_group_info(sb, i);
Ritesh Harjania3450212020-05-10 11:54:48 +05303563 mb_group_bb_bitmap_free(grinfo);
Alex Tomasc9de5602008-01-29 00:19:52 -05003564 ext4_lock_group(sb, i);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303565 count = ext4_mb_cleanup_pa(grinfo);
3566 if (count)
3567 mb_debug(sb, "mballoc: %d PAs left\n",
3568 count);
Alex Tomasc9de5602008-01-29 00:19:52 -05003569 ext4_unlock_group(sb, i);
Curt Wohlgemuthfb1813f2010-10-27 21:29:12 -04003570 kmem_cache_free(cachep, grinfo);
Alex Tomasc9de5602008-01-29 00:19:52 -05003571 }
Theodore Ts'o8df96752009-05-01 08:50:38 -04003572 num_meta_group_infos = (ngroups +
Alex Tomasc9de5602008-01-29 00:19:52 -05003573 EXT4_DESC_PER_BLOCK(sb) - 1) >>
3574 EXT4_DESC_PER_BLOCK_BITS(sb);
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003575 rcu_read_lock();
3576 group_info = rcu_dereference(sbi->s_group_info);
Alex Tomasc9de5602008-01-29 00:19:52 -05003577 for (i = 0; i < num_meta_group_infos; i++)
Suraj Jitindar Singhdf3da4e2020-02-18 19:08:50 -08003578 kfree(group_info[i]);
3579 kvfree(group_info);
3580 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05003581 }
Harshad Shirwadkar196e4022021-04-01 10:21:27 -07003582 kfree(sbi->s_mb_largest_free_orders);
3583 kfree(sbi->s_mb_largest_free_orders_locks);
Alex Tomasc9de5602008-01-29 00:19:52 -05003584 kfree(sbi->s_mb_offsets);
3585 kfree(sbi->s_mb_maxs);
Markus Elfringbfcba2d2014-11-25 20:01:37 -05003586 iput(sbi->s_buddy_cache);
Alex Tomasc9de5602008-01-29 00:19:52 -05003587 if (sbi->s_mb_stats) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003588 ext4_msg(sb, KERN_INFO,
3589 "mballoc: %u blocks %u reqs (%u success)",
Alex Tomasc9de5602008-01-29 00:19:52 -05003590 atomic_read(&sbi->s_bal_allocated),
3591 atomic_read(&sbi->s_bal_reqs),
3592 atomic_read(&sbi->s_bal_success));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003593 ext4_msg(sb, KERN_INFO,
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07003594 "mballoc: %u extents scanned, %u groups scanned, %u goal hits, "
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003595 "%u 2^N hits, %u breaks, %u lost",
Alex Tomasc9de5602008-01-29 00:19:52 -05003596 atomic_read(&sbi->s_bal_ex_scanned),
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07003597 atomic_read(&sbi->s_bal_groups_scanned),
Alex Tomasc9de5602008-01-29 00:19:52 -05003598 atomic_read(&sbi->s_bal_goals),
3599 atomic_read(&sbi->s_bal_2orders),
3600 atomic_read(&sbi->s_bal_breaks),
3601 atomic_read(&sbi->s_mb_lost_chunks));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003602 ext4_msg(sb, KERN_INFO,
Harshad Shirwadkar67d25182021-04-01 10:21:23 -07003603 "mballoc: %u generated and it took %llu",
3604 atomic_read(&sbi->s_mb_buddies_generated),
3605 atomic64_read(&sbi->s_mb_generation_time));
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04003606 ext4_msg(sb, KERN_INFO,
3607 "mballoc: %u preallocated, %u discarded",
Alex Tomasc9de5602008-01-29 00:19:52 -05003608 atomic_read(&sbi->s_mb_preallocated),
3609 atomic_read(&sbi->s_mb_discarded));
3610 }
3611
Eric Sandeen730c2132008-09-13 15:23:29 -04003612 free_percpu(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05003613
3614 return 0;
3615}
3616
Lukas Czerner77ca6cd2010-10-27 21:30:11 -04003617static inline int ext4_issue_discard(struct super_block *sb,
Daeho Jeonga0154342017-06-22 23:54:33 -04003618 ext4_group_t block_group, ext4_grpblk_t cluster, int count,
3619 struct bio **biop)
Jiaying Zhang5c521832010-07-27 11:56:05 -04003620{
Jiaying Zhang5c521832010-07-27 11:56:05 -04003621 ext4_fsblk_t discard_block;
3622
Theodore Ts'o84130192011-09-09 18:50:51 -04003623 discard_block = (EXT4_C2B(EXT4_SB(sb), cluster) +
3624 ext4_group_first_block_no(sb, block_group));
3625 count = EXT4_C2B(EXT4_SB(sb), count);
Jiaying Zhang5c521832010-07-27 11:56:05 -04003626 trace_ext4_discard_blocks(sb,
3627 (unsigned long long) discard_block, count);
Daeho Jeonga0154342017-06-22 23:54:33 -04003628 if (biop) {
3629 return __blkdev_issue_discard(sb->s_bdev,
3630 (sector_t)discard_block << (sb->s_blocksize_bits - 9),
3631 (sector_t)count << (sb->s_blocksize_bits - 9),
3632 GFP_NOFS, 0, biop);
3633 } else
3634 return sb_issue_discard(sb, discard_block, count, GFP_NOFS, 0);
Jiaying Zhang5c521832010-07-27 11:56:05 -04003635}
3636
Daeho Jeonga0154342017-06-22 23:54:33 -04003637static void ext4_free_data_in_buddy(struct super_block *sb,
3638 struct ext4_free_data *entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05003639{
Alex Tomasc9de5602008-01-29 00:19:52 -05003640 struct ext4_buddy e4b;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04003641 struct ext4_group_info *db;
Theodore Ts'od9f34502011-04-30 13:47:24 -04003642 int err, count = 0, count2 = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05003643
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303644 mb_debug(sb, "gonna free %u blocks in group %u (0x%p):",
Bobi Jam18aadd42012-02-20 17:53:02 -05003645 entry->efd_count, entry->efd_group, entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05003646
Bobi Jam18aadd42012-02-20 17:53:02 -05003647 err = ext4_mb_load_buddy(sb, entry->efd_group, &e4b);
3648 /* we expect to find existing buddy because it's pinned */
3649 BUG_ON(err != 0);
Theodore Ts'ob90f6872010-04-20 16:51:59 -04003650
Theodore Ts'od08854f2016-06-26 18:24:01 -04003651 spin_lock(&EXT4_SB(sb)->s_md_lock);
3652 EXT4_SB(sb)->s_mb_free_pending -= entry->efd_count;
3653 spin_unlock(&EXT4_SB(sb)->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05003654
Bobi Jam18aadd42012-02-20 17:53:02 -05003655 db = e4b.bd_info;
3656 /* there are blocks to put in buddy to make them really free */
3657 count += entry->efd_count;
3658 count2++;
3659 ext4_lock_group(sb, entry->efd_group);
3660 /* Take it out of per group rb tree */
3661 rb_erase(&entry->efd_node, &(db->bb_free_root));
3662 mb_free_blocks(NULL, &e4b, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04003663
Bobi Jam18aadd42012-02-20 17:53:02 -05003664 /*
3665 * Clear the trimmed flag for the group so that the next
3666 * ext4_trim_fs can trim it.
3667 * If the volume is mounted with -o discard, online discard
3668 * is supported and the free blocks will be trimmed online.
3669 */
3670 if (!test_opt(sb, DISCARD))
3671 EXT4_MB_GRP_CLEAR_TRIMMED(db);
3672
3673 if (!db->bb_free_root.rb_node) {
3674 /* No more items in the per group rb tree
3675 * balance refcounts from ext4_mb_free_metadata()
Tao Ma3d56b8d2011-07-11 00:03:38 -04003676 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003677 put_page(e4b.bd_buddy_page);
3678 put_page(e4b.bd_bitmap_page);
Theodore Ts'o3e624fc2008-10-16 20:00:24 -04003679 }
Bobi Jam18aadd42012-02-20 17:53:02 -05003680 ext4_unlock_group(sb, entry->efd_group);
Bobi Jam18aadd42012-02-20 17:53:02 -05003681 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05003682
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303683 mb_debug(sb, "freed %d blocks in %d structures\n", count,
3684 count2);
Alex Tomasc9de5602008-01-29 00:19:52 -05003685}
3686
Daeho Jeonga0154342017-06-22 23:54:33 -04003687/*
3688 * This function is called by the jbd2 layer once the commit has finished,
3689 * so we know we can free the blocks that were released with that commit.
3690 */
3691void ext4_process_freed_data(struct super_block *sb, tid_t commit_tid)
3692{
3693 struct ext4_sb_info *sbi = EXT4_SB(sb);
3694 struct ext4_free_data *entry, *tmp;
Daeho Jeonga0154342017-06-22 23:54:33 -04003695 struct list_head freed_data_list;
3696 struct list_head *cut_pos = NULL;
Wang Jianchao55cdd0a2021-07-24 15:41:23 +08003697 bool wake;
Daeho Jeonga0154342017-06-22 23:54:33 -04003698
3699 INIT_LIST_HEAD(&freed_data_list);
3700
3701 spin_lock(&sbi->s_md_lock);
3702 list_for_each_entry(entry, &sbi->s_freed_data_list, efd_list) {
3703 if (entry->efd_tid != commit_tid)
3704 break;
3705 cut_pos = &entry->efd_list;
3706 }
3707 if (cut_pos)
3708 list_cut_position(&freed_data_list, &sbi->s_freed_data_list,
3709 cut_pos);
3710 spin_unlock(&sbi->s_md_lock);
3711
Wang Jianchao55cdd0a2021-07-24 15:41:23 +08003712 list_for_each_entry(entry, &freed_data_list, efd_list)
Daeho Jeonga0154342017-06-22 23:54:33 -04003713 ext4_free_data_in_buddy(sb, entry);
Wang Jianchao55cdd0a2021-07-24 15:41:23 +08003714
3715 if (test_opt(sb, DISCARD)) {
3716 spin_lock(&sbi->s_md_lock);
3717 wake = list_empty(&sbi->s_discard_list);
3718 list_splice_tail(&freed_data_list, &sbi->s_discard_list);
3719 spin_unlock(&sbi->s_md_lock);
3720 if (wake)
3721 queue_work(system_unbound_wq, &sbi->s_discard_work);
3722 } else {
3723 list_for_each_entry_safe(entry, tmp, &freed_data_list, efd_list)
3724 kmem_cache_free(ext4_free_data_cachep, entry);
3725 }
Daeho Jeonga0154342017-06-22 23:54:33 -04003726}
3727
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04003728int __init ext4_init_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05003729{
Theodore Ts'o16828082010-10-27 21:30:09 -04003730 ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space,
3731 SLAB_RECLAIM_ACCOUNT);
Alex Tomasc9de5602008-01-29 00:19:52 -05003732 if (ext4_pspace_cachep == NULL)
Ritesh Harjanif2835292020-05-10 11:54:46 +05303733 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05003734
Theodore Ts'o16828082010-10-27 21:30:09 -04003735 ext4_ac_cachep = KMEM_CACHE(ext4_allocation_context,
3736 SLAB_RECLAIM_ACCOUNT);
Ritesh Harjanif2835292020-05-10 11:54:46 +05303737 if (ext4_ac_cachep == NULL)
3738 goto out_pa_free;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04003739
Bobi Jam18aadd42012-02-20 17:53:02 -05003740 ext4_free_data_cachep = KMEM_CACHE(ext4_free_data,
3741 SLAB_RECLAIM_ACCOUNT);
Ritesh Harjanif2835292020-05-10 11:54:46 +05303742 if (ext4_free_data_cachep == NULL)
3743 goto out_ac_free;
3744
Alex Tomasc9de5602008-01-29 00:19:52 -05003745 return 0;
Ritesh Harjanif2835292020-05-10 11:54:46 +05303746
3747out_ac_free:
3748 kmem_cache_destroy(ext4_ac_cachep);
3749out_pa_free:
3750 kmem_cache_destroy(ext4_pspace_cachep);
3751out:
3752 return -ENOMEM;
Alex Tomasc9de5602008-01-29 00:19:52 -05003753}
3754
Theodore Ts'o5dabfc72010-10-27 21:30:14 -04003755void ext4_exit_mballoc(void)
Alex Tomasc9de5602008-01-29 00:19:52 -05003756{
Theodore Ts'o60e66792010-05-17 07:00:00 -04003757 /*
Jesper Dangaard Brouer3e03f9c2009-07-05 22:29:27 -04003758 * Wait for completion of call_rcu()'s on ext4_pspace_cachep
3759 * before destroying the slab cache.
3760 */
3761 rcu_barrier();
Alex Tomasc9de5602008-01-29 00:19:52 -05003762 kmem_cache_destroy(ext4_pspace_cachep);
Eric Sandeen256bdb42008-02-10 01:13:33 -05003763 kmem_cache_destroy(ext4_ac_cachep);
Bobi Jam18aadd42012-02-20 17:53:02 -05003764 kmem_cache_destroy(ext4_free_data_cachep);
Eric Sandeen2892c152011-02-12 08:12:18 -05003765 ext4_groupinfo_destroy_slabs();
Alex Tomasc9de5602008-01-29 00:19:52 -05003766}
3767
3768
3769/*
Uwe Kleine-König73b2c712010-07-30 21:02:47 +02003770 * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
Alex Tomasc9de5602008-01-29 00:19:52 -05003771 * Returns 0 if success or error code
3772 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003773static noinline_for_stack int
3774ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003775 handle_t *handle, unsigned int reserv_clstrs)
Alex Tomasc9de5602008-01-29 00:19:52 -05003776{
3777 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05003778 struct ext4_group_desc *gdp;
3779 struct buffer_head *gdp_bh;
3780 struct ext4_sb_info *sbi;
3781 struct super_block *sb;
3782 ext4_fsblk_t block;
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003783 int err, len;
Alex Tomasc9de5602008-01-29 00:19:52 -05003784
3785 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3786 BUG_ON(ac->ac_b_ex.fe_len <= 0);
3787
3788 sb = ac->ac_sb;
3789 sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003790
Theodore Ts'o574ca172008-07-11 19:27:31 -04003791 bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04003792 if (IS_ERR(bitmap_bh)) {
3793 err = PTR_ERR(bitmap_bh);
3794 bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05003795 goto out_err;
Darrick J. Wong9008a582015-10-17 21:33:24 -04003796 }
Alex Tomasc9de5602008-01-29 00:19:52 -05003797
liang xie5d601252014-05-12 22:06:43 -04003798 BUFFER_TRACE(bitmap_bh, "getting write access");
Jan Kara188c2992021-08-16 11:57:04 +02003799 err = ext4_journal_get_write_access(handle, sb, bitmap_bh,
3800 EXT4_JTR_NONE);
Alex Tomasc9de5602008-01-29 00:19:52 -05003801 if (err)
3802 goto out_err;
3803
3804 err = -EIO;
3805 gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
3806 if (!gdp)
3807 goto out_err;
3808
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003809 ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003810 ext4_free_group_clusters(sb, gdp));
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04003811
liang xie5d601252014-05-12 22:06:43 -04003812 BUFFER_TRACE(gdp_bh, "get_write_access");
Jan Kara188c2992021-08-16 11:57:04 +02003813 err = ext4_journal_get_write_access(handle, sb, gdp_bh, EXT4_JTR_NONE);
Alex Tomasc9de5602008-01-29 00:19:52 -05003814 if (err)
3815 goto out_err;
3816
Akinobu Mitabda00de2010-03-03 23:53:25 -05003817 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
Alex Tomasc9de5602008-01-29 00:19:52 -05003818
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003819 len = EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Jan Karace9f24c2020-07-28 15:04:34 +02003820 if (!ext4_inode_block_valid(ac->ac_inode, block, len)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05003821 ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
Theodore Ts'o1084f252012-03-19 23:13:43 -04003822 "fs metadata", block, block+len);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003823 /* File system mounted not to panic on error
Vegard Nossum554a5cc2016-07-14 23:02:47 -04003824 * Fix the bitmap and return EFSCORRUPTED
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003825 * We leak some of the blocks here.
3826 */
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003827 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003828 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
3829 ac->ac_b_ex.fe_len);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003830 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Frank Mayhar03901312009-01-07 00:06:22 -05003831 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003832 if (!err)
Vegard Nossum554a5cc2016-07-14 23:02:47 -04003833 err = -EFSCORRUPTED;
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04003834 goto out_err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003835 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003836
3837 ext4_lock_group(sb, ac->ac_b_ex.fe_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05003838#ifdef AGGRESSIVE_CHECK
3839 {
3840 int i;
3841 for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
3842 BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
3843 bitmap_bh->b_data));
3844 }
3845 }
3846#endif
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04003847 ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
3848 ac->ac_b_ex.fe_len);
Theodore Ts'o88446182018-06-14 00:58:00 -04003849 if (ext4_has_group_desc_csum(sb) &&
3850 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
Alex Tomasc9de5602008-01-29 00:19:52 -05003851 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003852 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -04003853 ext4_free_clusters_after_init(sb,
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003854 ac->ac_b_ex.fe_group, gdp));
Alex Tomasc9de5602008-01-29 00:19:52 -05003855 }
Theodore Ts'o021b65b2011-09-09 19:08:51 -04003856 len = ext4_free_group_clusters(sb, gdp) - ac->ac_b_ex.fe_len;
3857 ext4_free_group_clusters_set(sb, gdp, len);
Tao Ma79f1ba42012-10-22 00:34:32 -04003858 ext4_block_bitmap_csum_set(sb, ac->ac_b_ex.fe_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04003859 ext4_group_desc_csum_set(sb, ac->ac_b_ex.fe_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04003860
3861 ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04003862 percpu_counter_sub(&sbi->s_freeclusters_counter, ac->ac_b_ex.fe_len);
Mingming Caod2a17632008-07-14 17:52:37 -04003863 /*
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003864 * Now reduce the dirty block count also. Should not go negative
Mingming Caod2a17632008-07-14 17:52:37 -04003865 */
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003866 if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
3867 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04003868 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
3869 reserv_clstrs);
Alex Tomasc9de5602008-01-29 00:19:52 -05003870
Jose R. Santos772cb7c2008-07-11 19:27:31 -04003871 if (sbi->s_log_groups_per_flex) {
3872 ext4_group_t flex_group = ext4_flex_group(sbi,
3873 ac->ac_b_ex.fe_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04003874 atomic64_sub(ac->ac_b_ex.fe_len,
Suraj Jitindar Singh7c990722020-02-18 19:08:51 -08003875 &sbi_array_rcu_deref(sbi, s_flex_groups,
3876 flex_group)->free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04003877 }
3878
Frank Mayhar03901312009-01-07 00:06:22 -05003879 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05003880 if (err)
3881 goto out_err;
Frank Mayhar03901312009-01-07 00:06:22 -05003882 err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05003883
3884out_err:
Aneesh Kumar K.V42a10ad2008-02-10 01:07:28 -05003885 brelse(bitmap_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05003886 return err;
3887}
3888
3889/*
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07003890 * Idempotent helper for Ext4 fast commit replay path to set the state of
3891 * blocks in bitmaps and update counters.
3892 */
3893void ext4_mb_mark_bb(struct super_block *sb, ext4_fsblk_t block,
3894 int len, int state)
3895{
3896 struct buffer_head *bitmap_bh = NULL;
3897 struct ext4_group_desc *gdp;
3898 struct buffer_head *gdp_bh;
3899 struct ext4_sb_info *sbi = EXT4_SB(sb);
3900 ext4_group_t group;
3901 ext4_grpblk_t blkoff;
3902 int i, clen, err;
3903 int already;
3904
3905 clen = EXT4_B2C(sbi, len);
3906
3907 ext4_get_group_no_and_offset(sb, block, &group, &blkoff);
3908 bitmap_bh = ext4_read_block_bitmap(sb, group);
3909 if (IS_ERR(bitmap_bh)) {
3910 err = PTR_ERR(bitmap_bh);
3911 bitmap_bh = NULL;
3912 goto out_err;
3913 }
3914
3915 err = -EIO;
3916 gdp = ext4_get_group_desc(sb, group, &gdp_bh);
3917 if (!gdp)
3918 goto out_err;
3919
3920 ext4_lock_group(sb, group);
3921 already = 0;
3922 for (i = 0; i < clen; i++)
3923 if (!mb_test_bit(blkoff + i, bitmap_bh->b_data) == !state)
3924 already++;
3925
3926 if (state)
3927 ext4_set_bits(bitmap_bh->b_data, blkoff, clen);
3928 else
3929 mb_test_and_clear_bits(bitmap_bh->b_data, blkoff, clen);
3930 if (ext4_has_group_desc_csum(sb) &&
3931 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
3932 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
3933 ext4_free_group_clusters_set(sb, gdp,
3934 ext4_free_clusters_after_init(sb,
3935 group, gdp));
3936 }
3937 if (state)
3938 clen = ext4_free_group_clusters(sb, gdp) - clen + already;
3939 else
3940 clen = ext4_free_group_clusters(sb, gdp) + clen - already;
3941
3942 ext4_free_group_clusters_set(sb, gdp, clen);
3943 ext4_block_bitmap_csum_set(sb, group, gdp, bitmap_bh);
3944 ext4_group_desc_csum_set(sb, group, gdp);
3945
3946 ext4_unlock_group(sb, group);
3947
3948 if (sbi->s_log_groups_per_flex) {
3949 ext4_group_t flex_group = ext4_flex_group(sbi, group);
3950
3951 atomic64_sub(len,
3952 &sbi_array_rcu_deref(sbi, s_flex_groups,
3953 flex_group)->free_clusters);
3954 }
3955
3956 err = ext4_handle_dirty_metadata(NULL, NULL, bitmap_bh);
3957 if (err)
3958 goto out_err;
3959 sync_dirty_buffer(bitmap_bh);
3960 err = ext4_handle_dirty_metadata(NULL, NULL, gdp_bh);
3961 sync_dirty_buffer(gdp_bh);
3962
3963out_err:
3964 brelse(bitmap_bh);
3965}
3966
3967/*
Alex Tomasc9de5602008-01-29 00:19:52 -05003968 * here we normalize request for locality group
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04003969 * Group request are normalized to s_mb_group_prealloc, which goes to
3970 * s_strip if we set the same via mount option.
3971 * s_mb_group_prealloc can be configured via
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04003972 * /sys/fs/ext4/<partition>/mb_group_prealloc
Alex Tomasc9de5602008-01-29 00:19:52 -05003973 *
3974 * XXX: should we try to preallocate more than the group has now?
3975 */
3976static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
3977{
3978 struct super_block *sb = ac->ac_sb;
3979 struct ext4_locality_group *lg = ac->ac_lg;
3980
3981 BUG_ON(lg == NULL);
Dan Ehrenbergd7a1fee2011-07-17 21:11:30 -04003982 ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
Ritesh Harjanid3df1452020-05-10 11:54:54 +05303983 mb_debug(sb, "goal %u blocks for locality group\n", ac->ac_g_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05003984}
3985
3986/*
3987 * Normalization means making request better in terms of
3988 * size and alignment
3989 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04003990static noinline_for_stack void
3991ext4_mb_normalize_request(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05003992 struct ext4_allocation_request *ar)
3993{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04003994 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05003995 int bsbits, max;
3996 ext4_lblk_t end;
Curt Wohlgemuth1592d2c2012-02-20 17:53:03 -05003997 loff_t size, start_off;
3998 loff_t orig_size __maybe_unused;
Andi Kleen5a0790c2010-06-14 13:28:03 -04003999 ext4_lblk_t start;
Alex Tomasc9de5602008-01-29 00:19:52 -05004000 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04004001 struct ext4_prealloc_space *pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05004002
4003 /* do normalize only data requests, metadata requests
4004 do not need preallocation */
4005 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
4006 return;
4007
4008 /* sometime caller may want exact blocks */
4009 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
4010 return;
4011
4012 /* caller may indicate that preallocation isn't
4013 * required (it's a tail, for example) */
4014 if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
4015 return;
4016
4017 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
4018 ext4_mb_normalize_group_request(ac);
4019 return ;
4020 }
4021
4022 bsbits = ac->ac_sb->s_blocksize_bits;
4023
4024 /* first, let's learn actual file size
4025 * given current request is allocated */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004026 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004027 size = size << bsbits;
4028 if (size < i_size_read(ac->ac_inode))
4029 size = i_size_read(ac->ac_inode);
Andi Kleen5a0790c2010-06-14 13:28:03 -04004030 orig_size = size;
Alex Tomasc9de5602008-01-29 00:19:52 -05004031
Valerie Clement19304792008-05-13 19:31:14 -04004032 /* max size of free chunks */
4033 max = 2 << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05004034
Valerie Clement19304792008-05-13 19:31:14 -04004035#define NRL_CHECK_SIZE(req, size, max, chunk_size) \
4036 (req <= (size) || max <= (chunk_size))
Alex Tomasc9de5602008-01-29 00:19:52 -05004037
4038 /* first, try to predict filesize */
4039 /* XXX: should this table be tunable? */
4040 start_off = 0;
4041 if (size <= 16 * 1024) {
4042 size = 16 * 1024;
4043 } else if (size <= 32 * 1024) {
4044 size = 32 * 1024;
4045 } else if (size <= 64 * 1024) {
4046 size = 64 * 1024;
4047 } else if (size <= 128 * 1024) {
4048 size = 128 * 1024;
4049 } else if (size <= 256 * 1024) {
4050 size = 256 * 1024;
4051 } else if (size <= 512 * 1024) {
4052 size = 512 * 1024;
4053 } else if (size <= 1024 * 1024) {
4054 size = 1024 * 1024;
Valerie Clement19304792008-05-13 19:31:14 -04004055 } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004056 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
Valerie Clement19304792008-05-13 19:31:14 -04004057 (21 - bsbits)) << 21;
4058 size = 2 * 1024 * 1024;
4059 } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004060 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
4061 (22 - bsbits)) << 22;
4062 size = 4 * 1024 * 1024;
4063 } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
Valerie Clement19304792008-05-13 19:31:14 -04004064 (8<<20)>>bsbits, max, 8 * 1024)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004065 start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
4066 (23 - bsbits)) << 23;
4067 size = 8 * 1024 * 1024;
4068 } else {
Xiaoguang Wangb27b1532014-07-27 22:26:36 -04004069 start_off = (loff_t) ac->ac_o_ex.fe_logical << bsbits;
4070 size = (loff_t) EXT4_C2B(EXT4_SB(ac->ac_sb),
4071 ac->ac_o_ex.fe_len) << bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05004072 }
Andi Kleen5a0790c2010-06-14 13:28:03 -04004073 size = size >> bsbits;
4074 start = start_off >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05004075
4076 /* don't cover already allocated blocks in selected range */
4077 if (ar->pleft && start <= ar->lleft) {
4078 size -= ar->lleft + 1 - start;
4079 start = ar->lleft + 1;
4080 }
4081 if (ar->pright && start + size - 1 >= ar->lright)
4082 size -= start + size - ar->lright;
4083
Jan Karacd648b82017-01-27 14:34:30 -05004084 /*
4085 * Trim allocation request for filesystems with artificially small
4086 * groups.
4087 */
4088 if (size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb))
4089 size = EXT4_BLOCKS_PER_GROUP(ac->ac_sb);
4090
Alex Tomasc9de5602008-01-29 00:19:52 -05004091 end = start + size;
4092
4093 /* check we don't cross already preallocated blocks */
4094 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04004095 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004096 ext4_lblk_t pa_end;
Alex Tomasc9de5602008-01-29 00:19:52 -05004097
Alex Tomasc9de5602008-01-29 00:19:52 -05004098 if (pa->pa_deleted)
4099 continue;
4100 spin_lock(&pa->pa_lock);
4101 if (pa->pa_deleted) {
4102 spin_unlock(&pa->pa_lock);
4103 continue;
4104 }
4105
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004106 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
4107 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004108
4109 /* PA must not overlap original request */
4110 BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
4111 ac->ac_o_ex.fe_logical < pa->pa_lstart));
4112
Eric Sandeen38877f42009-08-17 23:55:24 -04004113 /* skip PAs this normalized request doesn't overlap with */
4114 if (pa->pa_lstart >= end || pa_end <= start) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004115 spin_unlock(&pa->pa_lock);
4116 continue;
4117 }
4118 BUG_ON(pa->pa_lstart <= start && pa_end >= end);
4119
Eric Sandeen38877f42009-08-17 23:55:24 -04004120 /* adjust start or end to be adjacent to this pa */
Alex Tomasc9de5602008-01-29 00:19:52 -05004121 if (pa_end <= ac->ac_o_ex.fe_logical) {
4122 BUG_ON(pa_end < start);
4123 start = pa_end;
Eric Sandeen38877f42009-08-17 23:55:24 -04004124 } else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004125 BUG_ON(pa->pa_lstart > end);
4126 end = pa->pa_lstart;
4127 }
4128 spin_unlock(&pa->pa_lock);
4129 }
4130 rcu_read_unlock();
4131 size = end - start;
4132
4133 /* XXX: extra loop to check we really don't overlap preallocations */
4134 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04004135 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004136 ext4_lblk_t pa_end;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004137
Alex Tomasc9de5602008-01-29 00:19:52 -05004138 spin_lock(&pa->pa_lock);
4139 if (pa->pa_deleted == 0) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004140 pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
4141 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004142 BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
4143 }
4144 spin_unlock(&pa->pa_lock);
4145 }
4146 rcu_read_unlock();
4147
4148 if (start + size <= ac->ac_o_ex.fe_logical &&
4149 start > ac->ac_o_ex.fe_logical) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004150 ext4_msg(ac->ac_sb, KERN_ERR,
4151 "start %lu, size %lu, fe_logical %lu",
4152 (unsigned long) start, (unsigned long) size,
4153 (unsigned long) ac->ac_o_ex.fe_logical);
Dmitry Monakhovdfe076c2014-10-01 22:26:17 -04004154 BUG();
Alex Tomasc9de5602008-01-29 00:19:52 -05004155 }
Maurizio Lombardib5b60772014-05-27 12:48:56 -04004156 BUG_ON(size <= 0 || size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
Alex Tomasc9de5602008-01-29 00:19:52 -05004157
4158 /* now prepare goal request */
4159
4160 /* XXX: is it better to align blocks WRT to logical
4161 * placement or satisfy big request as is */
4162 ac->ac_g_ex.fe_logical = start;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004163 ac->ac_g_ex.fe_len = EXT4_NUM_B2C(sbi, size);
Alex Tomasc9de5602008-01-29 00:19:52 -05004164
4165 /* define goal start in order to merge */
4166 if (ar->pright && (ar->lright == (start + size))) {
4167 /* merge to the right */
4168 ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
4169 &ac->ac_f_ex.fe_group,
4170 &ac->ac_f_ex.fe_start);
4171 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
4172 }
4173 if (ar->pleft && (ar->lleft + 1 == start)) {
4174 /* merge to the left */
4175 ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
4176 &ac->ac_f_ex.fe_group,
4177 &ac->ac_f_ex.fe_start);
4178 ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
4179 }
4180
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304181 mb_debug(ac->ac_sb, "goal: %lld(was %lld) blocks at %u\n", size,
4182 orig_size, start);
Alex Tomasc9de5602008-01-29 00:19:52 -05004183}
4184
4185static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
4186{
4187 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
4188
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07004189 if (sbi->s_mb_stats && ac->ac_g_ex.fe_len >= 1) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004190 atomic_inc(&sbi->s_bal_reqs);
4191 atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
Curt Wohlgemuth291dae42010-05-16 16:00:00 -04004192 if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
Alex Tomasc9de5602008-01-29 00:19:52 -05004193 atomic_inc(&sbi->s_bal_success);
4194 atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
Harshad Shirwadkara6c75ea2021-04-01 10:21:25 -07004195 atomic_add(ac->ac_groups_scanned, &sbi->s_bal_groups_scanned);
Alex Tomasc9de5602008-01-29 00:19:52 -05004196 if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
4197 ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
4198 atomic_inc(&sbi->s_bal_goals);
4199 if (ac->ac_found > sbi->s_mb_max_to_scan)
4200 atomic_inc(&sbi->s_bal_breaks);
4201 }
4202
Theodore Ts'o296c3552009-09-30 00:32:42 -04004203 if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
4204 trace_ext4_mballoc_alloc(ac);
4205 else
4206 trace_ext4_mballoc_prealloc(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004207}
4208
4209/*
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05004210 * Called on failure; free up any blocks from the inode PA for this
4211 * context. We don't need this for MB_GROUP_PA because we only change
4212 * pa_free in ext4_mb_release_context(), but on failure, we've already
4213 * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
4214 */
4215static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
4216{
4217 struct ext4_prealloc_space *pa = ac->ac_pa;
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04004218 struct ext4_buddy e4b;
4219 int err;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05004220
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04004221 if (pa == NULL) {
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04004222 if (ac->ac_f_ex.fe_len == 0)
4223 return;
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04004224 err = ext4_mb_load_buddy(ac->ac_sb, ac->ac_f_ex.fe_group, &e4b);
4225 if (err) {
4226 /*
4227 * This should never happen since we pin the
4228 * pages in the ext4_allocation_context so
4229 * ext4_mb_load_buddy() should never fail.
4230 */
4231 WARN(1, "mb_load_buddy failed (%d)", err);
4232 return;
4233 }
4234 ext4_lock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
4235 mb_free_blocks(ac->ac_inode, &e4b, ac->ac_f_ex.fe_start,
4236 ac->ac_f_ex.fe_len);
4237 ext4_unlock_group(ac->ac_sb, ac->ac_f_ex.fe_group);
Theodore Ts'oc99d1e62014-08-23 17:47:28 -04004238 ext4_mb_unload_buddy(&e4b);
Theodore Ts'o86f0afd2014-07-30 22:17:17 -04004239 return;
4240 }
4241 if (pa->pa_type == MB_INODE_PA)
Zheng Liu400db9d2012-05-28 17:53:53 -04004242 pa->pa_free += ac->ac_b_ex.fe_len;
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05004243}
4244
4245/*
Alex Tomasc9de5602008-01-29 00:19:52 -05004246 * use blocks preallocated to inode
4247 */
4248static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
4249 struct ext4_prealloc_space *pa)
4250{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004251 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004252 ext4_fsblk_t start;
4253 ext4_fsblk_t end;
4254 int len;
4255
4256 /* found preallocated blocks, use them */
4257 start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004258 end = min(pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len),
4259 start + EXT4_C2B(sbi, ac->ac_o_ex.fe_len));
4260 len = EXT4_NUM_B2C(sbi, end - start);
Alex Tomasc9de5602008-01-29 00:19:52 -05004261 ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
4262 &ac->ac_b_ex.fe_start);
4263 ac->ac_b_ex.fe_len = len;
4264 ac->ac_status = AC_STATUS_FOUND;
4265 ac->ac_pa = pa;
4266
4267 BUG_ON(start < pa->pa_pstart);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004268 BUG_ON(end > pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len));
Alex Tomasc9de5602008-01-29 00:19:52 -05004269 BUG_ON(pa->pa_free < len);
4270 pa->pa_free -= len;
4271
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304272 mb_debug(ac->ac_sb, "use %llu/%d from inode pa %p\n", start, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004273}
4274
4275/*
4276 * use blocks preallocated to locality group
4277 */
4278static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
4279 struct ext4_prealloc_space *pa)
4280{
Aneesh Kumar K.V03cddb82008-06-05 20:59:29 -04004281 unsigned int len = ac->ac_o_ex.fe_len;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004282
Alex Tomasc9de5602008-01-29 00:19:52 -05004283 ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
4284 &ac->ac_b_ex.fe_group,
4285 &ac->ac_b_ex.fe_start);
4286 ac->ac_b_ex.fe_len = len;
4287 ac->ac_status = AC_STATUS_FOUND;
4288 ac->ac_pa = pa;
4289
4290 /* we don't correct pa_pstart or pa_plen here to avoid
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05004291 * possible race when the group is being loaded concurrently
Alex Tomasc9de5602008-01-29 00:19:52 -05004292 * instead we correct pa later, after blocks are marked
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05004293 * in on-disk bitmap -- see ext4_mb_release_context()
4294 * Other CPUs are prevented from allocating from this pa by lg_mutex
Alex Tomasc9de5602008-01-29 00:19:52 -05004295 */
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304296 mb_debug(ac->ac_sb, "use %u/%u from group pa %p\n",
4297 pa->pa_lstart-len, len, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004298}
4299
4300/*
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04004301 * Return the prealloc space that have minimal distance
4302 * from the goal block. @cpa is the prealloc
4303 * space that is having currently known minimal distance
4304 * from the goal block.
4305 */
4306static struct ext4_prealloc_space *
4307ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
4308 struct ext4_prealloc_space *pa,
4309 struct ext4_prealloc_space *cpa)
4310{
4311 ext4_fsblk_t cur_distance, new_distance;
4312
4313 if (cpa == NULL) {
4314 atomic_inc(&pa->pa_count);
4315 return pa;
4316 }
Andrew Morton79211c82015-11-09 14:58:13 -08004317 cur_distance = abs(goal_block - cpa->pa_pstart);
4318 new_distance = abs(goal_block - pa->pa_pstart);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04004319
Coly Li5a54b2f2011-02-24 14:10:05 -05004320 if (cur_distance <= new_distance)
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04004321 return cpa;
4322
4323 /* drop the previous reference */
4324 atomic_dec(&cpa->pa_count);
4325 atomic_inc(&pa->pa_count);
4326 return pa;
4327}
4328
4329/*
Alex Tomasc9de5602008-01-29 00:19:52 -05004330 * search goal blocks in preallocated space
4331 */
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05304332static noinline_for_stack bool
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004333ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05004334{
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004335 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004336 int order, i;
Alex Tomasc9de5602008-01-29 00:19:52 -05004337 struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
4338 struct ext4_locality_group *lg;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04004339 struct ext4_prealloc_space *pa, *cpa = NULL;
4340 ext4_fsblk_t goal_block;
Alex Tomasc9de5602008-01-29 00:19:52 -05004341
4342 /* only data can be preallocated */
4343 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05304344 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05004345
4346 /* first, try per-file preallocation */
4347 rcu_read_lock();
Aneesh Kumar K.V9a0762c2008-04-17 10:38:59 -04004348 list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004349
4350 /* all fields in this condition don't change,
4351 * so we can skip locking for them */
4352 if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004353 ac->ac_o_ex.fe_logical >= (pa->pa_lstart +
4354 EXT4_C2B(sbi, pa->pa_len)))
Alex Tomasc9de5602008-01-29 00:19:52 -05004355 continue;
4356
Eric Sandeenfb0a3872009-09-16 14:45:10 -04004357 /* non-extent files can't have physical blocks past 2^32 */
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04004358 if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004359 (pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len) >
4360 EXT4_MAX_BLOCK_FILE_PHYS))
Eric Sandeenfb0a3872009-09-16 14:45:10 -04004361 continue;
4362
Alex Tomasc9de5602008-01-29 00:19:52 -05004363 /* found preallocated blocks, use them */
4364 spin_lock(&pa->pa_lock);
4365 if (pa->pa_deleted == 0 && pa->pa_free) {
4366 atomic_inc(&pa->pa_count);
4367 ext4_mb_use_inode_pa(ac, pa);
4368 spin_unlock(&pa->pa_lock);
4369 ac->ac_criteria = 10;
4370 rcu_read_unlock();
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05304371 return true;
Alex Tomasc9de5602008-01-29 00:19:52 -05004372 }
4373 spin_unlock(&pa->pa_lock);
4374 }
4375 rcu_read_unlock();
4376
4377 /* can we use group allocation? */
4378 if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05304379 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05004380
4381 /* inode may have no locality group for some reason */
4382 lg = ac->ac_lg;
4383 if (lg == NULL)
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05304384 return false;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004385 order = fls(ac->ac_o_ex.fe_len) - 1;
4386 if (order > PREALLOC_TB_SIZE - 1)
4387 /* The max size of hash table is PREALLOC_TB_SIZE */
4388 order = PREALLOC_TB_SIZE - 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05004389
Akinobu Mitabda00de2010-03-03 23:53:25 -05004390 goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04004391 /*
4392 * search for the prealloc space that is having
4393 * minimal distance from the goal block.
4394 */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004395 for (i = order; i < PREALLOC_TB_SIZE; i++) {
4396 rcu_read_lock();
4397 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
4398 pa_inode_list) {
4399 spin_lock(&pa->pa_lock);
4400 if (pa->pa_deleted == 0 &&
4401 pa->pa_free >= ac->ac_o_ex.fe_len) {
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04004402
4403 cpa = ext4_mb_check_group_pa(goal_block,
4404 pa, cpa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004405 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004406 spin_unlock(&pa->pa_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05004407 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004408 rcu_read_unlock();
Alex Tomasc9de5602008-01-29 00:19:52 -05004409 }
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04004410 if (cpa) {
4411 ext4_mb_use_group_pa(ac, cpa);
4412 ac->ac_criteria = 20;
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05304413 return true;
Aneesh Kumar K.V5e745b02008-08-18 18:00:57 -04004414 }
Ritesh Harjani4fca8f02020-05-10 11:54:47 +05304415 return false;
Alex Tomasc9de5602008-01-29 00:19:52 -05004416}
4417
4418/*
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004419 * the function goes through all block freed in the group
4420 * but not yet committed and marks them used in in-core bitmap.
4421 * buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004422 * Need to be called with the ext4 group lock held
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004423 */
4424static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
4425 ext4_group_t group)
4426{
4427 struct rb_node *n;
4428 struct ext4_group_info *grp;
4429 struct ext4_free_data *entry;
4430
4431 grp = ext4_get_group_info(sb, group);
4432 n = rb_first(&(grp->bb_free_root));
4433
4434 while (n) {
Bobi Jam18aadd42012-02-20 17:53:02 -05004435 entry = rb_entry(n, struct ext4_free_data, efd_node);
4436 ext4_set_bits(bitmap, entry->efd_start_cluster, entry->efd_count);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05004437 n = rb_next(n);
4438 }
4439 return;
4440}
4441
4442/*
Alex Tomasc9de5602008-01-29 00:19:52 -05004443 * the function goes through all preallocation in this group and marks them
4444 * used in in-core bitmap. buddy must be generated from this bitmap
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04004445 * Need to be called with ext4 group lock held
Alex Tomasc9de5602008-01-29 00:19:52 -05004446 */
Eric Sandeen089ceec2009-07-05 22:17:31 -04004447static noinline_for_stack
4448void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
Alex Tomasc9de5602008-01-29 00:19:52 -05004449 ext4_group_t group)
4450{
4451 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
4452 struct ext4_prealloc_space *pa;
4453 struct list_head *cur;
4454 ext4_group_t groupnr;
4455 ext4_grpblk_t start;
4456 int preallocated = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004457 int len;
4458
4459 /* all form of preallocation discards first load group,
4460 * so the only competing code is preallocation use.
4461 * we don't need any locking here
4462 * notice we do NOT ignore preallocations with pa_deleted
4463 * otherwise we could leave used blocks available for
4464 * allocation in buddy when concurrent ext4_mb_put_pa()
4465 * is dropping preallocation
4466 */
4467 list_for_each(cur, &grp->bb_prealloc_list) {
4468 pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
4469 spin_lock(&pa->pa_lock);
4470 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
4471 &groupnr, &start);
4472 len = pa->pa_len;
4473 spin_unlock(&pa->pa_lock);
4474 if (unlikely(len == 0))
4475 continue;
4476 BUG_ON(groupnr != group);
Yongqiang Yangc3e94d12011-07-26 22:05:53 -04004477 ext4_set_bits(bitmap, start, len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004478 preallocated += len;
Alex Tomasc9de5602008-01-29 00:19:52 -05004479 }
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304480 mb_debug(sb, "preallocated %d for group %u\n", preallocated, group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004481}
4482
brookxu27bc4462020-08-17 15:36:15 +08004483static void ext4_mb_mark_pa_deleted(struct super_block *sb,
4484 struct ext4_prealloc_space *pa)
4485{
4486 struct ext4_inode_info *ei;
4487
4488 if (pa->pa_deleted) {
4489 ext4_warning(sb, "deleted pa, type:%d, pblk:%llu, lblk:%u, len:%d\n",
4490 pa->pa_type, pa->pa_pstart, pa->pa_lstart,
4491 pa->pa_len);
4492 return;
4493 }
4494
4495 pa->pa_deleted = 1;
4496
4497 if (pa->pa_type == MB_INODE_PA) {
4498 ei = EXT4_I(pa->pa_inode);
4499 atomic_dec(&ei->i_prealloc_active);
4500 }
4501}
4502
Alex Tomasc9de5602008-01-29 00:19:52 -05004503static void ext4_mb_pa_callback(struct rcu_head *head)
4504{
4505 struct ext4_prealloc_space *pa;
4506 pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
Junho Ryu4e8d2132013-12-03 18:10:28 -05004507
4508 BUG_ON(atomic_read(&pa->pa_count));
4509 BUG_ON(pa->pa_deleted == 0);
Alex Tomasc9de5602008-01-29 00:19:52 -05004510 kmem_cache_free(ext4_pspace_cachep, pa);
4511}
4512
4513/*
4514 * drops a reference to preallocated space descriptor
4515 * if this was the last reference and the space is consumed
4516 */
4517static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
4518 struct super_block *sb, struct ext4_prealloc_space *pa)
4519{
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05004520 ext4_group_t grp;
Eric Sandeend33a1972009-03-16 23:25:40 -04004521 ext4_fsblk_t grp_blk;
Alex Tomasc9de5602008-01-29 00:19:52 -05004522
Alex Tomasc9de5602008-01-29 00:19:52 -05004523 /* in this short window concurrent discard can set pa_deleted */
4524 spin_lock(&pa->pa_lock);
Junho Ryu4e8d2132013-12-03 18:10:28 -05004525 if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0) {
4526 spin_unlock(&pa->pa_lock);
4527 return;
4528 }
4529
Alex Tomasc9de5602008-01-29 00:19:52 -05004530 if (pa->pa_deleted == 1) {
4531 spin_unlock(&pa->pa_lock);
4532 return;
4533 }
4534
brookxu27bc4462020-08-17 15:36:15 +08004535 ext4_mb_mark_pa_deleted(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004536 spin_unlock(&pa->pa_lock);
4537
Eric Sandeend33a1972009-03-16 23:25:40 -04004538 grp_blk = pa->pa_pstart;
Theodore Ts'o60e66792010-05-17 07:00:00 -04004539 /*
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004540 * If doing group-based preallocation, pa_pstart may be in the
4541 * next group when pa is used up
4542 */
4543 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeend33a1972009-03-16 23:25:40 -04004544 grp_blk--;
4545
Lukas Czernerbd862982013-04-03 23:32:34 -04004546 grp = ext4_get_group_number(sb, grp_blk);
Alex Tomasc9de5602008-01-29 00:19:52 -05004547
4548 /*
4549 * possible race:
4550 *
4551 * P1 (buddy init) P2 (regular allocation)
4552 * find block B in PA
4553 * copy on-disk bitmap to buddy
4554 * mark B in on-disk bitmap
4555 * drop PA from group
4556 * mark all PAs in buddy
4557 *
4558 * thus, P1 initializes buddy with B available. to prevent this
4559 * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
4560 * against that pair
4561 */
4562 ext4_lock_group(sb, grp);
4563 list_del(&pa->pa_group_list);
4564 ext4_unlock_group(sb, grp);
4565
4566 spin_lock(pa->pa_obj_lock);
4567 list_del_rcu(&pa->pa_inode_list);
4568 spin_unlock(pa->pa_obj_lock);
4569
4570 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4571}
4572
4573/*
4574 * creates new preallocated space for given inode
4575 */
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304576static noinline_for_stack void
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004577ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05004578{
4579 struct super_block *sb = ac->ac_sb;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004580 struct ext4_sb_info *sbi = EXT4_SB(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05004581 struct ext4_prealloc_space *pa;
4582 struct ext4_group_info *grp;
4583 struct ext4_inode_info *ei;
4584
4585 /* preallocate only when found space is larger then requested */
4586 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
4587 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
4588 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304589 BUG_ON(ac->ac_pa == NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05004590
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304591 pa = ac->ac_pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05004592
4593 if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
4594 int winl;
4595 int wins;
4596 int win;
4597 int offs;
4598
4599 /* we can't allocate as much as normalizer wants.
4600 * so, found space must get proper lstart
4601 * to cover original request */
4602 BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
4603 BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
4604
4605 /* we're limited by original request in that
4606 * logical block must be covered any way
4607 * winl is window we can move our chunk within */
4608 winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
4609
4610 /* also, we should cover whole original request */
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004611 wins = EXT4_C2B(sbi, ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004612
4613 /* the smallest one defines real window */
4614 win = min(winl, wins);
4615
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004616 offs = ac->ac_o_ex.fe_logical %
4617 EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004618 if (offs && offs < win)
4619 win = offs;
4620
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004621 ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical -
Lukas Czerner810da242013-03-02 17:18:58 -05004622 EXT4_NUM_B2C(sbi, win);
Alex Tomasc9de5602008-01-29 00:19:52 -05004623 BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
4624 BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
4625 }
4626
4627 /* preallocation can change ac_b_ex, thus we store actually
4628 * allocated blocks for history */
4629 ac->ac_f_ex = ac->ac_b_ex;
4630
4631 pa->pa_lstart = ac->ac_b_ex.fe_logical;
4632 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4633 pa->pa_len = ac->ac_b_ex.fe_len;
4634 pa->pa_free = pa->pa_len;
Alex Tomasc9de5602008-01-29 00:19:52 -05004635 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05004636 INIT_LIST_HEAD(&pa->pa_inode_list);
4637 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004638 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004639 pa->pa_type = MB_INODE_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05004640
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304641 mb_debug(sb, "new inode pa %p: %llu/%d for %u\n", pa, pa->pa_pstart,
4642 pa->pa_len, pa->pa_lstart);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004643 trace_ext4_mb_new_inode_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004644
4645 ext4_mb_use_inode_pa(ac, pa);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004646 atomic_add(pa->pa_free, &sbi->s_mb_preallocated);
Alex Tomasc9de5602008-01-29 00:19:52 -05004647
4648 ei = EXT4_I(ac->ac_inode);
4649 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
4650
4651 pa->pa_obj_lock = &ei->i_prealloc_lock;
4652 pa->pa_inode = ac->ac_inode;
4653
Alex Tomasc9de5602008-01-29 00:19:52 -05004654 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004655
4656 spin_lock(pa->pa_obj_lock);
4657 list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
4658 spin_unlock(pa->pa_obj_lock);
brookxu27bc4462020-08-17 15:36:15 +08004659 atomic_inc(&ei->i_prealloc_active);
Alex Tomasc9de5602008-01-29 00:19:52 -05004660}
4661
4662/*
4663 * creates new preallocated space for locality group inodes belongs to
4664 */
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304665static noinline_for_stack void
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004666ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05004667{
4668 struct super_block *sb = ac->ac_sb;
4669 struct ext4_locality_group *lg;
4670 struct ext4_prealloc_space *pa;
4671 struct ext4_group_info *grp;
4672
4673 /* preallocate only when found space is larger then requested */
4674 BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
4675 BUG_ON(ac->ac_status != AC_STATUS_FOUND);
4676 BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304677 BUG_ON(ac->ac_pa == NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05004678
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304679 pa = ac->ac_pa;
Alex Tomasc9de5602008-01-29 00:19:52 -05004680
4681 /* preallocation can change ac_b_ex, thus we store actually
4682 * allocated blocks for history */
4683 ac->ac_f_ex = ac->ac_b_ex;
4684
4685 pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4686 pa->pa_lstart = pa->pa_pstart;
4687 pa->pa_len = ac->ac_b_ex.fe_len;
4688 pa->pa_free = pa->pa_len;
Alex Tomasc9de5602008-01-29 00:19:52 -05004689 spin_lock_init(&pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004690 INIT_LIST_HEAD(&pa->pa_inode_list);
Aneesh Kumar K.Vd794bf82009-02-14 10:31:16 -05004691 INIT_LIST_HEAD(&pa->pa_group_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004692 pa->pa_deleted = 0;
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004693 pa->pa_type = MB_GROUP_PA;
Alex Tomasc9de5602008-01-29 00:19:52 -05004694
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304695 mb_debug(sb, "new group pa %p: %llu/%d for %u\n", pa, pa->pa_pstart,
4696 pa->pa_len, pa->pa_lstart);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04004697 trace_ext4_mb_new_group_pa(ac, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004698
4699 ext4_mb_use_group_pa(ac, pa);
4700 atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
4701
4702 grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
4703 lg = ac->ac_lg;
4704 BUG_ON(lg == NULL);
4705
4706 pa->pa_obj_lock = &lg->lg_prealloc_lock;
4707 pa->pa_inode = NULL;
4708
Alex Tomasc9de5602008-01-29 00:19:52 -05004709 list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004710
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04004711 /*
4712 * We will later add the new pa to the right bucket
4713 * after updating the pa_free in ext4_mb_release_context
4714 */
Alex Tomasc9de5602008-01-29 00:19:52 -05004715}
4716
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304717static void ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
Alex Tomasc9de5602008-01-29 00:19:52 -05004718{
Alex Tomasc9de5602008-01-29 00:19:52 -05004719 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304720 ext4_mb_new_group_pa(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004721 else
Ritesh Harjani53f86b12020-05-20 12:10:32 +05304722 ext4_mb_new_inode_pa(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05004723}
4724
4725/*
4726 * finds all unused blocks in on-disk bitmap, frees them in
4727 * in-core bitmap and buddy.
4728 * @pa must be unlinked from inode and group lists, so that
4729 * nobody else can find/use it.
4730 * the caller MUST hold group/inode locks.
4731 * TODO: optimize the case when there are no in-core structures yet
4732 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004733static noinline_for_stack int
4734ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004735 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05004736{
Alex Tomasc9de5602008-01-29 00:19:52 -05004737 struct super_block *sb = e4b->bd_sb;
4738 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o498e5f22008-11-05 00:14:04 -05004739 unsigned int end;
4740 unsigned int next;
Alex Tomasc9de5602008-01-29 00:19:52 -05004741 ext4_group_t group;
4742 ext4_grpblk_t bit;
Theodore Ts'oba80b102009-01-03 20:03:21 -05004743 unsigned long long grp_blk_start;
Alex Tomasc9de5602008-01-29 00:19:52 -05004744 int free = 0;
4745
4746 BUG_ON(pa->pa_deleted == 0);
4747 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004748 grp_blk_start = pa->pa_pstart - EXT4_C2B(sbi, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05004749 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
4750 end = bit + pa->pa_len;
4751
Alex Tomasc9de5602008-01-29 00:19:52 -05004752 while (bit < end) {
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05004753 bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05004754 if (bit >= end)
4755 break;
Aneesh Kumar K.Vffad0a42008-02-23 01:38:34 -05004756 next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304757 mb_debug(sb, "free preallocated %u/%u in group %u\n",
Andi Kleen5a0790c2010-06-14 13:28:03 -04004758 (unsigned) ext4_group_first_block_no(sb, group) + bit,
4759 (unsigned) next - bit, (unsigned) group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004760 free += next - bit;
4761
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004762 trace_ext4_mballoc_discard(sb, NULL, group, bit, next - bit);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04004763 trace_ext4_mb_release_inode_pa(pa, (grp_blk_start +
4764 EXT4_C2B(sbi, bit)),
Lukas Czernera9c667f2011-06-06 09:51:52 -04004765 next - bit);
Alex Tomasc9de5602008-01-29 00:19:52 -05004766 mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
4767 bit = next + 1;
4768 }
4769 if (free != pa->pa_free) {
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004770 ext4_msg(e4b->bd_sb, KERN_CRIT,
Ritesh Harjani36bad422020-05-10 11:54:44 +05304771 "pa %p: logic %lu, phys. %lu, len %d",
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004772 pa, (unsigned long) pa->pa_lstart,
4773 (unsigned long) pa->pa_pstart,
Ritesh Harjani36bad422020-05-10 11:54:44 +05304774 pa->pa_len);
Theodore Ts'oe29136f2010-06-29 12:54:28 -04004775 ext4_grp_locked_error(sb, group, 0, 0, "free %u, pa_free %u",
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05004776 free, pa->pa_free);
Aneesh Kumar K.Ve56eb652008-02-15 13:48:21 -05004777 /*
4778 * pa is already deleted so we use the value obtained
4779 * from the bitmap and continue.
4780 */
Alex Tomasc9de5602008-01-29 00:19:52 -05004781 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004782 atomic_add(free, &sbi->s_mb_discarded);
4783
zhong jiang863c37f2018-08-04 17:34:07 -04004784 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004785}
4786
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004787static noinline_for_stack int
4788ext4_mb_release_group_pa(struct ext4_buddy *e4b,
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004789 struct ext4_prealloc_space *pa)
Alex Tomasc9de5602008-01-29 00:19:52 -05004790{
Alex Tomasc9de5602008-01-29 00:19:52 -05004791 struct super_block *sb = e4b->bd_sb;
4792 ext4_group_t group;
4793 ext4_grpblk_t bit;
4794
Yongqiang Yang60e07cf2011-12-18 15:49:54 -05004795 trace_ext4_mb_release_group_pa(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004796 BUG_ON(pa->pa_deleted == 0);
4797 ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
4798 BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
4799 mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
4800 atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004801 trace_ext4_mballoc_discard(sb, NULL, group, bit, pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05004802
4803 return 0;
4804}
4805
4806/*
4807 * releases all preallocations in given group
4808 *
4809 * first, we need to decide discard policy:
4810 * - when do we discard
4811 * 1) ENOSPC
4812 * - how many do we discard
4813 * 1) how many requested
4814 */
Eric Sandeen4ddfef72008-04-29 08:11:12 -04004815static noinline_for_stack int
4816ext4_mb_discard_group_preallocations(struct super_block *sb,
Chunguang Xu8c80fb32021-11-23 09:17:57 +08004817 ext4_group_t group, int *busy)
Alex Tomasc9de5602008-01-29 00:19:52 -05004818{
4819 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
4820 struct buffer_head *bitmap_bh = NULL;
4821 struct ext4_prealloc_space *pa, *tmp;
4822 struct list_head list;
4823 struct ext4_buddy e4b;
4824 int err;
Chunguang Xu8c80fb32021-11-23 09:17:57 +08004825 int free = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05004826
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304827 mb_debug(sb, "discard preallocation for group %u\n", group);
Alex Tomasc9de5602008-01-29 00:19:52 -05004828 if (list_empty(&grp->bb_prealloc_list))
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304829 goto out_dbg;
Alex Tomasc9de5602008-01-29 00:19:52 -05004830
Theodore Ts'o574ca172008-07-11 19:27:31 -04004831 bitmap_bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04004832 if (IS_ERR(bitmap_bh)) {
4833 err = PTR_ERR(bitmap_bh);
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004834 ext4_error_err(sb, -err,
4835 "Error %d reading block bitmap for %u",
4836 err, group);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304837 goto out_dbg;
Alex Tomasc9de5602008-01-29 00:19:52 -05004838 }
4839
4840 err = ext4_mb_load_buddy(sb, group, &e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004841 if (err) {
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04004842 ext4_warning(sb, "Error %d loading buddy information for %u",
4843 err, group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004844 put_bh(bitmap_bh);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304845 goto out_dbg;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004846 }
Alex Tomasc9de5602008-01-29 00:19:52 -05004847
Alex Tomasc9de5602008-01-29 00:19:52 -05004848 INIT_LIST_HEAD(&list);
Alex Tomasc9de5602008-01-29 00:19:52 -05004849 ext4_lock_group(sb, group);
4850 list_for_each_entry_safe(pa, tmp,
4851 &grp->bb_prealloc_list, pa_group_list) {
4852 spin_lock(&pa->pa_lock);
4853 if (atomic_read(&pa->pa_count)) {
4854 spin_unlock(&pa->pa_lock);
Chunguang Xu8c80fb32021-11-23 09:17:57 +08004855 *busy = 1;
Alex Tomasc9de5602008-01-29 00:19:52 -05004856 continue;
4857 }
4858 if (pa->pa_deleted) {
4859 spin_unlock(&pa->pa_lock);
4860 continue;
4861 }
4862
4863 /* seems this one can be freed ... */
brookxu27bc4462020-08-17 15:36:15 +08004864 ext4_mb_mark_pa_deleted(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004865
Ye Bin70022da2020-09-16 19:38:59 +08004866 if (!free)
4867 this_cpu_inc(discard_pa_seq);
4868
Alex Tomasc9de5602008-01-29 00:19:52 -05004869 /* we can trust pa_free ... */
4870 free += pa->pa_free;
4871
4872 spin_unlock(&pa->pa_lock);
4873
4874 list_del(&pa->pa_group_list);
4875 list_add(&pa->u.pa_tmp_list, &list);
4876 }
4877
Alex Tomasc9de5602008-01-29 00:19:52 -05004878 /* now free all selected PAs */
4879 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
4880
4881 /* remove from object (inode or locality group) */
4882 spin_lock(pa->pa_obj_lock);
4883 list_del_rcu(&pa->pa_inode_list);
4884 spin_unlock(pa->pa_obj_lock);
4885
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004886 if (pa->pa_type == MB_GROUP_PA)
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004887 ext4_mb_release_group_pa(&e4b, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004888 else
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04004889 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004890
4891 list_del(&pa->u.pa_tmp_list);
4892 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
4893 }
4894
Alex Tomasc9de5602008-01-29 00:19:52 -05004895 ext4_unlock_group(sb, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04004896 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05004897 put_bh(bitmap_bh);
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05304898out_dbg:
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304899 mb_debug(sb, "discarded (%d) blocks preallocated for group %u bb_free (%d)\n",
Chunguang Xu8c80fb32021-11-23 09:17:57 +08004900 free, group, grp->bb_free);
4901 return free;
Alex Tomasc9de5602008-01-29 00:19:52 -05004902}
4903
4904/*
4905 * releases all non-used preallocated blocks for given inode
4906 *
4907 * It's important to discard preallocations under i_data_sem
4908 * We don't want another block to be served from the prealloc
4909 * space when we are discarding the inode prealloc space.
4910 *
4911 * FIXME!! Make sure it is valid at all the call sites
4912 */
brookxu27bc4462020-08-17 15:36:15 +08004913void ext4_discard_preallocations(struct inode *inode, unsigned int needed)
Alex Tomasc9de5602008-01-29 00:19:52 -05004914{
4915 struct ext4_inode_info *ei = EXT4_I(inode);
4916 struct super_block *sb = inode->i_sb;
4917 struct buffer_head *bitmap_bh = NULL;
4918 struct ext4_prealloc_space *pa, *tmp;
4919 ext4_group_t group = 0;
4920 struct list_head list;
4921 struct ext4_buddy e4b;
4922 int err;
4923
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -04004924 if (!S_ISREG(inode->i_mode)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05004925 /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
4926 return;
4927 }
4928
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07004929 if (EXT4_SB(sb)->s_mount_state & EXT4_FC_REPLAY)
4930 return;
4931
Ritesh Harjanid3df1452020-05-10 11:54:54 +05304932 mb_debug(sb, "discard preallocation for inode %lu\n",
4933 inode->i_ino);
brookxu27bc4462020-08-17 15:36:15 +08004934 trace_ext4_discard_preallocations(inode,
4935 atomic_read(&ei->i_prealloc_active), needed);
Alex Tomasc9de5602008-01-29 00:19:52 -05004936
4937 INIT_LIST_HEAD(&list);
4938
brookxu27bc4462020-08-17 15:36:15 +08004939 if (needed == 0)
4940 needed = UINT_MAX;
4941
Alex Tomasc9de5602008-01-29 00:19:52 -05004942repeat:
4943 /* first, collect all pa's in the inode */
4944 spin_lock(&ei->i_prealloc_lock);
brookxu27bc4462020-08-17 15:36:15 +08004945 while (!list_empty(&ei->i_prealloc_list) && needed) {
4946 pa = list_entry(ei->i_prealloc_list.prev,
Alex Tomasc9de5602008-01-29 00:19:52 -05004947 struct ext4_prealloc_space, pa_inode_list);
4948 BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
4949 spin_lock(&pa->pa_lock);
4950 if (atomic_read(&pa->pa_count)) {
4951 /* this shouldn't happen often - nobody should
4952 * use preallocation while we're discarding it */
4953 spin_unlock(&pa->pa_lock);
4954 spin_unlock(&ei->i_prealloc_lock);
Theodore Ts'o9d8b9ec2011-08-01 17:41:35 -04004955 ext4_msg(sb, KERN_ERR,
4956 "uh-oh! used pa while discarding");
Alex Tomasc9de5602008-01-29 00:19:52 -05004957 WARN_ON(1);
4958 schedule_timeout_uninterruptible(HZ);
4959 goto repeat;
4960
4961 }
4962 if (pa->pa_deleted == 0) {
brookxu27bc4462020-08-17 15:36:15 +08004963 ext4_mb_mark_pa_deleted(sb, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05004964 spin_unlock(&pa->pa_lock);
4965 list_del_rcu(&pa->pa_inode_list);
4966 list_add(&pa->u.pa_tmp_list, &list);
brookxu27bc4462020-08-17 15:36:15 +08004967 needed--;
Alex Tomasc9de5602008-01-29 00:19:52 -05004968 continue;
4969 }
4970
4971 /* someone is deleting pa right now */
4972 spin_unlock(&pa->pa_lock);
4973 spin_unlock(&ei->i_prealloc_lock);
4974
4975 /* we have to wait here because pa_deleted
4976 * doesn't mean pa is already unlinked from
4977 * the list. as we might be called from
4978 * ->clear_inode() the inode will get freed
4979 * and concurrent thread which is unlinking
4980 * pa from inode's list may access already
4981 * freed memory, bad-bad-bad */
4982
4983 /* XXX: if this happens too often, we can
4984 * add a flag to force wait only in case
4985 * of ->clear_inode(), but not in case of
4986 * regular truncate */
4987 schedule_timeout_uninterruptible(HZ);
4988 goto repeat;
4989 }
4990 spin_unlock(&ei->i_prealloc_lock);
4991
4992 list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04004993 BUG_ON(pa->pa_type != MB_INODE_PA);
Lukas Czernerbd862982013-04-03 23:32:34 -04004994 group = ext4_get_group_number(sb, pa->pa_pstart);
Alex Tomasc9de5602008-01-29 00:19:52 -05004995
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04004996 err = ext4_mb_load_buddy_gfp(sb, group, &e4b,
4997 GFP_NOFS|__GFP_NOFAIL);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04004998 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04004999 ext4_error_err(sb, -err, "Error %d loading buddy information for %u",
5000 err, group);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04005001 continue;
5002 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005003
Theodore Ts'o574ca172008-07-11 19:27:31 -04005004 bitmap_bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04005005 if (IS_ERR(bitmap_bh)) {
5006 err = PTR_ERR(bitmap_bh);
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04005007 ext4_error_err(sb, -err, "Error %d reading block bitmap for %u",
5008 err, group);
Jing Zhange39e07f2010-05-14 00:00:00 -04005009 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04005010 continue;
Alex Tomasc9de5602008-01-29 00:19:52 -05005011 }
5012
5013 ext4_lock_group(sb, group);
5014 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04005015 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
Alex Tomasc9de5602008-01-29 00:19:52 -05005016 ext4_unlock_group(sb, group);
5017
Jing Zhange39e07f2010-05-14 00:00:00 -04005018 ext4_mb_unload_buddy(&e4b);
Alex Tomasc9de5602008-01-29 00:19:52 -05005019 put_bh(bitmap_bh);
5020
5021 list_del(&pa->u.pa_tmp_list);
5022 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
5023 }
5024}
5025
Ritesh Harjani53f86b12020-05-20 12:10:32 +05305026static int ext4_mb_pa_alloc(struct ext4_allocation_context *ac)
5027{
5028 struct ext4_prealloc_space *pa;
5029
5030 BUG_ON(ext4_pspace_cachep == NULL);
5031 pa = kmem_cache_zalloc(ext4_pspace_cachep, GFP_NOFS);
5032 if (!pa)
5033 return -ENOMEM;
5034 atomic_set(&pa->pa_count, 1);
5035 ac->ac_pa = pa;
5036 return 0;
5037}
5038
5039static void ext4_mb_pa_free(struct ext4_allocation_context *ac)
5040{
5041 struct ext4_prealloc_space *pa = ac->ac_pa;
5042
5043 BUG_ON(!pa);
5044 ac->ac_pa = NULL;
5045 WARN_ON(!atomic_dec_and_test(&pa->pa_count));
5046 kmem_cache_free(ext4_pspace_cachep, pa);
5047}
5048
Theodore Ts'o6ba495e2009-09-18 13:38:55 -04005049#ifdef CONFIG_EXT4_DEBUG
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305050static inline void ext4_mb_show_pa(struct super_block *sb)
Alex Tomasc9de5602008-01-29 00:19:52 -05005051{
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305052 ext4_group_t i, ngroups;
Alex Tomasc9de5602008-01-29 00:19:52 -05005053
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08005054 if (ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
Eric Sandeene3570632010-07-27 11:56:08 -04005055 return;
5056
Theodore Ts'o8df96752009-05-01 08:50:38 -04005057 ngroups = ext4_get_groups_count(sb);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05305058 mb_debug(sb, "groups: ");
Theodore Ts'o8df96752009-05-01 08:50:38 -04005059 for (i = 0; i < ngroups; i++) {
Alex Tomasc9de5602008-01-29 00:19:52 -05005060 struct ext4_group_info *grp = ext4_get_group_info(sb, i);
5061 struct ext4_prealloc_space *pa;
5062 ext4_grpblk_t start;
5063 struct list_head *cur;
5064 ext4_lock_group(sb, i);
5065 list_for_each(cur, &grp->bb_prealloc_list) {
5066 pa = list_entry(cur, struct ext4_prealloc_space,
5067 pa_group_list);
5068 spin_lock(&pa->pa_lock);
5069 ext4_get_group_no_and_offset(sb, pa->pa_pstart,
5070 NULL, &start);
5071 spin_unlock(&pa->pa_lock);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05305072 mb_debug(sb, "PA:%u:%d:%d\n", i, start,
5073 pa->pa_len);
Alex Tomasc9de5602008-01-29 00:19:52 -05005074 }
Solofo Ramangalahy60bd63d2008-04-29 21:59:59 -04005075 ext4_unlock_group(sb, i);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05305076 mb_debug(sb, "%u: %d/%d\n", i, grp->bb_free,
5077 grp->bb_fragments);
Alex Tomasc9de5602008-01-29 00:19:52 -05005078 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005079}
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305080
5081static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
5082{
5083 struct super_block *sb = ac->ac_sb;
5084
Harshad Shirwadkar9b5f6c92020-11-05 19:59:09 -08005085 if (ext4_test_mount_flag(sb, EXT4_MF_FS_ABORTED))
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305086 return;
5087
Ritesh Harjanid3df1452020-05-10 11:54:54 +05305088 mb_debug(sb, "Can't allocate:"
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305089 " Allocation context details:");
Ritesh Harjanid3df1452020-05-10 11:54:54 +05305090 mb_debug(sb, "status %u flags 0x%x",
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305091 ac->ac_status, ac->ac_flags);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05305092 mb_debug(sb, "orig %lu/%lu/%lu@%lu, "
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305093 "goal %lu/%lu/%lu@%lu, "
5094 "best %lu/%lu/%lu@%lu cr %d",
5095 (unsigned long)ac->ac_o_ex.fe_group,
5096 (unsigned long)ac->ac_o_ex.fe_start,
5097 (unsigned long)ac->ac_o_ex.fe_len,
5098 (unsigned long)ac->ac_o_ex.fe_logical,
5099 (unsigned long)ac->ac_g_ex.fe_group,
5100 (unsigned long)ac->ac_g_ex.fe_start,
5101 (unsigned long)ac->ac_g_ex.fe_len,
5102 (unsigned long)ac->ac_g_ex.fe_logical,
5103 (unsigned long)ac->ac_b_ex.fe_group,
5104 (unsigned long)ac->ac_b_ex.fe_start,
5105 (unsigned long)ac->ac_b_ex.fe_len,
5106 (unsigned long)ac->ac_b_ex.fe_logical,
5107 (int)ac->ac_criteria);
Ritesh Harjanid3df1452020-05-10 11:54:54 +05305108 mb_debug(sb, "%u found", ac->ac_found);
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305109 ext4_mb_show_pa(sb);
5110}
Alex Tomasc9de5602008-01-29 00:19:52 -05005111#else
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305112static inline void ext4_mb_show_pa(struct super_block *sb)
5113{
5114 return;
5115}
Alex Tomasc9de5602008-01-29 00:19:52 -05005116static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
5117{
Ritesh Harjanie68cf402020-05-10 11:54:42 +05305118 ext4_mb_show_pa(ac->ac_sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05005119 return;
5120}
5121#endif
5122
5123/*
5124 * We use locality group preallocation for small size file. The size of the
5125 * file is determined by the current size or the resulting size after
5126 * allocation which ever is larger
5127 *
Theodore Ts'ob713a5e2009-03-31 09:11:14 -04005128 * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
Alex Tomasc9de5602008-01-29 00:19:52 -05005129 */
5130static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
5131{
5132 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
5133 int bsbits = ac->ac_sb->s_blocksize_bits;
5134 loff_t size, isize;
5135
5136 if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
5137 return;
5138
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04005139 if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
5140 return;
5141
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005142 size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
Theodore Ts'o50797482009-09-18 13:34:02 -04005143 isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
5144 >> bsbits;
Alex Tomasc9de5602008-01-29 00:19:52 -05005145
Nikolay Borisov82dd1242019-02-10 23:04:16 -05005146 if ((size == isize) && !ext4_fs_is_busy(sbi) &&
5147 !inode_is_open_for_write(ac->ac_inode)) {
Theodore Ts'o50797482009-09-18 13:34:02 -04005148 ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
5149 return;
5150 }
5151
Robin Dongebbe0272011-10-26 05:14:27 -04005152 if (sbi->s_mb_group_prealloc <= 0) {
5153 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
5154 return;
5155 }
5156
Alex Tomasc9de5602008-01-29 00:19:52 -05005157 /* don't use group allocation for large files */
Theodore Ts'o71780572009-09-28 00:06:20 -04005158 size = max(size, isize);
Tao Macc483f12010-03-01 19:06:35 -05005159 if (size > sbi->s_mb_stream_request) {
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04005160 ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
Alex Tomasc9de5602008-01-29 00:19:52 -05005161 return;
Theodore Ts'o4ba74d02009-08-09 22:01:13 -04005162 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005163
5164 BUG_ON(ac->ac_lg != NULL);
5165 /*
5166 * locality group prealloc space are per cpu. The reason for having
5167 * per cpu locality group is to reduce the contention between block
5168 * request from multiple CPUs.
5169 */
Christoph Lametera0b6bc62014-08-17 12:30:28 -05005170 ac->ac_lg = raw_cpu_ptr(sbi->s_locality_groups);
Alex Tomasc9de5602008-01-29 00:19:52 -05005171
5172 /* we're going to use group allocation */
5173 ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
5174
5175 /* serialize all allocations in the group */
5176 mutex_lock(&ac->ac_lg->lg_mutex);
5177}
5178
Eric Sandeen4ddfef72008-04-29 08:11:12 -04005179static noinline_for_stack int
5180ext4_mb_initialize_context(struct ext4_allocation_context *ac,
Alex Tomasc9de5602008-01-29 00:19:52 -05005181 struct ext4_allocation_request *ar)
5182{
5183 struct super_block *sb = ar->inode->i_sb;
5184 struct ext4_sb_info *sbi = EXT4_SB(sb);
5185 struct ext4_super_block *es = sbi->s_es;
5186 ext4_group_t group;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05005187 unsigned int len;
5188 ext4_fsblk_t goal;
Alex Tomasc9de5602008-01-29 00:19:52 -05005189 ext4_grpblk_t block;
5190
5191 /* we can't allocate > group size */
5192 len = ar->len;
5193
5194 /* just a dirty hack to filter too big requests */
Theodore Ts'o40ae3482013-02-04 15:08:40 -05005195 if (len >= EXT4_CLUSTERS_PER_GROUP(sb))
5196 len = EXT4_CLUSTERS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05005197
5198 /* start searching from the goal */
5199 goal = ar->goal;
5200 if (goal < le32_to_cpu(es->s_first_data_block) ||
5201 goal >= ext4_blocks_count(es))
5202 goal = le32_to_cpu(es->s_first_data_block);
5203 ext4_get_group_no_and_offset(sb, goal, &group, &block);
5204
5205 /* set up allocation goals */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05005206 ac->ac_b_ex.fe_logical = EXT4_LBLK_CMASK(sbi, ar->logical);
Alex Tomasc9de5602008-01-29 00:19:52 -05005207 ac->ac_status = AC_STATUS_CONTINUE;
Alex Tomasc9de5602008-01-29 00:19:52 -05005208 ac->ac_sb = sb;
5209 ac->ac_inode = ar->inode;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005210 ac->ac_o_ex.fe_logical = ac->ac_b_ex.fe_logical;
Alex Tomasc9de5602008-01-29 00:19:52 -05005211 ac->ac_o_ex.fe_group = group;
5212 ac->ac_o_ex.fe_start = block;
5213 ac->ac_o_ex.fe_len = len;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005214 ac->ac_g_ex = ac->ac_o_ex;
Alex Tomasc9de5602008-01-29 00:19:52 -05005215 ac->ac_flags = ar->flags;
Alex Tomasc9de5602008-01-29 00:19:52 -05005216
brookxu3cb77bd2020-07-15 11:00:44 +08005217 /* we have to define context: we'll work with a file or
Alex Tomasc9de5602008-01-29 00:19:52 -05005218 * locality group. this is a policy, actually */
5219 ext4_mb_group_or_file(ac);
5220
Ritesh Harjanid3df1452020-05-10 11:54:54 +05305221 mb_debug(sb, "init ac: %u blocks @ %u, goal %u, flags 0x%x, 2^%d, "
Alex Tomasc9de5602008-01-29 00:19:52 -05005222 "left: %u/%u, right %u/%u to %swritable\n",
5223 (unsigned) ar->len, (unsigned) ar->logical,
5224 (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
5225 (unsigned) ar->lleft, (unsigned) ar->pleft,
5226 (unsigned) ar->lright, (unsigned) ar->pright,
Nikolay Borisov82dd1242019-02-10 23:04:16 -05005227 inode_is_open_for_write(ar->inode) ? "" : "non-");
Alex Tomasc9de5602008-01-29 00:19:52 -05005228 return 0;
5229
5230}
5231
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005232static noinline_for_stack void
5233ext4_mb_discard_lg_preallocations(struct super_block *sb,
5234 struct ext4_locality_group *lg,
5235 int order, int total_entries)
5236{
5237 ext4_group_t group = 0;
5238 struct ext4_buddy e4b;
5239 struct list_head discard_list;
5240 struct ext4_prealloc_space *pa, *tmp;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005241
Ritesh Harjanid3df1452020-05-10 11:54:54 +05305242 mb_debug(sb, "discard locality group preallocation\n");
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005243
5244 INIT_LIST_HEAD(&discard_list);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005245
5246 spin_lock(&lg->lg_prealloc_lock);
5247 list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
Madhuparna Bhowmik92e9c582020-02-13 20:55:58 +05305248 pa_inode_list,
5249 lockdep_is_held(&lg->lg_prealloc_lock)) {
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005250 spin_lock(&pa->pa_lock);
5251 if (atomic_read(&pa->pa_count)) {
5252 /*
5253 * This is the pa that we just used
5254 * for block allocation. So don't
5255 * free that
5256 */
5257 spin_unlock(&pa->pa_lock);
5258 continue;
5259 }
5260 if (pa->pa_deleted) {
5261 spin_unlock(&pa->pa_lock);
5262 continue;
5263 }
5264 /* only lg prealloc space */
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04005265 BUG_ON(pa->pa_type != MB_GROUP_PA);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005266
5267 /* seems this one can be freed ... */
brookxu27bc4462020-08-17 15:36:15 +08005268 ext4_mb_mark_pa_deleted(sb, pa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005269 spin_unlock(&pa->pa_lock);
5270
5271 list_del_rcu(&pa->pa_inode_list);
5272 list_add(&pa->u.pa_tmp_list, &discard_list);
5273
5274 total_entries--;
5275 if (total_entries <= 5) {
5276 /*
5277 * we want to keep only 5 entries
5278 * allowing it to grow to 8. This
5279 * mak sure we don't call discard
5280 * soon for this list.
5281 */
5282 break;
5283 }
5284 }
5285 spin_unlock(&lg->lg_prealloc_lock);
5286
5287 list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04005288 int err;
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005289
Lukas Czernerbd862982013-04-03 23:32:34 -04005290 group = ext4_get_group_number(sb, pa->pa_pstart);
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04005291 err = ext4_mb_load_buddy_gfp(sb, group, &e4b,
5292 GFP_NOFS|__GFP_NOFAIL);
5293 if (err) {
Theodore Ts'o54d3adb2020-03-28 19:33:43 -04005294 ext4_error_err(sb, -err, "Error %d loading buddy information for %u",
5295 err, group);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005296 continue;
5297 }
5298 ext4_lock_group(sb, group);
5299 list_del(&pa->pa_group_list);
Eric Sandeen3e1e5f52010-10-27 21:30:07 -04005300 ext4_mb_release_group_pa(&e4b, pa);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005301 ext4_unlock_group(sb, group);
5302
Jing Zhange39e07f2010-05-14 00:00:00 -04005303 ext4_mb_unload_buddy(&e4b);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005304 list_del(&pa->u.pa_tmp_list);
5305 call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
5306 }
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005307}
5308
5309/*
5310 * We have incremented pa_count. So it cannot be freed at this
5311 * point. Also we hold lg_mutex. So no parallel allocation is
5312 * possible from this lg. That means pa_free cannot be updated.
5313 *
5314 * A parallel ext4_mb_discard_group_preallocations is possible.
5315 * which can cause the lg_prealloc_list to be updated.
5316 */
5317
5318static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
5319{
5320 int order, added = 0, lg_prealloc_count = 1;
5321 struct super_block *sb = ac->ac_sb;
5322 struct ext4_locality_group *lg = ac->ac_lg;
5323 struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
5324
5325 order = fls(pa->pa_free) - 1;
5326 if (order > PREALLOC_TB_SIZE - 1)
5327 /* The max size of hash table is PREALLOC_TB_SIZE */
5328 order = PREALLOC_TB_SIZE - 1;
5329 /* Add the prealloc space to lg */
Niu Yaweif1167002013-02-01 21:31:27 -05005330 spin_lock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005331 list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
Madhuparna Bhowmik92e9c582020-02-13 20:55:58 +05305332 pa_inode_list,
5333 lockdep_is_held(&lg->lg_prealloc_lock)) {
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005334 spin_lock(&tmp_pa->pa_lock);
5335 if (tmp_pa->pa_deleted) {
Theodore Ts'oe7c9e3e2009-03-27 19:43:21 -04005336 spin_unlock(&tmp_pa->pa_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005337 continue;
5338 }
5339 if (!added && pa->pa_free < tmp_pa->pa_free) {
5340 /* Add to the tail of the previous entry */
5341 list_add_tail_rcu(&pa->pa_inode_list,
5342 &tmp_pa->pa_inode_list);
5343 added = 1;
5344 /*
5345 * we want to count the total
5346 * number of entries in the list
5347 */
5348 }
5349 spin_unlock(&tmp_pa->pa_lock);
5350 lg_prealloc_count++;
5351 }
5352 if (!added)
5353 list_add_tail_rcu(&pa->pa_inode_list,
5354 &lg->lg_prealloc_list[order]);
Niu Yaweif1167002013-02-01 21:31:27 -05005355 spin_unlock(&lg->lg_prealloc_lock);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005356
5357 /* Now trim the list to be not more than 8 elements */
5358 if (lg_prealloc_count > 8) {
5359 ext4_mb_discard_lg_preallocations(sb, lg,
Niu Yaweif1167002013-02-01 21:31:27 -05005360 order, lg_prealloc_count);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005361 return;
5362 }
5363 return ;
5364}
5365
Alex Tomasc9de5602008-01-29 00:19:52 -05005366/*
brookxu27bc4462020-08-17 15:36:15 +08005367 * if per-inode prealloc list is too long, trim some PA
5368 */
5369static void ext4_mb_trim_inode_pa(struct inode *inode)
5370{
5371 struct ext4_inode_info *ei = EXT4_I(inode);
5372 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
5373 int count, delta;
5374
5375 count = atomic_read(&ei->i_prealloc_active);
5376 delta = (sbi->s_mb_max_inode_prealloc >> 2) + 1;
5377 if (count > sbi->s_mb_max_inode_prealloc + delta) {
5378 count -= sbi->s_mb_max_inode_prealloc;
5379 ext4_discard_preallocations(inode, count);
5380 }
5381}
5382
5383/*
Alex Tomasc9de5602008-01-29 00:19:52 -05005384 * release all resource we used in allocation
5385 */
5386static int ext4_mb_release_context(struct ext4_allocation_context *ac)
5387{
brookxu27bc4462020-08-17 15:36:15 +08005388 struct inode *inode = ac->ac_inode;
5389 struct ext4_inode_info *ei = EXT4_I(inode);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005390 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005391 struct ext4_prealloc_space *pa = ac->ac_pa;
5392 if (pa) {
Aneesh Kumar K.Vcc0fb9a2009-03-27 17:16:58 -04005393 if (pa->pa_type == MB_GROUP_PA) {
Alex Tomasc9de5602008-01-29 00:19:52 -05005394 /* see comment in ext4_mb_use_group_pa() */
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005395 spin_lock(&pa->pa_lock);
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005396 pa->pa_pstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
5397 pa->pa_lstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
Aneesh Kumar K.V6be2ded2008-07-23 14:14:05 -04005398 pa->pa_free -= ac->ac_b_ex.fe_len;
5399 pa->pa_len -= ac->ac_b_ex.fe_len;
5400 spin_unlock(&pa->pa_lock);
brookxu66d5e022020-08-17 15:36:06 +08005401
5402 /*
5403 * We want to add the pa to the right bucket.
5404 * Remove it from the list and while adding
5405 * make sure the list to which we are adding
5406 * doesn't grow big.
5407 */
5408 if (likely(pa->pa_free)) {
5409 spin_lock(pa->pa_obj_lock);
5410 list_del_rcu(&pa->pa_inode_list);
5411 spin_unlock(pa->pa_obj_lock);
5412 ext4_mb_add_n_trim(ac);
5413 }
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05005414 }
brookxu27bc4462020-08-17 15:36:15 +08005415
5416 if (pa->pa_type == MB_INODE_PA) {
5417 /*
5418 * treat per-inode prealloc list as a lru list, then try
5419 * to trim the least recently used PA.
5420 */
5421 spin_lock(pa->pa_obj_lock);
5422 list_move(&pa->pa_inode_list, &ei->i_prealloc_list);
5423 spin_unlock(pa->pa_obj_lock);
5424 }
5425
Aneesh Kumar K.Vba443912009-02-10 11:14:34 -05005426 ext4_mb_put_pa(ac, ac->ac_sb, pa);
5427 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005428 if (ac->ac_bitmap_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005429 put_page(ac->ac_bitmap_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05005430 if (ac->ac_buddy_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005431 put_page(ac->ac_buddy_page);
Alex Tomasc9de5602008-01-29 00:19:52 -05005432 if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
5433 mutex_unlock(&ac->ac_lg->lg_mutex);
5434 ext4_mb_collect_stats(ac);
brookxu27bc4462020-08-17 15:36:15 +08005435 ext4_mb_trim_inode_pa(inode);
Alex Tomasc9de5602008-01-29 00:19:52 -05005436 return 0;
5437}
5438
5439static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
5440{
Theodore Ts'o8df96752009-05-01 08:50:38 -04005441 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05005442 int ret;
Chunguang Xu8c80fb32021-11-23 09:17:57 +08005443 int freed = 0, busy = 0;
5444 int retry = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05005445
Theodore Ts'o9bffad12009-06-17 11:48:11 -04005446 trace_ext4_mb_discard_preallocations(sb, needed);
Chunguang Xu8c80fb32021-11-23 09:17:57 +08005447
5448 if (needed == 0)
5449 needed = EXT4_CLUSTERS_PER_GROUP(sb) + 1;
5450 repeat:
Theodore Ts'o8df96752009-05-01 08:50:38 -04005451 for (i = 0; i < ngroups && needed > 0; i++) {
Chunguang Xu8c80fb32021-11-23 09:17:57 +08005452 ret = ext4_mb_discard_group_preallocations(sb, i, &busy);
Alex Tomasc9de5602008-01-29 00:19:52 -05005453 freed += ret;
5454 needed -= ret;
Chunguang Xu8c80fb32021-11-23 09:17:57 +08005455 cond_resched();
5456 }
5457
5458 if (needed > 0 && busy && ++retry < 3) {
5459 busy = 0;
5460 goto repeat;
Alex Tomasc9de5602008-01-29 00:19:52 -05005461 }
5462
5463 return freed;
5464}
5465
Ritesh Harjanicf5e2ca2020-05-20 12:10:33 +05305466static bool ext4_mb_discard_preallocations_should_retry(struct super_block *sb,
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05305467 struct ext4_allocation_context *ac, u64 *seq)
Ritesh Harjanicf5e2ca2020-05-20 12:10:33 +05305468{
5469 int freed;
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05305470 u64 seq_retry = 0;
5471 bool ret = false;
Ritesh Harjanicf5e2ca2020-05-20 12:10:33 +05305472
5473 freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05305474 if (freed) {
5475 ret = true;
5476 goto out_dbg;
5477 }
5478 seq_retry = ext4_get_discard_pa_seq_sum();
Ritesh Harjani99377832020-05-20 12:10:36 +05305479 if (!(ac->ac_flags & EXT4_MB_STRICT_CHECK) || seq_retry != *seq) {
5480 ac->ac_flags |= EXT4_MB_STRICT_CHECK;
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05305481 *seq = seq_retry;
5482 ret = true;
5483 }
5484
5485out_dbg:
5486 mb_debug(sb, "freed %d, retry ? %s\n", freed, ret ? "yes" : "no");
5487 return ret;
Ritesh Harjanicf5e2ca2020-05-20 12:10:33 +05305488}
5489
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005490static ext4_fsblk_t ext4_mb_new_blocks_simple(handle_t *handle,
5491 struct ext4_allocation_request *ar, int *errp);
5492
Alex Tomasc9de5602008-01-29 00:19:52 -05005493/*
5494 * Main entry point into mballoc to allocate blocks
5495 * it tries to use preallocation first, then falls back
5496 * to usual allocation
5497 */
5498ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
Aditya Kali6c7a1202010-08-05 16:22:24 -04005499 struct ext4_allocation_request *ar, int *errp)
Alex Tomasc9de5602008-01-29 00:19:52 -05005500{
Eric Sandeen256bdb42008-02-10 01:13:33 -05005501 struct ext4_allocation_context *ac = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05005502 struct ext4_sb_info *sbi;
5503 struct super_block *sb;
5504 ext4_fsblk_t block = 0;
Mingming Cao60e58e02009-01-22 18:13:05 +01005505 unsigned int inquota = 0;
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005506 unsigned int reserv_clstrs = 0;
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05305507 u64 seq;
Alex Tomasc9de5602008-01-29 00:19:52 -05005508
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04005509 might_sleep();
Alex Tomasc9de5602008-01-29 00:19:52 -05005510 sb = ar->inode->i_sb;
5511 sbi = EXT4_SB(sb);
5512
Theodore Ts'o9bffad12009-06-17 11:48:11 -04005513 trace_ext4_request_blocks(ar);
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005514 if (sbi->s_mount_state & EXT4_FC_REPLAY)
5515 return ext4_mb_new_blocks_simple(handle, ar, errp);
Theodore Ts'oba80b102009-01-03 20:03:21 -05005516
Dmitry Monakhov45dc63e2011-10-20 20:07:23 -04005517 /* Allow to use superuser reservation for quota file */
Tahsin Erdogan02749a42017-06-22 11:31:25 -04005518 if (ext4_is_quota_file(ar->inode))
Dmitry Monakhov45dc63e2011-10-20 20:07:23 -04005519 ar->flags |= EXT4_MB_USE_ROOT_BLOCKS;
5520
Theodore Ts'oe3cf5d52014-09-04 18:07:25 -04005521 if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0) {
Mingming Cao60e58e02009-01-22 18:13:05 +01005522 /* Without delayed allocation we need to verify
5523 * there is enough free blocks to do block allocation
5524 * and verify allocation doesn't exceed the quota limits.
Mingming Caod2a17632008-07-14 17:52:37 -04005525 */
Allison Henderson55f020d2011-05-25 07:41:26 -04005526 while (ar->len &&
Theodore Ts'oe7d5f312011-09-09 19:14:51 -04005527 ext4_claim_free_clusters(sbi, ar->len, ar->flags)) {
Allison Henderson55f020d2011-05-25 07:41:26 -04005528
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04005529 /* let others to free the space */
Lukas Czernerbb8b20e2013-03-10 22:28:09 -04005530 cond_resched();
Aneesh Kumar K.V030ba6b2008-09-08 23:14:50 -04005531 ar->len = ar->len >> 1;
5532 }
5533 if (!ar->len) {
Ritesh Harjanibbc4ec72020-05-10 11:54:43 +05305534 ext4_mb_show_pa(sb);
Aneesh Kumar K.Va30d542a2008-10-09 10:56:23 -04005535 *errp = -ENOSPC;
5536 return 0;
5537 }
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005538 reserv_clstrs = ar->len;
Allison Henderson55f020d2011-05-25 07:41:26 -04005539 if (ar->flags & EXT4_MB_USE_ROOT_BLOCKS) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005540 dquot_alloc_block_nofail(ar->inode,
5541 EXT4_C2B(sbi, ar->len));
Allison Henderson55f020d2011-05-25 07:41:26 -04005542 } else {
5543 while (ar->len &&
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005544 dquot_alloc_block(ar->inode,
5545 EXT4_C2B(sbi, ar->len))) {
Allison Henderson55f020d2011-05-25 07:41:26 -04005546
5547 ar->flags |= EXT4_MB_HINT_NOPREALLOC;
5548 ar->len--;
5549 }
Mingming Cao60e58e02009-01-22 18:13:05 +01005550 }
5551 inquota = ar->len;
5552 if (ar->len == 0) {
5553 *errp = -EDQUOT;
Aditya Kali6c7a1202010-08-05 16:22:24 -04005554 goto out;
Mingming Cao60e58e02009-01-22 18:13:05 +01005555 }
Mingming Caod2a17632008-07-14 17:52:37 -04005556 }
Mingming Caod2a17632008-07-14 17:52:37 -04005557
Wei Yongjun85556c92012-09-26 20:43:37 -04005558 ac = kmem_cache_zalloc(ext4_ac_cachep, GFP_NOFS);
Theodore Ts'o833576b2009-07-13 09:45:52 -04005559 if (!ac) {
Shen Feng363d4252008-07-11 19:27:31 -04005560 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05005561 *errp = -ENOMEM;
Aditya Kali6c7a1202010-08-05 16:22:24 -04005562 goto out;
Eric Sandeen256bdb42008-02-10 01:13:33 -05005563 }
5564
Eric Sandeen256bdb42008-02-10 01:13:33 -05005565 *errp = ext4_mb_initialize_context(ac, ar);
Alex Tomasc9de5602008-01-29 00:19:52 -05005566 if (*errp) {
5567 ar->len = 0;
Aditya Kali6c7a1202010-08-05 16:22:24 -04005568 goto out;
Alex Tomasc9de5602008-01-29 00:19:52 -05005569 }
5570
Eric Sandeen256bdb42008-02-10 01:13:33 -05005571 ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
Ritesh Harjani81198532020-06-09 16:23:10 +05305572 seq = this_cpu_read(discard_pa_seq);
Eric Sandeen256bdb42008-02-10 01:13:33 -05005573 if (!ext4_mb_use_preallocated(ac)) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05005574 ac->ac_op = EXT4_MB_HISTORY_ALLOC;
5575 ext4_mb_normalize_request(ac, ar);
Ritesh Harjani53f86b12020-05-20 12:10:32 +05305576
5577 *errp = ext4_mb_pa_alloc(ac);
5578 if (*errp)
5579 goto errout;
Alex Tomasc9de5602008-01-29 00:19:52 -05005580repeat:
5581 /* allocate space in core */
Aditya Kali6c7a1202010-08-05 16:22:24 -04005582 *errp = ext4_mb_regular_allocator(ac);
Ritesh Harjani53f86b12020-05-20 12:10:32 +05305583 /*
5584 * pa allocated above is added to grp->bb_prealloc_list only
5585 * when we were able to allocate some block i.e. when
5586 * ac->ac_status == AC_STATUS_FOUND.
5587 * And error from above mean ac->ac_status != AC_STATUS_FOUND
5588 * So we have to free this pa here itself.
5589 */
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005590 if (*errp) {
Ritesh Harjani53f86b12020-05-20 12:10:32 +05305591 ext4_mb_pa_free(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005592 ext4_discard_allocated_blocks(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04005593 goto errout;
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005594 }
Ritesh Harjani53f86b12020-05-20 12:10:32 +05305595 if (ac->ac_status == AC_STATUS_FOUND &&
5596 ac->ac_o_ex.fe_len >= ac->ac_f_ex.fe_len)
5597 ext4_mb_pa_free(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05005598 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05005599 if (likely(ac->ac_status == AC_STATUS_FOUND)) {
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005600 *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_clstrs);
Vegard Nossum554a5cc2016-07-14 23:02:47 -04005601 if (*errp) {
Curt Wohlgemuthb8441672009-12-08 22:18:25 -05005602 ext4_discard_allocated_blocks(ac);
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005603 goto errout;
5604 } else {
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04005605 block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
5606 ar->len = ac->ac_b_ex.fe_len;
5607 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005608 } else {
Ritesh Harjani07b5b8e2020-05-20 12:10:34 +05305609 if (ext4_mb_discard_preallocations_should_retry(sb, ac, &seq))
Alex Tomasc9de5602008-01-29 00:19:52 -05005610 goto repeat;
Ritesh Harjani53f86b12020-05-20 12:10:32 +05305611 /*
5612 * If block allocation fails then the pa allocated above
5613 * needs to be freed here itself.
5614 */
5615 ext4_mb_pa_free(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05005616 *errp = -ENOSPC;
Aditya Kali6c7a1202010-08-05 16:22:24 -04005617 }
5618
Eric Sandeen6d138ce2012-11-08 11:11:59 -05005619errout:
Aditya Kali6c7a1202010-08-05 16:22:24 -04005620 if (*errp) {
Eric Sandeen256bdb42008-02-10 01:13:33 -05005621 ac->ac_b_ex.fe_len = 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05005622 ar->len = 0;
Eric Sandeen256bdb42008-02-10 01:13:33 -05005623 ext4_mb_show_ac(ac);
Alex Tomasc9de5602008-01-29 00:19:52 -05005624 }
Eric Sandeen256bdb42008-02-10 01:13:33 -05005625 ext4_mb_release_context(ac);
Aditya Kali6c7a1202010-08-05 16:22:24 -04005626out:
5627 if (ac)
5628 kmem_cache_free(ext4_ac_cachep, ac);
Mingming Cao60e58e02009-01-22 18:13:05 +01005629 if (inquota && ar->len < inquota)
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005630 dquot_free_block(ar->inode, EXT4_C2B(sbi, inquota - ar->len));
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05005631 if (!ar->len) {
Theodore Ts'oe3cf5d52014-09-04 18:07:25 -04005632 if ((ar->flags & EXT4_MB_DELALLOC_RESERVED) == 0)
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05005633 /* release all the reserved blocks if non delalloc */
Theodore Ts'o57042652011-09-09 18:56:51 -04005634 percpu_counter_sub(&sbi->s_dirtyclusters_counter,
Theodore Ts'o53accfa2011-09-09 18:48:51 -04005635 reserv_clstrs);
Aneesh Kumar K.V0087d9f2009-01-05 21:49:12 -05005636 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005637
Theodore Ts'o9bffad12009-06-17 11:48:11 -04005638 trace_ext4_allocate_blocks(ar, (unsigned long long)block);
Theodore Ts'oba80b102009-01-03 20:03:21 -05005639
Alex Tomasc9de5602008-01-29 00:19:52 -05005640 return block;
5641}
Alex Tomasc9de5602008-01-29 00:19:52 -05005642
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005643/*
5644 * We can merge two free data extents only if the physical blocks
5645 * are contiguous, AND the extents were freed by the same transaction,
5646 * AND the blocks are associated with the same group.
5647 */
Daeho Jeonga0154342017-06-22 23:54:33 -04005648static void ext4_try_merge_freed_extent(struct ext4_sb_info *sbi,
5649 struct ext4_free_data *entry,
5650 struct ext4_free_data *new_entry,
5651 struct rb_root *entry_rb_root)
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005652{
Daeho Jeonga0154342017-06-22 23:54:33 -04005653 if ((entry->efd_tid != new_entry->efd_tid) ||
5654 (entry->efd_group != new_entry->efd_group))
5655 return;
5656 if (entry->efd_start_cluster + entry->efd_count ==
5657 new_entry->efd_start_cluster) {
5658 new_entry->efd_start_cluster = entry->efd_start_cluster;
5659 new_entry->efd_count += entry->efd_count;
5660 } else if (new_entry->efd_start_cluster + new_entry->efd_count ==
5661 entry->efd_start_cluster) {
5662 new_entry->efd_count += entry->efd_count;
5663 } else
5664 return;
5665 spin_lock(&sbi->s_md_lock);
5666 list_del(&entry->efd_list);
5667 spin_unlock(&sbi->s_md_lock);
5668 rb_erase(&entry->efd_node, entry_rb_root);
5669 kmem_cache_free(ext4_free_data_cachep, entry);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005670}
5671
Eric Sandeen4ddfef72008-04-29 08:11:12 -04005672static noinline_for_stack int
5673ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005674 struct ext4_free_data *new_entry)
Alex Tomasc9de5602008-01-29 00:19:52 -05005675{
Theodore Ts'oe29136f2010-06-29 12:54:28 -04005676 ext4_group_t group = e4b->bd_group;
Theodore Ts'o84130192011-09-09 18:50:51 -04005677 ext4_grpblk_t cluster;
Theodore Ts'od08854f2016-06-26 18:24:01 -04005678 ext4_grpblk_t clusters = new_entry->efd_count;
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05005679 struct ext4_free_data *entry;
Alex Tomasc9de5602008-01-29 00:19:52 -05005680 struct ext4_group_info *db = e4b->bd_info;
5681 struct super_block *sb = e4b->bd_sb;
5682 struct ext4_sb_info *sbi = EXT4_SB(sb);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005683 struct rb_node **n = &db->bb_free_root.rb_node, *node;
5684 struct rb_node *parent = NULL, *new_node;
5685
Frank Mayhar03901312009-01-07 00:06:22 -05005686 BUG_ON(!ext4_handle_valid(handle));
Alex Tomasc9de5602008-01-29 00:19:52 -05005687 BUG_ON(e4b->bd_bitmap_page == NULL);
5688 BUG_ON(e4b->bd_buddy_page == NULL);
5689
Bobi Jam18aadd42012-02-20 17:53:02 -05005690 new_node = &new_entry->efd_node;
5691 cluster = new_entry->efd_start_cluster;
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005692
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005693 if (!*n) {
5694 /* first free block exent. We need to
5695 protect buddy cache from being freed,
5696 * otherwise we'll refresh it from
5697 * on-disk bitmap and lose not-yet-available
5698 * blocks */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03005699 get_page(e4b->bd_buddy_page);
5700 get_page(e4b->bd_bitmap_page);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005701 }
5702 while (*n) {
5703 parent = *n;
Bobi Jam18aadd42012-02-20 17:53:02 -05005704 entry = rb_entry(parent, struct ext4_free_data, efd_node);
5705 if (cluster < entry->efd_start_cluster)
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005706 n = &(*n)->rb_left;
Bobi Jam18aadd42012-02-20 17:53:02 -05005707 else if (cluster >= (entry->efd_start_cluster + entry->efd_count))
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005708 n = &(*n)->rb_right;
5709 else {
Theodore Ts'oe29136f2010-06-29 12:54:28 -04005710 ext4_grp_locked_error(sb, group, 0,
Theodore Ts'o84130192011-09-09 18:50:51 -04005711 ext4_group_first_block_no(sb, group) +
5712 EXT4_C2B(sbi, cluster),
Theodore Ts'oe29136f2010-06-29 12:54:28 -04005713 "Block already on to-be-freed list");
Chunguang Xucca41552020-11-07 23:58:18 +08005714 kmem_cache_free(ext4_free_data_cachep, new_entry);
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005715 return 0;
Alex Tomasc9de5602008-01-29 00:19:52 -05005716 }
5717 }
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005718
5719 rb_link_node(new_node, parent, n);
5720 rb_insert_color(new_node, &db->bb_free_root);
5721
5722 /* Now try to see the extent can be merged to left and right */
5723 node = rb_prev(new_node);
5724 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05005725 entry = rb_entry(node, struct ext4_free_data, efd_node);
Daeho Jeonga0154342017-06-22 23:54:33 -04005726 ext4_try_merge_freed_extent(sbi, entry, new_entry,
5727 &(db->bb_free_root));
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005728 }
5729
5730 node = rb_next(new_node);
5731 if (node) {
Bobi Jam18aadd42012-02-20 17:53:02 -05005732 entry = rb_entry(node, struct ext4_free_data, efd_node);
Daeho Jeonga0154342017-06-22 23:54:33 -04005733 ext4_try_merge_freed_extent(sbi, entry, new_entry,
5734 &(db->bb_free_root));
Aneesh Kumar K.Vc8940582008-10-16 10:14:27 -04005735 }
Daeho Jeonga0154342017-06-22 23:54:33 -04005736
Theodore Ts'od08854f2016-06-26 18:24:01 -04005737 spin_lock(&sbi->s_md_lock);
Daeho Jeonga0154342017-06-22 23:54:33 -04005738 list_add_tail(&new_entry->efd_list, &sbi->s_freed_data_list);
Theodore Ts'od08854f2016-06-26 18:24:01 -04005739 sbi->s_mb_free_pending += clusters;
5740 spin_unlock(&sbi->s_md_lock);
Alex Tomasc9de5602008-01-29 00:19:52 -05005741 return 0;
5742}
5743
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005744/*
5745 * Simple allocator for Ext4 fast commit replay path. It searches for blocks
5746 * linearly starting at the goal block and also excludes the blocks which
5747 * are going to be in use after fast commit replay.
5748 */
5749static ext4_fsblk_t ext4_mb_new_blocks_simple(handle_t *handle,
5750 struct ext4_allocation_request *ar, int *errp)
5751{
5752 struct buffer_head *bitmap_bh;
5753 struct super_block *sb = ar->inode->i_sb;
5754 ext4_group_t group;
5755 ext4_grpblk_t blkoff;
Xin Yin31a074a2022-01-10 11:51:41 +08005756 ext4_grpblk_t max = EXT4_CLUSTERS_PER_GROUP(sb);
5757 ext4_grpblk_t i = 0;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005758 ext4_fsblk_t goal, block;
5759 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
5760
5761 goal = ar->goal;
5762 if (goal < le32_to_cpu(es->s_first_data_block) ||
5763 goal >= ext4_blocks_count(es))
5764 goal = le32_to_cpu(es->s_first_data_block);
5765
5766 ar->len = 0;
5767 ext4_get_group_no_and_offset(sb, goal, &group, &blkoff);
5768 for (; group < ext4_get_groups_count(sb); group++) {
5769 bitmap_bh = ext4_read_block_bitmap(sb, group);
5770 if (IS_ERR(bitmap_bh)) {
5771 *errp = PTR_ERR(bitmap_bh);
5772 pr_warn("Failed to read block bitmap\n");
5773 return 0;
5774 }
5775
5776 ext4_get_group_no_and_offset(sb,
5777 max(ext4_group_first_block_no(sb, group), goal),
5778 NULL, &blkoff);
Xin Yin31a074a2022-01-10 11:51:41 +08005779 while (1) {
5780 i = mb_find_next_zero_bit(bitmap_bh->b_data, max,
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005781 blkoff);
Xin Yin31a074a2022-01-10 11:51:41 +08005782 if (i >= max)
5783 break;
5784 if (ext4_fc_replay_check_excluded(sb,
5785 ext4_group_first_block_no(sb, group) + i)) {
5786 blkoff = i + 1;
5787 } else
5788 break;
5789 }
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005790 brelse(bitmap_bh);
Xin Yin31a074a2022-01-10 11:51:41 +08005791 if (i < max)
5792 break;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005793 }
5794
Xin Yin31a074a2022-01-10 11:51:41 +08005795 if (group >= ext4_get_groups_count(sb) || i >= max) {
5796 *errp = -ENOSPC;
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005797 return 0;
Xin Yin31a074a2022-01-10 11:51:41 +08005798 }
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005799
5800 block = ext4_group_first_block_no(sb, group) + i;
5801 ext4_mb_mark_bb(sb, block, 1, 1);
5802 ar->len = 1;
5803
5804 return block;
5805}
5806
5807static void ext4_free_blocks_simple(struct inode *inode, ext4_fsblk_t block,
5808 unsigned long count)
5809{
5810 struct buffer_head *bitmap_bh;
5811 struct super_block *sb = inode->i_sb;
5812 struct ext4_group_desc *gdp;
5813 struct buffer_head *gdp_bh;
5814 ext4_group_t group;
5815 ext4_grpblk_t blkoff;
5816 int already_freed = 0, err, i;
5817
5818 ext4_get_group_no_and_offset(sb, block, &group, &blkoff);
5819 bitmap_bh = ext4_read_block_bitmap(sb, group);
5820 if (IS_ERR(bitmap_bh)) {
5821 err = PTR_ERR(bitmap_bh);
5822 pr_warn("Failed to read block bitmap\n");
5823 return;
5824 }
5825 gdp = ext4_get_group_desc(sb, group, &gdp_bh);
5826 if (!gdp)
5827 return;
5828
5829 for (i = 0; i < count; i++) {
5830 if (!mb_test_bit(blkoff + i, bitmap_bh->b_data))
5831 already_freed++;
5832 }
5833 mb_clear_bits(bitmap_bh->b_data, blkoff, count);
5834 err = ext4_handle_dirty_metadata(NULL, NULL, bitmap_bh);
5835 if (err)
5836 return;
5837 ext4_free_group_clusters_set(
5838 sb, gdp, ext4_free_group_clusters(sb, gdp) +
5839 count - already_freed);
5840 ext4_block_bitmap_csum_set(sb, group, gdp, bitmap_bh);
5841 ext4_group_desc_csum_set(sb, group, gdp);
5842 ext4_handle_dirty_metadata(NULL, NULL, gdp_bh);
5843 sync_dirty_buffer(bitmap_bh);
5844 sync_dirty_buffer(gdp_bh);
5845 brelse(bitmap_bh);
5846}
5847
Theodore Ts'o44338712009-11-22 07:44:56 -05005848/**
5849 * ext4_free_blocks() -- Free given blocks and update quota
5850 * @handle: handle for this transaction
5851 * @inode: inode
Theodore Ts'oc60990b2019-06-19 16:30:03 -04005852 * @bh: optional buffer of the block to be freed
5853 * @block: starting physical block to be freed
5854 * @count: number of blocks to be freed
Yongqiang Yang5def1362011-06-05 23:26:40 -04005855 * @flags: flags used by ext4_free_blocks
Alex Tomasc9de5602008-01-29 00:19:52 -05005856 */
Theodore Ts'o44338712009-11-22 07:44:56 -05005857void ext4_free_blocks(handle_t *handle, struct inode *inode,
Theodore Ts'oe6362602009-11-23 07:17:05 -05005858 struct buffer_head *bh, ext4_fsblk_t block,
5859 unsigned long count, int flags)
Alex Tomasc9de5602008-01-29 00:19:52 -05005860{
Aneesh Kumar K.V26346ff2008-02-10 01:10:04 -05005861 struct buffer_head *bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05005862 struct super_block *sb = inode->i_sb;
Alex Tomasc9de5602008-01-29 00:19:52 -05005863 struct ext4_group_desc *gdp;
Theodore Ts'o498e5f22008-11-05 00:14:04 -05005864 unsigned int overflow;
Alex Tomasc9de5602008-01-29 00:19:52 -05005865 ext4_grpblk_t bit;
5866 struct buffer_head *gd_bh;
5867 ext4_group_t block_group;
5868 struct ext4_sb_info *sbi;
5869 struct ext4_buddy e4b;
Theodore Ts'o84130192011-09-09 18:50:51 -04005870 unsigned int count_clusters;
Alex Tomasc9de5602008-01-29 00:19:52 -05005871 int err = 0;
5872 int ret;
5873
Harshad Shirwadkar8016e292020-10-15 13:37:59 -07005874 sbi = EXT4_SB(sb);
5875
5876 if (sbi->s_mount_state & EXT4_FC_REPLAY) {
5877 ext4_free_blocks_simple(inode, block, count);
5878 return;
5879 }
5880
Theodore Ts'ob10a44c2013-04-03 22:00:52 -04005881 might_sleep();
Theodore Ts'oe6362602009-11-23 07:17:05 -05005882 if (bh) {
5883 if (block)
5884 BUG_ON(block != bh->b_blocknr);
5885 else
5886 block = bh->b_blocknr;
5887 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005888
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05005889 if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
Jan Karace9f24c2020-07-28 15:04:34 +02005890 !ext4_inode_block_valid(inode, block, count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05005891 ext4_error(sb, "Freeing blocks not in datazone - "
Theodore Ts'o1f2acb62010-01-22 17:40:42 -05005892 "block = %llu, count = %lu", block, count);
Alex Tomasc9de5602008-01-29 00:19:52 -05005893 goto error_return;
5894 }
5895
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04005896 ext4_debug("freeing block %llu\n", block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05005897 trace_ext4_free_blocks(inode, block, count, flags);
5898
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005899 if (bh && (flags & EXT4_FREE_BLOCKS_FORGET)) {
5900 BUG_ON(count > 1);
Theodore Ts'oe6362602009-11-23 07:17:05 -05005901
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005902 ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
5903 inode, bh, block);
Theodore Ts'oe6362602009-11-23 07:17:05 -05005904 }
5905
Theodore Ts'o60e66792010-05-17 07:00:00 -04005906 /*
Theodore Ts'o84130192011-09-09 18:50:51 -04005907 * If the extent to be freed does not begin on a cluster
5908 * boundary, we need to deal with partial clusters at the
5909 * beginning and end of the extent. Normally we will free
5910 * blocks at the beginning or the end unless we are explicitly
5911 * requested to avoid doing so.
5912 */
Theodore Ts'of5a44db2013-12-20 09:29:35 -05005913 overflow = EXT4_PBLK_COFF(sbi, block);
Theodore Ts'o84130192011-09-09 18:50:51 -04005914 if (overflow) {
5915 if (flags & EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER) {
5916 overflow = sbi->s_cluster_ratio - overflow;
5917 block += overflow;
5918 if (count > overflow)
5919 count -= overflow;
5920 else
5921 return;
5922 } else {
5923 block -= overflow;
5924 count += overflow;
5925 }
5926 }
Theodore Ts'of5a44db2013-12-20 09:29:35 -05005927 overflow = EXT4_LBLK_COFF(sbi, count);
Theodore Ts'o84130192011-09-09 18:50:51 -04005928 if (overflow) {
5929 if (flags & EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER) {
5930 if (count > overflow)
5931 count -= overflow;
5932 else
5933 return;
5934 } else
5935 count += sbi->s_cluster_ratio - overflow;
5936 }
5937
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005938 if (!bh && (flags & EXT4_FREE_BLOCKS_FORGET)) {
5939 int i;
Daeho Jeongf96c4502016-02-21 18:31:41 -05005940 int is_metadata = flags & EXT4_FREE_BLOCKS_METADATA;
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005941
5942 for (i = 0; i < count; i++) {
5943 cond_resched();
Daeho Jeongf96c4502016-02-21 18:31:41 -05005944 if (is_metadata)
5945 bh = sb_find_get_block(inode->i_sb, block + i);
5946 ext4_forget(handle, is_metadata, inode, bh, block + i);
Daeho Jeong9c02ac92015-10-17 22:28:21 -04005947 }
5948 }
5949
Alex Tomasc9de5602008-01-29 00:19:52 -05005950do_more:
5951 overflow = 0;
5952 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
5953
Darrick J. Wong163a2032013-08-28 17:35:51 -04005954 if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(
5955 ext4_get_group_info(sb, block_group))))
5956 return;
5957
Alex Tomasc9de5602008-01-29 00:19:52 -05005958 /*
5959 * Check to see if we are freeing blocks across a group
5960 * boundary.
5961 */
Theodore Ts'o84130192011-09-09 18:50:51 -04005962 if (EXT4_C2B(sbi, bit) + count > EXT4_BLOCKS_PER_GROUP(sb)) {
5963 overflow = EXT4_C2B(sbi, bit) + count -
5964 EXT4_BLOCKS_PER_GROUP(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -05005965 count -= overflow;
5966 }
Lukas Czerner810da242013-03-02 17:18:58 -05005967 count_clusters = EXT4_NUM_B2C(sbi, count);
Theodore Ts'o574ca172008-07-11 19:27:31 -04005968 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04005969 if (IS_ERR(bitmap_bh)) {
5970 err = PTR_ERR(bitmap_bh);
5971 bitmap_bh = NULL;
Alex Tomasc9de5602008-01-29 00:19:52 -05005972 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04005973 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005974 gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04005975 if (!gdp) {
5976 err = -EIO;
Alex Tomasc9de5602008-01-29 00:19:52 -05005977 goto error_return;
Aneesh Kumar K.Vce89f462008-07-23 14:09:29 -04005978 }
Alex Tomasc9de5602008-01-29 00:19:52 -05005979
5980 if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
5981 in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
5982 in_range(block, ext4_inode_table(sb, gdp),
Jun Piao49598e02018-01-11 13:17:49 -05005983 sbi->s_itb_per_group) ||
Alex Tomasc9de5602008-01-29 00:19:52 -05005984 in_range(block + count - 1, ext4_inode_table(sb, gdp),
Jun Piao49598e02018-01-11 13:17:49 -05005985 sbi->s_itb_per_group)) {
Alex Tomasc9de5602008-01-29 00:19:52 -05005986
Eric Sandeen12062dd2010-02-15 14:19:27 -05005987 ext4_error(sb, "Freeing blocks in system zone - "
Theodore Ts'o0610b6e2009-06-15 03:45:05 -04005988 "Block = %llu, count = %lu", block, count);
Aneesh Kumar K.V519deca02008-05-15 14:43:20 -04005989 /* err = 0. ext4_std_error should be a no op */
5990 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05005991 }
5992
5993 BUFFER_TRACE(bitmap_bh, "getting write access");
Jan Kara188c2992021-08-16 11:57:04 +02005994 err = ext4_journal_get_write_access(handle, sb, bitmap_bh,
5995 EXT4_JTR_NONE);
Alex Tomasc9de5602008-01-29 00:19:52 -05005996 if (err)
5997 goto error_return;
5998
5999 /*
6000 * We are about to modify some metadata. Call the journal APIs
6001 * to unshare ->b_data if a currently-committing transaction is
6002 * using it
6003 */
6004 BUFFER_TRACE(gd_bh, "get_write_access");
Jan Kara188c2992021-08-16 11:57:04 +02006005 err = ext4_journal_get_write_access(handle, sb, gd_bh, EXT4_JTR_NONE);
Alex Tomasc9de5602008-01-29 00:19:52 -05006006 if (err)
6007 goto error_return;
Alex Tomasc9de5602008-01-29 00:19:52 -05006008#ifdef AGGRESSIVE_CHECK
6009 {
6010 int i;
Theodore Ts'o84130192011-09-09 18:50:51 -04006011 for (i = 0; i < count_clusters; i++)
Alex Tomasc9de5602008-01-29 00:19:52 -05006012 BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
6013 }
6014#endif
Theodore Ts'o84130192011-09-09 18:50:51 -04006015 trace_ext4_mballoc_free(sb, inode, block_group, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05006016
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04006017 /* __GFP_NOFAIL: retry infinitely, ignore TIF_MEMDIE and memcg limit. */
6018 err = ext4_mb_load_buddy_gfp(sb, block_group, &e4b,
6019 GFP_NOFS|__GFP_NOFAIL);
Aneesh Kumar K.V920313a2009-01-05 21:36:19 -05006020 if (err)
6021 goto error_return;
Theodore Ts'oe6362602009-11-23 07:17:05 -05006022
Daeho Jeongf96c4502016-02-21 18:31:41 -05006023 /*
6024 * We need to make sure we don't reuse the freed block until after the
6025 * transaction is committed. We make an exception if the inode is to be
6026 * written in writeback mode since writeback mode has weak data
6027 * consistency guarantees.
6028 */
6029 if (ext4_handle_valid(handle) &&
6030 ((flags & EXT4_FREE_BLOCKS_METADATA) ||
6031 !ext4_should_writeback_data(inode))) {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05006032 struct ext4_free_data *new_entry;
6033 /*
Michal Hocko7444a072015-07-05 12:33:44 -04006034 * We use __GFP_NOFAIL because ext4_free_blocks() is not allowed
6035 * to fail.
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05006036 */
Michal Hocko7444a072015-07-05 12:33:44 -04006037 new_entry = kmem_cache_alloc(ext4_free_data_cachep,
6038 GFP_NOFS|__GFP_NOFAIL);
Bobi Jam18aadd42012-02-20 17:53:02 -05006039 new_entry->efd_start_cluster = bit;
6040 new_entry->efd_group = block_group;
6041 new_entry->efd_count = count_clusters;
6042 new_entry->efd_tid = handle->h_transaction->t_tid;
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04006043
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05006044 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04006045 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05006046 ext4_mb_free_metadata(handle, &e4b, new_entry);
Alex Tomasc9de5602008-01-29 00:19:52 -05006047 } else {
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05006048 /* need to update group_info->bb_free and bitmap
6049 * with group lock held. generate_buddy look at
6050 * them with group lock_held
6051 */
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05006052 if (test_opt(sb, DISCARD)) {
Daeho Jeonga0154342017-06-22 23:54:33 -04006053 err = ext4_issue_discard(sb, block_group, bit, count,
6054 NULL);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05006055 if (err && err != -EOPNOTSUPP)
6056 ext4_msg(sb, KERN_WARNING, "discard request in"
6057 " group:%d block:%d count:%lu failed"
6058 " with %d", block_group, bit, count,
6059 err);
Lukas Czerner8f9ff182013-10-30 11:10:52 -04006060 } else
6061 EXT4_MB_GRP_CLEAR_TRIMMED(e4b.bd_info);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05006062
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04006063 ext4_lock_group(sb, block_group);
Theodore Ts'o84130192011-09-09 18:50:51 -04006064 mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
6065 mb_free_blocks(inode, &e4b, bit, count_clusters);
Alex Tomasc9de5602008-01-29 00:19:52 -05006066 }
6067
Theodore Ts'o021b65b2011-09-09 19:08:51 -04006068 ret = ext4_free_group_clusters(sb, gdp) + count_clusters;
6069 ext4_free_group_clusters_set(sb, gdp, ret);
Tao Ma79f1ba42012-10-22 00:34:32 -04006070 ext4_block_bitmap_csum_set(sb, block_group, gdp, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04006071 ext4_group_desc_csum_set(sb, block_group, gdp);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04006072 ext4_unlock_group(sb, block_group);
Alex Tomasc9de5602008-01-29 00:19:52 -05006073
Jose R. Santos772cb7c2008-07-11 19:27:31 -04006074 if (sbi->s_log_groups_per_flex) {
6075 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
Theodore Ts'o90ba9832013-03-11 23:39:59 -04006076 atomic64_add(count_clusters,
Suraj Jitindar Singh7c990722020-02-18 19:08:51 -08006077 &sbi_array_rcu_deref(sbi, s_flex_groups,
6078 flex_group)->free_clusters);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04006079 }
6080
Eric Whitney9fe67142018-10-01 14:25:08 -04006081 /*
6082 * on a bigalloc file system, defer the s_freeclusters_counter
6083 * update to the caller (ext4_remove_space and friends) so they
6084 * can determine if a cluster freed here should be rereserved
6085 */
6086 if (!(flags & EXT4_FREE_BLOCKS_RERESERVE_CLUSTER)) {
6087 if (!(flags & EXT4_FREE_BLOCKS_NO_QUOT_UPDATE))
6088 dquot_free_block(inode, EXT4_C2B(sbi, count_clusters));
6089 percpu_counter_add(&sbi->s_freeclusters_counter,
6090 count_clusters);
6091 }
Jan Kara7d734532013-08-17 09:36:54 -04006092
6093 ext4_mb_unload_buddy(&e4b);
Aditya Kali7b415bf2011-09-09 19:04:51 -04006094
Aneesh Kumar K.V7a2fcbf2009-01-05 21:36:55 -05006095 /* We dirtied the bitmap block */
6096 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
6097 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
6098
Alex Tomasc9de5602008-01-29 00:19:52 -05006099 /* And the group descriptor block */
6100 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
Frank Mayhar03901312009-01-07 00:06:22 -05006101 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
Alex Tomasc9de5602008-01-29 00:19:52 -05006102 if (!err)
6103 err = ret;
6104
6105 if (overflow && !err) {
6106 block += count;
6107 count = overflow;
6108 put_bh(bitmap_bh);
6109 goto do_more;
6110 }
Alex Tomasc9de5602008-01-29 00:19:52 -05006111error_return:
6112 brelse(bitmap_bh);
6113 ext4_std_error(sb, err);
Alex Tomasc9de5602008-01-29 00:19:52 -05006114 return;
6115}
Lukas Czerner7360d172010-10-27 21:30:12 -04006116
6117/**
Yongqiang Yang05291552011-07-26 21:43:56 -04006118 * ext4_group_add_blocks() -- Add given blocks to an existing group
Amir Goldstein2846e822011-05-09 10:46:41 -04006119 * @handle: handle to this transaction
6120 * @sb: super block
Anatol Pomozov4907cb72012-09-01 10:31:09 -07006121 * @block: start physical block to add to the block group
Amir Goldstein2846e822011-05-09 10:46:41 -04006122 * @count: number of blocks to free
6123 *
Amir Goldsteine73a3472011-05-09 21:40:01 -04006124 * This marks the blocks as free in the bitmap and buddy.
Amir Goldstein2846e822011-05-09 10:46:41 -04006125 */
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04006126int ext4_group_add_blocks(handle_t *handle, struct super_block *sb,
Amir Goldstein2846e822011-05-09 10:46:41 -04006127 ext4_fsblk_t block, unsigned long count)
6128{
6129 struct buffer_head *bitmap_bh = NULL;
6130 struct buffer_head *gd_bh;
6131 ext4_group_t block_group;
6132 ext4_grpblk_t bit;
6133 unsigned int i;
6134 struct ext4_group_desc *desc;
6135 struct ext4_sb_info *sbi = EXT4_SB(sb);
Amir Goldsteine73a3472011-05-09 21:40:01 -04006136 struct ext4_buddy e4b;
harshadsd77147f2017-10-29 09:38:46 -04006137 int err = 0, ret, free_clusters_count;
6138 ext4_grpblk_t clusters_freed;
6139 ext4_fsblk_t first_cluster = EXT4_B2C(sbi, block);
6140 ext4_fsblk_t last_cluster = EXT4_B2C(sbi, block + count - 1);
6141 unsigned long cluster_count = last_cluster - first_cluster + 1;
Amir Goldstein2846e822011-05-09 10:46:41 -04006142
6143 ext4_debug("Adding block(s) %llu-%llu\n", block, block + count - 1);
6144
Yongqiang Yang4740b832011-07-26 21:51:08 -04006145 if (count == 0)
6146 return 0;
6147
Amir Goldstein2846e822011-05-09 10:46:41 -04006148 ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
Amir Goldstein2846e822011-05-09 10:46:41 -04006149 /*
6150 * Check to see if we are freeing blocks across a group
6151 * boundary.
6152 */
harshadsd77147f2017-10-29 09:38:46 -04006153 if (bit + cluster_count > EXT4_CLUSTERS_PER_GROUP(sb)) {
6154 ext4_warning(sb, "too many blocks added to group %u",
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04006155 block_group);
6156 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04006157 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04006158 }
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04006159
Amir Goldstein2846e822011-05-09 10:46:41 -04006160 bitmap_bh = ext4_read_block_bitmap(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04006161 if (IS_ERR(bitmap_bh)) {
6162 err = PTR_ERR(bitmap_bh);
6163 bitmap_bh = NULL;
Amir Goldstein2846e822011-05-09 10:46:41 -04006164 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04006165 }
6166
Amir Goldstein2846e822011-05-09 10:46:41 -04006167 desc = ext4_get_group_desc(sb, block_group, &gd_bh);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04006168 if (!desc) {
6169 err = -EIO;
Amir Goldstein2846e822011-05-09 10:46:41 -04006170 goto error_return;
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04006171 }
Amir Goldstein2846e822011-05-09 10:46:41 -04006172
6173 if (in_range(ext4_block_bitmap(sb, desc), block, count) ||
6174 in_range(ext4_inode_bitmap(sb, desc), block, count) ||
6175 in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) ||
6176 in_range(block + count - 1, ext4_inode_table(sb, desc),
6177 sbi->s_itb_per_group)) {
6178 ext4_error(sb, "Adding blocks in system zones - "
6179 "Block = %llu, count = %lu",
6180 block, count);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04006181 err = -EINVAL;
Amir Goldstein2846e822011-05-09 10:46:41 -04006182 goto error_return;
6183 }
6184
Theodore Ts'o2cd05cc2011-05-09 10:58:45 -04006185 BUFFER_TRACE(bitmap_bh, "getting write access");
Jan Kara188c2992021-08-16 11:57:04 +02006186 err = ext4_journal_get_write_access(handle, sb, bitmap_bh,
6187 EXT4_JTR_NONE);
Amir Goldstein2846e822011-05-09 10:46:41 -04006188 if (err)
6189 goto error_return;
6190
6191 /*
6192 * We are about to modify some metadata. Call the journal APIs
6193 * to unshare ->b_data if a currently-committing transaction is
6194 * using it
6195 */
6196 BUFFER_TRACE(gd_bh, "get_write_access");
Jan Kara188c2992021-08-16 11:57:04 +02006197 err = ext4_journal_get_write_access(handle, sb, gd_bh, EXT4_JTR_NONE);
Amir Goldstein2846e822011-05-09 10:46:41 -04006198 if (err)
6199 goto error_return;
Amir Goldsteine73a3472011-05-09 21:40:01 -04006200
harshadsd77147f2017-10-29 09:38:46 -04006201 for (i = 0, clusters_freed = 0; i < cluster_count; i++) {
Amir Goldstein2846e822011-05-09 10:46:41 -04006202 BUFFER_TRACE(bitmap_bh, "clear bit");
Amir Goldsteine73a3472011-05-09 21:40:01 -04006203 if (!mb_test_bit(bit + i, bitmap_bh->b_data)) {
Amir Goldstein2846e822011-05-09 10:46:41 -04006204 ext4_error(sb, "bit already cleared for block %llu",
6205 (ext4_fsblk_t)(block + i));
6206 BUFFER_TRACE(bitmap_bh, "bit already cleared");
6207 } else {
harshadsd77147f2017-10-29 09:38:46 -04006208 clusters_freed++;
Amir Goldstein2846e822011-05-09 10:46:41 -04006209 }
6210 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04006211
6212 err = ext4_mb_load_buddy(sb, block_group, &e4b);
6213 if (err)
6214 goto error_return;
6215
6216 /*
6217 * need to update group_info->bb_free and bitmap
6218 * with group lock held. generate_buddy look at
6219 * them with group lock_held
6220 */
Amir Goldstein2846e822011-05-09 10:46:41 -04006221 ext4_lock_group(sb, block_group);
harshadsd77147f2017-10-29 09:38:46 -04006222 mb_clear_bits(bitmap_bh->b_data, bit, cluster_count);
6223 mb_free_blocks(NULL, &e4b, bit, cluster_count);
6224 free_clusters_count = clusters_freed +
6225 ext4_free_group_clusters(sb, desc);
6226 ext4_free_group_clusters_set(sb, desc, free_clusters_count);
Tao Ma79f1ba42012-10-22 00:34:32 -04006227 ext4_block_bitmap_csum_set(sb, block_group, desc, bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04006228 ext4_group_desc_csum_set(sb, block_group, desc);
Amir Goldstein2846e822011-05-09 10:46:41 -04006229 ext4_unlock_group(sb, block_group);
Theodore Ts'o57042652011-09-09 18:56:51 -04006230 percpu_counter_add(&sbi->s_freeclusters_counter,
harshadsd77147f2017-10-29 09:38:46 -04006231 clusters_freed);
Amir Goldstein2846e822011-05-09 10:46:41 -04006232
6233 if (sbi->s_log_groups_per_flex) {
6234 ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
harshadsd77147f2017-10-29 09:38:46 -04006235 atomic64_add(clusters_freed,
Suraj Jitindar Singh7c990722020-02-18 19:08:51 -08006236 &sbi_array_rcu_deref(sbi, s_flex_groups,
6237 flex_group)->free_clusters);
Amir Goldstein2846e822011-05-09 10:46:41 -04006238 }
Amir Goldsteine73a3472011-05-09 21:40:01 -04006239
6240 ext4_mb_unload_buddy(&e4b);
Amir Goldstein2846e822011-05-09 10:46:41 -04006241
6242 /* We dirtied the bitmap block */
6243 BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
6244 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
6245
6246 /* And the group descriptor block */
6247 BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
6248 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
6249 if (!err)
6250 err = ret;
6251
6252error_return:
6253 brelse(bitmap_bh);
6254 ext4_std_error(sb, err);
Yongqiang Yangcc7365d2011-07-26 21:46:07 -04006255 return err;
Amir Goldstein2846e822011-05-09 10:46:41 -04006256}
6257
6258/**
Lukas Czerner7360d172010-10-27 21:30:12 -04006259 * ext4_trim_extent -- function to TRIM one single free extent in the group
6260 * @sb: super block for the file system
6261 * @start: starting block of the free extent in the alloc. group
6262 * @count: number of blocks to TRIM
Lukas Czerner7360d172010-10-27 21:30:12 -04006263 * @e4b: ext4 buddy for the group
6264 *
6265 * Trim "count" blocks starting at "start" in the "group". To assure that no
6266 * one will allocate those blocks, mark it as used in buddy bitmap. This must
6267 * be called with under the group lock.
6268 */
Wang Jianchaobd2eea82021-07-24 15:41:20 +08006269static int ext4_trim_extent(struct super_block *sb,
6270 int start, int count, struct ext4_buddy *e4b)
jon ernste2cbd582014-04-12 23:01:28 -04006271__releases(bitlock)
6272__acquires(bitlock)
Lukas Czerner7360d172010-10-27 21:30:12 -04006273{
6274 struct ext4_free_extent ex;
Wang Jianchaobd2eea82021-07-24 15:41:20 +08006275 ext4_group_t group = e4b->bd_group;
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05006276 int ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04006277
Tao Mab3d4c2b2011-07-11 00:01:52 -04006278 trace_ext4_trim_extent(sb, group, start, count);
6279
Lukas Czerner7360d172010-10-27 21:30:12 -04006280 assert_spin_locked(ext4_group_lock_ptr(sb, group));
6281
6282 ex.fe_start = start;
6283 ex.fe_group = group;
6284 ex.fe_len = count;
6285
6286 /*
6287 * Mark blocks used, so no one can reuse them while
6288 * being trimmed.
6289 */
6290 mb_mark_used(e4b, &ex);
6291 ext4_unlock_group(sb, group);
Daeho Jeonga0154342017-06-22 23:54:33 -04006292 ret = ext4_issue_discard(sb, group, start, count, NULL);
Lukas Czerner7360d172010-10-27 21:30:12 -04006293 ext4_lock_group(sb, group);
6294 mb_free_blocks(NULL, e4b, start, ex.fe_len);
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05006295 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04006296}
6297
Wang Jianchao6920b392021-07-24 15:41:21 +08006298static int ext4_try_to_trim_range(struct super_block *sb,
6299 struct ext4_buddy *e4b, ext4_grpblk_t start,
6300 ext4_grpblk_t max, ext4_grpblk_t minblocks)
Theodore Ts'oa5fda112021-08-14 10:41:30 -04006301__acquires(ext4_group_lock_ptr(sb, e4b->bd_group))
6302__releases(ext4_group_lock_ptr(sb, e4b->bd_group))
Wang Jianchao6920b392021-07-24 15:41:21 +08006303{
6304 ext4_grpblk_t next, count, free_count;
6305 void *bitmap;
Wang Jianchao6920b392021-07-24 15:41:21 +08006306
6307 bitmap = e4b->bd_bitmap;
6308 start = (e4b->bd_info->bb_first_free > start) ?
6309 e4b->bd_info->bb_first_free : start;
6310 count = 0;
6311 free_count = 0;
6312
6313 while (start <= max) {
6314 start = mb_find_next_zero_bit(bitmap, max + 1, start);
6315 if (start > max)
6316 break;
6317 next = mb_find_next_bit(bitmap, max + 1, start);
6318
6319 if ((next - start) >= minblocks) {
Lukas Bulwahnafcc4e32021-08-20 14:08:53 +02006320 int ret = ext4_trim_extent(sb, start, next - start, e4b);
6321
Wang Jianchao6920b392021-07-24 15:41:21 +08006322 if (ret && ret != -EOPNOTSUPP)
6323 break;
Wang Jianchao6920b392021-07-24 15:41:21 +08006324 count += next - start;
6325 }
6326 free_count += next - start;
6327 start = next + 1;
6328
6329 if (fatal_signal_pending(current)) {
6330 count = -ERESTARTSYS;
6331 break;
6332 }
6333
6334 if (need_resched()) {
6335 ext4_unlock_group(sb, e4b->bd_group);
6336 cond_resched();
6337 ext4_lock_group(sb, e4b->bd_group);
6338 }
6339
6340 if ((e4b->bd_info->bb_free - free_count) < minblocks)
6341 break;
6342 }
6343
6344 return count;
6345}
6346
Lukas Czerner7360d172010-10-27 21:30:12 -04006347/**
6348 * ext4_trim_all_free -- function to trim all free space in alloc. group
6349 * @sb: super block for file system
Tao Ma22612282011-07-11 00:04:34 -04006350 * @group: group to be trimmed
Lukas Czerner7360d172010-10-27 21:30:12 -04006351 * @start: first group block to examine
6352 * @max: last group block to examine
6353 * @minblocks: minimum extent block count
6354 *
Lukas Czerner7360d172010-10-27 21:30:12 -04006355 * ext4_trim_all_free walks through group's block bitmap searching for free
6356 * extents. When the free extent is found, mark it as used in group buddy
6357 * bitmap. Then issue a TRIM command on this extent and free the extent in
Wang Jianchaob6f55582021-07-24 15:41:22 +08006358 * the group buddy bitmap.
Lukas Czerner7360d172010-10-27 21:30:12 -04006359 */
Lukas Czerner0b75a842011-02-23 12:22:49 -05006360static ext4_grpblk_t
Lukas Czerner78944082011-05-24 18:16:27 -04006361ext4_trim_all_free(struct super_block *sb, ext4_group_t group,
6362 ext4_grpblk_t start, ext4_grpblk_t max,
6363 ext4_grpblk_t minblocks)
Lukas Czerner7360d172010-10-27 21:30:12 -04006364{
Lukas Czerner78944082011-05-24 18:16:27 -04006365 struct ext4_buddy e4b;
Wang Jianchao6920b392021-07-24 15:41:21 +08006366 int ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04006367
Tao Mab3d4c2b2011-07-11 00:01:52 -04006368 trace_ext4_trim_all_free(sb, group, start, max);
6369
Lukas Czerner78944082011-05-24 18:16:27 -04006370 ret = ext4_mb_load_buddy(sb, group, &e4b);
6371 if (ret) {
Konstantin Khlebnikov9651e6b2017-05-21 22:35:23 -04006372 ext4_warning(sb, "Error %d loading buddy information for %u",
6373 ret, group);
Lukas Czerner78944082011-05-24 18:16:27 -04006374 return ret;
6375 }
Lukas Czerner28739ee2011-05-24 18:28:07 -04006376
6377 ext4_lock_group(sb, group);
Tao Ma3d56b8d2011-07-11 00:03:38 -04006378
Wang Jianchao6920b392021-07-24 15:41:21 +08006379 if (!EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) ||
Lukas Czerner2327fb22021-11-03 15:51:21 +01006380 minblocks < EXT4_SB(sb)->s_last_trim_minblks) {
Wang Jianchao6920b392021-07-24 15:41:21 +08006381 ret = ext4_try_to_trim_range(sb, &e4b, start, max, minblocks);
6382 if (ret >= 0)
6383 EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info);
6384 } else {
6385 ret = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04006386 }
Tao Ma3d56b8d2011-07-11 00:03:38 -04006387
Lukas Czerner7360d172010-10-27 21:30:12 -04006388 ext4_unlock_group(sb, group);
Lukas Czerner78944082011-05-24 18:16:27 -04006389 ext4_mb_unload_buddy(&e4b);
Lukas Czerner7360d172010-10-27 21:30:12 -04006390
6391 ext4_debug("trimmed %d blocks in the group %d\n",
Wang Jianchao6920b392021-07-24 15:41:21 +08006392 ret, group);
Lukas Czerner7360d172010-10-27 21:30:12 -04006393
Lukas Czernerd71c1ae2012-11-08 14:04:52 -05006394 return ret;
Lukas Czerner7360d172010-10-27 21:30:12 -04006395}
6396
6397/**
6398 * ext4_trim_fs() -- trim ioctl handle function
6399 * @sb: superblock for filesystem
6400 * @range: fstrim_range structure
6401 *
6402 * start: First Byte to trim
6403 * len: number of Bytes to trim from start
6404 * minlen: minimum extent length in Bytes
6405 * ext4_trim_fs goes through all allocation groups containing Bytes from
6406 * start to start+len. For each such a group ext4_trim_all_free function
6407 * is invoked to trim all free space.
6408 */
6409int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range)
6410{
Jan Kara173b6e32021-11-12 16:22:02 +01006411 struct request_queue *q = bdev_get_queue(sb->s_bdev);
Lukas Czerner78944082011-05-24 18:16:27 -04006412 struct ext4_group_info *grp;
Lukas Czerner913eed832012-03-21 21:22:22 -04006413 ext4_group_t group, first_group, last_group;
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04006414 ext4_grpblk_t cnt = 0, first_cluster, last_cluster;
Lukas Czerner913eed832012-03-21 21:22:22 -04006415 uint64_t start, end, minlen, trimmed = 0;
Jan Kara0f0a25b2011-01-11 15:16:31 -05006416 ext4_fsblk_t first_data_blk =
6417 le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
Lukas Czerner913eed832012-03-21 21:22:22 -04006418 ext4_fsblk_t max_blks = ext4_blocks_count(EXT4_SB(sb)->s_es);
Lukas Czerner7360d172010-10-27 21:30:12 -04006419 int ret = 0;
6420
6421 start = range->start >> sb->s_blocksize_bits;
Lukas Czerner913eed832012-03-21 21:22:22 -04006422 end = start + (range->len >> sb->s_blocksize_bits) - 1;
Lukas Czerneraaf7d732012-09-26 22:21:21 -04006423 minlen = EXT4_NUM_B2C(EXT4_SB(sb),
6424 range->minlen >> sb->s_blocksize_bits);
Lukas Czerner7360d172010-10-27 21:30:12 -04006425
Lukas Czerner5de35e82012-10-22 18:01:19 -04006426 if (minlen > EXT4_CLUSTERS_PER_GROUP(sb) ||
6427 start >= max_blks ||
6428 range->len < sb->s_blocksize)
Lukas Czerner7360d172010-10-27 21:30:12 -04006429 return -EINVAL;
Jan Kara173b6e32021-11-12 16:22:02 +01006430 /* No point to try to trim less than discard granularity */
6431 if (range->minlen < q->limits.discard_granularity) {
6432 minlen = EXT4_NUM_B2C(EXT4_SB(sb),
6433 q->limits.discard_granularity >> sb->s_blocksize_bits);
6434 if (minlen > EXT4_CLUSTERS_PER_GROUP(sb))
6435 goto out;
6436 }
Lukas Czerner913eed832012-03-21 21:22:22 -04006437 if (end >= max_blks)
6438 end = max_blks - 1;
6439 if (end <= first_data_blk)
Tao Ma22f10452011-07-10 23:52:37 -04006440 goto out;
Lukas Czerner913eed832012-03-21 21:22:22 -04006441 if (start < first_data_blk)
Jan Kara0f0a25b2011-01-11 15:16:31 -05006442 start = first_data_blk;
Lukas Czerner7360d172010-10-27 21:30:12 -04006443
Lukas Czerner913eed832012-03-21 21:22:22 -04006444 /* Determine first and last group to examine based on start and end */
Lukas Czerner7360d172010-10-27 21:30:12 -04006445 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) start,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04006446 &first_group, &first_cluster);
Lukas Czerner913eed832012-03-21 21:22:22 -04006447 ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) end,
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04006448 &last_group, &last_cluster);
Lukas Czerner7360d172010-10-27 21:30:12 -04006449
Lukas Czerner913eed832012-03-21 21:22:22 -04006450 /* end now represents the last cluster to discard in this group */
6451 end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
Lukas Czerner7360d172010-10-27 21:30:12 -04006452
6453 for (group = first_group; group <= last_group; group++) {
Lukas Czerner78944082011-05-24 18:16:27 -04006454 grp = ext4_get_group_info(sb, group);
6455 /* We only do this if the grp has never been initialized */
6456 if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
Konstantin Khlebnikovadb7ef62016-03-13 17:29:06 -04006457 ret = ext4_mb_init_group(sb, group, GFP_NOFS);
Lukas Czerner78944082011-05-24 18:16:27 -04006458 if (ret)
6459 break;
Lukas Czerner7360d172010-10-27 21:30:12 -04006460 }
6461
Tao Ma0ba08512011-03-23 15:48:11 -04006462 /*
Lukas Czerner913eed832012-03-21 21:22:22 -04006463 * For all the groups except the last one, last cluster will
6464 * always be EXT4_CLUSTERS_PER_GROUP(sb)-1, so we only need to
6465 * change it for the last group, note that last_cluster is
6466 * already computed earlier by ext4_get_group_no_and_offset()
Tao Ma0ba08512011-03-23 15:48:11 -04006467 */
Lukas Czerner913eed832012-03-21 21:22:22 -04006468 if (group == last_group)
6469 end = last_cluster;
Lukas Czerner7360d172010-10-27 21:30:12 -04006470
Lukas Czerner78944082011-05-24 18:16:27 -04006471 if (grp->bb_free >= minlen) {
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04006472 cnt = ext4_trim_all_free(sb, group, first_cluster,
Lukas Czerner913eed832012-03-21 21:22:22 -04006473 end, minlen);
Lukas Czerner7360d172010-10-27 21:30:12 -04006474 if (cnt < 0) {
6475 ret = cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04006476 break;
6477 }
Lukas Czerner21e7fd22012-03-21 21:24:22 -04006478 trimmed += cnt;
Lukas Czerner7360d172010-10-27 21:30:12 -04006479 }
Lukas Czerner913eed832012-03-21 21:22:22 -04006480
6481 /*
6482 * For every group except the first one, we are sure
6483 * that the first cluster to discard will be cluster #0.
6484 */
Theodore Ts'o7137d7a2011-09-09 18:38:51 -04006485 first_cluster = 0;
Lukas Czerner7360d172010-10-27 21:30:12 -04006486 }
Lukas Czerner7360d172010-10-27 21:30:12 -04006487
Tao Ma3d56b8d2011-07-11 00:03:38 -04006488 if (!ret)
Lukas Czerner2327fb22021-11-03 15:51:21 +01006489 EXT4_SB(sb)->s_last_trim_minblks = minlen;
Tao Ma3d56b8d2011-07-11 00:03:38 -04006490
Tao Ma22f10452011-07-10 23:52:37 -04006491out:
Lukas Czerneraaf7d732012-09-26 22:21:21 -04006492 range->len = EXT4_C2B(EXT4_SB(sb), trimmed) << sb->s_blocksize_bits;
Lukas Czerner7360d172010-10-27 21:30:12 -04006493 return ret;
6494}
Darrick J. Wong0c9ec4b2017-04-30 00:36:53 -04006495
6496/* Iterate all the free extents in the group. */
6497int
6498ext4_mballoc_query_range(
6499 struct super_block *sb,
6500 ext4_group_t group,
6501 ext4_grpblk_t start,
6502 ext4_grpblk_t end,
6503 ext4_mballoc_query_range_fn formatter,
6504 void *priv)
6505{
6506 void *bitmap;
6507 ext4_grpblk_t next;
6508 struct ext4_buddy e4b;
6509 int error;
6510
6511 error = ext4_mb_load_buddy(sb, group, &e4b);
6512 if (error)
6513 return error;
6514 bitmap = e4b.bd_bitmap;
6515
6516 ext4_lock_group(sb, group);
6517
6518 start = (e4b.bd_info->bb_first_free > start) ?
6519 e4b.bd_info->bb_first_free : start;
6520 if (end >= EXT4_CLUSTERS_PER_GROUP(sb))
6521 end = EXT4_CLUSTERS_PER_GROUP(sb) - 1;
6522
6523 while (start <= end) {
6524 start = mb_find_next_zero_bit(bitmap, end + 1, start);
6525 if (start > end)
6526 break;
6527 next = mb_find_next_bit(bitmap, end + 1, start);
6528
6529 ext4_unlock_group(sb, group);
6530 error = formatter(sb, group, start, next - start, priv);
6531 if (error)
6532 goto out_unload;
6533 ext4_lock_group(sb, group);
6534
6535 start = next + 1;
6536 }
6537
6538 ext4_unlock_group(sb, group);
6539out_unload:
6540 ext4_mb_unload_buddy(&e4b);
6541
6542 return error;
6543}