xref: /linux/fs/ext4/mballoc.c (revision 7aa0baeaba4afc4fbed7aad2812a1116e6b0adcd)
1c9de560dSAlex Tomas /*
2c9de560dSAlex Tomas  * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
3c9de560dSAlex Tomas  * Written by Alex Tomas <alex@clusterfs.com>
4c9de560dSAlex Tomas  *
5c9de560dSAlex Tomas  * This program is free software; you can redistribute it and/or modify
6c9de560dSAlex Tomas  * it under the terms of the GNU General Public License version 2 as
7c9de560dSAlex Tomas  * published by the Free Software Foundation.
8c9de560dSAlex Tomas  *
9c9de560dSAlex Tomas  * This program is distributed in the hope that it will be useful,
10c9de560dSAlex Tomas  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11c9de560dSAlex Tomas  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12c9de560dSAlex Tomas  * GNU General Public License for more details.
13c9de560dSAlex Tomas  *
14c9de560dSAlex Tomas  * You should have received a copy of the GNU General Public Licens
15c9de560dSAlex Tomas  * along with this program; if not, write to the Free Software
16c9de560dSAlex Tomas  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-
17c9de560dSAlex Tomas  */
18c9de560dSAlex Tomas 
19c9de560dSAlex Tomas 
20c9de560dSAlex Tomas /*
21c9de560dSAlex Tomas  * mballoc.c contains the multiblocks allocation routines
22c9de560dSAlex Tomas  */
23c9de560dSAlex Tomas 
248f6e39a7SMingming Cao #include "mballoc.h"
256ba495e9STheodore Ts'o #include <linux/debugfs.h>
265a0e3ad6STejun Heo #include <linux/slab.h>
279bffad1eSTheodore Ts'o #include <trace/events/ext4.h>
289bffad1eSTheodore Ts'o 
29c9de560dSAlex Tomas /*
30c9de560dSAlex Tomas  * MUSTDO:
31c9de560dSAlex Tomas  *   - test ext4_ext_search_left() and ext4_ext_search_right()
32c9de560dSAlex Tomas  *   - search for metadata in few groups
33c9de560dSAlex Tomas  *
34c9de560dSAlex Tomas  * TODO v4:
35c9de560dSAlex Tomas  *   - normalization should take into account whether file is still open
36c9de560dSAlex Tomas  *   - discard preallocations if no free space left (policy?)
37c9de560dSAlex Tomas  *   - don't normalize tails
38c9de560dSAlex Tomas  *   - quota
39c9de560dSAlex Tomas  *   - reservation for superuser
40c9de560dSAlex Tomas  *
41c9de560dSAlex Tomas  * TODO v3:
42c9de560dSAlex Tomas  *   - bitmap read-ahead (proposed by Oleg Drokin aka green)
43c9de560dSAlex Tomas  *   - track min/max extents in each group for better group selection
44c9de560dSAlex Tomas  *   - mb_mark_used() may allocate chunk right after splitting buddy
45c9de560dSAlex Tomas  *   - tree of groups sorted by number of free blocks
46c9de560dSAlex Tomas  *   - error handling
47c9de560dSAlex Tomas  */
48c9de560dSAlex Tomas 
49c9de560dSAlex Tomas /*
50c9de560dSAlex Tomas  * The allocation request involve request for multiple number of blocks
51c9de560dSAlex Tomas  * near to the goal(block) value specified.
52c9de560dSAlex Tomas  *
53b713a5ecSTheodore Ts'o  * During initialization phase of the allocator we decide to use the
54b713a5ecSTheodore Ts'o  * group preallocation or inode preallocation depending on the size of
55b713a5ecSTheodore Ts'o  * the file. The size of the file could be the resulting file size we
56b713a5ecSTheodore Ts'o  * would have after allocation, or the current file size, which ever
57b713a5ecSTheodore Ts'o  * is larger. If the size is less than sbi->s_mb_stream_request we
58b713a5ecSTheodore Ts'o  * select to use the group preallocation. The default value of
59b713a5ecSTheodore Ts'o  * s_mb_stream_request is 16 blocks. This can also be tuned via
60b713a5ecSTheodore Ts'o  * /sys/fs/ext4/<partition>/mb_stream_req. The value is represented in
61b713a5ecSTheodore Ts'o  * terms of number of blocks.
62c9de560dSAlex Tomas  *
63c9de560dSAlex Tomas  * The main motivation for having small file use group preallocation is to
64b713a5ecSTheodore Ts'o  * ensure that we have small files closer together on the disk.
65c9de560dSAlex Tomas  *
66b713a5ecSTheodore Ts'o  * First stage the allocator looks at the inode prealloc list,
67b713a5ecSTheodore Ts'o  * ext4_inode_info->i_prealloc_list, which contains list of prealloc
68b713a5ecSTheodore Ts'o  * spaces for this particular inode. The inode prealloc space is
69b713a5ecSTheodore Ts'o  * represented as:
70c9de560dSAlex Tomas  *
71c9de560dSAlex Tomas  * pa_lstart -> the logical start block for this prealloc space
72c9de560dSAlex Tomas  * pa_pstart -> the physical start block for this prealloc space
7353accfa9STheodore Ts'o  * pa_len    -> length for this prealloc space (in clusters)
7453accfa9STheodore Ts'o  * pa_free   ->  free space available in this prealloc space (in clusters)
75c9de560dSAlex Tomas  *
76c9de560dSAlex Tomas  * The inode preallocation space is used looking at the _logical_ start
77c9de560dSAlex Tomas  * block. If only the logical file block falls within the range of prealloc
78caaf7a29STao Ma  * space we will consume the particular prealloc space. This makes sure that
79caaf7a29STao Ma  * we have contiguous physical blocks representing the file blocks
80c9de560dSAlex Tomas  *
81c9de560dSAlex Tomas  * The important thing to be noted in case of inode prealloc space is that
82c9de560dSAlex Tomas  * we don't modify the values associated to inode prealloc space except
83c9de560dSAlex Tomas  * pa_free.
84c9de560dSAlex Tomas  *
85c9de560dSAlex Tomas  * If we are not able to find blocks in the inode prealloc space and if we
86c9de560dSAlex Tomas  * have the group allocation flag set then we look at the locality group
87caaf7a29STao Ma  * prealloc space. These are per CPU prealloc list represented as
88c9de560dSAlex Tomas  *
89c9de560dSAlex Tomas  * ext4_sb_info.s_locality_groups[smp_processor_id()]
90c9de560dSAlex Tomas  *
91c9de560dSAlex Tomas  * The reason for having a per cpu locality group is to reduce the contention
92c9de560dSAlex Tomas  * between CPUs. It is possible to get scheduled at this point.
93c9de560dSAlex Tomas  *
94c9de560dSAlex Tomas  * The locality group prealloc space is used looking at whether we have
9525985edcSLucas De Marchi  * enough free space (pa_free) within the prealloc space.
96c9de560dSAlex Tomas  *
97c9de560dSAlex Tomas  * If we can't allocate blocks via inode prealloc or/and locality group
98c9de560dSAlex Tomas  * prealloc then we look at the buddy cache. The buddy cache is represented
99c9de560dSAlex Tomas  * by ext4_sb_info.s_buddy_cache (struct inode) whose file offset gets
100c9de560dSAlex Tomas  * mapped to the buddy and bitmap information regarding different
101c9de560dSAlex Tomas  * groups. The buddy information is attached to buddy cache inode so that
102c9de560dSAlex Tomas  * we can access them through the page cache. The information regarding
103c9de560dSAlex Tomas  * each group is loaded via ext4_mb_load_buddy.  The information involve
104c9de560dSAlex Tomas  * block bitmap and buddy information. The information are stored in the
105c9de560dSAlex Tomas  * inode as:
106c9de560dSAlex Tomas  *
107c9de560dSAlex Tomas  *  {                        page                        }
108c3a326a6SAneesh Kumar K.V  *  [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
109c9de560dSAlex Tomas  *
110c9de560dSAlex Tomas  *
111c9de560dSAlex Tomas  * one block each for bitmap and buddy information.  So for each group we
112c9de560dSAlex Tomas  * take up 2 blocks. A page can contain blocks_per_page (PAGE_CACHE_SIZE /
113c9de560dSAlex Tomas  * blocksize) blocks.  So it can have information regarding groups_per_page
114c9de560dSAlex Tomas  * which is blocks_per_page/2
115c9de560dSAlex Tomas  *
116c9de560dSAlex Tomas  * The buddy cache inode is not stored on disk. The inode is thrown
117c9de560dSAlex Tomas  * away when the filesystem is unmounted.
118c9de560dSAlex Tomas  *
119c9de560dSAlex Tomas  * We look for count number of blocks in the buddy cache. If we were able
120c9de560dSAlex Tomas  * to locate that many free blocks we return with additional information
121c9de560dSAlex Tomas  * regarding rest of the contiguous physical block available
122c9de560dSAlex Tomas  *
123c9de560dSAlex Tomas  * Before allocating blocks via buddy cache we normalize the request
124c9de560dSAlex Tomas  * blocks. This ensure we ask for more blocks that we needed. The extra
125c9de560dSAlex Tomas  * blocks that we get after allocation is added to the respective prealloc
126c9de560dSAlex Tomas  * list. In case of inode preallocation we follow a list of heuristics
127c9de560dSAlex Tomas  * based on file size. This can be found in ext4_mb_normalize_request. If
128c9de560dSAlex Tomas  * we are doing a group prealloc we try to normalize the request to
12927baebb8STheodore Ts'o  * sbi->s_mb_group_prealloc.  The default value of s_mb_group_prealloc is
13027baebb8STheodore Ts'o  * dependent on the cluster size; for non-bigalloc file systems, it is
131c9de560dSAlex Tomas  * 512 blocks. This can be tuned via
132d7a1fee1SDan Ehrenberg  * /sys/fs/ext4/<partition>/mb_group_prealloc. The value is represented in
133c9de560dSAlex Tomas  * terms of number of blocks. If we have mounted the file system with -O
134c9de560dSAlex Tomas  * stripe=<value> option the group prealloc request is normalized to the
135d7a1fee1SDan Ehrenberg  * the smallest multiple of the stripe value (sbi->s_stripe) which is
136d7a1fee1SDan Ehrenberg  * greater than the default mb_group_prealloc.
137c9de560dSAlex Tomas  *
138d7a1fee1SDan Ehrenberg  * The regular allocator (using the buddy cache) supports a few tunables.
139c9de560dSAlex Tomas  *
140b713a5ecSTheodore Ts'o  * /sys/fs/ext4/<partition>/mb_min_to_scan
141b713a5ecSTheodore Ts'o  * /sys/fs/ext4/<partition>/mb_max_to_scan
142b713a5ecSTheodore Ts'o  * /sys/fs/ext4/<partition>/mb_order2_req
143c9de560dSAlex Tomas  *
144b713a5ecSTheodore Ts'o  * The regular allocator uses buddy scan only if the request len is power of
145c9de560dSAlex Tomas  * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The
146c9de560dSAlex Tomas  * value of s_mb_order2_reqs can be tuned via
147b713a5ecSTheodore Ts'o  * /sys/fs/ext4/<partition>/mb_order2_req.  If the request len is equal to
148af901ca1SAndré Goddard Rosa  * stripe size (sbi->s_stripe), we try to search for contiguous block in
149b713a5ecSTheodore Ts'o  * stripe size. This should result in better allocation on RAID setups. If
150b713a5ecSTheodore Ts'o  * not, we search in the specific group using bitmap for best extents. The
151b713a5ecSTheodore Ts'o  * tunable min_to_scan and max_to_scan control the behaviour here.
152c9de560dSAlex Tomas  * min_to_scan indicate how long the mballoc __must__ look for a best
153b713a5ecSTheodore Ts'o  * extent and max_to_scan indicates how long the mballoc __can__ look for a
154c9de560dSAlex Tomas  * best extent in the found extents. Searching for the blocks starts with
155c9de560dSAlex Tomas  * the group specified as the goal value in allocation context via
156c9de560dSAlex Tomas  * ac_g_ex. Each group is first checked based on the criteria whether it
157caaf7a29STao Ma  * can be used for allocation. ext4_mb_good_group explains how the groups are
158c9de560dSAlex Tomas  * checked.
159c9de560dSAlex Tomas  *
160c9de560dSAlex Tomas  * Both the prealloc space are getting populated as above. So for the first
161c9de560dSAlex Tomas  * request we will hit the buddy cache which will result in this prealloc
162c9de560dSAlex Tomas  * space getting filled. The prealloc space is then later used for the
163c9de560dSAlex Tomas  * subsequent request.
164c9de560dSAlex Tomas  */
165c9de560dSAlex Tomas 
166c9de560dSAlex Tomas /*
167c9de560dSAlex Tomas  * mballoc operates on the following data:
168c9de560dSAlex Tomas  *  - on-disk bitmap
169c9de560dSAlex Tomas  *  - in-core buddy (actually includes buddy and bitmap)
170c9de560dSAlex Tomas  *  - preallocation descriptors (PAs)
171c9de560dSAlex Tomas  *
172c9de560dSAlex Tomas  * there are two types of preallocations:
173c9de560dSAlex Tomas  *  - inode
174c9de560dSAlex Tomas  *    assiged to specific inode and can be used for this inode only.
175c9de560dSAlex Tomas  *    it describes part of inode's space preallocated to specific
176c9de560dSAlex Tomas  *    physical blocks. any block from that preallocated can be used
177c9de560dSAlex Tomas  *    independent. the descriptor just tracks number of blocks left
178c9de560dSAlex Tomas  *    unused. so, before taking some block from descriptor, one must
179c9de560dSAlex Tomas  *    make sure corresponded logical block isn't allocated yet. this
180c9de560dSAlex Tomas  *    also means that freeing any block within descriptor's range
181c9de560dSAlex Tomas  *    must discard all preallocated blocks.
182c9de560dSAlex Tomas  *  - locality group
183c9de560dSAlex Tomas  *    assigned to specific locality group which does not translate to
184c9de560dSAlex Tomas  *    permanent set of inodes: inode can join and leave group. space
185c9de560dSAlex Tomas  *    from this type of preallocation can be used for any inode. thus
186c9de560dSAlex Tomas  *    it's consumed from the beginning to the end.
187c9de560dSAlex Tomas  *
188c9de560dSAlex Tomas  * relation between them can be expressed as:
189c9de560dSAlex Tomas  *    in-core buddy = on-disk bitmap + preallocation descriptors
190c9de560dSAlex Tomas  *
191c9de560dSAlex Tomas  * this mean blocks mballoc considers used are:
192c9de560dSAlex Tomas  *  - allocated blocks (persistent)
193c9de560dSAlex Tomas  *  - preallocated blocks (non-persistent)
194c9de560dSAlex Tomas  *
195c9de560dSAlex Tomas  * consistency in mballoc world means that at any time a block is either
196c9de560dSAlex Tomas  * free or used in ALL structures. notice: "any time" should not be read
197c9de560dSAlex Tomas  * literally -- time is discrete and delimited by locks.
198c9de560dSAlex Tomas  *
199c9de560dSAlex Tomas  *  to keep it simple, we don't use block numbers, instead we count number of
200c9de560dSAlex Tomas  *  blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA.
201c9de560dSAlex Tomas  *
202c9de560dSAlex Tomas  * all operations can be expressed as:
203c9de560dSAlex Tomas  *  - init buddy:			buddy = on-disk + PAs
204c9de560dSAlex Tomas  *  - new PA:				buddy += N; PA = N
205c9de560dSAlex Tomas  *  - use inode PA:			on-disk += N; PA -= N
206c9de560dSAlex Tomas  *  - discard inode PA			buddy -= on-disk - PA; PA = 0
207c9de560dSAlex Tomas  *  - use locality group PA		on-disk += N; PA -= N
208c9de560dSAlex Tomas  *  - discard locality group PA		buddy -= PA; PA = 0
209c9de560dSAlex Tomas  *  note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap
210c9de560dSAlex Tomas  *        is used in real operation because we can't know actual used
211c9de560dSAlex Tomas  *        bits from PA, only from on-disk bitmap
212c9de560dSAlex Tomas  *
213c9de560dSAlex Tomas  * if we follow this strict logic, then all operations above should be atomic.
214c9de560dSAlex Tomas  * given some of them can block, we'd have to use something like semaphores
215c9de560dSAlex Tomas  * killing performance on high-end SMP hardware. let's try to relax it using
216c9de560dSAlex Tomas  * the following knowledge:
217c9de560dSAlex Tomas  *  1) if buddy is referenced, it's already initialized
218c9de560dSAlex Tomas  *  2) while block is used in buddy and the buddy is referenced,
219c9de560dSAlex Tomas  *     nobody can re-allocate that block
220c9de560dSAlex Tomas  *  3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has
221c9de560dSAlex Tomas  *     bit set and PA claims same block, it's OK. IOW, one can set bit in
222c9de560dSAlex Tomas  *     on-disk bitmap if buddy has same bit set or/and PA covers corresponded
223c9de560dSAlex Tomas  *     block
224c9de560dSAlex Tomas  *
225c9de560dSAlex Tomas  * so, now we're building a concurrency table:
226c9de560dSAlex Tomas  *  - init buddy vs.
227c9de560dSAlex Tomas  *    - new PA
228c9de560dSAlex Tomas  *      blocks for PA are allocated in the buddy, buddy must be referenced
229c9de560dSAlex Tomas  *      until PA is linked to allocation group to avoid concurrent buddy init
230c9de560dSAlex Tomas  *    - use inode PA
231c9de560dSAlex Tomas  *      we need to make sure that either on-disk bitmap or PA has uptodate data
232c9de560dSAlex Tomas  *      given (3) we care that PA-=N operation doesn't interfere with init
233c9de560dSAlex Tomas  *    - discard inode PA
234c9de560dSAlex Tomas  *      the simplest way would be to have buddy initialized by the discard
235c9de560dSAlex Tomas  *    - use locality group PA
236c9de560dSAlex Tomas  *      again PA-=N must be serialized with init
237c9de560dSAlex Tomas  *    - discard locality group PA
238c9de560dSAlex Tomas  *      the simplest way would be to have buddy initialized by the discard
239c9de560dSAlex Tomas  *  - new PA vs.
240c9de560dSAlex Tomas  *    - use inode PA
241c9de560dSAlex Tomas  *      i_data_sem serializes them
242c9de560dSAlex Tomas  *    - discard inode PA
243c9de560dSAlex Tomas  *      discard process must wait until PA isn't used by another process
244c9de560dSAlex Tomas  *    - use locality group PA
245c9de560dSAlex Tomas  *      some mutex should serialize them
246c9de560dSAlex Tomas  *    - discard locality group PA
247c9de560dSAlex Tomas  *      discard process must wait until PA isn't used by another process
248c9de560dSAlex Tomas  *  - use inode PA
249c9de560dSAlex Tomas  *    - use inode PA
250c9de560dSAlex Tomas  *      i_data_sem or another mutex should serializes them
251c9de560dSAlex Tomas  *    - discard inode PA
252c9de560dSAlex Tomas  *      discard process must wait until PA isn't used by another process
253c9de560dSAlex Tomas  *    - use locality group PA
254c9de560dSAlex Tomas  *      nothing wrong here -- they're different PAs covering different blocks
255c9de560dSAlex Tomas  *    - discard locality group PA
256c9de560dSAlex Tomas  *      discard process must wait until PA isn't used by another process
257c9de560dSAlex Tomas  *
258c9de560dSAlex Tomas  * now we're ready to make few consequences:
259c9de560dSAlex Tomas  *  - PA is referenced and while it is no discard is possible
260c9de560dSAlex Tomas  *  - PA is referenced until block isn't marked in on-disk bitmap
261c9de560dSAlex Tomas  *  - PA changes only after on-disk bitmap
262c9de560dSAlex Tomas  *  - discard must not compete with init. either init is done before
263c9de560dSAlex Tomas  *    any discard or they're serialized somehow
264c9de560dSAlex Tomas  *  - buddy init as sum of on-disk bitmap and PAs is done atomically
265c9de560dSAlex Tomas  *
266c9de560dSAlex Tomas  * a special case when we've used PA to emptiness. no need to modify buddy
267c9de560dSAlex Tomas  * in this case, but we should care about concurrent init
268c9de560dSAlex Tomas  *
269c9de560dSAlex Tomas  */
270c9de560dSAlex Tomas 
271c9de560dSAlex Tomas  /*
272c9de560dSAlex Tomas  * Logic in few words:
273c9de560dSAlex Tomas  *
274c9de560dSAlex Tomas  *  - allocation:
275c9de560dSAlex Tomas  *    load group
276c9de560dSAlex Tomas  *    find blocks
277c9de560dSAlex Tomas  *    mark bits in on-disk bitmap
278c9de560dSAlex Tomas  *    release group
279c9de560dSAlex Tomas  *
280c9de560dSAlex Tomas  *  - use preallocation:
281c9de560dSAlex Tomas  *    find proper PA (per-inode or group)
282c9de560dSAlex Tomas  *    load group
283c9de560dSAlex Tomas  *    mark bits in on-disk bitmap
284c9de560dSAlex Tomas  *    release group
285c9de560dSAlex Tomas  *    release PA
286c9de560dSAlex Tomas  *
287c9de560dSAlex Tomas  *  - free:
288c9de560dSAlex Tomas  *    load group
289c9de560dSAlex Tomas  *    mark bits in on-disk bitmap
290c9de560dSAlex Tomas  *    release group
291c9de560dSAlex Tomas  *
292c9de560dSAlex Tomas  *  - discard preallocations in group:
293c9de560dSAlex Tomas  *    mark PAs deleted
294c9de560dSAlex Tomas  *    move them onto local list
295c9de560dSAlex Tomas  *    load on-disk bitmap
296c9de560dSAlex Tomas  *    load group
297c9de560dSAlex Tomas  *    remove PA from object (inode or locality group)
298c9de560dSAlex Tomas  *    mark free blocks in-core
299c9de560dSAlex Tomas  *
300c9de560dSAlex Tomas  *  - discard inode's preallocations:
301c9de560dSAlex Tomas  */
302c9de560dSAlex Tomas 
303c9de560dSAlex Tomas /*
304c9de560dSAlex Tomas  * Locking rules
305c9de560dSAlex Tomas  *
306c9de560dSAlex Tomas  * Locks:
307c9de560dSAlex Tomas  *  - bitlock on a group	(group)
308c9de560dSAlex Tomas  *  - object (inode/locality)	(object)
309c9de560dSAlex Tomas  *  - per-pa lock		(pa)
310c9de560dSAlex Tomas  *
311c9de560dSAlex Tomas  * Paths:
312c9de560dSAlex Tomas  *  - new pa
313c9de560dSAlex Tomas  *    object
314c9de560dSAlex Tomas  *    group
315c9de560dSAlex Tomas  *
316c9de560dSAlex Tomas  *  - find and use pa:
317c9de560dSAlex Tomas  *    pa
318c9de560dSAlex Tomas  *
319c9de560dSAlex Tomas  *  - release consumed pa:
320c9de560dSAlex Tomas  *    pa
321c9de560dSAlex Tomas  *    group
322c9de560dSAlex Tomas  *    object
323c9de560dSAlex Tomas  *
324c9de560dSAlex Tomas  *  - generate in-core bitmap:
325c9de560dSAlex Tomas  *    group
326c9de560dSAlex Tomas  *        pa
327c9de560dSAlex Tomas  *
328c9de560dSAlex Tomas  *  - discard all for given object (inode, locality group):
329c9de560dSAlex Tomas  *    object
330c9de560dSAlex Tomas  *        pa
331c9de560dSAlex Tomas  *    group
332c9de560dSAlex Tomas  *
333c9de560dSAlex Tomas  *  - discard all for given group:
334c9de560dSAlex Tomas  *    group
335c9de560dSAlex Tomas  *        pa
336c9de560dSAlex Tomas  *    group
337c9de560dSAlex Tomas  *        object
338c9de560dSAlex Tomas  *
339c9de560dSAlex Tomas  */
340c3a326a6SAneesh Kumar K.V static struct kmem_cache *ext4_pspace_cachep;
341c3a326a6SAneesh Kumar K.V static struct kmem_cache *ext4_ac_cachep;
342c3a326a6SAneesh Kumar K.V static struct kmem_cache *ext4_free_ext_cachep;
343fb1813f4SCurt Wohlgemuth 
344fb1813f4SCurt Wohlgemuth /* We create slab caches for groupinfo data structures based on the
345fb1813f4SCurt Wohlgemuth  * superblock block size.  There will be one per mounted filesystem for
346fb1813f4SCurt Wohlgemuth  * each unique s_blocksize_bits */
3472892c15dSEric Sandeen #define NR_GRPINFO_CACHES 8
348fb1813f4SCurt Wohlgemuth static struct kmem_cache *ext4_groupinfo_caches[NR_GRPINFO_CACHES];
349fb1813f4SCurt Wohlgemuth 
3502892c15dSEric Sandeen static const char *ext4_groupinfo_slab_names[NR_GRPINFO_CACHES] = {
3512892c15dSEric Sandeen 	"ext4_groupinfo_1k", "ext4_groupinfo_2k", "ext4_groupinfo_4k",
3522892c15dSEric Sandeen 	"ext4_groupinfo_8k", "ext4_groupinfo_16k", "ext4_groupinfo_32k",
3532892c15dSEric Sandeen 	"ext4_groupinfo_64k", "ext4_groupinfo_128k"
3542892c15dSEric Sandeen };
3552892c15dSEric Sandeen 
356c3a326a6SAneesh Kumar K.V static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
357c3a326a6SAneesh Kumar K.V 					ext4_group_t group);
3587a2fcbf7SAneesh Kumar K.V static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
3597a2fcbf7SAneesh Kumar K.V 						ext4_group_t group);
360c3a326a6SAneesh Kumar K.V static void release_blocks_on_commit(journal_t *journal, transaction_t *txn);
361c3a326a6SAneesh Kumar K.V 
362ffad0a44SAneesh Kumar K.V static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
363ffad0a44SAneesh Kumar K.V {
364c9de560dSAlex Tomas #if BITS_PER_LONG == 64
365ffad0a44SAneesh Kumar K.V 	*bit += ((unsigned long) addr & 7UL) << 3;
366ffad0a44SAneesh Kumar K.V 	addr = (void *) ((unsigned long) addr & ~7UL);
367c9de560dSAlex Tomas #elif BITS_PER_LONG == 32
368ffad0a44SAneesh Kumar K.V 	*bit += ((unsigned long) addr & 3UL) << 3;
369ffad0a44SAneesh Kumar K.V 	addr = (void *) ((unsigned long) addr & ~3UL);
370c9de560dSAlex Tomas #else
371c9de560dSAlex Tomas #error "how many bits you are?!"
372c9de560dSAlex Tomas #endif
373ffad0a44SAneesh Kumar K.V 	return addr;
374ffad0a44SAneesh Kumar K.V }
375c9de560dSAlex Tomas 
376c9de560dSAlex Tomas static inline int mb_test_bit(int bit, void *addr)
377c9de560dSAlex Tomas {
378c9de560dSAlex Tomas 	/*
379c9de560dSAlex Tomas 	 * ext4_test_bit on architecture like powerpc
380c9de560dSAlex Tomas 	 * needs unsigned long aligned address
381c9de560dSAlex Tomas 	 */
382ffad0a44SAneesh Kumar K.V 	addr = mb_correct_addr_and_bit(&bit, addr);
383c9de560dSAlex Tomas 	return ext4_test_bit(bit, addr);
384c9de560dSAlex Tomas }
385c9de560dSAlex Tomas 
386c9de560dSAlex Tomas static inline void mb_set_bit(int bit, void *addr)
387c9de560dSAlex Tomas {
388ffad0a44SAneesh Kumar K.V 	addr = mb_correct_addr_and_bit(&bit, addr);
389c9de560dSAlex Tomas 	ext4_set_bit(bit, addr);
390c9de560dSAlex Tomas }
391c9de560dSAlex Tomas 
392c9de560dSAlex Tomas static inline void mb_clear_bit(int bit, void *addr)
393c9de560dSAlex Tomas {
394ffad0a44SAneesh Kumar K.V 	addr = mb_correct_addr_and_bit(&bit, addr);
395c9de560dSAlex Tomas 	ext4_clear_bit(bit, addr);
396c9de560dSAlex Tomas }
397c9de560dSAlex Tomas 
398ffad0a44SAneesh Kumar K.V static inline int mb_find_next_zero_bit(void *addr, int max, int start)
399ffad0a44SAneesh Kumar K.V {
400e7dfb246SAneesh Kumar K.V 	int fix = 0, ret, tmpmax;
401ffad0a44SAneesh Kumar K.V 	addr = mb_correct_addr_and_bit(&fix, addr);
402e7dfb246SAneesh Kumar K.V 	tmpmax = max + fix;
403ffad0a44SAneesh Kumar K.V 	start += fix;
404ffad0a44SAneesh Kumar K.V 
405e7dfb246SAneesh Kumar K.V 	ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix;
406e7dfb246SAneesh Kumar K.V 	if (ret > max)
407e7dfb246SAneesh Kumar K.V 		return max;
408e7dfb246SAneesh Kumar K.V 	return ret;
409ffad0a44SAneesh Kumar K.V }
410ffad0a44SAneesh Kumar K.V 
411ffad0a44SAneesh Kumar K.V static inline int mb_find_next_bit(void *addr, int max, int start)
412ffad0a44SAneesh Kumar K.V {
413e7dfb246SAneesh Kumar K.V 	int fix = 0, ret, tmpmax;
414ffad0a44SAneesh Kumar K.V 	addr = mb_correct_addr_and_bit(&fix, addr);
415e7dfb246SAneesh Kumar K.V 	tmpmax = max + fix;
416ffad0a44SAneesh Kumar K.V 	start += fix;
417ffad0a44SAneesh Kumar K.V 
418e7dfb246SAneesh Kumar K.V 	ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
419e7dfb246SAneesh Kumar K.V 	if (ret > max)
420e7dfb246SAneesh Kumar K.V 		return max;
421e7dfb246SAneesh Kumar K.V 	return ret;
422ffad0a44SAneesh Kumar K.V }
423ffad0a44SAneesh Kumar K.V 
424c9de560dSAlex Tomas static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
425c9de560dSAlex Tomas {
426c9de560dSAlex Tomas 	char *bb;
427c9de560dSAlex Tomas 
428c9de560dSAlex Tomas 	BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
429c9de560dSAlex Tomas 	BUG_ON(max == NULL);
430c9de560dSAlex Tomas 
431c9de560dSAlex Tomas 	if (order > e4b->bd_blkbits + 1) {
432c9de560dSAlex Tomas 		*max = 0;
433c9de560dSAlex Tomas 		return NULL;
434c9de560dSAlex Tomas 	}
435c9de560dSAlex Tomas 
436c9de560dSAlex Tomas 	/* at order 0 we see each particular block */
43784b775a3SColy Li 	if (order == 0) {
438c9de560dSAlex Tomas 		*max = 1 << (e4b->bd_blkbits + 3);
439c9de560dSAlex Tomas 		return EXT4_MB_BITMAP(e4b);
44084b775a3SColy Li 	}
441c9de560dSAlex Tomas 
442c9de560dSAlex Tomas 	bb = EXT4_MB_BUDDY(e4b) + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
443c9de560dSAlex Tomas 	*max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
444c9de560dSAlex Tomas 
445c9de560dSAlex Tomas 	return bb;
446c9de560dSAlex Tomas }
447c9de560dSAlex Tomas 
448c9de560dSAlex Tomas #ifdef DOUBLE_CHECK
449c9de560dSAlex Tomas static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
450c9de560dSAlex Tomas 			   int first, int count)
451c9de560dSAlex Tomas {
452c9de560dSAlex Tomas 	int i;
453c9de560dSAlex Tomas 	struct super_block *sb = e4b->bd_sb;
454c9de560dSAlex Tomas 
455c9de560dSAlex Tomas 	if (unlikely(e4b->bd_info->bb_bitmap == NULL))
456c9de560dSAlex Tomas 		return;
457bc8e6740SVincent Minet 	assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
458c9de560dSAlex Tomas 	for (i = 0; i < count; i++) {
459c9de560dSAlex Tomas 		if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
460c9de560dSAlex Tomas 			ext4_fsblk_t blocknr;
4615661bd68SAkinobu Mita 
4625661bd68SAkinobu Mita 			blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
46353accfa9STheodore Ts'o 			blocknr += EXT4_C2B(EXT4_SB(sb), first + i);
4645d1b1b3fSAneesh Kumar K.V 			ext4_grp_locked_error(sb, e4b->bd_group,
465e29136f8STheodore Ts'o 					      inode ? inode->i_ino : 0,
466e29136f8STheodore Ts'o 					      blocknr,
467e29136f8STheodore Ts'o 					      "freeing block already freed "
468e29136f8STheodore Ts'o 					      "(bit %u)",
469e29136f8STheodore Ts'o 					      first + i);
470c9de560dSAlex Tomas 		}
471c9de560dSAlex Tomas 		mb_clear_bit(first + i, e4b->bd_info->bb_bitmap);
472c9de560dSAlex Tomas 	}
473c9de560dSAlex Tomas }
474c9de560dSAlex Tomas 
475c9de560dSAlex Tomas static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count)
476c9de560dSAlex Tomas {
477c9de560dSAlex Tomas 	int i;
478c9de560dSAlex Tomas 
479c9de560dSAlex Tomas 	if (unlikely(e4b->bd_info->bb_bitmap == NULL))
480c9de560dSAlex Tomas 		return;
481bc8e6740SVincent Minet 	assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
482c9de560dSAlex Tomas 	for (i = 0; i < count; i++) {
483c9de560dSAlex Tomas 		BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap));
484c9de560dSAlex Tomas 		mb_set_bit(first + i, e4b->bd_info->bb_bitmap);
485c9de560dSAlex Tomas 	}
486c9de560dSAlex Tomas }
487c9de560dSAlex Tomas 
488c9de560dSAlex Tomas static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
489c9de560dSAlex Tomas {
490c9de560dSAlex Tomas 	if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) {
491c9de560dSAlex Tomas 		unsigned char *b1, *b2;
492c9de560dSAlex Tomas 		int i;
493c9de560dSAlex Tomas 		b1 = (unsigned char *) e4b->bd_info->bb_bitmap;
494c9de560dSAlex Tomas 		b2 = (unsigned char *) bitmap;
495c9de560dSAlex Tomas 		for (i = 0; i < e4b->bd_sb->s_blocksize; i++) {
496c9de560dSAlex Tomas 			if (b1[i] != b2[i]) {
4979d8b9ec4STheodore Ts'o 				ext4_msg(e4b->bd_sb, KERN_ERR,
4989d8b9ec4STheodore Ts'o 					 "corruption in group %u "
4994776004fSTheodore Ts'o 					 "at byte %u(%u): %x in copy != %x "
5009d8b9ec4STheodore Ts'o 					 "on disk/prealloc",
501c9de560dSAlex Tomas 					 e4b->bd_group, i, i * 8, b1[i], b2[i]);
502c9de560dSAlex Tomas 				BUG();
503c9de560dSAlex Tomas 			}
504c9de560dSAlex Tomas 		}
505c9de560dSAlex Tomas 	}
506c9de560dSAlex Tomas }
507c9de560dSAlex Tomas 
508c9de560dSAlex Tomas #else
509c9de560dSAlex Tomas static inline void mb_free_blocks_double(struct inode *inode,
510c9de560dSAlex Tomas 				struct ext4_buddy *e4b, int first, int count)
511c9de560dSAlex Tomas {
512c9de560dSAlex Tomas 	return;
513c9de560dSAlex Tomas }
514c9de560dSAlex Tomas static inline void mb_mark_used_double(struct ext4_buddy *e4b,
515c9de560dSAlex Tomas 						int first, int count)
516c9de560dSAlex Tomas {
517c9de560dSAlex Tomas 	return;
518c9de560dSAlex Tomas }
519c9de560dSAlex Tomas static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
520c9de560dSAlex Tomas {
521c9de560dSAlex Tomas 	return;
522c9de560dSAlex Tomas }
523c9de560dSAlex Tomas #endif
524c9de560dSAlex Tomas 
525c9de560dSAlex Tomas #ifdef AGGRESSIVE_CHECK
526c9de560dSAlex Tomas 
527c9de560dSAlex Tomas #define MB_CHECK_ASSERT(assert)						\
528c9de560dSAlex Tomas do {									\
529c9de560dSAlex Tomas 	if (!(assert)) {						\
530c9de560dSAlex Tomas 		printk(KERN_EMERG					\
531c9de560dSAlex Tomas 			"Assertion failure in %s() at %s:%d: \"%s\"\n",	\
532c9de560dSAlex Tomas 			function, file, line, # assert);		\
533c9de560dSAlex Tomas 		BUG();							\
534c9de560dSAlex Tomas 	}								\
535c9de560dSAlex Tomas } while (0)
536c9de560dSAlex Tomas 
537c9de560dSAlex Tomas static int __mb_check_buddy(struct ext4_buddy *e4b, char *file,
538c9de560dSAlex Tomas 				const char *function, int line)
539c9de560dSAlex Tomas {
540c9de560dSAlex Tomas 	struct super_block *sb = e4b->bd_sb;
541c9de560dSAlex Tomas 	int order = e4b->bd_blkbits + 1;
542c9de560dSAlex Tomas 	int max;
543c9de560dSAlex Tomas 	int max2;
544c9de560dSAlex Tomas 	int i;
545c9de560dSAlex Tomas 	int j;
546c9de560dSAlex Tomas 	int k;
547c9de560dSAlex Tomas 	int count;
548c9de560dSAlex Tomas 	struct ext4_group_info *grp;
549c9de560dSAlex Tomas 	int fragments = 0;
550c9de560dSAlex Tomas 	int fstart;
551c9de560dSAlex Tomas 	struct list_head *cur;
552c9de560dSAlex Tomas 	void *buddy;
553c9de560dSAlex Tomas 	void *buddy2;
554c9de560dSAlex Tomas 
555c9de560dSAlex Tomas 	{
556c9de560dSAlex Tomas 		static int mb_check_counter;
557c9de560dSAlex Tomas 		if (mb_check_counter++ % 100 != 0)
558c9de560dSAlex Tomas 			return 0;
559c9de560dSAlex Tomas 	}
560c9de560dSAlex Tomas 
561c9de560dSAlex Tomas 	while (order > 1) {
562c9de560dSAlex Tomas 		buddy = mb_find_buddy(e4b, order, &max);
563c9de560dSAlex Tomas 		MB_CHECK_ASSERT(buddy);
564c9de560dSAlex Tomas 		buddy2 = mb_find_buddy(e4b, order - 1, &max2);
565c9de560dSAlex Tomas 		MB_CHECK_ASSERT(buddy2);
566c9de560dSAlex Tomas 		MB_CHECK_ASSERT(buddy != buddy2);
567c9de560dSAlex Tomas 		MB_CHECK_ASSERT(max * 2 == max2);
568c9de560dSAlex Tomas 
569c9de560dSAlex Tomas 		count = 0;
570c9de560dSAlex Tomas 		for (i = 0; i < max; i++) {
571c9de560dSAlex Tomas 
572c9de560dSAlex Tomas 			if (mb_test_bit(i, buddy)) {
573c9de560dSAlex Tomas 				/* only single bit in buddy2 may be 1 */
574c9de560dSAlex Tomas 				if (!mb_test_bit(i << 1, buddy2)) {
575c9de560dSAlex Tomas 					MB_CHECK_ASSERT(
576c9de560dSAlex Tomas 						mb_test_bit((i<<1)+1, buddy2));
577c9de560dSAlex Tomas 				} else if (!mb_test_bit((i << 1) + 1, buddy2)) {
578c9de560dSAlex Tomas 					MB_CHECK_ASSERT(
579c9de560dSAlex Tomas 						mb_test_bit(i << 1, buddy2));
580c9de560dSAlex Tomas 				}
581c9de560dSAlex Tomas 				continue;
582c9de560dSAlex Tomas 			}
583c9de560dSAlex Tomas 
584c9de560dSAlex Tomas 			/* both bits in buddy2 must be 0 */
585c9de560dSAlex Tomas 			MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2));
586c9de560dSAlex Tomas 			MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2));
587c9de560dSAlex Tomas 
588c9de560dSAlex Tomas 			for (j = 0; j < (1 << order); j++) {
589c9de560dSAlex Tomas 				k = (i * (1 << order)) + j;
590c9de560dSAlex Tomas 				MB_CHECK_ASSERT(
591c9de560dSAlex Tomas 					!mb_test_bit(k, EXT4_MB_BITMAP(e4b)));
592c9de560dSAlex Tomas 			}
593c9de560dSAlex Tomas 			count++;
594c9de560dSAlex Tomas 		}
595c9de560dSAlex Tomas 		MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count);
596c9de560dSAlex Tomas 		order--;
597c9de560dSAlex Tomas 	}
598c9de560dSAlex Tomas 
599c9de560dSAlex Tomas 	fstart = -1;
600c9de560dSAlex Tomas 	buddy = mb_find_buddy(e4b, 0, &max);
601c9de560dSAlex Tomas 	for (i = 0; i < max; i++) {
602c9de560dSAlex Tomas 		if (!mb_test_bit(i, buddy)) {
603c9de560dSAlex Tomas 			MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free);
604c9de560dSAlex Tomas 			if (fstart == -1) {
605c9de560dSAlex Tomas 				fragments++;
606c9de560dSAlex Tomas 				fstart = i;
607c9de560dSAlex Tomas 			}
608c9de560dSAlex Tomas 			continue;
609c9de560dSAlex Tomas 		}
610c9de560dSAlex Tomas 		fstart = -1;
611c9de560dSAlex Tomas 		/* check used bits only */
612c9de560dSAlex Tomas 		for (j = 0; j < e4b->bd_blkbits + 1; j++) {
613c9de560dSAlex Tomas 			buddy2 = mb_find_buddy(e4b, j, &max2);
614c9de560dSAlex Tomas 			k = i >> j;
615c9de560dSAlex Tomas 			MB_CHECK_ASSERT(k < max2);
616c9de560dSAlex Tomas 			MB_CHECK_ASSERT(mb_test_bit(k, buddy2));
617c9de560dSAlex Tomas 		}
618c9de560dSAlex Tomas 	}
619c9de560dSAlex Tomas 	MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info));
620c9de560dSAlex Tomas 	MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments);
621c9de560dSAlex Tomas 
622c9de560dSAlex Tomas 	grp = ext4_get_group_info(sb, e4b->bd_group);
623c9de560dSAlex Tomas 	list_for_each(cur, &grp->bb_prealloc_list) {
624c9de560dSAlex Tomas 		ext4_group_t groupnr;
625c9de560dSAlex Tomas 		struct ext4_prealloc_space *pa;
62660bd63d1SSolofo Ramangalahy 		pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
62760bd63d1SSolofo Ramangalahy 		ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k);
628c9de560dSAlex Tomas 		MB_CHECK_ASSERT(groupnr == e4b->bd_group);
62960bd63d1SSolofo Ramangalahy 		for (i = 0; i < pa->pa_len; i++)
630c9de560dSAlex Tomas 			MB_CHECK_ASSERT(mb_test_bit(k + i, buddy));
631c9de560dSAlex Tomas 	}
632c9de560dSAlex Tomas 	return 0;
633c9de560dSAlex Tomas }
634c9de560dSAlex Tomas #undef MB_CHECK_ASSERT
635c9de560dSAlex Tomas #define mb_check_buddy(e4b) __mb_check_buddy(e4b,	\
63646e665e9SHarvey Harrison 					__FILE__, __func__, __LINE__)
637c9de560dSAlex Tomas #else
638c9de560dSAlex Tomas #define mb_check_buddy(e4b)
639c9de560dSAlex Tomas #endif
640c9de560dSAlex Tomas 
6417c786059SColy Li /*
6427c786059SColy Li  * Divide blocks started from @first with length @len into
6437c786059SColy Li  * smaller chunks with power of 2 blocks.
6447c786059SColy Li  * Clear the bits in bitmap which the blocks of the chunk(s) covered,
6457c786059SColy Li  * then increase bb_counters[] for corresponded chunk size.
6467c786059SColy Li  */
647c9de560dSAlex Tomas static void ext4_mb_mark_free_simple(struct super_block *sb,
648a36b4498SEric Sandeen 				void *buddy, ext4_grpblk_t first, ext4_grpblk_t len,
649c9de560dSAlex Tomas 					struct ext4_group_info *grp)
650c9de560dSAlex Tomas {
651c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(sb);
652a36b4498SEric Sandeen 	ext4_grpblk_t min;
653a36b4498SEric Sandeen 	ext4_grpblk_t max;
654a36b4498SEric Sandeen 	ext4_grpblk_t chunk;
655c9de560dSAlex Tomas 	unsigned short border;
656c9de560dSAlex Tomas 
6577137d7a4STheodore Ts'o 	BUG_ON(len > EXT4_CLUSTERS_PER_GROUP(sb));
658c9de560dSAlex Tomas 
659c9de560dSAlex Tomas 	border = 2 << sb->s_blocksize_bits;
660c9de560dSAlex Tomas 
661c9de560dSAlex Tomas 	while (len > 0) {
662c9de560dSAlex Tomas 		/* find how many blocks can be covered since this position */
663c9de560dSAlex Tomas 		max = ffs(first | border) - 1;
664c9de560dSAlex Tomas 
665c9de560dSAlex Tomas 		/* find how many blocks of power 2 we need to mark */
666c9de560dSAlex Tomas 		min = fls(len) - 1;
667c9de560dSAlex Tomas 
668c9de560dSAlex Tomas 		if (max < min)
669c9de560dSAlex Tomas 			min = max;
670c9de560dSAlex Tomas 		chunk = 1 << min;
671c9de560dSAlex Tomas 
672c9de560dSAlex Tomas 		/* mark multiblock chunks only */
673c9de560dSAlex Tomas 		grp->bb_counters[min]++;
674c9de560dSAlex Tomas 		if (min > 0)
675c9de560dSAlex Tomas 			mb_clear_bit(first >> min,
676c9de560dSAlex Tomas 				     buddy + sbi->s_mb_offsets[min]);
677c9de560dSAlex Tomas 
678c9de560dSAlex Tomas 		len -= chunk;
679c9de560dSAlex Tomas 		first += chunk;
680c9de560dSAlex Tomas 	}
681c9de560dSAlex Tomas }
682c9de560dSAlex Tomas 
6838a57d9d6SCurt Wohlgemuth /*
6848a57d9d6SCurt Wohlgemuth  * Cache the order of the largest free extent we have available in this block
6858a57d9d6SCurt Wohlgemuth  * group.
6868a57d9d6SCurt Wohlgemuth  */
6878a57d9d6SCurt Wohlgemuth static void
6888a57d9d6SCurt Wohlgemuth mb_set_largest_free_order(struct super_block *sb, struct ext4_group_info *grp)
6898a57d9d6SCurt Wohlgemuth {
6908a57d9d6SCurt Wohlgemuth 	int i;
6918a57d9d6SCurt Wohlgemuth 	int bits;
6928a57d9d6SCurt Wohlgemuth 
6938a57d9d6SCurt Wohlgemuth 	grp->bb_largest_free_order = -1; /* uninit */
6948a57d9d6SCurt Wohlgemuth 
6958a57d9d6SCurt Wohlgemuth 	bits = sb->s_blocksize_bits + 1;
6968a57d9d6SCurt Wohlgemuth 	for (i = bits; i >= 0; i--) {
6978a57d9d6SCurt Wohlgemuth 		if (grp->bb_counters[i] > 0) {
6988a57d9d6SCurt Wohlgemuth 			grp->bb_largest_free_order = i;
6998a57d9d6SCurt Wohlgemuth 			break;
7008a57d9d6SCurt Wohlgemuth 		}
7018a57d9d6SCurt Wohlgemuth 	}
7028a57d9d6SCurt Wohlgemuth }
7038a57d9d6SCurt Wohlgemuth 
704089ceeccSEric Sandeen static noinline_for_stack
705089ceeccSEric Sandeen void ext4_mb_generate_buddy(struct super_block *sb,
706c9de560dSAlex Tomas 				void *buddy, void *bitmap, ext4_group_t group)
707c9de560dSAlex Tomas {
708c9de560dSAlex Tomas 	struct ext4_group_info *grp = ext4_get_group_info(sb, group);
7097137d7a4STheodore Ts'o 	ext4_grpblk_t max = EXT4_CLUSTERS_PER_GROUP(sb);
710a36b4498SEric Sandeen 	ext4_grpblk_t i = 0;
711a36b4498SEric Sandeen 	ext4_grpblk_t first;
712a36b4498SEric Sandeen 	ext4_grpblk_t len;
713c9de560dSAlex Tomas 	unsigned free = 0;
714c9de560dSAlex Tomas 	unsigned fragments = 0;
715c9de560dSAlex Tomas 	unsigned long long period = get_cycles();
716c9de560dSAlex Tomas 
717c9de560dSAlex Tomas 	/* initialize buddy from bitmap which is aggregation
718c9de560dSAlex Tomas 	 * of on-disk bitmap and preallocations */
719ffad0a44SAneesh Kumar K.V 	i = mb_find_next_zero_bit(bitmap, max, 0);
720c9de560dSAlex Tomas 	grp->bb_first_free = i;
721c9de560dSAlex Tomas 	while (i < max) {
722c9de560dSAlex Tomas 		fragments++;
723c9de560dSAlex Tomas 		first = i;
724ffad0a44SAneesh Kumar K.V 		i = mb_find_next_bit(bitmap, max, i);
725c9de560dSAlex Tomas 		len = i - first;
726c9de560dSAlex Tomas 		free += len;
727c9de560dSAlex Tomas 		if (len > 1)
728c9de560dSAlex Tomas 			ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
729c9de560dSAlex Tomas 		else
730c9de560dSAlex Tomas 			grp->bb_counters[0]++;
731c9de560dSAlex Tomas 		if (i < max)
732ffad0a44SAneesh Kumar K.V 			i = mb_find_next_zero_bit(bitmap, max, i);
733c9de560dSAlex Tomas 	}
734c9de560dSAlex Tomas 	grp->bb_fragments = fragments;
735c9de560dSAlex Tomas 
736c9de560dSAlex Tomas 	if (free != grp->bb_free) {
737e29136f8STheodore Ts'o 		ext4_grp_locked_error(sb, group, 0, 0,
73853accfa9STheodore Ts'o 				      "%u clusters in bitmap, %u in gd",
739e29136f8STheodore Ts'o 				      free, grp->bb_free);
740e56eb659SAneesh Kumar K.V 		/*
741e56eb659SAneesh Kumar K.V 		 * If we intent to continue, we consider group descritor
742e56eb659SAneesh Kumar K.V 		 * corrupt and update bb_free using bitmap value
743e56eb659SAneesh Kumar K.V 		 */
744c9de560dSAlex Tomas 		grp->bb_free = free;
745c9de560dSAlex Tomas 	}
7468a57d9d6SCurt Wohlgemuth 	mb_set_largest_free_order(sb, grp);
747c9de560dSAlex Tomas 
748c9de560dSAlex Tomas 	clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
749c9de560dSAlex Tomas 
750c9de560dSAlex Tomas 	period = get_cycles() - period;
751c9de560dSAlex Tomas 	spin_lock(&EXT4_SB(sb)->s_bal_lock);
752c9de560dSAlex Tomas 	EXT4_SB(sb)->s_mb_buddies_generated++;
753c9de560dSAlex Tomas 	EXT4_SB(sb)->s_mb_generation_time += period;
754c9de560dSAlex Tomas 	spin_unlock(&EXT4_SB(sb)->s_bal_lock);
755c9de560dSAlex Tomas }
756c9de560dSAlex Tomas 
757c9de560dSAlex Tomas /* The buddy information is attached the buddy cache inode
758c9de560dSAlex Tomas  * for convenience. The information regarding each group
759c9de560dSAlex Tomas  * is loaded via ext4_mb_load_buddy. The information involve
760c9de560dSAlex Tomas  * block bitmap and buddy information. The information are
761c9de560dSAlex Tomas  * stored in the inode as
762c9de560dSAlex Tomas  *
763c9de560dSAlex Tomas  * {                        page                        }
764c3a326a6SAneesh Kumar K.V  * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
765c9de560dSAlex Tomas  *
766c9de560dSAlex Tomas  *
767c9de560dSAlex Tomas  * one block each for bitmap and buddy information.
768c9de560dSAlex Tomas  * So for each group we take up 2 blocks. A page can
769c9de560dSAlex Tomas  * contain blocks_per_page (PAGE_CACHE_SIZE / blocksize)  blocks.
770c9de560dSAlex Tomas  * So it can have information regarding groups_per_page which
771c9de560dSAlex Tomas  * is blocks_per_page/2
7728a57d9d6SCurt Wohlgemuth  *
7738a57d9d6SCurt Wohlgemuth  * Locking note:  This routine takes the block group lock of all groups
7748a57d9d6SCurt Wohlgemuth  * for this page; do not hold this lock when calling this routine!
775c9de560dSAlex Tomas  */
776c9de560dSAlex Tomas 
777c9de560dSAlex Tomas static int ext4_mb_init_cache(struct page *page, char *incore)
778c9de560dSAlex Tomas {
7798df9675fSTheodore Ts'o 	ext4_group_t ngroups;
780c9de560dSAlex Tomas 	int blocksize;
781c9de560dSAlex Tomas 	int blocks_per_page;
782c9de560dSAlex Tomas 	int groups_per_page;
783c9de560dSAlex Tomas 	int err = 0;
784c9de560dSAlex Tomas 	int i;
785c9de560dSAlex Tomas 	ext4_group_t first_group;
786c9de560dSAlex Tomas 	int first_block;
787c9de560dSAlex Tomas 	struct super_block *sb;
788c9de560dSAlex Tomas 	struct buffer_head *bhs;
789c9de560dSAlex Tomas 	struct buffer_head **bh;
790c9de560dSAlex Tomas 	struct inode *inode;
791c9de560dSAlex Tomas 	char *data;
792c9de560dSAlex Tomas 	char *bitmap;
7939b8b7d35SAmir Goldstein 	struct ext4_group_info *grinfo;
794c9de560dSAlex Tomas 
7956ba495e9STheodore Ts'o 	mb_debug(1, "init page %lu\n", page->index);
796c9de560dSAlex Tomas 
797c9de560dSAlex Tomas 	inode = page->mapping->host;
798c9de560dSAlex Tomas 	sb = inode->i_sb;
7998df9675fSTheodore Ts'o 	ngroups = ext4_get_groups_count(sb);
800c9de560dSAlex Tomas 	blocksize = 1 << inode->i_blkbits;
801c9de560dSAlex Tomas 	blocks_per_page = PAGE_CACHE_SIZE / blocksize;
802c9de560dSAlex Tomas 
803c9de560dSAlex Tomas 	groups_per_page = blocks_per_page >> 1;
804c9de560dSAlex Tomas 	if (groups_per_page == 0)
805c9de560dSAlex Tomas 		groups_per_page = 1;
806c9de560dSAlex Tomas 
807c9de560dSAlex Tomas 	/* allocate buffer_heads to read bitmaps */
808c9de560dSAlex Tomas 	if (groups_per_page > 1) {
809c9de560dSAlex Tomas 		err = -ENOMEM;
810c9de560dSAlex Tomas 		i = sizeof(struct buffer_head *) * groups_per_page;
811c9de560dSAlex Tomas 		bh = kzalloc(i, GFP_NOFS);
812c9de560dSAlex Tomas 		if (bh == NULL)
813c9de560dSAlex Tomas 			goto out;
814c9de560dSAlex Tomas 	} else
815c9de560dSAlex Tomas 		bh = &bhs;
816c9de560dSAlex Tomas 
817c9de560dSAlex Tomas 	first_group = page->index * blocks_per_page / 2;
818c9de560dSAlex Tomas 
819c9de560dSAlex Tomas 	/* read all groups the page covers into the cache */
820c9de560dSAlex Tomas 	for (i = 0; i < groups_per_page; i++) {
821c9de560dSAlex Tomas 		struct ext4_group_desc *desc;
822c9de560dSAlex Tomas 
8238df9675fSTheodore Ts'o 		if (first_group + i >= ngroups)
824c9de560dSAlex Tomas 			break;
825c9de560dSAlex Tomas 
8269b8b7d35SAmir Goldstein 		grinfo = ext4_get_group_info(sb, first_group + i);
8279b8b7d35SAmir Goldstein 		/*
8289b8b7d35SAmir Goldstein 		 * If page is uptodate then we came here after online resize
8299b8b7d35SAmir Goldstein 		 * which added some new uninitialized group info structs, so
8309b8b7d35SAmir Goldstein 		 * we must skip all initialized uptodate buddies on the page,
8319b8b7d35SAmir Goldstein 		 * which may be currently in use by an allocating task.
8329b8b7d35SAmir Goldstein 		 */
8339b8b7d35SAmir Goldstein 		if (PageUptodate(page) && !EXT4_MB_GRP_NEED_INIT(grinfo)) {
8349b8b7d35SAmir Goldstein 			bh[i] = NULL;
8359b8b7d35SAmir Goldstein 			continue;
8369b8b7d35SAmir Goldstein 		}
8379b8b7d35SAmir Goldstein 
838c9de560dSAlex Tomas 		err = -EIO;
839c9de560dSAlex Tomas 		desc = ext4_get_group_desc(sb, first_group + i, NULL);
840c9de560dSAlex Tomas 		if (desc == NULL)
841c9de560dSAlex Tomas 			goto out;
842c9de560dSAlex Tomas 
843c9de560dSAlex Tomas 		err = -ENOMEM;
844c9de560dSAlex Tomas 		bh[i] = sb_getblk(sb, ext4_block_bitmap(sb, desc));
845c9de560dSAlex Tomas 		if (bh[i] == NULL)
846c9de560dSAlex Tomas 			goto out;
847c9de560dSAlex Tomas 
8482ccb5fb9SAneesh Kumar K.V 		if (bitmap_uptodate(bh[i]))
849c9de560dSAlex Tomas 			continue;
850c9de560dSAlex Tomas 
851c806e68fSFrederic Bohe 		lock_buffer(bh[i]);
8522ccb5fb9SAneesh Kumar K.V 		if (bitmap_uptodate(bh[i])) {
8532ccb5fb9SAneesh Kumar K.V 			unlock_buffer(bh[i]);
8542ccb5fb9SAneesh Kumar K.V 			continue;
8552ccb5fb9SAneesh Kumar K.V 		}
856955ce5f5SAneesh Kumar K.V 		ext4_lock_group(sb, first_group + i);
857c9de560dSAlex Tomas 		if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
858c9de560dSAlex Tomas 			ext4_init_block_bitmap(sb, bh[i],
859c9de560dSAlex Tomas 						first_group + i, desc);
8602ccb5fb9SAneesh Kumar K.V 			set_bitmap_uptodate(bh[i]);
861c9de560dSAlex Tomas 			set_buffer_uptodate(bh[i]);
862955ce5f5SAneesh Kumar K.V 			ext4_unlock_group(sb, first_group + i);
8633300bedaSAneesh Kumar K.V 			unlock_buffer(bh[i]);
864c9de560dSAlex Tomas 			continue;
865c9de560dSAlex Tomas 		}
866955ce5f5SAneesh Kumar K.V 		ext4_unlock_group(sb, first_group + i);
8672ccb5fb9SAneesh Kumar K.V 		if (buffer_uptodate(bh[i])) {
8682ccb5fb9SAneesh Kumar K.V 			/*
8692ccb5fb9SAneesh Kumar K.V 			 * if not uninit if bh is uptodate,
8702ccb5fb9SAneesh Kumar K.V 			 * bitmap is also uptodate
8712ccb5fb9SAneesh Kumar K.V 			 */
8722ccb5fb9SAneesh Kumar K.V 			set_bitmap_uptodate(bh[i]);
8732ccb5fb9SAneesh Kumar K.V 			unlock_buffer(bh[i]);
8742ccb5fb9SAneesh Kumar K.V 			continue;
8752ccb5fb9SAneesh Kumar K.V 		}
876c9de560dSAlex Tomas 		get_bh(bh[i]);
8772ccb5fb9SAneesh Kumar K.V 		/*
8782ccb5fb9SAneesh Kumar K.V 		 * submit the buffer_head for read. We can
8792ccb5fb9SAneesh Kumar K.V 		 * safely mark the bitmap as uptodate now.
8802ccb5fb9SAneesh Kumar K.V 		 * We do it here so the bitmap uptodate bit
8812ccb5fb9SAneesh Kumar K.V 		 * get set with buffer lock held.
8822ccb5fb9SAneesh Kumar K.V 		 */
8832ccb5fb9SAneesh Kumar K.V 		set_bitmap_uptodate(bh[i]);
884c9de560dSAlex Tomas 		bh[i]->b_end_io = end_buffer_read_sync;
885c9de560dSAlex Tomas 		submit_bh(READ, bh[i]);
8866ba495e9STheodore Ts'o 		mb_debug(1, "read bitmap for group %u\n", first_group + i);
887c9de560dSAlex Tomas 	}
888c9de560dSAlex Tomas 
889c9de560dSAlex Tomas 	/* wait for I/O completion */
8909b8b7d35SAmir Goldstein 	for (i = 0; i < groups_per_page; i++)
8919b8b7d35SAmir Goldstein 		if (bh[i])
892c9de560dSAlex Tomas 			wait_on_buffer(bh[i]);
893c9de560dSAlex Tomas 
894c9de560dSAlex Tomas 	err = -EIO;
8959b8b7d35SAmir Goldstein 	for (i = 0; i < groups_per_page; i++)
8969b8b7d35SAmir Goldstein 		if (bh[i] && !buffer_uptodate(bh[i]))
897c9de560dSAlex Tomas 			goto out;
898c9de560dSAlex Tomas 
89931b481dcSMingming Cao 	err = 0;
900c9de560dSAlex Tomas 	first_block = page->index * blocks_per_page;
901c9de560dSAlex Tomas 	for (i = 0; i < blocks_per_page; i++) {
902c9de560dSAlex Tomas 		int group;
903c9de560dSAlex Tomas 
904c9de560dSAlex Tomas 		group = (first_block + i) >> 1;
9058df9675fSTheodore Ts'o 		if (group >= ngroups)
906c9de560dSAlex Tomas 			break;
907c9de560dSAlex Tomas 
9089b8b7d35SAmir Goldstein 		if (!bh[group - first_group])
9099b8b7d35SAmir Goldstein 			/* skip initialized uptodate buddy */
9109b8b7d35SAmir Goldstein 			continue;
9119b8b7d35SAmir Goldstein 
912c9de560dSAlex Tomas 		/*
913c9de560dSAlex Tomas 		 * data carry information regarding this
914c9de560dSAlex Tomas 		 * particular group in the format specified
915c9de560dSAlex Tomas 		 * above
916c9de560dSAlex Tomas 		 *
917c9de560dSAlex Tomas 		 */
918c9de560dSAlex Tomas 		data = page_address(page) + (i * blocksize);
919c9de560dSAlex Tomas 		bitmap = bh[group - first_group]->b_data;
920c9de560dSAlex Tomas 
921c9de560dSAlex Tomas 		/*
922c9de560dSAlex Tomas 		 * We place the buddy block and bitmap block
923c9de560dSAlex Tomas 		 * close together
924c9de560dSAlex Tomas 		 */
925c9de560dSAlex Tomas 		if ((first_block + i) & 1) {
926c9de560dSAlex Tomas 			/* this is block of buddy */
927c9de560dSAlex Tomas 			BUG_ON(incore == NULL);
9286ba495e9STheodore Ts'o 			mb_debug(1, "put buddy for group %u in page %lu/%x\n",
929c9de560dSAlex Tomas 				group, page->index, i * blocksize);
930f307333eSTheodore Ts'o 			trace_ext4_mb_buddy_bitmap_load(sb, group);
931c9de560dSAlex Tomas 			grinfo = ext4_get_group_info(sb, group);
932c9de560dSAlex Tomas 			grinfo->bb_fragments = 0;
933c9de560dSAlex Tomas 			memset(grinfo->bb_counters, 0,
9341927805eSEric Sandeen 			       sizeof(*grinfo->bb_counters) *
9351927805eSEric Sandeen 				(sb->s_blocksize_bits+2));
936c9de560dSAlex Tomas 			/*
937c9de560dSAlex Tomas 			 * incore got set to the group block bitmap below
938c9de560dSAlex Tomas 			 */
9397a2fcbf7SAneesh Kumar K.V 			ext4_lock_group(sb, group);
9409b8b7d35SAmir Goldstein 			/* init the buddy */
9419b8b7d35SAmir Goldstein 			memset(data, 0xff, blocksize);
942c9de560dSAlex Tomas 			ext4_mb_generate_buddy(sb, data, incore, group);
9437a2fcbf7SAneesh Kumar K.V 			ext4_unlock_group(sb, group);
944c9de560dSAlex Tomas 			incore = NULL;
945c9de560dSAlex Tomas 		} else {
946c9de560dSAlex Tomas 			/* this is block of bitmap */
947c9de560dSAlex Tomas 			BUG_ON(incore != NULL);
9486ba495e9STheodore Ts'o 			mb_debug(1, "put bitmap for group %u in page %lu/%x\n",
949c9de560dSAlex Tomas 				group, page->index, i * blocksize);
950f307333eSTheodore Ts'o 			trace_ext4_mb_bitmap_load(sb, group);
951c9de560dSAlex Tomas 
952c9de560dSAlex Tomas 			/* see comments in ext4_mb_put_pa() */
953c9de560dSAlex Tomas 			ext4_lock_group(sb, group);
954c9de560dSAlex Tomas 			memcpy(data, bitmap, blocksize);
955c9de560dSAlex Tomas 
956c9de560dSAlex Tomas 			/* mark all preallocated blks used in in-core bitmap */
957c9de560dSAlex Tomas 			ext4_mb_generate_from_pa(sb, data, group);
9587a2fcbf7SAneesh Kumar K.V 			ext4_mb_generate_from_freelist(sb, data, group);
959c9de560dSAlex Tomas 			ext4_unlock_group(sb, group);
960c9de560dSAlex Tomas 
961c9de560dSAlex Tomas 			/* set incore so that the buddy information can be
962c9de560dSAlex Tomas 			 * generated using this
963c9de560dSAlex Tomas 			 */
964c9de560dSAlex Tomas 			incore = data;
965c9de560dSAlex Tomas 		}
966c9de560dSAlex Tomas 	}
967c9de560dSAlex Tomas 	SetPageUptodate(page);
968c9de560dSAlex Tomas 
969c9de560dSAlex Tomas out:
970c9de560dSAlex Tomas 	if (bh) {
9719b8b7d35SAmir Goldstein 		for (i = 0; i < groups_per_page; i++)
972c9de560dSAlex Tomas 			brelse(bh[i]);
973c9de560dSAlex Tomas 		if (bh != &bhs)
974c9de560dSAlex Tomas 			kfree(bh);
975c9de560dSAlex Tomas 	}
976c9de560dSAlex Tomas 	return err;
977c9de560dSAlex Tomas }
978c9de560dSAlex Tomas 
9798a57d9d6SCurt Wohlgemuth /*
9802de8807bSAmir Goldstein  * Lock the buddy and bitmap pages. This make sure other parallel init_group
9812de8807bSAmir Goldstein  * on the same buddy page doesn't happen whild holding the buddy page lock.
9822de8807bSAmir Goldstein  * Return locked buddy and bitmap pages on e4b struct. If buddy and bitmap
9832de8807bSAmir Goldstein  * are on the same page e4b->bd_buddy_page is NULL and return value is 0.
984eee4adc7SEric Sandeen  */
9852de8807bSAmir Goldstein static int ext4_mb_get_buddy_page_lock(struct super_block *sb,
9862de8807bSAmir Goldstein 		ext4_group_t group, struct ext4_buddy *e4b)
987eee4adc7SEric Sandeen {
9882de8807bSAmir Goldstein 	struct inode *inode = EXT4_SB(sb)->s_buddy_cache;
9892de8807bSAmir Goldstein 	int block, pnum, poff;
990eee4adc7SEric Sandeen 	int blocks_per_page;
9912de8807bSAmir Goldstein 	struct page *page;
9922de8807bSAmir Goldstein 
9932de8807bSAmir Goldstein 	e4b->bd_buddy_page = NULL;
9942de8807bSAmir Goldstein 	e4b->bd_bitmap_page = NULL;
995eee4adc7SEric Sandeen 
996eee4adc7SEric Sandeen 	blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
997eee4adc7SEric Sandeen 	/*
998eee4adc7SEric Sandeen 	 * the buddy cache inode stores the block bitmap
999eee4adc7SEric Sandeen 	 * and buddy information in consecutive blocks.
1000eee4adc7SEric Sandeen 	 * So for each group we need two blocks.
1001eee4adc7SEric Sandeen 	 */
1002eee4adc7SEric Sandeen 	block = group * 2;
1003eee4adc7SEric Sandeen 	pnum = block / blocks_per_page;
10042de8807bSAmir Goldstein 	poff = block % blocks_per_page;
10052de8807bSAmir Goldstein 	page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
10062de8807bSAmir Goldstein 	if (!page)
10072de8807bSAmir Goldstein 		return -EIO;
10082de8807bSAmir Goldstein 	BUG_ON(page->mapping != inode->i_mapping);
10092de8807bSAmir Goldstein 	e4b->bd_bitmap_page = page;
10102de8807bSAmir Goldstein 	e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
1011eee4adc7SEric Sandeen 
10122de8807bSAmir Goldstein 	if (blocks_per_page >= 2) {
10132de8807bSAmir Goldstein 		/* buddy and bitmap are on the same page */
10142de8807bSAmir Goldstein 		return 0;
1015eee4adc7SEric Sandeen 	}
1016eee4adc7SEric Sandeen 
10172de8807bSAmir Goldstein 	block++;
1018eee4adc7SEric Sandeen 	pnum = block / blocks_per_page;
10192de8807bSAmir Goldstein 	poff = block % blocks_per_page;
10202de8807bSAmir Goldstein 	page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
10212de8807bSAmir Goldstein 	if (!page)
10222de8807bSAmir Goldstein 		return -EIO;
10232de8807bSAmir Goldstein 	BUG_ON(page->mapping != inode->i_mapping);
10242de8807bSAmir Goldstein 	e4b->bd_buddy_page = page;
10252de8807bSAmir Goldstein 	return 0;
1026eee4adc7SEric Sandeen }
1027eee4adc7SEric Sandeen 
10282de8807bSAmir Goldstein static void ext4_mb_put_buddy_page_lock(struct ext4_buddy *e4b)
10292de8807bSAmir Goldstein {
10302de8807bSAmir Goldstein 	if (e4b->bd_bitmap_page) {
10312de8807bSAmir Goldstein 		unlock_page(e4b->bd_bitmap_page);
10322de8807bSAmir Goldstein 		page_cache_release(e4b->bd_bitmap_page);
10332de8807bSAmir Goldstein 	}
10342de8807bSAmir Goldstein 	if (e4b->bd_buddy_page) {
10352de8807bSAmir Goldstein 		unlock_page(e4b->bd_buddy_page);
10362de8807bSAmir Goldstein 		page_cache_release(e4b->bd_buddy_page);
10372de8807bSAmir Goldstein 	}
1038eee4adc7SEric Sandeen }
1039eee4adc7SEric Sandeen 
1040eee4adc7SEric Sandeen /*
10418a57d9d6SCurt Wohlgemuth  * Locking note:  This routine calls ext4_mb_init_cache(), which takes the
10428a57d9d6SCurt Wohlgemuth  * block group lock of all groups for this page; do not hold the BG lock when
10438a57d9d6SCurt Wohlgemuth  * calling this routine!
10448a57d9d6SCurt Wohlgemuth  */
1045b6a758ecSAneesh Kumar K.V static noinline_for_stack
1046b6a758ecSAneesh Kumar K.V int ext4_mb_init_group(struct super_block *sb, ext4_group_t group)
1047b6a758ecSAneesh Kumar K.V {
1048b6a758ecSAneesh Kumar K.V 
1049b6a758ecSAneesh Kumar K.V 	struct ext4_group_info *this_grp;
10502de8807bSAmir Goldstein 	struct ext4_buddy e4b;
10512de8807bSAmir Goldstein 	struct page *page;
10522de8807bSAmir Goldstein 	int ret = 0;
1053b6a758ecSAneesh Kumar K.V 
1054b6a758ecSAneesh Kumar K.V 	mb_debug(1, "init group %u\n", group);
1055b6a758ecSAneesh Kumar K.V 	this_grp = ext4_get_group_info(sb, group);
1056b6a758ecSAneesh Kumar K.V 	/*
105708c3a813SAneesh Kumar K.V 	 * This ensures that we don't reinit the buddy cache
105808c3a813SAneesh Kumar K.V 	 * page which map to the group from which we are already
105908c3a813SAneesh Kumar K.V 	 * allocating. If we are looking at the buddy cache we would
106008c3a813SAneesh Kumar K.V 	 * have taken a reference using ext4_mb_load_buddy and that
10612de8807bSAmir Goldstein 	 * would have pinned buddy page to page cache.
1062b6a758ecSAneesh Kumar K.V 	 */
10632de8807bSAmir Goldstein 	ret = ext4_mb_get_buddy_page_lock(sb, group, &e4b);
10642de8807bSAmir Goldstein 	if (ret || !EXT4_MB_GRP_NEED_INIT(this_grp)) {
1065b6a758ecSAneesh Kumar K.V 		/*
1066b6a758ecSAneesh Kumar K.V 		 * somebody initialized the group
1067b6a758ecSAneesh Kumar K.V 		 * return without doing anything
1068b6a758ecSAneesh Kumar K.V 		 */
1069b6a758ecSAneesh Kumar K.V 		goto err;
1070b6a758ecSAneesh Kumar K.V 	}
10712de8807bSAmir Goldstein 
10722de8807bSAmir Goldstein 	page = e4b.bd_bitmap_page;
1073b6a758ecSAneesh Kumar K.V 	ret = ext4_mb_init_cache(page, NULL);
10742de8807bSAmir Goldstein 	if (ret)
1075b6a758ecSAneesh Kumar K.V 		goto err;
10762de8807bSAmir Goldstein 	if (!PageUptodate(page)) {
1077b6a758ecSAneesh Kumar K.V 		ret = -EIO;
1078b6a758ecSAneesh Kumar K.V 		goto err;
1079b6a758ecSAneesh Kumar K.V 	}
1080b6a758ecSAneesh Kumar K.V 	mark_page_accessed(page);
1081b6a758ecSAneesh Kumar K.V 
10822de8807bSAmir Goldstein 	if (e4b.bd_buddy_page == NULL) {
1083b6a758ecSAneesh Kumar K.V 		/*
1084b6a758ecSAneesh Kumar K.V 		 * If both the bitmap and buddy are in
1085b6a758ecSAneesh Kumar K.V 		 * the same page we don't need to force
1086b6a758ecSAneesh Kumar K.V 		 * init the buddy
1087b6a758ecSAneesh Kumar K.V 		 */
10882de8807bSAmir Goldstein 		ret = 0;
1089b6a758ecSAneesh Kumar K.V 		goto err;
1090b6a758ecSAneesh Kumar K.V 	}
10912de8807bSAmir Goldstein 	/* init buddy cache */
10922de8807bSAmir Goldstein 	page = e4b.bd_buddy_page;
10932de8807bSAmir Goldstein 	ret = ext4_mb_init_cache(page, e4b.bd_bitmap);
10942de8807bSAmir Goldstein 	if (ret)
10952de8807bSAmir Goldstein 		goto err;
10962de8807bSAmir Goldstein 	if (!PageUptodate(page)) {
1097b6a758ecSAneesh Kumar K.V 		ret = -EIO;
1098b6a758ecSAneesh Kumar K.V 		goto err;
1099b6a758ecSAneesh Kumar K.V 	}
1100b6a758ecSAneesh Kumar K.V 	mark_page_accessed(page);
1101b6a758ecSAneesh Kumar K.V err:
11022de8807bSAmir Goldstein 	ext4_mb_put_buddy_page_lock(&e4b);
1103b6a758ecSAneesh Kumar K.V 	return ret;
1104b6a758ecSAneesh Kumar K.V }
1105b6a758ecSAneesh Kumar K.V 
11068a57d9d6SCurt Wohlgemuth /*
11078a57d9d6SCurt Wohlgemuth  * Locking note:  This routine calls ext4_mb_init_cache(), which takes the
11088a57d9d6SCurt Wohlgemuth  * block group lock of all groups for this page; do not hold the BG lock when
11098a57d9d6SCurt Wohlgemuth  * calling this routine!
11108a57d9d6SCurt Wohlgemuth  */
11114ddfef7bSEric Sandeen static noinline_for_stack int
11124ddfef7bSEric Sandeen ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
1113c9de560dSAlex Tomas 					struct ext4_buddy *e4b)
1114c9de560dSAlex Tomas {
1115c9de560dSAlex Tomas 	int blocks_per_page;
1116c9de560dSAlex Tomas 	int block;
1117c9de560dSAlex Tomas 	int pnum;
1118c9de560dSAlex Tomas 	int poff;
1119c9de560dSAlex Tomas 	struct page *page;
1120fdf6c7a7SShen Feng 	int ret;
1121920313a7SAneesh Kumar K.V 	struct ext4_group_info *grp;
1122920313a7SAneesh Kumar K.V 	struct ext4_sb_info *sbi = EXT4_SB(sb);
1123920313a7SAneesh Kumar K.V 	struct inode *inode = sbi->s_buddy_cache;
1124c9de560dSAlex Tomas 
11256ba495e9STheodore Ts'o 	mb_debug(1, "load group %u\n", group);
1126c9de560dSAlex Tomas 
1127c9de560dSAlex Tomas 	blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
1128920313a7SAneesh Kumar K.V 	grp = ext4_get_group_info(sb, group);
1129c9de560dSAlex Tomas 
1130c9de560dSAlex Tomas 	e4b->bd_blkbits = sb->s_blocksize_bits;
1131529da704STao Ma 	e4b->bd_info = grp;
1132c9de560dSAlex Tomas 	e4b->bd_sb = sb;
1133c9de560dSAlex Tomas 	e4b->bd_group = group;
1134c9de560dSAlex Tomas 	e4b->bd_buddy_page = NULL;
1135c9de560dSAlex Tomas 	e4b->bd_bitmap_page = NULL;
1136c9de560dSAlex Tomas 
1137f41c0750SAneesh Kumar K.V 	if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
1138f41c0750SAneesh Kumar K.V 		/*
1139f41c0750SAneesh Kumar K.V 		 * we need full data about the group
1140f41c0750SAneesh Kumar K.V 		 * to make a good selection
1141f41c0750SAneesh Kumar K.V 		 */
1142f41c0750SAneesh Kumar K.V 		ret = ext4_mb_init_group(sb, group);
1143f41c0750SAneesh Kumar K.V 		if (ret)
1144f41c0750SAneesh Kumar K.V 			return ret;
1145f41c0750SAneesh Kumar K.V 	}
1146f41c0750SAneesh Kumar K.V 
1147c9de560dSAlex Tomas 	/*
1148c9de560dSAlex Tomas 	 * the buddy cache inode stores the block bitmap
1149c9de560dSAlex Tomas 	 * and buddy information in consecutive blocks.
1150c9de560dSAlex Tomas 	 * So for each group we need two blocks.
1151c9de560dSAlex Tomas 	 */
1152c9de560dSAlex Tomas 	block = group * 2;
1153c9de560dSAlex Tomas 	pnum = block / blocks_per_page;
1154c9de560dSAlex Tomas 	poff = block % blocks_per_page;
1155c9de560dSAlex Tomas 
1156c9de560dSAlex Tomas 	/* we could use find_or_create_page(), but it locks page
1157c9de560dSAlex Tomas 	 * what we'd like to avoid in fast path ... */
1158c9de560dSAlex Tomas 	page = find_get_page(inode->i_mapping, pnum);
1159c9de560dSAlex Tomas 	if (page == NULL || !PageUptodate(page)) {
1160c9de560dSAlex Tomas 		if (page)
1161920313a7SAneesh Kumar K.V 			/*
1162920313a7SAneesh Kumar K.V 			 * drop the page reference and try
1163920313a7SAneesh Kumar K.V 			 * to get the page with lock. If we
1164920313a7SAneesh Kumar K.V 			 * are not uptodate that implies
1165920313a7SAneesh Kumar K.V 			 * somebody just created the page but
1166920313a7SAneesh Kumar K.V 			 * is yet to initialize the same. So
1167920313a7SAneesh Kumar K.V 			 * wait for it to initialize.
1168920313a7SAneesh Kumar K.V 			 */
1169c9de560dSAlex Tomas 			page_cache_release(page);
1170c9de560dSAlex Tomas 		page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1171c9de560dSAlex Tomas 		if (page) {
1172c9de560dSAlex Tomas 			BUG_ON(page->mapping != inode->i_mapping);
1173c9de560dSAlex Tomas 			if (!PageUptodate(page)) {
1174fdf6c7a7SShen Feng 				ret = ext4_mb_init_cache(page, NULL);
1175fdf6c7a7SShen Feng 				if (ret) {
1176fdf6c7a7SShen Feng 					unlock_page(page);
1177fdf6c7a7SShen Feng 					goto err;
1178fdf6c7a7SShen Feng 				}
1179c9de560dSAlex Tomas 				mb_cmp_bitmaps(e4b, page_address(page) +
1180c9de560dSAlex Tomas 					       (poff * sb->s_blocksize));
1181c9de560dSAlex Tomas 			}
1182c9de560dSAlex Tomas 			unlock_page(page);
1183c9de560dSAlex Tomas 		}
1184c9de560dSAlex Tomas 	}
1185fdf6c7a7SShen Feng 	if (page == NULL || !PageUptodate(page)) {
1186fdf6c7a7SShen Feng 		ret = -EIO;
1187c9de560dSAlex Tomas 		goto err;
1188fdf6c7a7SShen Feng 	}
1189c9de560dSAlex Tomas 	e4b->bd_bitmap_page = page;
1190c9de560dSAlex Tomas 	e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
1191c9de560dSAlex Tomas 	mark_page_accessed(page);
1192c9de560dSAlex Tomas 
1193c9de560dSAlex Tomas 	block++;
1194c9de560dSAlex Tomas 	pnum = block / blocks_per_page;
1195c9de560dSAlex Tomas 	poff = block % blocks_per_page;
1196c9de560dSAlex Tomas 
1197c9de560dSAlex Tomas 	page = find_get_page(inode->i_mapping, pnum);
1198c9de560dSAlex Tomas 	if (page == NULL || !PageUptodate(page)) {
1199c9de560dSAlex Tomas 		if (page)
1200c9de560dSAlex Tomas 			page_cache_release(page);
1201c9de560dSAlex Tomas 		page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
1202c9de560dSAlex Tomas 		if (page) {
1203c9de560dSAlex Tomas 			BUG_ON(page->mapping != inode->i_mapping);
1204fdf6c7a7SShen Feng 			if (!PageUptodate(page)) {
1205fdf6c7a7SShen Feng 				ret = ext4_mb_init_cache(page, e4b->bd_bitmap);
1206fdf6c7a7SShen Feng 				if (ret) {
1207fdf6c7a7SShen Feng 					unlock_page(page);
1208fdf6c7a7SShen Feng 					goto err;
1209fdf6c7a7SShen Feng 				}
1210fdf6c7a7SShen Feng 			}
1211c9de560dSAlex Tomas 			unlock_page(page);
1212c9de560dSAlex Tomas 		}
1213c9de560dSAlex Tomas 	}
1214fdf6c7a7SShen Feng 	if (page == NULL || !PageUptodate(page)) {
1215fdf6c7a7SShen Feng 		ret = -EIO;
1216c9de560dSAlex Tomas 		goto err;
1217fdf6c7a7SShen Feng 	}
1218c9de560dSAlex Tomas 	e4b->bd_buddy_page = page;
1219c9de560dSAlex Tomas 	e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
1220c9de560dSAlex Tomas 	mark_page_accessed(page);
1221c9de560dSAlex Tomas 
1222c9de560dSAlex Tomas 	BUG_ON(e4b->bd_bitmap_page == NULL);
1223c9de560dSAlex Tomas 	BUG_ON(e4b->bd_buddy_page == NULL);
1224c9de560dSAlex Tomas 
1225c9de560dSAlex Tomas 	return 0;
1226c9de560dSAlex Tomas 
1227c9de560dSAlex Tomas err:
122826626f11SYang Ruirui 	if (page)
122926626f11SYang Ruirui 		page_cache_release(page);
1230c9de560dSAlex Tomas 	if (e4b->bd_bitmap_page)
1231c9de560dSAlex Tomas 		page_cache_release(e4b->bd_bitmap_page);
1232c9de560dSAlex Tomas 	if (e4b->bd_buddy_page)
1233c9de560dSAlex Tomas 		page_cache_release(e4b->bd_buddy_page);
1234c9de560dSAlex Tomas 	e4b->bd_buddy = NULL;
1235c9de560dSAlex Tomas 	e4b->bd_bitmap = NULL;
1236fdf6c7a7SShen Feng 	return ret;
1237c9de560dSAlex Tomas }
1238c9de560dSAlex Tomas 
1239e39e07fdSJing Zhang static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
1240c9de560dSAlex Tomas {
1241c9de560dSAlex Tomas 	if (e4b->bd_bitmap_page)
1242c9de560dSAlex Tomas 		page_cache_release(e4b->bd_bitmap_page);
1243c9de560dSAlex Tomas 	if (e4b->bd_buddy_page)
1244c9de560dSAlex Tomas 		page_cache_release(e4b->bd_buddy_page);
1245c9de560dSAlex Tomas }
1246c9de560dSAlex Tomas 
1247c9de560dSAlex Tomas 
1248c9de560dSAlex Tomas static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
1249c9de560dSAlex Tomas {
1250c9de560dSAlex Tomas 	int order = 1;
1251c9de560dSAlex Tomas 	void *bb;
1252c9de560dSAlex Tomas 
1253c9de560dSAlex Tomas 	BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
1254c9de560dSAlex Tomas 	BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
1255c9de560dSAlex Tomas 
1256c9de560dSAlex Tomas 	bb = EXT4_MB_BUDDY(e4b);
1257c9de560dSAlex Tomas 	while (order <= e4b->bd_blkbits + 1) {
1258c9de560dSAlex Tomas 		block = block >> 1;
1259c9de560dSAlex Tomas 		if (!mb_test_bit(block, bb)) {
1260c9de560dSAlex Tomas 			/* this block is part of buddy of order 'order' */
1261c9de560dSAlex Tomas 			return order;
1262c9de560dSAlex Tomas 		}
1263c9de560dSAlex Tomas 		bb += 1 << (e4b->bd_blkbits - order);
1264c9de560dSAlex Tomas 		order++;
1265c9de560dSAlex Tomas 	}
1266c9de560dSAlex Tomas 	return 0;
1267c9de560dSAlex Tomas }
1268c9de560dSAlex Tomas 
1269955ce5f5SAneesh Kumar K.V static void mb_clear_bits(void *bm, int cur, int len)
1270c9de560dSAlex Tomas {
1271c9de560dSAlex Tomas 	__u32 *addr;
1272c9de560dSAlex Tomas 
1273c9de560dSAlex Tomas 	len = cur + len;
1274c9de560dSAlex Tomas 	while (cur < len) {
1275c9de560dSAlex Tomas 		if ((cur & 31) == 0 && (len - cur) >= 32) {
1276c9de560dSAlex Tomas 			/* fast path: clear whole word at once */
1277c9de560dSAlex Tomas 			addr = bm + (cur >> 3);
1278c9de560dSAlex Tomas 			*addr = 0;
1279c9de560dSAlex Tomas 			cur += 32;
1280c9de560dSAlex Tomas 			continue;
1281c9de560dSAlex Tomas 		}
1282e8134b27SAneesh Kumar K.V 		mb_clear_bit(cur, bm);
1283c9de560dSAlex Tomas 		cur++;
1284c9de560dSAlex Tomas 	}
1285c9de560dSAlex Tomas }
1286c9de560dSAlex Tomas 
1287c3e94d1dSYongqiang Yang void ext4_set_bits(void *bm, int cur, int len)
1288c9de560dSAlex Tomas {
1289c9de560dSAlex Tomas 	__u32 *addr;
1290c9de560dSAlex Tomas 
1291c9de560dSAlex Tomas 	len = cur + len;
1292c9de560dSAlex Tomas 	while (cur < len) {
1293c9de560dSAlex Tomas 		if ((cur & 31) == 0 && (len - cur) >= 32) {
1294c9de560dSAlex Tomas 			/* fast path: set whole word at once */
1295c9de560dSAlex Tomas 			addr = bm + (cur >> 3);
1296c9de560dSAlex Tomas 			*addr = 0xffffffff;
1297c9de560dSAlex Tomas 			cur += 32;
1298c9de560dSAlex Tomas 			continue;
1299c9de560dSAlex Tomas 		}
1300e8134b27SAneesh Kumar K.V 		mb_set_bit(cur, bm);
1301c9de560dSAlex Tomas 		cur++;
1302c9de560dSAlex Tomas 	}
1303c9de560dSAlex Tomas }
1304c9de560dSAlex Tomas 
13057e5a8cddSShen Feng static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
1306c9de560dSAlex Tomas 			  int first, int count)
1307c9de560dSAlex Tomas {
1308c9de560dSAlex Tomas 	int block = 0;
1309c9de560dSAlex Tomas 	int max = 0;
1310c9de560dSAlex Tomas 	int order;
1311c9de560dSAlex Tomas 	void *buddy;
1312c9de560dSAlex Tomas 	void *buddy2;
1313c9de560dSAlex Tomas 	struct super_block *sb = e4b->bd_sb;
1314c9de560dSAlex Tomas 
1315c9de560dSAlex Tomas 	BUG_ON(first + count > (sb->s_blocksize << 3));
1316bc8e6740SVincent Minet 	assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
1317c9de560dSAlex Tomas 	mb_check_buddy(e4b);
1318c9de560dSAlex Tomas 	mb_free_blocks_double(inode, e4b, first, count);
1319c9de560dSAlex Tomas 
1320c9de560dSAlex Tomas 	e4b->bd_info->bb_free += count;
1321c9de560dSAlex Tomas 	if (first < e4b->bd_info->bb_first_free)
1322c9de560dSAlex Tomas 		e4b->bd_info->bb_first_free = first;
1323c9de560dSAlex Tomas 
1324c9de560dSAlex Tomas 	/* let's maintain fragments counter */
1325c9de560dSAlex Tomas 	if (first != 0)
1326c9de560dSAlex Tomas 		block = !mb_test_bit(first - 1, EXT4_MB_BITMAP(e4b));
1327c9de560dSAlex Tomas 	if (first + count < EXT4_SB(sb)->s_mb_maxs[0])
1328c9de560dSAlex Tomas 		max = !mb_test_bit(first + count, EXT4_MB_BITMAP(e4b));
1329c9de560dSAlex Tomas 	if (block && max)
1330c9de560dSAlex Tomas 		e4b->bd_info->bb_fragments--;
1331c9de560dSAlex Tomas 	else if (!block && !max)
1332c9de560dSAlex Tomas 		e4b->bd_info->bb_fragments++;
1333c9de560dSAlex Tomas 
1334c9de560dSAlex Tomas 	/* let's maintain buddy itself */
1335c9de560dSAlex Tomas 	while (count-- > 0) {
1336c9de560dSAlex Tomas 		block = first++;
1337c9de560dSAlex Tomas 		order = 0;
1338c9de560dSAlex Tomas 
1339c9de560dSAlex Tomas 		if (!mb_test_bit(block, EXT4_MB_BITMAP(e4b))) {
1340c9de560dSAlex Tomas 			ext4_fsblk_t blocknr;
13415661bd68SAkinobu Mita 
13425661bd68SAkinobu Mita 			blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
134353accfa9STheodore Ts'o 			blocknr += EXT4_C2B(EXT4_SB(sb), block);
13445d1b1b3fSAneesh Kumar K.V 			ext4_grp_locked_error(sb, e4b->bd_group,
1345e29136f8STheodore Ts'o 					      inode ? inode->i_ino : 0,
1346e29136f8STheodore Ts'o 					      blocknr,
1347e29136f8STheodore Ts'o 					      "freeing already freed block "
1348e29136f8STheodore Ts'o 					      "(bit %u)", block);
1349c9de560dSAlex Tomas 		}
1350c9de560dSAlex Tomas 		mb_clear_bit(block, EXT4_MB_BITMAP(e4b));
1351c9de560dSAlex Tomas 		e4b->bd_info->bb_counters[order]++;
1352c9de560dSAlex Tomas 
1353c9de560dSAlex Tomas 		/* start of the buddy */
1354c9de560dSAlex Tomas 		buddy = mb_find_buddy(e4b, order, &max);
1355c9de560dSAlex Tomas 
1356c9de560dSAlex Tomas 		do {
1357c9de560dSAlex Tomas 			block &= ~1UL;
1358c9de560dSAlex Tomas 			if (mb_test_bit(block, buddy) ||
1359c9de560dSAlex Tomas 					mb_test_bit(block + 1, buddy))
1360c9de560dSAlex Tomas 				break;
1361c9de560dSAlex Tomas 
1362c9de560dSAlex Tomas 			/* both the buddies are free, try to coalesce them */
1363c9de560dSAlex Tomas 			buddy2 = mb_find_buddy(e4b, order + 1, &max);
1364c9de560dSAlex Tomas 
1365c9de560dSAlex Tomas 			if (!buddy2)
1366c9de560dSAlex Tomas 				break;
1367c9de560dSAlex Tomas 
1368c9de560dSAlex Tomas 			if (order > 0) {
1369c9de560dSAlex Tomas 				/* for special purposes, we don't set
1370c9de560dSAlex Tomas 				 * free bits in bitmap */
1371c9de560dSAlex Tomas 				mb_set_bit(block, buddy);
1372c9de560dSAlex Tomas 				mb_set_bit(block + 1, buddy);
1373c9de560dSAlex Tomas 			}
1374c9de560dSAlex Tomas 			e4b->bd_info->bb_counters[order]--;
1375c9de560dSAlex Tomas 			e4b->bd_info->bb_counters[order]--;
1376c9de560dSAlex Tomas 
1377c9de560dSAlex Tomas 			block = block >> 1;
1378c9de560dSAlex Tomas 			order++;
1379c9de560dSAlex Tomas 			e4b->bd_info->bb_counters[order]++;
1380c9de560dSAlex Tomas 
1381c9de560dSAlex Tomas 			mb_clear_bit(block, buddy2);
1382c9de560dSAlex Tomas 			buddy = buddy2;
1383c9de560dSAlex Tomas 		} while (1);
1384c9de560dSAlex Tomas 	}
13858a57d9d6SCurt Wohlgemuth 	mb_set_largest_free_order(sb, e4b->bd_info);
1386c9de560dSAlex Tomas 	mb_check_buddy(e4b);
1387c9de560dSAlex Tomas }
1388c9de560dSAlex Tomas 
1389c9de560dSAlex Tomas static int mb_find_extent(struct ext4_buddy *e4b, int order, int block,
1390c9de560dSAlex Tomas 				int needed, struct ext4_free_extent *ex)
1391c9de560dSAlex Tomas {
1392c9de560dSAlex Tomas 	int next = block;
1393c9de560dSAlex Tomas 	int max;
1394c9de560dSAlex Tomas 	int ord;
1395c9de560dSAlex Tomas 	void *buddy;
1396c9de560dSAlex Tomas 
1397bc8e6740SVincent Minet 	assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
1398c9de560dSAlex Tomas 	BUG_ON(ex == NULL);
1399c9de560dSAlex Tomas 
1400c9de560dSAlex Tomas 	buddy = mb_find_buddy(e4b, order, &max);
1401c9de560dSAlex Tomas 	BUG_ON(buddy == NULL);
1402c9de560dSAlex Tomas 	BUG_ON(block >= max);
1403c9de560dSAlex Tomas 	if (mb_test_bit(block, buddy)) {
1404c9de560dSAlex Tomas 		ex->fe_len = 0;
1405c9de560dSAlex Tomas 		ex->fe_start = 0;
1406c9de560dSAlex Tomas 		ex->fe_group = 0;
1407c9de560dSAlex Tomas 		return 0;
1408c9de560dSAlex Tomas 	}
1409c9de560dSAlex Tomas 
1410c9de560dSAlex Tomas 	/* FIXME dorp order completely ? */
1411c9de560dSAlex Tomas 	if (likely(order == 0)) {
1412c9de560dSAlex Tomas 		/* find actual order */
1413c9de560dSAlex Tomas 		order = mb_find_order_for_block(e4b, block);
1414c9de560dSAlex Tomas 		block = block >> order;
1415c9de560dSAlex Tomas 	}
1416c9de560dSAlex Tomas 
1417c9de560dSAlex Tomas 	ex->fe_len = 1 << order;
1418c9de560dSAlex Tomas 	ex->fe_start = block << order;
1419c9de560dSAlex Tomas 	ex->fe_group = e4b->bd_group;
1420c9de560dSAlex Tomas 
1421c9de560dSAlex Tomas 	/* calc difference from given start */
1422c9de560dSAlex Tomas 	next = next - ex->fe_start;
1423c9de560dSAlex Tomas 	ex->fe_len -= next;
1424c9de560dSAlex Tomas 	ex->fe_start += next;
1425c9de560dSAlex Tomas 
1426c9de560dSAlex Tomas 	while (needed > ex->fe_len &&
1427c9de560dSAlex Tomas 	       (buddy = mb_find_buddy(e4b, order, &max))) {
1428c9de560dSAlex Tomas 
1429c9de560dSAlex Tomas 		if (block + 1 >= max)
1430c9de560dSAlex Tomas 			break;
1431c9de560dSAlex Tomas 
1432c9de560dSAlex Tomas 		next = (block + 1) * (1 << order);
1433c9de560dSAlex Tomas 		if (mb_test_bit(next, EXT4_MB_BITMAP(e4b)))
1434c9de560dSAlex Tomas 			break;
1435c9de560dSAlex Tomas 
1436c9de560dSAlex Tomas 		ord = mb_find_order_for_block(e4b, next);
1437c9de560dSAlex Tomas 
1438c9de560dSAlex Tomas 		order = ord;
1439c9de560dSAlex Tomas 		block = next >> order;
1440c9de560dSAlex Tomas 		ex->fe_len += 1 << order;
1441c9de560dSAlex Tomas 	}
1442c9de560dSAlex Tomas 
1443c9de560dSAlex Tomas 	BUG_ON(ex->fe_start + ex->fe_len > (1 << (e4b->bd_blkbits + 3)));
1444c9de560dSAlex Tomas 	return ex->fe_len;
1445c9de560dSAlex Tomas }
1446c9de560dSAlex Tomas 
1447c9de560dSAlex Tomas static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
1448c9de560dSAlex Tomas {
1449c9de560dSAlex Tomas 	int ord;
1450c9de560dSAlex Tomas 	int mlen = 0;
1451c9de560dSAlex Tomas 	int max = 0;
1452c9de560dSAlex Tomas 	int cur;
1453c9de560dSAlex Tomas 	int start = ex->fe_start;
1454c9de560dSAlex Tomas 	int len = ex->fe_len;
1455c9de560dSAlex Tomas 	unsigned ret = 0;
1456c9de560dSAlex Tomas 	int len0 = len;
1457c9de560dSAlex Tomas 	void *buddy;
1458c9de560dSAlex Tomas 
1459c9de560dSAlex Tomas 	BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
1460c9de560dSAlex Tomas 	BUG_ON(e4b->bd_group != ex->fe_group);
1461bc8e6740SVincent Minet 	assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
1462c9de560dSAlex Tomas 	mb_check_buddy(e4b);
1463c9de560dSAlex Tomas 	mb_mark_used_double(e4b, start, len);
1464c9de560dSAlex Tomas 
1465c9de560dSAlex Tomas 	e4b->bd_info->bb_free -= len;
1466c9de560dSAlex Tomas 	if (e4b->bd_info->bb_first_free == start)
1467c9de560dSAlex Tomas 		e4b->bd_info->bb_first_free += len;
1468c9de560dSAlex Tomas 
1469c9de560dSAlex Tomas 	/* let's maintain fragments counter */
1470c9de560dSAlex Tomas 	if (start != 0)
1471c9de560dSAlex Tomas 		mlen = !mb_test_bit(start - 1, EXT4_MB_BITMAP(e4b));
1472c9de560dSAlex Tomas 	if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
1473c9de560dSAlex Tomas 		max = !mb_test_bit(start + len, EXT4_MB_BITMAP(e4b));
1474c9de560dSAlex Tomas 	if (mlen && max)
1475c9de560dSAlex Tomas 		e4b->bd_info->bb_fragments++;
1476c9de560dSAlex Tomas 	else if (!mlen && !max)
1477c9de560dSAlex Tomas 		e4b->bd_info->bb_fragments--;
1478c9de560dSAlex Tomas 
1479c9de560dSAlex Tomas 	/* let's maintain buddy itself */
1480c9de560dSAlex Tomas 	while (len) {
1481c9de560dSAlex Tomas 		ord = mb_find_order_for_block(e4b, start);
1482c9de560dSAlex Tomas 
1483c9de560dSAlex Tomas 		if (((start >> ord) << ord) == start && len >= (1 << ord)) {
1484c9de560dSAlex Tomas 			/* the whole chunk may be allocated at once! */
1485c9de560dSAlex Tomas 			mlen = 1 << ord;
1486c9de560dSAlex Tomas 			buddy = mb_find_buddy(e4b, ord, &max);
1487c9de560dSAlex Tomas 			BUG_ON((start >> ord) >= max);
1488c9de560dSAlex Tomas 			mb_set_bit(start >> ord, buddy);
1489c9de560dSAlex Tomas 			e4b->bd_info->bb_counters[ord]--;
1490c9de560dSAlex Tomas 			start += mlen;
1491c9de560dSAlex Tomas 			len -= mlen;
1492c9de560dSAlex Tomas 			BUG_ON(len < 0);
1493c9de560dSAlex Tomas 			continue;
1494c9de560dSAlex Tomas 		}
1495c9de560dSAlex Tomas 
1496c9de560dSAlex Tomas 		/* store for history */
1497c9de560dSAlex Tomas 		if (ret == 0)
1498c9de560dSAlex Tomas 			ret = len | (ord << 16);
1499c9de560dSAlex Tomas 
1500c9de560dSAlex Tomas 		/* we have to split large buddy */
1501c9de560dSAlex Tomas 		BUG_ON(ord <= 0);
1502c9de560dSAlex Tomas 		buddy = mb_find_buddy(e4b, ord, &max);
1503c9de560dSAlex Tomas 		mb_set_bit(start >> ord, buddy);
1504c9de560dSAlex Tomas 		e4b->bd_info->bb_counters[ord]--;
1505c9de560dSAlex Tomas 
1506c9de560dSAlex Tomas 		ord--;
1507c9de560dSAlex Tomas 		cur = (start >> ord) & ~1U;
1508c9de560dSAlex Tomas 		buddy = mb_find_buddy(e4b, ord, &max);
1509c9de560dSAlex Tomas 		mb_clear_bit(cur, buddy);
1510c9de560dSAlex Tomas 		mb_clear_bit(cur + 1, buddy);
1511c9de560dSAlex Tomas 		e4b->bd_info->bb_counters[ord]++;
1512c9de560dSAlex Tomas 		e4b->bd_info->bb_counters[ord]++;
1513c9de560dSAlex Tomas 	}
15148a57d9d6SCurt Wohlgemuth 	mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
1515c9de560dSAlex Tomas 
1516c3e94d1dSYongqiang Yang 	ext4_set_bits(EXT4_MB_BITMAP(e4b), ex->fe_start, len0);
1517c9de560dSAlex Tomas 	mb_check_buddy(e4b);
1518c9de560dSAlex Tomas 
1519c9de560dSAlex Tomas 	return ret;
1520c9de560dSAlex Tomas }
1521c9de560dSAlex Tomas 
1522c9de560dSAlex Tomas /*
1523c9de560dSAlex Tomas  * Must be called under group lock!
1524c9de560dSAlex Tomas  */
1525c9de560dSAlex Tomas static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
1526c9de560dSAlex Tomas 					struct ext4_buddy *e4b)
1527c9de560dSAlex Tomas {
1528c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1529c9de560dSAlex Tomas 	int ret;
1530c9de560dSAlex Tomas 
1531c9de560dSAlex Tomas 	BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
1532c9de560dSAlex Tomas 	BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1533c9de560dSAlex Tomas 
1534c9de560dSAlex Tomas 	ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
1535c9de560dSAlex Tomas 	ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
1536c9de560dSAlex Tomas 	ret = mb_mark_used(e4b, &ac->ac_b_ex);
1537c9de560dSAlex Tomas 
1538c9de560dSAlex Tomas 	/* preallocation can change ac_b_ex, thus we store actually
1539c9de560dSAlex Tomas 	 * allocated blocks for history */
1540c9de560dSAlex Tomas 	ac->ac_f_ex = ac->ac_b_ex;
1541c9de560dSAlex Tomas 
1542c9de560dSAlex Tomas 	ac->ac_status = AC_STATUS_FOUND;
1543c9de560dSAlex Tomas 	ac->ac_tail = ret & 0xffff;
1544c9de560dSAlex Tomas 	ac->ac_buddy = ret >> 16;
1545c9de560dSAlex Tomas 
1546c3a326a6SAneesh Kumar K.V 	/*
1547c3a326a6SAneesh Kumar K.V 	 * take the page reference. We want the page to be pinned
1548c3a326a6SAneesh Kumar K.V 	 * so that we don't get a ext4_mb_init_cache_call for this
1549c3a326a6SAneesh Kumar K.V 	 * group until we update the bitmap. That would mean we
1550c3a326a6SAneesh Kumar K.V 	 * double allocate blocks. The reference is dropped
1551c3a326a6SAneesh Kumar K.V 	 * in ext4_mb_release_context
1552c3a326a6SAneesh Kumar K.V 	 */
1553c9de560dSAlex Tomas 	ac->ac_bitmap_page = e4b->bd_bitmap_page;
1554c9de560dSAlex Tomas 	get_page(ac->ac_bitmap_page);
1555c9de560dSAlex Tomas 	ac->ac_buddy_page = e4b->bd_buddy_page;
1556c9de560dSAlex Tomas 	get_page(ac->ac_buddy_page);
1557c9de560dSAlex Tomas 	/* store last allocated for subsequent stream allocation */
15584ba74d00STheodore Ts'o 	if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
1559c9de560dSAlex Tomas 		spin_lock(&sbi->s_md_lock);
1560c9de560dSAlex Tomas 		sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
1561c9de560dSAlex Tomas 		sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
1562c9de560dSAlex Tomas 		spin_unlock(&sbi->s_md_lock);
1563c9de560dSAlex Tomas 	}
1564c9de560dSAlex Tomas }
1565c9de560dSAlex Tomas 
1566c9de560dSAlex Tomas /*
1567c9de560dSAlex Tomas  * regular allocator, for general purposes allocation
1568c9de560dSAlex Tomas  */
1569c9de560dSAlex Tomas 
1570c9de560dSAlex Tomas static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
1571c9de560dSAlex Tomas 					struct ext4_buddy *e4b,
1572c9de560dSAlex Tomas 					int finish_group)
1573c9de560dSAlex Tomas {
1574c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1575c9de560dSAlex Tomas 	struct ext4_free_extent *bex = &ac->ac_b_ex;
1576c9de560dSAlex Tomas 	struct ext4_free_extent *gex = &ac->ac_g_ex;
1577c9de560dSAlex Tomas 	struct ext4_free_extent ex;
1578c9de560dSAlex Tomas 	int max;
1579c9de560dSAlex Tomas 
1580032115fcSAneesh Kumar K.V 	if (ac->ac_status == AC_STATUS_FOUND)
1581032115fcSAneesh Kumar K.V 		return;
1582c9de560dSAlex Tomas 	/*
1583c9de560dSAlex Tomas 	 * We don't want to scan for a whole year
1584c9de560dSAlex Tomas 	 */
1585c9de560dSAlex Tomas 	if (ac->ac_found > sbi->s_mb_max_to_scan &&
1586c9de560dSAlex Tomas 			!(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1587c9de560dSAlex Tomas 		ac->ac_status = AC_STATUS_BREAK;
1588c9de560dSAlex Tomas 		return;
1589c9de560dSAlex Tomas 	}
1590c9de560dSAlex Tomas 
1591c9de560dSAlex Tomas 	/*
1592c9de560dSAlex Tomas 	 * Haven't found good chunk so far, let's continue
1593c9de560dSAlex Tomas 	 */
1594c9de560dSAlex Tomas 	if (bex->fe_len < gex->fe_len)
1595c9de560dSAlex Tomas 		return;
1596c9de560dSAlex Tomas 
1597c9de560dSAlex Tomas 	if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
1598c9de560dSAlex Tomas 			&& bex->fe_group == e4b->bd_group) {
1599c9de560dSAlex Tomas 		/* recheck chunk's availability - we don't know
1600c9de560dSAlex Tomas 		 * when it was found (within this lock-unlock
1601c9de560dSAlex Tomas 		 * period or not) */
1602c9de560dSAlex Tomas 		max = mb_find_extent(e4b, 0, bex->fe_start, gex->fe_len, &ex);
1603c9de560dSAlex Tomas 		if (max >= gex->fe_len) {
1604c9de560dSAlex Tomas 			ext4_mb_use_best_found(ac, e4b);
1605c9de560dSAlex Tomas 			return;
1606c9de560dSAlex Tomas 		}
1607c9de560dSAlex Tomas 	}
1608c9de560dSAlex Tomas }
1609c9de560dSAlex Tomas 
1610c9de560dSAlex Tomas /*
1611c9de560dSAlex Tomas  * The routine checks whether found extent is good enough. If it is,
1612c9de560dSAlex Tomas  * then the extent gets marked used and flag is set to the context
1613c9de560dSAlex Tomas  * to stop scanning. Otherwise, the extent is compared with the
1614c9de560dSAlex Tomas  * previous found extent and if new one is better, then it's stored
1615c9de560dSAlex Tomas  * in the context. Later, the best found extent will be used, if
1616c9de560dSAlex Tomas  * mballoc can't find good enough extent.
1617c9de560dSAlex Tomas  *
1618c9de560dSAlex Tomas  * FIXME: real allocation policy is to be designed yet!
1619c9de560dSAlex Tomas  */
1620c9de560dSAlex Tomas static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
1621c9de560dSAlex Tomas 					struct ext4_free_extent *ex,
1622c9de560dSAlex Tomas 					struct ext4_buddy *e4b)
1623c9de560dSAlex Tomas {
1624c9de560dSAlex Tomas 	struct ext4_free_extent *bex = &ac->ac_b_ex;
1625c9de560dSAlex Tomas 	struct ext4_free_extent *gex = &ac->ac_g_ex;
1626c9de560dSAlex Tomas 
1627c9de560dSAlex Tomas 	BUG_ON(ex->fe_len <= 0);
16287137d7a4STheodore Ts'o 	BUG_ON(ex->fe_len > EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
16297137d7a4STheodore Ts'o 	BUG_ON(ex->fe_start >= EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
1630c9de560dSAlex Tomas 	BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
1631c9de560dSAlex Tomas 
1632c9de560dSAlex Tomas 	ac->ac_found++;
1633c9de560dSAlex Tomas 
1634c9de560dSAlex Tomas 	/*
1635c9de560dSAlex Tomas 	 * The special case - take what you catch first
1636c9de560dSAlex Tomas 	 */
1637c9de560dSAlex Tomas 	if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
1638c9de560dSAlex Tomas 		*bex = *ex;
1639c9de560dSAlex Tomas 		ext4_mb_use_best_found(ac, e4b);
1640c9de560dSAlex Tomas 		return;
1641c9de560dSAlex Tomas 	}
1642c9de560dSAlex Tomas 
1643c9de560dSAlex Tomas 	/*
1644c9de560dSAlex Tomas 	 * Let's check whether the chuck is good enough
1645c9de560dSAlex Tomas 	 */
1646c9de560dSAlex Tomas 	if (ex->fe_len == gex->fe_len) {
1647c9de560dSAlex Tomas 		*bex = *ex;
1648c9de560dSAlex Tomas 		ext4_mb_use_best_found(ac, e4b);
1649c9de560dSAlex Tomas 		return;
1650c9de560dSAlex Tomas 	}
1651c9de560dSAlex Tomas 
1652c9de560dSAlex Tomas 	/*
1653c9de560dSAlex Tomas 	 * If this is first found extent, just store it in the context
1654c9de560dSAlex Tomas 	 */
1655c9de560dSAlex Tomas 	if (bex->fe_len == 0) {
1656c9de560dSAlex Tomas 		*bex = *ex;
1657c9de560dSAlex Tomas 		return;
1658c9de560dSAlex Tomas 	}
1659c9de560dSAlex Tomas 
1660c9de560dSAlex Tomas 	/*
1661c9de560dSAlex Tomas 	 * If new found extent is better, store it in the context
1662c9de560dSAlex Tomas 	 */
1663c9de560dSAlex Tomas 	if (bex->fe_len < gex->fe_len) {
1664c9de560dSAlex Tomas 		/* if the request isn't satisfied, any found extent
1665c9de560dSAlex Tomas 		 * larger than previous best one is better */
1666c9de560dSAlex Tomas 		if (ex->fe_len > bex->fe_len)
1667c9de560dSAlex Tomas 			*bex = *ex;
1668c9de560dSAlex Tomas 	} else if (ex->fe_len > gex->fe_len) {
1669c9de560dSAlex Tomas 		/* if the request is satisfied, then we try to find
1670c9de560dSAlex Tomas 		 * an extent that still satisfy the request, but is
1671c9de560dSAlex Tomas 		 * smaller than previous one */
1672c9de560dSAlex Tomas 		if (ex->fe_len < bex->fe_len)
1673c9de560dSAlex Tomas 			*bex = *ex;
1674c9de560dSAlex Tomas 	}
1675c9de560dSAlex Tomas 
1676c9de560dSAlex Tomas 	ext4_mb_check_limits(ac, e4b, 0);
1677c9de560dSAlex Tomas }
1678c9de560dSAlex Tomas 
1679089ceeccSEric Sandeen static noinline_for_stack
1680089ceeccSEric Sandeen int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
1681c9de560dSAlex Tomas 					struct ext4_buddy *e4b)
1682c9de560dSAlex Tomas {
1683c9de560dSAlex Tomas 	struct ext4_free_extent ex = ac->ac_b_ex;
1684c9de560dSAlex Tomas 	ext4_group_t group = ex.fe_group;
1685c9de560dSAlex Tomas 	int max;
1686c9de560dSAlex Tomas 	int err;
1687c9de560dSAlex Tomas 
1688c9de560dSAlex Tomas 	BUG_ON(ex.fe_len <= 0);
1689c9de560dSAlex Tomas 	err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1690c9de560dSAlex Tomas 	if (err)
1691c9de560dSAlex Tomas 		return err;
1692c9de560dSAlex Tomas 
1693c9de560dSAlex Tomas 	ext4_lock_group(ac->ac_sb, group);
1694c9de560dSAlex Tomas 	max = mb_find_extent(e4b, 0, ex.fe_start, ex.fe_len, &ex);
1695c9de560dSAlex Tomas 
1696c9de560dSAlex Tomas 	if (max > 0) {
1697c9de560dSAlex Tomas 		ac->ac_b_ex = ex;
1698c9de560dSAlex Tomas 		ext4_mb_use_best_found(ac, e4b);
1699c9de560dSAlex Tomas 	}
1700c9de560dSAlex Tomas 
1701c9de560dSAlex Tomas 	ext4_unlock_group(ac->ac_sb, group);
1702e39e07fdSJing Zhang 	ext4_mb_unload_buddy(e4b);
1703c9de560dSAlex Tomas 
1704c9de560dSAlex Tomas 	return 0;
1705c9de560dSAlex Tomas }
1706c9de560dSAlex Tomas 
1707089ceeccSEric Sandeen static noinline_for_stack
1708089ceeccSEric Sandeen int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
1709c9de560dSAlex Tomas 				struct ext4_buddy *e4b)
1710c9de560dSAlex Tomas {
1711c9de560dSAlex Tomas 	ext4_group_t group = ac->ac_g_ex.fe_group;
1712c9de560dSAlex Tomas 	int max;
1713c9de560dSAlex Tomas 	int err;
1714c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
1715c9de560dSAlex Tomas 	struct ext4_free_extent ex;
1716c9de560dSAlex Tomas 
1717c9de560dSAlex Tomas 	if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
1718c9de560dSAlex Tomas 		return 0;
1719c9de560dSAlex Tomas 
1720c9de560dSAlex Tomas 	err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
1721c9de560dSAlex Tomas 	if (err)
1722c9de560dSAlex Tomas 		return err;
1723c9de560dSAlex Tomas 
1724c9de560dSAlex Tomas 	ext4_lock_group(ac->ac_sb, group);
1725c9de560dSAlex Tomas 	max = mb_find_extent(e4b, 0, ac->ac_g_ex.fe_start,
1726c9de560dSAlex Tomas 			     ac->ac_g_ex.fe_len, &ex);
1727c9de560dSAlex Tomas 
1728c9de560dSAlex Tomas 	if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
1729c9de560dSAlex Tomas 		ext4_fsblk_t start;
1730c9de560dSAlex Tomas 
17315661bd68SAkinobu Mita 		start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
17325661bd68SAkinobu Mita 			ex.fe_start;
1733c9de560dSAlex Tomas 		/* use do_div to get remainder (would be 64-bit modulo) */
1734c9de560dSAlex Tomas 		if (do_div(start, sbi->s_stripe) == 0) {
1735c9de560dSAlex Tomas 			ac->ac_found++;
1736c9de560dSAlex Tomas 			ac->ac_b_ex = ex;
1737c9de560dSAlex Tomas 			ext4_mb_use_best_found(ac, e4b);
1738c9de560dSAlex Tomas 		}
1739c9de560dSAlex Tomas 	} else if (max >= ac->ac_g_ex.fe_len) {
1740c9de560dSAlex Tomas 		BUG_ON(ex.fe_len <= 0);
1741c9de560dSAlex Tomas 		BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1742c9de560dSAlex Tomas 		BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1743c9de560dSAlex Tomas 		ac->ac_found++;
1744c9de560dSAlex Tomas 		ac->ac_b_ex = ex;
1745c9de560dSAlex Tomas 		ext4_mb_use_best_found(ac, e4b);
1746c9de560dSAlex Tomas 	} else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
1747c9de560dSAlex Tomas 		/* Sometimes, caller may want to merge even small
1748c9de560dSAlex Tomas 		 * number of blocks to an existing extent */
1749c9de560dSAlex Tomas 		BUG_ON(ex.fe_len <= 0);
1750c9de560dSAlex Tomas 		BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
1751c9de560dSAlex Tomas 		BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
1752c9de560dSAlex Tomas 		ac->ac_found++;
1753c9de560dSAlex Tomas 		ac->ac_b_ex = ex;
1754c9de560dSAlex Tomas 		ext4_mb_use_best_found(ac, e4b);
1755c9de560dSAlex Tomas 	}
1756c9de560dSAlex Tomas 	ext4_unlock_group(ac->ac_sb, group);
1757e39e07fdSJing Zhang 	ext4_mb_unload_buddy(e4b);
1758c9de560dSAlex Tomas 
1759c9de560dSAlex Tomas 	return 0;
1760c9de560dSAlex Tomas }
1761c9de560dSAlex Tomas 
1762c9de560dSAlex Tomas /*
1763c9de560dSAlex Tomas  * The routine scans buddy structures (not bitmap!) from given order
1764c9de560dSAlex Tomas  * to max order and tries to find big enough chunk to satisfy the req
1765c9de560dSAlex Tomas  */
1766089ceeccSEric Sandeen static noinline_for_stack
1767089ceeccSEric Sandeen void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
1768c9de560dSAlex Tomas 					struct ext4_buddy *e4b)
1769c9de560dSAlex Tomas {
1770c9de560dSAlex Tomas 	struct super_block *sb = ac->ac_sb;
1771c9de560dSAlex Tomas 	struct ext4_group_info *grp = e4b->bd_info;
1772c9de560dSAlex Tomas 	void *buddy;
1773c9de560dSAlex Tomas 	int i;
1774c9de560dSAlex Tomas 	int k;
1775c9de560dSAlex Tomas 	int max;
1776c9de560dSAlex Tomas 
1777c9de560dSAlex Tomas 	BUG_ON(ac->ac_2order <= 0);
1778c9de560dSAlex Tomas 	for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
1779c9de560dSAlex Tomas 		if (grp->bb_counters[i] == 0)
1780c9de560dSAlex Tomas 			continue;
1781c9de560dSAlex Tomas 
1782c9de560dSAlex Tomas 		buddy = mb_find_buddy(e4b, i, &max);
1783c9de560dSAlex Tomas 		BUG_ON(buddy == NULL);
1784c9de560dSAlex Tomas 
1785ffad0a44SAneesh Kumar K.V 		k = mb_find_next_zero_bit(buddy, max, 0);
1786c9de560dSAlex Tomas 		BUG_ON(k >= max);
1787c9de560dSAlex Tomas 
1788c9de560dSAlex Tomas 		ac->ac_found++;
1789c9de560dSAlex Tomas 
1790c9de560dSAlex Tomas 		ac->ac_b_ex.fe_len = 1 << i;
1791c9de560dSAlex Tomas 		ac->ac_b_ex.fe_start = k << i;
1792c9de560dSAlex Tomas 		ac->ac_b_ex.fe_group = e4b->bd_group;
1793c9de560dSAlex Tomas 
1794c9de560dSAlex Tomas 		ext4_mb_use_best_found(ac, e4b);
1795c9de560dSAlex Tomas 
1796c9de560dSAlex Tomas 		BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
1797c9de560dSAlex Tomas 
1798c9de560dSAlex Tomas 		if (EXT4_SB(sb)->s_mb_stats)
1799c9de560dSAlex Tomas 			atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
1800c9de560dSAlex Tomas 
1801c9de560dSAlex Tomas 		break;
1802c9de560dSAlex Tomas 	}
1803c9de560dSAlex Tomas }
1804c9de560dSAlex Tomas 
1805c9de560dSAlex Tomas /*
1806c9de560dSAlex Tomas  * The routine scans the group and measures all found extents.
1807c9de560dSAlex Tomas  * In order to optimize scanning, caller must pass number of
1808c9de560dSAlex Tomas  * free blocks in the group, so the routine can know upper limit.
1809c9de560dSAlex Tomas  */
1810089ceeccSEric Sandeen static noinline_for_stack
1811089ceeccSEric Sandeen void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
1812c9de560dSAlex Tomas 					struct ext4_buddy *e4b)
1813c9de560dSAlex Tomas {
1814c9de560dSAlex Tomas 	struct super_block *sb = ac->ac_sb;
1815c9de560dSAlex Tomas 	void *bitmap = EXT4_MB_BITMAP(e4b);
1816c9de560dSAlex Tomas 	struct ext4_free_extent ex;
1817c9de560dSAlex Tomas 	int i;
1818c9de560dSAlex Tomas 	int free;
1819c9de560dSAlex Tomas 
1820c9de560dSAlex Tomas 	free = e4b->bd_info->bb_free;
1821c9de560dSAlex Tomas 	BUG_ON(free <= 0);
1822c9de560dSAlex Tomas 
1823c9de560dSAlex Tomas 	i = e4b->bd_info->bb_first_free;
1824c9de560dSAlex Tomas 
1825c9de560dSAlex Tomas 	while (free && ac->ac_status == AC_STATUS_CONTINUE) {
1826ffad0a44SAneesh Kumar K.V 		i = mb_find_next_zero_bit(bitmap,
18277137d7a4STheodore Ts'o 						EXT4_CLUSTERS_PER_GROUP(sb), i);
18287137d7a4STheodore Ts'o 		if (i >= EXT4_CLUSTERS_PER_GROUP(sb)) {
182926346ff6SAneesh Kumar K.V 			/*
1830e56eb659SAneesh Kumar K.V 			 * IF we have corrupt bitmap, we won't find any
183126346ff6SAneesh Kumar K.V 			 * free blocks even though group info says we
183226346ff6SAneesh Kumar K.V 			 * we have free blocks
183326346ff6SAneesh Kumar K.V 			 */
1834e29136f8STheodore Ts'o 			ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
183553accfa9STheodore Ts'o 					"%d free clusters as per "
1836fde4d95aSTheodore Ts'o 					"group info. But bitmap says 0",
183726346ff6SAneesh Kumar K.V 					free);
1838c9de560dSAlex Tomas 			break;
1839c9de560dSAlex Tomas 		}
1840c9de560dSAlex Tomas 
1841c9de560dSAlex Tomas 		mb_find_extent(e4b, 0, i, ac->ac_g_ex.fe_len, &ex);
1842c9de560dSAlex Tomas 		BUG_ON(ex.fe_len <= 0);
184326346ff6SAneesh Kumar K.V 		if (free < ex.fe_len) {
1844e29136f8STheodore Ts'o 			ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
184553accfa9STheodore Ts'o 					"%d free clusters as per "
1846fde4d95aSTheodore Ts'o 					"group info. But got %d blocks",
184726346ff6SAneesh Kumar K.V 					free, ex.fe_len);
1848e56eb659SAneesh Kumar K.V 			/*
1849e56eb659SAneesh Kumar K.V 			 * The number of free blocks differs. This mostly
1850e56eb659SAneesh Kumar K.V 			 * indicate that the bitmap is corrupt. So exit
1851e56eb659SAneesh Kumar K.V 			 * without claiming the space.
1852e56eb659SAneesh Kumar K.V 			 */
1853e56eb659SAneesh Kumar K.V 			break;
185426346ff6SAneesh Kumar K.V 		}
1855c9de560dSAlex Tomas 
1856c9de560dSAlex Tomas 		ext4_mb_measure_extent(ac, &ex, e4b);
1857c9de560dSAlex Tomas 
1858c9de560dSAlex Tomas 		i += ex.fe_len;
1859c9de560dSAlex Tomas 		free -= ex.fe_len;
1860c9de560dSAlex Tomas 	}
1861c9de560dSAlex Tomas 
1862c9de560dSAlex Tomas 	ext4_mb_check_limits(ac, e4b, 1);
1863c9de560dSAlex Tomas }
1864c9de560dSAlex Tomas 
1865c9de560dSAlex Tomas /*
1866c9de560dSAlex Tomas  * This is a special case for storages like raid5
1867506bf2d8SEric Sandeen  * we try to find stripe-aligned chunks for stripe-size-multiple requests
1868c9de560dSAlex Tomas  */
1869089ceeccSEric Sandeen static noinline_for_stack
1870089ceeccSEric Sandeen void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
1871c9de560dSAlex Tomas 				 struct ext4_buddy *e4b)
1872c9de560dSAlex Tomas {
1873c9de560dSAlex Tomas 	struct super_block *sb = ac->ac_sb;
1874c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(sb);
1875c9de560dSAlex Tomas 	void *bitmap = EXT4_MB_BITMAP(e4b);
1876c9de560dSAlex Tomas 	struct ext4_free_extent ex;
1877c9de560dSAlex Tomas 	ext4_fsblk_t first_group_block;
1878c9de560dSAlex Tomas 	ext4_fsblk_t a;
1879c9de560dSAlex Tomas 	ext4_grpblk_t i;
1880c9de560dSAlex Tomas 	int max;
1881c9de560dSAlex Tomas 
1882c9de560dSAlex Tomas 	BUG_ON(sbi->s_stripe == 0);
1883c9de560dSAlex Tomas 
1884c9de560dSAlex Tomas 	/* find first stripe-aligned block in group */
18855661bd68SAkinobu Mita 	first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
18865661bd68SAkinobu Mita 
1887c9de560dSAlex Tomas 	a = first_group_block + sbi->s_stripe - 1;
1888c9de560dSAlex Tomas 	do_div(a, sbi->s_stripe);
1889c9de560dSAlex Tomas 	i = (a * sbi->s_stripe) - first_group_block;
1890c9de560dSAlex Tomas 
18917137d7a4STheodore Ts'o 	while (i < EXT4_CLUSTERS_PER_GROUP(sb)) {
1892c9de560dSAlex Tomas 		if (!mb_test_bit(i, bitmap)) {
1893c9de560dSAlex Tomas 			max = mb_find_extent(e4b, 0, i, sbi->s_stripe, &ex);
1894c9de560dSAlex Tomas 			if (max >= sbi->s_stripe) {
1895c9de560dSAlex Tomas 				ac->ac_found++;
1896c9de560dSAlex Tomas 				ac->ac_b_ex = ex;
1897c9de560dSAlex Tomas 				ext4_mb_use_best_found(ac, e4b);
1898c9de560dSAlex Tomas 				break;
1899c9de560dSAlex Tomas 			}
1900c9de560dSAlex Tomas 		}
1901c9de560dSAlex Tomas 		i += sbi->s_stripe;
1902c9de560dSAlex Tomas 	}
1903c9de560dSAlex Tomas }
1904c9de560dSAlex Tomas 
19058a57d9d6SCurt Wohlgemuth /* This is now called BEFORE we load the buddy bitmap. */
1906c9de560dSAlex Tomas static int ext4_mb_good_group(struct ext4_allocation_context *ac,
1907c9de560dSAlex Tomas 				ext4_group_t group, int cr)
1908c9de560dSAlex Tomas {
1909c9de560dSAlex Tomas 	unsigned free, fragments;
1910a4912123STheodore Ts'o 	int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
1911c9de560dSAlex Tomas 	struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
1912c9de560dSAlex Tomas 
1913c9de560dSAlex Tomas 	BUG_ON(cr < 0 || cr >= 4);
19148a57d9d6SCurt Wohlgemuth 
19158a57d9d6SCurt Wohlgemuth 	/* We only do this if the grp has never been initialized */
19168a57d9d6SCurt Wohlgemuth 	if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
19178a57d9d6SCurt Wohlgemuth 		int ret = ext4_mb_init_group(ac->ac_sb, group);
19188a57d9d6SCurt Wohlgemuth 		if (ret)
19198a57d9d6SCurt Wohlgemuth 			return 0;
19208a57d9d6SCurt Wohlgemuth 	}
1921c9de560dSAlex Tomas 
1922c9de560dSAlex Tomas 	free = grp->bb_free;
1923c9de560dSAlex Tomas 	fragments = grp->bb_fragments;
1924c9de560dSAlex Tomas 	if (free == 0)
1925c9de560dSAlex Tomas 		return 0;
1926c9de560dSAlex Tomas 	if (fragments == 0)
1927c9de560dSAlex Tomas 		return 0;
1928c9de560dSAlex Tomas 
1929c9de560dSAlex Tomas 	switch (cr) {
1930c9de560dSAlex Tomas 	case 0:
1931c9de560dSAlex Tomas 		BUG_ON(ac->ac_2order == 0);
1932c9de560dSAlex Tomas 
19338a57d9d6SCurt Wohlgemuth 		if (grp->bb_largest_free_order < ac->ac_2order)
19348a57d9d6SCurt Wohlgemuth 			return 0;
19358a57d9d6SCurt Wohlgemuth 
1936a4912123STheodore Ts'o 		/* Avoid using the first bg of a flexgroup for data files */
1937a4912123STheodore Ts'o 		if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
1938a4912123STheodore Ts'o 		    (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
1939a4912123STheodore Ts'o 		    ((group % flex_size) == 0))
1940a4912123STheodore Ts'o 			return 0;
1941a4912123STheodore Ts'o 
1942c9de560dSAlex Tomas 		return 1;
1943c9de560dSAlex Tomas 	case 1:
1944c9de560dSAlex Tomas 		if ((free / fragments) >= ac->ac_g_ex.fe_len)
1945c9de560dSAlex Tomas 			return 1;
1946c9de560dSAlex Tomas 		break;
1947c9de560dSAlex Tomas 	case 2:
1948c9de560dSAlex Tomas 		if (free >= ac->ac_g_ex.fe_len)
1949c9de560dSAlex Tomas 			return 1;
1950c9de560dSAlex Tomas 		break;
1951c9de560dSAlex Tomas 	case 3:
1952c9de560dSAlex Tomas 		return 1;
1953c9de560dSAlex Tomas 	default:
1954c9de560dSAlex Tomas 		BUG();
1955c9de560dSAlex Tomas 	}
1956c9de560dSAlex Tomas 
1957c9de560dSAlex Tomas 	return 0;
1958c9de560dSAlex Tomas }
1959c9de560dSAlex Tomas 
19604ddfef7bSEric Sandeen static noinline_for_stack int
19614ddfef7bSEric Sandeen ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
1962c9de560dSAlex Tomas {
19638df9675fSTheodore Ts'o 	ext4_group_t ngroups, group, i;
1964c9de560dSAlex Tomas 	int cr;
1965c9de560dSAlex Tomas 	int err = 0;
1966c9de560dSAlex Tomas 	struct ext4_sb_info *sbi;
1967c9de560dSAlex Tomas 	struct super_block *sb;
1968c9de560dSAlex Tomas 	struct ext4_buddy e4b;
1969c9de560dSAlex Tomas 
1970c9de560dSAlex Tomas 	sb = ac->ac_sb;
1971c9de560dSAlex Tomas 	sbi = EXT4_SB(sb);
19728df9675fSTheodore Ts'o 	ngroups = ext4_get_groups_count(sb);
1973fb0a387dSEric Sandeen 	/* non-extent files are limited to low blocks/groups */
197412e9b892SDmitry Monakhov 	if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
1975fb0a387dSEric Sandeen 		ngroups = sbi->s_blockfile_groups;
1976fb0a387dSEric Sandeen 
1977c9de560dSAlex Tomas 	BUG_ON(ac->ac_status == AC_STATUS_FOUND);
1978c9de560dSAlex Tomas 
1979c9de560dSAlex Tomas 	/* first, try the goal */
1980c9de560dSAlex Tomas 	err = ext4_mb_find_by_goal(ac, &e4b);
1981c9de560dSAlex Tomas 	if (err || ac->ac_status == AC_STATUS_FOUND)
1982c9de560dSAlex Tomas 		goto out;
1983c9de560dSAlex Tomas 
1984c9de560dSAlex Tomas 	if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
1985c9de560dSAlex Tomas 		goto out;
1986c9de560dSAlex Tomas 
1987c9de560dSAlex Tomas 	/*
1988c9de560dSAlex Tomas 	 * ac->ac2_order is set only if the fe_len is a power of 2
1989c9de560dSAlex Tomas 	 * if ac2_order is set we also set criteria to 0 so that we
1990c9de560dSAlex Tomas 	 * try exact allocation using buddy.
1991c9de560dSAlex Tomas 	 */
1992c9de560dSAlex Tomas 	i = fls(ac->ac_g_ex.fe_len);
1993c9de560dSAlex Tomas 	ac->ac_2order = 0;
1994c9de560dSAlex Tomas 	/*
1995c9de560dSAlex Tomas 	 * We search using buddy data only if the order of the request
1996c9de560dSAlex Tomas 	 * is greater than equal to the sbi_s_mb_order2_reqs
1997b713a5ecSTheodore Ts'o 	 * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
1998c9de560dSAlex Tomas 	 */
1999c9de560dSAlex Tomas 	if (i >= sbi->s_mb_order2_reqs) {
2000c9de560dSAlex Tomas 		/*
2001c9de560dSAlex Tomas 		 * This should tell if fe_len is exactly power of 2
2002c9de560dSAlex Tomas 		 */
2003c9de560dSAlex Tomas 		if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
2004c9de560dSAlex Tomas 			ac->ac_2order = i - 1;
2005c9de560dSAlex Tomas 	}
2006c9de560dSAlex Tomas 
20074ba74d00STheodore Ts'o 	/* if stream allocation is enabled, use global goal */
20084ba74d00STheodore Ts'o 	if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
2009c9de560dSAlex Tomas 		/* TBD: may be hot point */
2010c9de560dSAlex Tomas 		spin_lock(&sbi->s_md_lock);
2011c9de560dSAlex Tomas 		ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
2012c9de560dSAlex Tomas 		ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
2013c9de560dSAlex Tomas 		spin_unlock(&sbi->s_md_lock);
2014c9de560dSAlex Tomas 	}
20154ba74d00STheodore Ts'o 
2016c9de560dSAlex Tomas 	/* Let's just scan groups to find more-less suitable blocks */
2017c9de560dSAlex Tomas 	cr = ac->ac_2order ? 0 : 1;
2018c9de560dSAlex Tomas 	/*
2019c9de560dSAlex Tomas 	 * cr == 0 try to get exact allocation,
2020c9de560dSAlex Tomas 	 * cr == 3  try to get anything
2021c9de560dSAlex Tomas 	 */
2022c9de560dSAlex Tomas repeat:
2023c9de560dSAlex Tomas 	for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
2024c9de560dSAlex Tomas 		ac->ac_criteria = cr;
2025ed8f9c75SAneesh Kumar K.V 		/*
2026ed8f9c75SAneesh Kumar K.V 		 * searching for the right group start
2027ed8f9c75SAneesh Kumar K.V 		 * from the goal value specified
2028ed8f9c75SAneesh Kumar K.V 		 */
2029ed8f9c75SAneesh Kumar K.V 		group = ac->ac_g_ex.fe_group;
2030ed8f9c75SAneesh Kumar K.V 
20318df9675fSTheodore Ts'o 		for (i = 0; i < ngroups; group++, i++) {
20328df9675fSTheodore Ts'o 			if (group == ngroups)
2033c9de560dSAlex Tomas 				group = 0;
2034c9de560dSAlex Tomas 
20358a57d9d6SCurt Wohlgemuth 			/* This now checks without needing the buddy page */
20368a57d9d6SCurt Wohlgemuth 			if (!ext4_mb_good_group(ac, group, cr))
2037c9de560dSAlex Tomas 				continue;
2038c9de560dSAlex Tomas 
2039c9de560dSAlex Tomas 			err = ext4_mb_load_buddy(sb, group, &e4b);
2040c9de560dSAlex Tomas 			if (err)
2041c9de560dSAlex Tomas 				goto out;
2042c9de560dSAlex Tomas 
2043c9de560dSAlex Tomas 			ext4_lock_group(sb, group);
20448a57d9d6SCurt Wohlgemuth 
20458a57d9d6SCurt Wohlgemuth 			/*
20468a57d9d6SCurt Wohlgemuth 			 * We need to check again after locking the
20478a57d9d6SCurt Wohlgemuth 			 * block group
20488a57d9d6SCurt Wohlgemuth 			 */
2049c9de560dSAlex Tomas 			if (!ext4_mb_good_group(ac, group, cr)) {
2050c9de560dSAlex Tomas 				ext4_unlock_group(sb, group);
2051e39e07fdSJing Zhang 				ext4_mb_unload_buddy(&e4b);
2052c9de560dSAlex Tomas 				continue;
2053c9de560dSAlex Tomas 			}
2054c9de560dSAlex Tomas 
2055c9de560dSAlex Tomas 			ac->ac_groups_scanned++;
205675507efbSTheodore Ts'o 			if (cr == 0)
2057c9de560dSAlex Tomas 				ext4_mb_simple_scan_group(ac, &e4b);
2058506bf2d8SEric Sandeen 			else if (cr == 1 && sbi->s_stripe &&
2059506bf2d8SEric Sandeen 					!(ac->ac_g_ex.fe_len % sbi->s_stripe))
2060c9de560dSAlex Tomas 				ext4_mb_scan_aligned(ac, &e4b);
2061c9de560dSAlex Tomas 			else
2062c9de560dSAlex Tomas 				ext4_mb_complex_scan_group(ac, &e4b);
2063c9de560dSAlex Tomas 
2064c9de560dSAlex Tomas 			ext4_unlock_group(sb, group);
2065e39e07fdSJing Zhang 			ext4_mb_unload_buddy(&e4b);
2066c9de560dSAlex Tomas 
2067c9de560dSAlex Tomas 			if (ac->ac_status != AC_STATUS_CONTINUE)
2068c9de560dSAlex Tomas 				break;
2069c9de560dSAlex Tomas 		}
2070c9de560dSAlex Tomas 	}
2071c9de560dSAlex Tomas 
2072c9de560dSAlex Tomas 	if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
2073c9de560dSAlex Tomas 	    !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
2074c9de560dSAlex Tomas 		/*
2075c9de560dSAlex Tomas 		 * We've been searching too long. Let's try to allocate
2076c9de560dSAlex Tomas 		 * the best chunk we've found so far
2077c9de560dSAlex Tomas 		 */
2078c9de560dSAlex Tomas 
2079c9de560dSAlex Tomas 		ext4_mb_try_best_found(ac, &e4b);
2080c9de560dSAlex Tomas 		if (ac->ac_status != AC_STATUS_FOUND) {
2081c9de560dSAlex Tomas 			/*
2082c9de560dSAlex Tomas 			 * Someone more lucky has already allocated it.
2083c9de560dSAlex Tomas 			 * The only thing we can do is just take first
2084c9de560dSAlex Tomas 			 * found block(s)
2085c9de560dSAlex Tomas 			printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n");
2086c9de560dSAlex Tomas 			 */
2087c9de560dSAlex Tomas 			ac->ac_b_ex.fe_group = 0;
2088c9de560dSAlex Tomas 			ac->ac_b_ex.fe_start = 0;
2089c9de560dSAlex Tomas 			ac->ac_b_ex.fe_len = 0;
2090c9de560dSAlex Tomas 			ac->ac_status = AC_STATUS_CONTINUE;
2091c9de560dSAlex Tomas 			ac->ac_flags |= EXT4_MB_HINT_FIRST;
2092c9de560dSAlex Tomas 			cr = 3;
2093c9de560dSAlex Tomas 			atomic_inc(&sbi->s_mb_lost_chunks);
2094c9de560dSAlex Tomas 			goto repeat;
2095c9de560dSAlex Tomas 		}
2096c9de560dSAlex Tomas 	}
2097c9de560dSAlex Tomas out:
2098c9de560dSAlex Tomas 	return err;
2099c9de560dSAlex Tomas }
2100c9de560dSAlex Tomas 
2101c9de560dSAlex Tomas static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
2102c9de560dSAlex Tomas {
2103c9de560dSAlex Tomas 	struct super_block *sb = seq->private;
2104c9de560dSAlex Tomas 	ext4_group_t group;
2105c9de560dSAlex Tomas 
21068df9675fSTheodore Ts'o 	if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
2107c9de560dSAlex Tomas 		return NULL;
2108c9de560dSAlex Tomas 	group = *pos + 1;
2109a9df9a49STheodore Ts'o 	return (void *) ((unsigned long) group);
2110c9de560dSAlex Tomas }
2111c9de560dSAlex Tomas 
2112c9de560dSAlex Tomas static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
2113c9de560dSAlex Tomas {
2114c9de560dSAlex Tomas 	struct super_block *sb = seq->private;
2115c9de560dSAlex Tomas 	ext4_group_t group;
2116c9de560dSAlex Tomas 
2117c9de560dSAlex Tomas 	++*pos;
21188df9675fSTheodore Ts'o 	if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
2119c9de560dSAlex Tomas 		return NULL;
2120c9de560dSAlex Tomas 	group = *pos + 1;
2121a9df9a49STheodore Ts'o 	return (void *) ((unsigned long) group);
2122c9de560dSAlex Tomas }
2123c9de560dSAlex Tomas 
2124c9de560dSAlex Tomas static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
2125c9de560dSAlex Tomas {
2126c9de560dSAlex Tomas 	struct super_block *sb = seq->private;
2127a9df9a49STheodore Ts'o 	ext4_group_t group = (ext4_group_t) ((unsigned long) v);
2128c9de560dSAlex Tomas 	int i;
2129c9de560dSAlex Tomas 	int err;
2130c9de560dSAlex Tomas 	struct ext4_buddy e4b;
2131c9de560dSAlex Tomas 	struct sg {
2132c9de560dSAlex Tomas 		struct ext4_group_info info;
2133a36b4498SEric Sandeen 		ext4_grpblk_t counters[16];
2134c9de560dSAlex Tomas 	} sg;
2135c9de560dSAlex Tomas 
2136c9de560dSAlex Tomas 	group--;
2137c9de560dSAlex Tomas 	if (group == 0)
2138c9de560dSAlex Tomas 		seq_printf(seq, "#%-5s: %-5s %-5s %-5s "
2139c9de560dSAlex Tomas 				"[ %-5s %-5s %-5s %-5s %-5s %-5s %-5s "
2140c9de560dSAlex Tomas 				  "%-5s %-5s %-5s %-5s %-5s %-5s %-5s ]\n",
2141c9de560dSAlex Tomas 			   "group", "free", "frags", "first",
2142c9de560dSAlex Tomas 			   "2^0", "2^1", "2^2", "2^3", "2^4", "2^5", "2^6",
2143c9de560dSAlex Tomas 			   "2^7", "2^8", "2^9", "2^10", "2^11", "2^12", "2^13");
2144c9de560dSAlex Tomas 
2145c9de560dSAlex Tomas 	i = (sb->s_blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
2146c9de560dSAlex Tomas 		sizeof(struct ext4_group_info);
2147c9de560dSAlex Tomas 	err = ext4_mb_load_buddy(sb, group, &e4b);
2148c9de560dSAlex Tomas 	if (err) {
2149a9df9a49STheodore Ts'o 		seq_printf(seq, "#%-5u: I/O error\n", group);
2150c9de560dSAlex Tomas 		return 0;
2151c9de560dSAlex Tomas 	}
2152c9de560dSAlex Tomas 	ext4_lock_group(sb, group);
2153c9de560dSAlex Tomas 	memcpy(&sg, ext4_get_group_info(sb, group), i);
2154c9de560dSAlex Tomas 	ext4_unlock_group(sb, group);
2155e39e07fdSJing Zhang 	ext4_mb_unload_buddy(&e4b);
2156c9de560dSAlex Tomas 
2157a9df9a49STheodore Ts'o 	seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
2158c9de560dSAlex Tomas 			sg.info.bb_fragments, sg.info.bb_first_free);
2159c9de560dSAlex Tomas 	for (i = 0; i <= 13; i++)
2160c9de560dSAlex Tomas 		seq_printf(seq, " %-5u", i <= sb->s_blocksize_bits + 1 ?
2161c9de560dSAlex Tomas 				sg.info.bb_counters[i] : 0);
2162c9de560dSAlex Tomas 	seq_printf(seq, " ]\n");
2163c9de560dSAlex Tomas 
2164c9de560dSAlex Tomas 	return 0;
2165c9de560dSAlex Tomas }
2166c9de560dSAlex Tomas 
2167c9de560dSAlex Tomas static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
2168c9de560dSAlex Tomas {
2169c9de560dSAlex Tomas }
2170c9de560dSAlex Tomas 
21717f1346a9STobias Klauser static const struct seq_operations ext4_mb_seq_groups_ops = {
2172c9de560dSAlex Tomas 	.start  = ext4_mb_seq_groups_start,
2173c9de560dSAlex Tomas 	.next   = ext4_mb_seq_groups_next,
2174c9de560dSAlex Tomas 	.stop   = ext4_mb_seq_groups_stop,
2175c9de560dSAlex Tomas 	.show   = ext4_mb_seq_groups_show,
2176c9de560dSAlex Tomas };
2177c9de560dSAlex Tomas 
2178c9de560dSAlex Tomas static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)
2179c9de560dSAlex Tomas {
2180c9de560dSAlex Tomas 	struct super_block *sb = PDE(inode)->data;
2181c9de560dSAlex Tomas 	int rc;
2182c9de560dSAlex Tomas 
2183c9de560dSAlex Tomas 	rc = seq_open(file, &ext4_mb_seq_groups_ops);
2184c9de560dSAlex Tomas 	if (rc == 0) {
2185a271fe85SJoe Perches 		struct seq_file *m = file->private_data;
2186c9de560dSAlex Tomas 		m->private = sb;
2187c9de560dSAlex Tomas 	}
2188c9de560dSAlex Tomas 	return rc;
2189c9de560dSAlex Tomas 
2190c9de560dSAlex Tomas }
2191c9de560dSAlex Tomas 
21927f1346a9STobias Klauser static const struct file_operations ext4_mb_seq_groups_fops = {
2193c9de560dSAlex Tomas 	.owner		= THIS_MODULE,
2194c9de560dSAlex Tomas 	.open		= ext4_mb_seq_groups_open,
2195c9de560dSAlex Tomas 	.read		= seq_read,
2196c9de560dSAlex Tomas 	.llseek		= seq_lseek,
2197c9de560dSAlex Tomas 	.release	= seq_release,
2198c9de560dSAlex Tomas };
2199c9de560dSAlex Tomas 
2200fb1813f4SCurt Wohlgemuth static struct kmem_cache *get_groupinfo_cache(int blocksize_bits)
2201fb1813f4SCurt Wohlgemuth {
2202fb1813f4SCurt Wohlgemuth 	int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
2203fb1813f4SCurt Wohlgemuth 	struct kmem_cache *cachep = ext4_groupinfo_caches[cache_index];
2204fb1813f4SCurt Wohlgemuth 
2205fb1813f4SCurt Wohlgemuth 	BUG_ON(!cachep);
2206fb1813f4SCurt Wohlgemuth 	return cachep;
2207fb1813f4SCurt Wohlgemuth }
22085f21b0e6SFrederic Bohe 
22095f21b0e6SFrederic Bohe /* Create and initialize ext4_group_info data for the given group. */
2210920313a7SAneesh Kumar K.V int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
22115f21b0e6SFrederic Bohe 			  struct ext4_group_desc *desc)
22125f21b0e6SFrederic Bohe {
2213fb1813f4SCurt Wohlgemuth 	int i;
22145f21b0e6SFrederic Bohe 	int metalen = 0;
22155f21b0e6SFrederic Bohe 	struct ext4_sb_info *sbi = EXT4_SB(sb);
22165f21b0e6SFrederic Bohe 	struct ext4_group_info **meta_group_info;
2217fb1813f4SCurt Wohlgemuth 	struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
22185f21b0e6SFrederic Bohe 
22195f21b0e6SFrederic Bohe 	/*
22205f21b0e6SFrederic Bohe 	 * First check if this group is the first of a reserved block.
22215f21b0e6SFrederic Bohe 	 * If it's true, we have to allocate a new table of pointers
22225f21b0e6SFrederic Bohe 	 * to ext4_group_info structures
22235f21b0e6SFrederic Bohe 	 */
22245f21b0e6SFrederic Bohe 	if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
22255f21b0e6SFrederic Bohe 		metalen = sizeof(*meta_group_info) <<
22265f21b0e6SFrederic Bohe 			EXT4_DESC_PER_BLOCK_BITS(sb);
22275f21b0e6SFrederic Bohe 		meta_group_info = kmalloc(metalen, GFP_KERNEL);
22285f21b0e6SFrederic Bohe 		if (meta_group_info == NULL) {
22299d8b9ec4STheodore Ts'o 			ext4_msg(sb, KERN_ERR, "EXT4-fs: can't allocate mem "
22309d8b9ec4STheodore Ts'o 				 "for a buddy group");
22315f21b0e6SFrederic Bohe 			goto exit_meta_group_info;
22325f21b0e6SFrederic Bohe 		}
22335f21b0e6SFrederic Bohe 		sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] =
22345f21b0e6SFrederic Bohe 			meta_group_info;
22355f21b0e6SFrederic Bohe 	}
22365f21b0e6SFrederic Bohe 
22375f21b0e6SFrederic Bohe 	meta_group_info =
22385f21b0e6SFrederic Bohe 		sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)];
22395f21b0e6SFrederic Bohe 	i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
22405f21b0e6SFrederic Bohe 
2241fb1813f4SCurt Wohlgemuth 	meta_group_info[i] = kmem_cache_alloc(cachep, GFP_KERNEL);
22425f21b0e6SFrederic Bohe 	if (meta_group_info[i] == NULL) {
22439d8b9ec4STheodore Ts'o 		ext4_msg(sb, KERN_ERR, "EXT4-fs: can't allocate buddy mem");
22445f21b0e6SFrederic Bohe 		goto exit_group_info;
22455f21b0e6SFrederic Bohe 	}
2246fb1813f4SCurt Wohlgemuth 	memset(meta_group_info[i], 0, kmem_cache_size(cachep));
22475f21b0e6SFrederic Bohe 	set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
22485f21b0e6SFrederic Bohe 		&(meta_group_info[i]->bb_state));
22495f21b0e6SFrederic Bohe 
22505f21b0e6SFrederic Bohe 	/*
22515f21b0e6SFrederic Bohe 	 * initialize bb_free to be able to skip
22525f21b0e6SFrederic Bohe 	 * empty groups without initialization
22535f21b0e6SFrederic Bohe 	 */
22545f21b0e6SFrederic Bohe 	if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
22555f21b0e6SFrederic Bohe 		meta_group_info[i]->bb_free =
2256cff1dfd7STheodore Ts'o 			ext4_free_clusters_after_init(sb, group, desc);
22575f21b0e6SFrederic Bohe 	} else {
22585f21b0e6SFrederic Bohe 		meta_group_info[i]->bb_free =
2259021b65bbSTheodore Ts'o 			ext4_free_group_clusters(sb, desc);
22605f21b0e6SFrederic Bohe 	}
22615f21b0e6SFrederic Bohe 
22625f21b0e6SFrederic Bohe 	INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
2263920313a7SAneesh Kumar K.V 	init_rwsem(&meta_group_info[i]->alloc_sem);
226464e290ecSVenkatesh Pallipadi 	meta_group_info[i]->bb_free_root = RB_ROOT;
22658a57d9d6SCurt Wohlgemuth 	meta_group_info[i]->bb_largest_free_order = -1;  /* uninit */
22665f21b0e6SFrederic Bohe 
22675f21b0e6SFrederic Bohe #ifdef DOUBLE_CHECK
22685f21b0e6SFrederic Bohe 	{
22695f21b0e6SFrederic Bohe 		struct buffer_head *bh;
22705f21b0e6SFrederic Bohe 		meta_group_info[i]->bb_bitmap =
22715f21b0e6SFrederic Bohe 			kmalloc(sb->s_blocksize, GFP_KERNEL);
22725f21b0e6SFrederic Bohe 		BUG_ON(meta_group_info[i]->bb_bitmap == NULL);
22735f21b0e6SFrederic Bohe 		bh = ext4_read_block_bitmap(sb, group);
22745f21b0e6SFrederic Bohe 		BUG_ON(bh == NULL);
22755f21b0e6SFrederic Bohe 		memcpy(meta_group_info[i]->bb_bitmap, bh->b_data,
22765f21b0e6SFrederic Bohe 			sb->s_blocksize);
22775f21b0e6SFrederic Bohe 		put_bh(bh);
22785f21b0e6SFrederic Bohe 	}
22795f21b0e6SFrederic Bohe #endif
22805f21b0e6SFrederic Bohe 
22815f21b0e6SFrederic Bohe 	return 0;
22825f21b0e6SFrederic Bohe 
22835f21b0e6SFrederic Bohe exit_group_info:
22845f21b0e6SFrederic Bohe 	/* If a meta_group_info table has been allocated, release it now */
2285caaf7a29STao Ma 	if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
22865f21b0e6SFrederic Bohe 		kfree(sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)]);
2287caaf7a29STao Ma 		sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] = NULL;
2288caaf7a29STao Ma 	}
22895f21b0e6SFrederic Bohe exit_meta_group_info:
22905f21b0e6SFrederic Bohe 	return -ENOMEM;
22915f21b0e6SFrederic Bohe } /* ext4_mb_add_groupinfo */
22925f21b0e6SFrederic Bohe 
2293c9de560dSAlex Tomas static int ext4_mb_init_backend(struct super_block *sb)
2294c9de560dSAlex Tomas {
22958df9675fSTheodore Ts'o 	ext4_group_t ngroups = ext4_get_groups_count(sb);
2296c9de560dSAlex Tomas 	ext4_group_t i;
2297c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(sb);
22985f21b0e6SFrederic Bohe 	struct ext4_super_block *es = sbi->s_es;
22995f21b0e6SFrederic Bohe 	int num_meta_group_infos;
23005f21b0e6SFrederic Bohe 	int num_meta_group_infos_max;
23015f21b0e6SFrederic Bohe 	int array_size;
23025f21b0e6SFrederic Bohe 	struct ext4_group_desc *desc;
2303fb1813f4SCurt Wohlgemuth 	struct kmem_cache *cachep;
2304c9de560dSAlex Tomas 
23055f21b0e6SFrederic Bohe 	/* This is the number of blocks used by GDT */
23068df9675fSTheodore Ts'o 	num_meta_group_infos = (ngroups + EXT4_DESC_PER_BLOCK(sb) -
23075f21b0e6SFrederic Bohe 				1) >> EXT4_DESC_PER_BLOCK_BITS(sb);
23085f21b0e6SFrederic Bohe 
23095f21b0e6SFrederic Bohe 	/*
23105f21b0e6SFrederic Bohe 	 * This is the total number of blocks used by GDT including
23115f21b0e6SFrederic Bohe 	 * the number of reserved blocks for GDT.
23125f21b0e6SFrederic Bohe 	 * The s_group_info array is allocated with this value
23135f21b0e6SFrederic Bohe 	 * to allow a clean online resize without a complex
23145f21b0e6SFrederic Bohe 	 * manipulation of pointer.
23155f21b0e6SFrederic Bohe 	 * The drawback is the unused memory when no resize
23165f21b0e6SFrederic Bohe 	 * occurs but it's very low in terms of pages
23175f21b0e6SFrederic Bohe 	 * (see comments below)
23185f21b0e6SFrederic Bohe 	 * Need to handle this properly when META_BG resizing is allowed
23195f21b0e6SFrederic Bohe 	 */
23205f21b0e6SFrederic Bohe 	num_meta_group_infos_max = num_meta_group_infos +
23215f21b0e6SFrederic Bohe 				le16_to_cpu(es->s_reserved_gdt_blocks);
23225f21b0e6SFrederic Bohe 
23235f21b0e6SFrederic Bohe 	/*
23245f21b0e6SFrederic Bohe 	 * array_size is the size of s_group_info array. We round it
23255f21b0e6SFrederic Bohe 	 * to the next power of two because this approximation is done
23265f21b0e6SFrederic Bohe 	 * internally by kmalloc so we can have some more memory
23275f21b0e6SFrederic Bohe 	 * for free here (e.g. may be used for META_BG resize).
23285f21b0e6SFrederic Bohe 	 */
23295f21b0e6SFrederic Bohe 	array_size = 1;
23305f21b0e6SFrederic Bohe 	while (array_size < sizeof(*sbi->s_group_info) *
23315f21b0e6SFrederic Bohe 	       num_meta_group_infos_max)
23325f21b0e6SFrederic Bohe 		array_size = array_size << 1;
2333c9de560dSAlex Tomas 	/* An 8TB filesystem with 64-bit pointers requires a 4096 byte
2334c9de560dSAlex Tomas 	 * kmalloc. A 128kb malloc should suffice for a 256TB filesystem.
2335c9de560dSAlex Tomas 	 * So a two level scheme suffices for now. */
2336f18a5f21STheodore Ts'o 	sbi->s_group_info = ext4_kvzalloc(array_size, GFP_KERNEL);
2337c9de560dSAlex Tomas 	if (sbi->s_group_info == NULL) {
23389d8b9ec4STheodore Ts'o 		ext4_msg(sb, KERN_ERR, "can't allocate buddy meta group");
2339c9de560dSAlex Tomas 		return -ENOMEM;
2340c9de560dSAlex Tomas 	}
2341c9de560dSAlex Tomas 	sbi->s_buddy_cache = new_inode(sb);
2342c9de560dSAlex Tomas 	if (sbi->s_buddy_cache == NULL) {
23439d8b9ec4STheodore Ts'o 		ext4_msg(sb, KERN_ERR, "can't get new inode");
2344c9de560dSAlex Tomas 		goto err_freesgi;
2345c9de560dSAlex Tomas 	}
234648e6061bSYu Jian 	/* To avoid potentially colliding with an valid on-disk inode number,
234748e6061bSYu Jian 	 * use EXT4_BAD_INO for the buddy cache inode number.  This inode is
234848e6061bSYu Jian 	 * not in the inode hash, so it should never be found by iget(), but
234948e6061bSYu Jian 	 * this will avoid confusion if it ever shows up during debugging. */
235048e6061bSYu Jian 	sbi->s_buddy_cache->i_ino = EXT4_BAD_INO;
2351c9de560dSAlex Tomas 	EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
23528df9675fSTheodore Ts'o 	for (i = 0; i < ngroups; i++) {
2353c9de560dSAlex Tomas 		desc = ext4_get_group_desc(sb, i, NULL);
2354c9de560dSAlex Tomas 		if (desc == NULL) {
23559d8b9ec4STheodore Ts'o 			ext4_msg(sb, KERN_ERR, "can't read descriptor %u", i);
2356c9de560dSAlex Tomas 			goto err_freebuddy;
2357c9de560dSAlex Tomas 		}
23585f21b0e6SFrederic Bohe 		if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
23595f21b0e6SFrederic Bohe 			goto err_freebuddy;
2360c9de560dSAlex Tomas 	}
2361c9de560dSAlex Tomas 
2362c9de560dSAlex Tomas 	return 0;
2363c9de560dSAlex Tomas 
2364c9de560dSAlex Tomas err_freebuddy:
2365fb1813f4SCurt Wohlgemuth 	cachep = get_groupinfo_cache(sb->s_blocksize_bits);
2366f1fa3342SRoel Kluin 	while (i-- > 0)
2367fb1813f4SCurt Wohlgemuth 		kmem_cache_free(cachep, ext4_get_group_info(sb, i));
2368c9de560dSAlex Tomas 	i = num_meta_group_infos;
2369f1fa3342SRoel Kluin 	while (i-- > 0)
2370c9de560dSAlex Tomas 		kfree(sbi->s_group_info[i]);
2371c9de560dSAlex Tomas 	iput(sbi->s_buddy_cache);
2372c9de560dSAlex Tomas err_freesgi:
2373f18a5f21STheodore Ts'o 	ext4_kvfree(sbi->s_group_info);
2374c9de560dSAlex Tomas 	return -ENOMEM;
2375c9de560dSAlex Tomas }
2376c9de560dSAlex Tomas 
23772892c15dSEric Sandeen static void ext4_groupinfo_destroy_slabs(void)
23782892c15dSEric Sandeen {
23792892c15dSEric Sandeen 	int i;
23802892c15dSEric Sandeen 
23812892c15dSEric Sandeen 	for (i = 0; i < NR_GRPINFO_CACHES; i++) {
23822892c15dSEric Sandeen 		if (ext4_groupinfo_caches[i])
23832892c15dSEric Sandeen 			kmem_cache_destroy(ext4_groupinfo_caches[i]);
23842892c15dSEric Sandeen 		ext4_groupinfo_caches[i] = NULL;
23852892c15dSEric Sandeen 	}
23862892c15dSEric Sandeen }
23872892c15dSEric Sandeen 
23882892c15dSEric Sandeen static int ext4_groupinfo_create_slab(size_t size)
23892892c15dSEric Sandeen {
23902892c15dSEric Sandeen 	static DEFINE_MUTEX(ext4_grpinfo_slab_create_mutex);
23912892c15dSEric Sandeen 	int slab_size;
23922892c15dSEric Sandeen 	int blocksize_bits = order_base_2(size);
23932892c15dSEric Sandeen 	int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
23942892c15dSEric Sandeen 	struct kmem_cache *cachep;
23952892c15dSEric Sandeen 
23962892c15dSEric Sandeen 	if (cache_index >= NR_GRPINFO_CACHES)
23972892c15dSEric Sandeen 		return -EINVAL;
23982892c15dSEric Sandeen 
23992892c15dSEric Sandeen 	if (unlikely(cache_index < 0))
24002892c15dSEric Sandeen 		cache_index = 0;
24012892c15dSEric Sandeen 
24022892c15dSEric Sandeen 	mutex_lock(&ext4_grpinfo_slab_create_mutex);
24032892c15dSEric Sandeen 	if (ext4_groupinfo_caches[cache_index]) {
24042892c15dSEric Sandeen 		mutex_unlock(&ext4_grpinfo_slab_create_mutex);
24052892c15dSEric Sandeen 		return 0;	/* Already created */
24062892c15dSEric Sandeen 	}
24072892c15dSEric Sandeen 
24082892c15dSEric Sandeen 	slab_size = offsetof(struct ext4_group_info,
24092892c15dSEric Sandeen 				bb_counters[blocksize_bits + 2]);
24102892c15dSEric Sandeen 
24112892c15dSEric Sandeen 	cachep = kmem_cache_create(ext4_groupinfo_slab_names[cache_index],
24122892c15dSEric Sandeen 					slab_size, 0, SLAB_RECLAIM_ACCOUNT,
24132892c15dSEric Sandeen 					NULL);
24142892c15dSEric Sandeen 
2415823ba01fSTao Ma 	ext4_groupinfo_caches[cache_index] = cachep;
2416823ba01fSTao Ma 
24172892c15dSEric Sandeen 	mutex_unlock(&ext4_grpinfo_slab_create_mutex);
24182892c15dSEric Sandeen 	if (!cachep) {
24199d8b9ec4STheodore Ts'o 		printk(KERN_EMERG
24209d8b9ec4STheodore Ts'o 		       "EXT4-fs: no memory for groupinfo slab cache\n");
24212892c15dSEric Sandeen 		return -ENOMEM;
24222892c15dSEric Sandeen 	}
24232892c15dSEric Sandeen 
24242892c15dSEric Sandeen 	return 0;
24252892c15dSEric Sandeen }
24262892c15dSEric Sandeen 
2427c9de560dSAlex Tomas int ext4_mb_init(struct super_block *sb, int needs_recovery)
2428c9de560dSAlex Tomas {
2429c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(sb);
24306be2ded1SAneesh Kumar K.V 	unsigned i, j;
2431c9de560dSAlex Tomas 	unsigned offset;
2432c9de560dSAlex Tomas 	unsigned max;
243374767c5aSShen Feng 	int ret;
2434c9de560dSAlex Tomas 
24351927805eSEric Sandeen 	i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_offsets);
2436c9de560dSAlex Tomas 
2437c9de560dSAlex Tomas 	sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
2438c9de560dSAlex Tomas 	if (sbi->s_mb_offsets == NULL) {
2439fb1813f4SCurt Wohlgemuth 		ret = -ENOMEM;
2440fb1813f4SCurt Wohlgemuth 		goto out;
2441c9de560dSAlex Tomas 	}
2442ff7ef329SYasunori Goto 
24431927805eSEric Sandeen 	i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_maxs);
2444c9de560dSAlex Tomas 	sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
2445c9de560dSAlex Tomas 	if (sbi->s_mb_maxs == NULL) {
2446fb1813f4SCurt Wohlgemuth 		ret = -ENOMEM;
2447fb1813f4SCurt Wohlgemuth 		goto out;
2448fb1813f4SCurt Wohlgemuth 	}
2449fb1813f4SCurt Wohlgemuth 
24502892c15dSEric Sandeen 	ret = ext4_groupinfo_create_slab(sb->s_blocksize);
24512892c15dSEric Sandeen 	if (ret < 0)
2452fb1813f4SCurt Wohlgemuth 		goto out;
2453c9de560dSAlex Tomas 
2454c9de560dSAlex Tomas 	/* order 0 is regular bitmap */
2455c9de560dSAlex Tomas 	sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
2456c9de560dSAlex Tomas 	sbi->s_mb_offsets[0] = 0;
2457c9de560dSAlex Tomas 
2458c9de560dSAlex Tomas 	i = 1;
2459c9de560dSAlex Tomas 	offset = 0;
2460c9de560dSAlex Tomas 	max = sb->s_blocksize << 2;
2461c9de560dSAlex Tomas 	do {
2462c9de560dSAlex Tomas 		sbi->s_mb_offsets[i] = offset;
2463c9de560dSAlex Tomas 		sbi->s_mb_maxs[i] = max;
2464c9de560dSAlex Tomas 		offset += 1 << (sb->s_blocksize_bits - i);
2465c9de560dSAlex Tomas 		max = max >> 1;
2466c9de560dSAlex Tomas 		i++;
2467c9de560dSAlex Tomas 	} while (i <= sb->s_blocksize_bits + 1);
2468c9de560dSAlex Tomas 
2469c9de560dSAlex Tomas 	spin_lock_init(&sbi->s_md_lock);
2470c9de560dSAlex Tomas 	spin_lock_init(&sbi->s_bal_lock);
2471c9de560dSAlex Tomas 
2472c9de560dSAlex Tomas 	sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
2473c9de560dSAlex Tomas 	sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
2474c9de560dSAlex Tomas 	sbi->s_mb_stats = MB_DEFAULT_STATS;
2475c9de560dSAlex Tomas 	sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
2476c9de560dSAlex Tomas 	sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
247727baebb8STheodore Ts'o 	/*
247827baebb8STheodore Ts'o 	 * The default group preallocation is 512, which for 4k block
247927baebb8STheodore Ts'o 	 * sizes translates to 2 megabytes.  However for bigalloc file
248027baebb8STheodore Ts'o 	 * systems, this is probably too big (i.e, if the cluster size
248127baebb8STheodore Ts'o 	 * is 1 megabyte, then group preallocation size becomes half a
248227baebb8STheodore Ts'o 	 * gigabyte!).  As a default, we will keep a two megabyte
248327baebb8STheodore Ts'o 	 * group pralloc size for cluster sizes up to 64k, and after
248427baebb8STheodore Ts'o 	 * that, we will force a minimum group preallocation size of
248527baebb8STheodore Ts'o 	 * 32 clusters.  This translates to 8 megs when the cluster
248627baebb8STheodore Ts'o 	 * size is 256k, and 32 megs when the cluster size is 1 meg,
248727baebb8STheodore Ts'o 	 * which seems reasonable as a default.
248827baebb8STheodore Ts'o 	 */
248927baebb8STheodore Ts'o 	sbi->s_mb_group_prealloc = max(MB_DEFAULT_GROUP_PREALLOC >>
249027baebb8STheodore Ts'o 				       sbi->s_cluster_bits, 32);
2491d7a1fee1SDan Ehrenberg 	/*
2492d7a1fee1SDan Ehrenberg 	 * If there is a s_stripe > 1, then we set the s_mb_group_prealloc
2493d7a1fee1SDan Ehrenberg 	 * to the lowest multiple of s_stripe which is bigger than
2494d7a1fee1SDan Ehrenberg 	 * the s_mb_group_prealloc as determined above. We want
2495d7a1fee1SDan Ehrenberg 	 * the preallocation size to be an exact multiple of the
2496d7a1fee1SDan Ehrenberg 	 * RAID stripe size so that preallocations don't fragment
2497d7a1fee1SDan Ehrenberg 	 * the stripes.
2498d7a1fee1SDan Ehrenberg 	 */
2499d7a1fee1SDan Ehrenberg 	if (sbi->s_stripe > 1) {
2500d7a1fee1SDan Ehrenberg 		sbi->s_mb_group_prealloc = roundup(
2501d7a1fee1SDan Ehrenberg 			sbi->s_mb_group_prealloc, sbi->s_stripe);
2502d7a1fee1SDan Ehrenberg 	}
2503c9de560dSAlex Tomas 
2504730c213cSEric Sandeen 	sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
2505c9de560dSAlex Tomas 	if (sbi->s_locality_groups == NULL) {
2506fb1813f4SCurt Wohlgemuth 		ret = -ENOMEM;
2507*7aa0baeaSTao Ma 		goto out_free_groupinfo_slab;
2508c9de560dSAlex Tomas 	}
2509730c213cSEric Sandeen 	for_each_possible_cpu(i) {
2510c9de560dSAlex Tomas 		struct ext4_locality_group *lg;
2511730c213cSEric Sandeen 		lg = per_cpu_ptr(sbi->s_locality_groups, i);
2512c9de560dSAlex Tomas 		mutex_init(&lg->lg_mutex);
25136be2ded1SAneesh Kumar K.V 		for (j = 0; j < PREALLOC_TB_SIZE; j++)
25146be2ded1SAneesh Kumar K.V 			INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
2515c9de560dSAlex Tomas 		spin_lock_init(&lg->lg_prealloc_lock);
2516c9de560dSAlex Tomas 	}
2517c9de560dSAlex Tomas 
251879a77c5aSYu Jian 	/* init file for buddy data */
251979a77c5aSYu Jian 	ret = ext4_mb_init_backend(sb);
2520*7aa0baeaSTao Ma 	if (ret != 0)
2521*7aa0baeaSTao Ma 		goto out_free_locality_groups;
252279a77c5aSYu Jian 
2523296c355cSTheodore Ts'o 	if (sbi->s_proc)
2524296c355cSTheodore Ts'o 		proc_create_data("mb_groups", S_IRUGO, sbi->s_proc,
2525296c355cSTheodore Ts'o 				 &ext4_mb_seq_groups_fops, sb);
2526c9de560dSAlex Tomas 
25270390131bSFrank Mayhar 	if (sbi->s_journal)
25283e624fc7STheodore Ts'o 		sbi->s_journal->j_commit_callback = release_blocks_on_commit;
2529*7aa0baeaSTao Ma 
2530*7aa0baeaSTao Ma 	return 0;
2531*7aa0baeaSTao Ma 
2532*7aa0baeaSTao Ma out_free_locality_groups:
2533*7aa0baeaSTao Ma 	free_percpu(sbi->s_locality_groups);
2534*7aa0baeaSTao Ma 	sbi->s_locality_groups = NULL;
2535*7aa0baeaSTao Ma out_free_groupinfo_slab:
2536*7aa0baeaSTao Ma 	ext4_groupinfo_destroy_slabs();
2537fb1813f4SCurt Wohlgemuth out:
2538fb1813f4SCurt Wohlgemuth 	kfree(sbi->s_mb_offsets);
2539*7aa0baeaSTao Ma 	sbi->s_mb_offsets = NULL;
2540fb1813f4SCurt Wohlgemuth 	kfree(sbi->s_mb_maxs);
2541*7aa0baeaSTao Ma 	sbi->s_mb_maxs = NULL;
2542fb1813f4SCurt Wohlgemuth 	return ret;
2543c9de560dSAlex Tomas }
2544c9de560dSAlex Tomas 
2545955ce5f5SAneesh Kumar K.V /* need to called with the ext4 group lock held */
2546c9de560dSAlex Tomas static void ext4_mb_cleanup_pa(struct ext4_group_info *grp)
2547c9de560dSAlex Tomas {
2548c9de560dSAlex Tomas 	struct ext4_prealloc_space *pa;
2549c9de560dSAlex Tomas 	struct list_head *cur, *tmp;
2550c9de560dSAlex Tomas 	int count = 0;
2551c9de560dSAlex Tomas 
2552c9de560dSAlex Tomas 	list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
2553c9de560dSAlex Tomas 		pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
2554c9de560dSAlex Tomas 		list_del(&pa->pa_group_list);
2555c9de560dSAlex Tomas 		count++;
2556688f05a0SAneesh Kumar K.V 		kmem_cache_free(ext4_pspace_cachep, pa);
2557c9de560dSAlex Tomas 	}
2558c9de560dSAlex Tomas 	if (count)
25596ba495e9STheodore Ts'o 		mb_debug(1, "mballoc: %u PAs left\n", count);
2560c9de560dSAlex Tomas 
2561c9de560dSAlex Tomas }
2562c9de560dSAlex Tomas 
2563c9de560dSAlex Tomas int ext4_mb_release(struct super_block *sb)
2564c9de560dSAlex Tomas {
25658df9675fSTheodore Ts'o 	ext4_group_t ngroups = ext4_get_groups_count(sb);
2566c9de560dSAlex Tomas 	ext4_group_t i;
2567c9de560dSAlex Tomas 	int num_meta_group_infos;
2568c9de560dSAlex Tomas 	struct ext4_group_info *grinfo;
2569c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(sb);
2570fb1813f4SCurt Wohlgemuth 	struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
2571c9de560dSAlex Tomas 
2572c9de560dSAlex Tomas 	if (sbi->s_group_info) {
25738df9675fSTheodore Ts'o 		for (i = 0; i < ngroups; i++) {
2574c9de560dSAlex Tomas 			grinfo = ext4_get_group_info(sb, i);
2575c9de560dSAlex Tomas #ifdef DOUBLE_CHECK
2576c9de560dSAlex Tomas 			kfree(grinfo->bb_bitmap);
2577c9de560dSAlex Tomas #endif
2578c9de560dSAlex Tomas 			ext4_lock_group(sb, i);
2579c9de560dSAlex Tomas 			ext4_mb_cleanup_pa(grinfo);
2580c9de560dSAlex Tomas 			ext4_unlock_group(sb, i);
2581fb1813f4SCurt Wohlgemuth 			kmem_cache_free(cachep, grinfo);
2582c9de560dSAlex Tomas 		}
25838df9675fSTheodore Ts'o 		num_meta_group_infos = (ngroups +
2584c9de560dSAlex Tomas 				EXT4_DESC_PER_BLOCK(sb) - 1) >>
2585c9de560dSAlex Tomas 			EXT4_DESC_PER_BLOCK_BITS(sb);
2586c9de560dSAlex Tomas 		for (i = 0; i < num_meta_group_infos; i++)
2587c9de560dSAlex Tomas 			kfree(sbi->s_group_info[i]);
2588f18a5f21STheodore Ts'o 		ext4_kvfree(sbi->s_group_info);
2589c9de560dSAlex Tomas 	}
2590c9de560dSAlex Tomas 	kfree(sbi->s_mb_offsets);
2591c9de560dSAlex Tomas 	kfree(sbi->s_mb_maxs);
2592c9de560dSAlex Tomas 	if (sbi->s_buddy_cache)
2593c9de560dSAlex Tomas 		iput(sbi->s_buddy_cache);
2594c9de560dSAlex Tomas 	if (sbi->s_mb_stats) {
25959d8b9ec4STheodore Ts'o 		ext4_msg(sb, KERN_INFO,
25969d8b9ec4STheodore Ts'o 		       "mballoc: %u blocks %u reqs (%u success)",
2597c9de560dSAlex Tomas 				atomic_read(&sbi->s_bal_allocated),
2598c9de560dSAlex Tomas 				atomic_read(&sbi->s_bal_reqs),
2599c9de560dSAlex Tomas 				atomic_read(&sbi->s_bal_success));
26009d8b9ec4STheodore Ts'o 		ext4_msg(sb, KERN_INFO,
26019d8b9ec4STheodore Ts'o 		      "mballoc: %u extents scanned, %u goal hits, "
26029d8b9ec4STheodore Ts'o 				"%u 2^N hits, %u breaks, %u lost",
2603c9de560dSAlex Tomas 				atomic_read(&sbi->s_bal_ex_scanned),
2604c9de560dSAlex Tomas 				atomic_read(&sbi->s_bal_goals),
2605c9de560dSAlex Tomas 				atomic_read(&sbi->s_bal_2orders),
2606c9de560dSAlex Tomas 				atomic_read(&sbi->s_bal_breaks),
2607c9de560dSAlex Tomas 				atomic_read(&sbi->s_mb_lost_chunks));
26089d8b9ec4STheodore Ts'o 		ext4_msg(sb, KERN_INFO,
26099d8b9ec4STheodore Ts'o 		       "mballoc: %lu generated and it took %Lu",
2610ced156e4STao Ma 				sbi->s_mb_buddies_generated,
2611c9de560dSAlex Tomas 				sbi->s_mb_generation_time);
26129d8b9ec4STheodore Ts'o 		ext4_msg(sb, KERN_INFO,
26139d8b9ec4STheodore Ts'o 		       "mballoc: %u preallocated, %u discarded",
2614c9de560dSAlex Tomas 				atomic_read(&sbi->s_mb_preallocated),
2615c9de560dSAlex Tomas 				atomic_read(&sbi->s_mb_discarded));
2616c9de560dSAlex Tomas 	}
2617c9de560dSAlex Tomas 
2618730c213cSEric Sandeen 	free_percpu(sbi->s_locality_groups);
2619296c355cSTheodore Ts'o 	if (sbi->s_proc)
2620296c355cSTheodore Ts'o 		remove_proc_entry("mb_groups", sbi->s_proc);
2621c9de560dSAlex Tomas 
2622c9de560dSAlex Tomas 	return 0;
2623c9de560dSAlex Tomas }
2624c9de560dSAlex Tomas 
262577ca6cdfSLukas Czerner static inline int ext4_issue_discard(struct super_block *sb,
262684130193STheodore Ts'o 		ext4_group_t block_group, ext4_grpblk_t cluster, int count)
26275c521830SJiaying Zhang {
26285c521830SJiaying Zhang 	ext4_fsblk_t discard_block;
26295c521830SJiaying Zhang 
263084130193STheodore Ts'o 	discard_block = (EXT4_C2B(EXT4_SB(sb), cluster) +
263184130193STheodore Ts'o 			 ext4_group_first_block_no(sb, block_group));
263284130193STheodore Ts'o 	count = EXT4_C2B(EXT4_SB(sb), count);
26335c521830SJiaying Zhang 	trace_ext4_discard_blocks(sb,
26345c521830SJiaying Zhang 			(unsigned long long) discard_block, count);
263593259636SLukas Czerner 	return sb_issue_discard(sb, discard_block, count, GFP_NOFS, 0);
26365c521830SJiaying Zhang }
26375c521830SJiaying Zhang 
26383e624fc7STheodore Ts'o /*
26393e624fc7STheodore Ts'o  * This function is called by the jbd2 layer once the commit has finished,
26403e624fc7STheodore Ts'o  * so we know we can free the blocks that were released with that commit.
26413e624fc7STheodore Ts'o  */
26423e624fc7STheodore Ts'o static void release_blocks_on_commit(journal_t *journal, transaction_t *txn)
2643c9de560dSAlex Tomas {
26443e624fc7STheodore Ts'o 	struct super_block *sb = journal->j_private;
2645c9de560dSAlex Tomas 	struct ext4_buddy e4b;
2646c894058dSAneesh Kumar K.V 	struct ext4_group_info *db;
2647d9f34504STheodore Ts'o 	int err, count = 0, count2 = 0;
2648c894058dSAneesh Kumar K.V 	struct ext4_free_data *entry;
26493e624fc7STheodore Ts'o 	struct list_head *l, *ltmp;
2650c9de560dSAlex Tomas 
26513e624fc7STheodore Ts'o 	list_for_each_safe(l, ltmp, &txn->t_private_list) {
26523e624fc7STheodore Ts'o 		entry = list_entry(l, struct ext4_free_data, list);
2653c9de560dSAlex Tomas 
26546ba495e9STheodore Ts'o 		mb_debug(1, "gonna free %u blocks in group %u (0x%p):",
2655c894058dSAneesh Kumar K.V 			 entry->count, entry->group, entry);
2656c9de560dSAlex Tomas 
2657d9f34504STheodore Ts'o 		if (test_opt(sb, DISCARD))
2658d9f34504STheodore Ts'o 			ext4_issue_discard(sb, entry->group,
265984130193STheodore Ts'o 					   entry->start_cluster, entry->count);
2660b90f6870STheodore Ts'o 
2661c894058dSAneesh Kumar K.V 		err = ext4_mb_load_buddy(sb, entry->group, &e4b);
2662c9de560dSAlex Tomas 		/* we expect to find existing buddy because it's pinned */
2663c9de560dSAlex Tomas 		BUG_ON(err != 0);
2664c9de560dSAlex Tomas 
2665c894058dSAneesh Kumar K.V 		db = e4b.bd_info;
2666c9de560dSAlex Tomas 		/* there are blocks to put in buddy to make them really free */
2667c894058dSAneesh Kumar K.V 		count += entry->count;
2668c9de560dSAlex Tomas 		count2++;
2669c894058dSAneesh Kumar K.V 		ext4_lock_group(sb, entry->group);
2670c894058dSAneesh Kumar K.V 		/* Take it out of per group rb tree */
2671c894058dSAneesh Kumar K.V 		rb_erase(&entry->node, &(db->bb_free_root));
267284130193STheodore Ts'o 		mb_free_blocks(NULL, &e4b, entry->start_cluster, entry->count);
2673c9de560dSAlex Tomas 
26743d56b8d2STao Ma 		/*
26753d56b8d2STao Ma 		 * Clear the trimmed flag for the group so that the next
26763d56b8d2STao Ma 		 * ext4_trim_fs can trim it.
26773d56b8d2STao Ma 		 * If the volume is mounted with -o discard, online discard
26783d56b8d2STao Ma 		 * is supported and the free blocks will be trimmed online.
26793d56b8d2STao Ma 		 */
26803d56b8d2STao Ma 		if (!test_opt(sb, DISCARD))
26813d56b8d2STao Ma 			EXT4_MB_GRP_CLEAR_TRIMMED(db);
26823d56b8d2STao Ma 
2683c894058dSAneesh Kumar K.V 		if (!db->bb_free_root.rb_node) {
2684c894058dSAneesh Kumar K.V 			/* No more items in the per group rb tree
2685c894058dSAneesh Kumar K.V 			 * balance refcounts from ext4_mb_free_metadata()
2686c894058dSAneesh Kumar K.V 			 */
2687c9de560dSAlex Tomas 			page_cache_release(e4b.bd_buddy_page);
2688c9de560dSAlex Tomas 			page_cache_release(e4b.bd_bitmap_page);
2689c894058dSAneesh Kumar K.V 		}
2690c894058dSAneesh Kumar K.V 		ext4_unlock_group(sb, entry->group);
2691c894058dSAneesh Kumar K.V 		kmem_cache_free(ext4_free_ext_cachep, entry);
2692e39e07fdSJing Zhang 		ext4_mb_unload_buddy(&e4b);
26933e624fc7STheodore Ts'o 	}
2694c9de560dSAlex Tomas 
26956ba495e9STheodore Ts'o 	mb_debug(1, "freed %u blocks in %u structures\n", count, count2);
2696c9de560dSAlex Tomas }
2697c9de560dSAlex Tomas 
26986ba495e9STheodore Ts'o #ifdef CONFIG_EXT4_DEBUG
26996ba495e9STheodore Ts'o u8 mb_enable_debug __read_mostly;
27006ba495e9STheodore Ts'o 
27016ba495e9STheodore Ts'o static struct dentry *debugfs_dir;
27026ba495e9STheodore Ts'o static struct dentry *debugfs_debug;
27036ba495e9STheodore Ts'o 
27046ba495e9STheodore Ts'o static void __init ext4_create_debugfs_entry(void)
27056ba495e9STheodore Ts'o {
27066ba495e9STheodore Ts'o 	debugfs_dir = debugfs_create_dir("ext4", NULL);
27076ba495e9STheodore Ts'o 	if (debugfs_dir)
27086ba495e9STheodore Ts'o 		debugfs_debug = debugfs_create_u8("mballoc-debug",
27096ba495e9STheodore Ts'o 						  S_IRUGO | S_IWUSR,
27106ba495e9STheodore Ts'o 						  debugfs_dir,
27116ba495e9STheodore Ts'o 						  &mb_enable_debug);
27126ba495e9STheodore Ts'o }
27136ba495e9STheodore Ts'o 
27146ba495e9STheodore Ts'o static void ext4_remove_debugfs_entry(void)
27156ba495e9STheodore Ts'o {
27166ba495e9STheodore Ts'o 	debugfs_remove(debugfs_debug);
27176ba495e9STheodore Ts'o 	debugfs_remove(debugfs_dir);
27186ba495e9STheodore Ts'o }
27196ba495e9STheodore Ts'o 
27206ba495e9STheodore Ts'o #else
27216ba495e9STheodore Ts'o 
27226ba495e9STheodore Ts'o static void __init ext4_create_debugfs_entry(void)
27236ba495e9STheodore Ts'o {
27246ba495e9STheodore Ts'o }
27256ba495e9STheodore Ts'o 
27266ba495e9STheodore Ts'o static void ext4_remove_debugfs_entry(void)
27276ba495e9STheodore Ts'o {
27286ba495e9STheodore Ts'o }
27296ba495e9STheodore Ts'o 
27306ba495e9STheodore Ts'o #endif
27316ba495e9STheodore Ts'o 
27325dabfc78STheodore Ts'o int __init ext4_init_mballoc(void)
2733c9de560dSAlex Tomas {
273416828088STheodore Ts'o 	ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space,
273516828088STheodore Ts'o 					SLAB_RECLAIM_ACCOUNT);
2736c9de560dSAlex Tomas 	if (ext4_pspace_cachep == NULL)
2737c9de560dSAlex Tomas 		return -ENOMEM;
2738c9de560dSAlex Tomas 
273916828088STheodore Ts'o 	ext4_ac_cachep = KMEM_CACHE(ext4_allocation_context,
274016828088STheodore Ts'o 				    SLAB_RECLAIM_ACCOUNT);
2741256bdb49SEric Sandeen 	if (ext4_ac_cachep == NULL) {
2742256bdb49SEric Sandeen 		kmem_cache_destroy(ext4_pspace_cachep);
2743256bdb49SEric Sandeen 		return -ENOMEM;
2744256bdb49SEric Sandeen 	}
2745c894058dSAneesh Kumar K.V 
274616828088STheodore Ts'o 	ext4_free_ext_cachep = KMEM_CACHE(ext4_free_data,
274716828088STheodore Ts'o 					  SLAB_RECLAIM_ACCOUNT);
2748c894058dSAneesh Kumar K.V 	if (ext4_free_ext_cachep == NULL) {
2749c894058dSAneesh Kumar K.V 		kmem_cache_destroy(ext4_pspace_cachep);
2750c894058dSAneesh Kumar K.V 		kmem_cache_destroy(ext4_ac_cachep);
2751c894058dSAneesh Kumar K.V 		return -ENOMEM;
2752c894058dSAneesh Kumar K.V 	}
27536ba495e9STheodore Ts'o 	ext4_create_debugfs_entry();
2754c9de560dSAlex Tomas 	return 0;
2755c9de560dSAlex Tomas }
2756c9de560dSAlex Tomas 
27575dabfc78STheodore Ts'o void ext4_exit_mballoc(void)
2758c9de560dSAlex Tomas {
27593e03f9caSJesper Dangaard Brouer 	/*
27603e03f9caSJesper Dangaard Brouer 	 * Wait for completion of call_rcu()'s on ext4_pspace_cachep
27613e03f9caSJesper Dangaard Brouer 	 * before destroying the slab cache.
27623e03f9caSJesper Dangaard Brouer 	 */
27633e03f9caSJesper Dangaard Brouer 	rcu_barrier();
2764c9de560dSAlex Tomas 	kmem_cache_destroy(ext4_pspace_cachep);
2765256bdb49SEric Sandeen 	kmem_cache_destroy(ext4_ac_cachep);
2766c894058dSAneesh Kumar K.V 	kmem_cache_destroy(ext4_free_ext_cachep);
27672892c15dSEric Sandeen 	ext4_groupinfo_destroy_slabs();
27686ba495e9STheodore Ts'o 	ext4_remove_debugfs_entry();
2769c9de560dSAlex Tomas }
2770c9de560dSAlex Tomas 
2771c9de560dSAlex Tomas 
2772c9de560dSAlex Tomas /*
277373b2c716SUwe Kleine-König  * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
2774c9de560dSAlex Tomas  * Returns 0 if success or error code
2775c9de560dSAlex Tomas  */
27764ddfef7bSEric Sandeen static noinline_for_stack int
27774ddfef7bSEric Sandeen ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
277853accfa9STheodore Ts'o 				handle_t *handle, unsigned int reserv_clstrs)
2779c9de560dSAlex Tomas {
2780c9de560dSAlex Tomas 	struct buffer_head *bitmap_bh = NULL;
2781c9de560dSAlex Tomas 	struct ext4_group_desc *gdp;
2782c9de560dSAlex Tomas 	struct buffer_head *gdp_bh;
2783c9de560dSAlex Tomas 	struct ext4_sb_info *sbi;
2784c9de560dSAlex Tomas 	struct super_block *sb;
2785c9de560dSAlex Tomas 	ext4_fsblk_t block;
2786519deca0SAneesh Kumar K.V 	int err, len;
2787c9de560dSAlex Tomas 
2788c9de560dSAlex Tomas 	BUG_ON(ac->ac_status != AC_STATUS_FOUND);
2789c9de560dSAlex Tomas 	BUG_ON(ac->ac_b_ex.fe_len <= 0);
2790c9de560dSAlex Tomas 
2791c9de560dSAlex Tomas 	sb = ac->ac_sb;
2792c9de560dSAlex Tomas 	sbi = EXT4_SB(sb);
2793c9de560dSAlex Tomas 
2794c9de560dSAlex Tomas 	err = -EIO;
2795574ca174STheodore Ts'o 	bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
2796c9de560dSAlex Tomas 	if (!bitmap_bh)
2797c9de560dSAlex Tomas 		goto out_err;
2798c9de560dSAlex Tomas 
2799c9de560dSAlex Tomas 	err = ext4_journal_get_write_access(handle, bitmap_bh);
2800c9de560dSAlex Tomas 	if (err)
2801c9de560dSAlex Tomas 		goto out_err;
2802c9de560dSAlex Tomas 
2803c9de560dSAlex Tomas 	err = -EIO;
2804c9de560dSAlex Tomas 	gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
2805c9de560dSAlex Tomas 	if (!gdp)
2806c9de560dSAlex Tomas 		goto out_err;
2807c9de560dSAlex Tomas 
2808a9df9a49STheodore Ts'o 	ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
2809021b65bbSTheodore Ts'o 			ext4_free_group_clusters(sb, gdp));
281003cddb80SAneesh Kumar K.V 
2811c9de560dSAlex Tomas 	err = ext4_journal_get_write_access(handle, gdp_bh);
2812c9de560dSAlex Tomas 	if (err)
2813c9de560dSAlex Tomas 		goto out_err;
2814c9de560dSAlex Tomas 
2815bda00de7SAkinobu Mita 	block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
2816c9de560dSAlex Tomas 
281753accfa9STheodore Ts'o 	len = EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
28186fd058f7STheodore Ts'o 	if (!ext4_data_block_valid(sbi, block, len)) {
281912062dddSEric Sandeen 		ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
28206fd058f7STheodore Ts'o 			   "fs metadata\n", block, block+len);
2821519deca0SAneesh Kumar K.V 		/* File system mounted not to panic on error
2822519deca0SAneesh Kumar K.V 		 * Fix the bitmap and repeat the block allocation
2823519deca0SAneesh Kumar K.V 		 * We leak some of the blocks here.
2824519deca0SAneesh Kumar K.V 		 */
2825955ce5f5SAneesh Kumar K.V 		ext4_lock_group(sb, ac->ac_b_ex.fe_group);
2826c3e94d1dSYongqiang Yang 		ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
2827519deca0SAneesh Kumar K.V 			      ac->ac_b_ex.fe_len);
2828955ce5f5SAneesh Kumar K.V 		ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
28290390131bSFrank Mayhar 		err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
2830519deca0SAneesh Kumar K.V 		if (!err)
2831519deca0SAneesh Kumar K.V 			err = -EAGAIN;
2832519deca0SAneesh Kumar K.V 		goto out_err;
2833c9de560dSAlex Tomas 	}
2834955ce5f5SAneesh Kumar K.V 
2835955ce5f5SAneesh Kumar K.V 	ext4_lock_group(sb, ac->ac_b_ex.fe_group);
2836c9de560dSAlex Tomas #ifdef AGGRESSIVE_CHECK
2837c9de560dSAlex Tomas 	{
2838c9de560dSAlex Tomas 		int i;
2839c9de560dSAlex Tomas 		for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
2840c9de560dSAlex Tomas 			BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
2841c9de560dSAlex Tomas 						bitmap_bh->b_data));
2842c9de560dSAlex Tomas 		}
2843c9de560dSAlex Tomas 	}
2844c9de560dSAlex Tomas #endif
2845c3e94d1dSYongqiang Yang 	ext4_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
2846c3e94d1dSYongqiang Yang 		      ac->ac_b_ex.fe_len);
2847c9de560dSAlex Tomas 	if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
2848c9de560dSAlex Tomas 		gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
2849021b65bbSTheodore Ts'o 		ext4_free_group_clusters_set(sb, gdp,
2850cff1dfd7STheodore Ts'o 					     ext4_free_clusters_after_init(sb,
2851560671a0SAneesh Kumar K.V 						ac->ac_b_ex.fe_group, gdp));
2852c9de560dSAlex Tomas 	}
2853021b65bbSTheodore Ts'o 	len = ext4_free_group_clusters(sb, gdp) - ac->ac_b_ex.fe_len;
2854021b65bbSTheodore Ts'o 	ext4_free_group_clusters_set(sb, gdp, len);
2855c9de560dSAlex Tomas 	gdp->bg_checksum = ext4_group_desc_csum(sbi, ac->ac_b_ex.fe_group, gdp);
2856955ce5f5SAneesh Kumar K.V 
2857955ce5f5SAneesh Kumar K.V 	ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
285857042651STheodore Ts'o 	percpu_counter_sub(&sbi->s_freeclusters_counter, ac->ac_b_ex.fe_len);
2859d2a17637SMingming Cao 	/*
28606bc6e63fSAneesh Kumar K.V 	 * Now reduce the dirty block count also. Should not go negative
2861d2a17637SMingming Cao 	 */
28626bc6e63fSAneesh Kumar K.V 	if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
28636bc6e63fSAneesh Kumar K.V 		/* release all the reserved blocks if non delalloc */
286457042651STheodore Ts'o 		percpu_counter_sub(&sbi->s_dirtyclusters_counter,
286557042651STheodore Ts'o 				   reserv_clstrs);
2866c9de560dSAlex Tomas 
2867772cb7c8SJose R. Santos 	if (sbi->s_log_groups_per_flex) {
2868772cb7c8SJose R. Santos 		ext4_group_t flex_group = ext4_flex_group(sbi,
2869772cb7c8SJose R. Santos 							  ac->ac_b_ex.fe_group);
28709f24e420STheodore Ts'o 		atomic_sub(ac->ac_b_ex.fe_len,
287124aaa8efSTheodore Ts'o 			   &sbi->s_flex_groups[flex_group].free_clusters);
2872772cb7c8SJose R. Santos 	}
2873772cb7c8SJose R. Santos 
28740390131bSFrank Mayhar 	err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
2875c9de560dSAlex Tomas 	if (err)
2876c9de560dSAlex Tomas 		goto out_err;
28770390131bSFrank Mayhar 	err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
2878c9de560dSAlex Tomas 
2879c9de560dSAlex Tomas out_err:
2880a0375156STheodore Ts'o 	ext4_mark_super_dirty(sb);
288142a10addSAneesh Kumar K.V 	brelse(bitmap_bh);
2882c9de560dSAlex Tomas 	return err;
2883c9de560dSAlex Tomas }
2884c9de560dSAlex Tomas 
2885c9de560dSAlex Tomas /*
2886c9de560dSAlex Tomas  * here we normalize request for locality group
2887d7a1fee1SDan Ehrenberg  * Group request are normalized to s_mb_group_prealloc, which goes to
2888d7a1fee1SDan Ehrenberg  * s_strip if we set the same via mount option.
2889d7a1fee1SDan Ehrenberg  * s_mb_group_prealloc can be configured via
2890b713a5ecSTheodore Ts'o  * /sys/fs/ext4/<partition>/mb_group_prealloc
2891c9de560dSAlex Tomas  *
2892c9de560dSAlex Tomas  * XXX: should we try to preallocate more than the group has now?
2893c9de560dSAlex Tomas  */
2894c9de560dSAlex Tomas static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
2895c9de560dSAlex Tomas {
2896c9de560dSAlex Tomas 	struct super_block *sb = ac->ac_sb;
2897c9de560dSAlex Tomas 	struct ext4_locality_group *lg = ac->ac_lg;
2898c9de560dSAlex Tomas 
2899c9de560dSAlex Tomas 	BUG_ON(lg == NULL);
2900c9de560dSAlex Tomas 	ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
29016ba495e9STheodore Ts'o 	mb_debug(1, "#%u: goal %u blocks for locality group\n",
2902c9de560dSAlex Tomas 		current->pid, ac->ac_g_ex.fe_len);
2903c9de560dSAlex Tomas }
2904c9de560dSAlex Tomas 
2905c9de560dSAlex Tomas /*
2906c9de560dSAlex Tomas  * Normalization means making request better in terms of
2907c9de560dSAlex Tomas  * size and alignment
2908c9de560dSAlex Tomas  */
29094ddfef7bSEric Sandeen static noinline_for_stack void
29104ddfef7bSEric Sandeen ext4_mb_normalize_request(struct ext4_allocation_context *ac,
2911c9de560dSAlex Tomas 				struct ext4_allocation_request *ar)
2912c9de560dSAlex Tomas {
291353accfa9STheodore Ts'o 	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
2914c9de560dSAlex Tomas 	int bsbits, max;
2915c9de560dSAlex Tomas 	ext4_lblk_t end;
2916c9de560dSAlex Tomas 	loff_t size, orig_size, start_off;
29175a0790c2SAndi Kleen 	ext4_lblk_t start;
2918c9de560dSAlex Tomas 	struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
29199a0762c5SAneesh Kumar K.V 	struct ext4_prealloc_space *pa;
2920c9de560dSAlex Tomas 
2921c9de560dSAlex Tomas 	/* do normalize only data requests, metadata requests
2922c9de560dSAlex Tomas 	   do not need preallocation */
2923c9de560dSAlex Tomas 	if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
2924c9de560dSAlex Tomas 		return;
2925c9de560dSAlex Tomas 
2926c9de560dSAlex Tomas 	/* sometime caller may want exact blocks */
2927c9de560dSAlex Tomas 	if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
2928c9de560dSAlex Tomas 		return;
2929c9de560dSAlex Tomas 
2930c9de560dSAlex Tomas 	/* caller may indicate that preallocation isn't
2931c9de560dSAlex Tomas 	 * required (it's a tail, for example) */
2932c9de560dSAlex Tomas 	if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
2933c9de560dSAlex Tomas 		return;
2934c9de560dSAlex Tomas 
2935c9de560dSAlex Tomas 	if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
2936c9de560dSAlex Tomas 		ext4_mb_normalize_group_request(ac);
2937c9de560dSAlex Tomas 		return ;
2938c9de560dSAlex Tomas 	}
2939c9de560dSAlex Tomas 
2940c9de560dSAlex Tomas 	bsbits = ac->ac_sb->s_blocksize_bits;
2941c9de560dSAlex Tomas 
2942c9de560dSAlex Tomas 	/* first, let's learn actual file size
2943c9de560dSAlex Tomas 	 * given current request is allocated */
294453accfa9STheodore Ts'o 	size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
2945c9de560dSAlex Tomas 	size = size << bsbits;
2946c9de560dSAlex Tomas 	if (size < i_size_read(ac->ac_inode))
2947c9de560dSAlex Tomas 		size = i_size_read(ac->ac_inode);
29485a0790c2SAndi Kleen 	orig_size = size;
2949c9de560dSAlex Tomas 
29501930479cSValerie Clement 	/* max size of free chunks */
29511930479cSValerie Clement 	max = 2 << bsbits;
2952c9de560dSAlex Tomas 
29531930479cSValerie Clement #define NRL_CHECK_SIZE(req, size, max, chunk_size)	\
29541930479cSValerie Clement 		(req <= (size) || max <= (chunk_size))
2955c9de560dSAlex Tomas 
2956c9de560dSAlex Tomas 	/* first, try to predict filesize */
2957c9de560dSAlex Tomas 	/* XXX: should this table be tunable? */
2958c9de560dSAlex Tomas 	start_off = 0;
2959c9de560dSAlex Tomas 	if (size <= 16 * 1024) {
2960c9de560dSAlex Tomas 		size = 16 * 1024;
2961c9de560dSAlex Tomas 	} else if (size <= 32 * 1024) {
2962c9de560dSAlex Tomas 		size = 32 * 1024;
2963c9de560dSAlex Tomas 	} else if (size <= 64 * 1024) {
2964c9de560dSAlex Tomas 		size = 64 * 1024;
2965c9de560dSAlex Tomas 	} else if (size <= 128 * 1024) {
2966c9de560dSAlex Tomas 		size = 128 * 1024;
2967c9de560dSAlex Tomas 	} else if (size <= 256 * 1024) {
2968c9de560dSAlex Tomas 		size = 256 * 1024;
2969c9de560dSAlex Tomas 	} else if (size <= 512 * 1024) {
2970c9de560dSAlex Tomas 		size = 512 * 1024;
2971c9de560dSAlex Tomas 	} else if (size <= 1024 * 1024) {
2972c9de560dSAlex Tomas 		size = 1024 * 1024;
29731930479cSValerie Clement 	} else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
2974c9de560dSAlex Tomas 		start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
29751930479cSValerie Clement 						(21 - bsbits)) << 21;
29761930479cSValerie Clement 		size = 2 * 1024 * 1024;
29771930479cSValerie Clement 	} else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
2978c9de560dSAlex Tomas 		start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
2979c9de560dSAlex Tomas 							(22 - bsbits)) << 22;
2980c9de560dSAlex Tomas 		size = 4 * 1024 * 1024;
2981c9de560dSAlex Tomas 	} else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
29821930479cSValerie Clement 					(8<<20)>>bsbits, max, 8 * 1024)) {
2983c9de560dSAlex Tomas 		start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
2984c9de560dSAlex Tomas 							(23 - bsbits)) << 23;
2985c9de560dSAlex Tomas 		size = 8 * 1024 * 1024;
2986c9de560dSAlex Tomas 	} else {
2987c9de560dSAlex Tomas 		start_off = (loff_t)ac->ac_o_ex.fe_logical << bsbits;
2988c9de560dSAlex Tomas 		size	  = ac->ac_o_ex.fe_len << bsbits;
2989c9de560dSAlex Tomas 	}
29905a0790c2SAndi Kleen 	size = size >> bsbits;
29915a0790c2SAndi Kleen 	start = start_off >> bsbits;
2992c9de560dSAlex Tomas 
2993c9de560dSAlex Tomas 	/* don't cover already allocated blocks in selected range */
2994c9de560dSAlex Tomas 	if (ar->pleft && start <= ar->lleft) {
2995c9de560dSAlex Tomas 		size -= ar->lleft + 1 - start;
2996c9de560dSAlex Tomas 		start = ar->lleft + 1;
2997c9de560dSAlex Tomas 	}
2998c9de560dSAlex Tomas 	if (ar->pright && start + size - 1 >= ar->lright)
2999c9de560dSAlex Tomas 		size -= start + size - ar->lright;
3000c9de560dSAlex Tomas 
3001c9de560dSAlex Tomas 	end = start + size;
3002c9de560dSAlex Tomas 
3003c9de560dSAlex Tomas 	/* check we don't cross already preallocated blocks */
3004c9de560dSAlex Tomas 	rcu_read_lock();
30059a0762c5SAneesh Kumar K.V 	list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
3006498e5f24STheodore Ts'o 		ext4_lblk_t pa_end;
3007c9de560dSAlex Tomas 
3008c9de560dSAlex Tomas 		if (pa->pa_deleted)
3009c9de560dSAlex Tomas 			continue;
3010c9de560dSAlex Tomas 		spin_lock(&pa->pa_lock);
3011c9de560dSAlex Tomas 		if (pa->pa_deleted) {
3012c9de560dSAlex Tomas 			spin_unlock(&pa->pa_lock);
3013c9de560dSAlex Tomas 			continue;
3014c9de560dSAlex Tomas 		}
3015c9de560dSAlex Tomas 
301653accfa9STheodore Ts'o 		pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
301753accfa9STheodore Ts'o 						  pa->pa_len);
3018c9de560dSAlex Tomas 
3019c9de560dSAlex Tomas 		/* PA must not overlap original request */
3020c9de560dSAlex Tomas 		BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
3021c9de560dSAlex Tomas 			ac->ac_o_ex.fe_logical < pa->pa_lstart));
3022c9de560dSAlex Tomas 
302338877f4eSEric Sandeen 		/* skip PAs this normalized request doesn't overlap with */
302438877f4eSEric Sandeen 		if (pa->pa_lstart >= end || pa_end <= start) {
3025c9de560dSAlex Tomas 			spin_unlock(&pa->pa_lock);
3026c9de560dSAlex Tomas 			continue;
3027c9de560dSAlex Tomas 		}
3028c9de560dSAlex Tomas 		BUG_ON(pa->pa_lstart <= start && pa_end >= end);
3029c9de560dSAlex Tomas 
303038877f4eSEric Sandeen 		/* adjust start or end to be adjacent to this pa */
3031c9de560dSAlex Tomas 		if (pa_end <= ac->ac_o_ex.fe_logical) {
3032c9de560dSAlex Tomas 			BUG_ON(pa_end < start);
3033c9de560dSAlex Tomas 			start = pa_end;
303438877f4eSEric Sandeen 		} else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
3035c9de560dSAlex Tomas 			BUG_ON(pa->pa_lstart > end);
3036c9de560dSAlex Tomas 			end = pa->pa_lstart;
3037c9de560dSAlex Tomas 		}
3038c9de560dSAlex Tomas 		spin_unlock(&pa->pa_lock);
3039c9de560dSAlex Tomas 	}
3040c9de560dSAlex Tomas 	rcu_read_unlock();
3041c9de560dSAlex Tomas 	size = end - start;
3042c9de560dSAlex Tomas 
3043c9de560dSAlex Tomas 	/* XXX: extra loop to check we really don't overlap preallocations */
3044c9de560dSAlex Tomas 	rcu_read_lock();
30459a0762c5SAneesh Kumar K.V 	list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
3046498e5f24STheodore Ts'o 		ext4_lblk_t pa_end;
304753accfa9STheodore Ts'o 
3048c9de560dSAlex Tomas 		spin_lock(&pa->pa_lock);
3049c9de560dSAlex Tomas 		if (pa->pa_deleted == 0) {
305053accfa9STheodore Ts'o 			pa_end = pa->pa_lstart + EXT4_C2B(EXT4_SB(ac->ac_sb),
305153accfa9STheodore Ts'o 							  pa->pa_len);
3052c9de560dSAlex Tomas 			BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
3053c9de560dSAlex Tomas 		}
3054c9de560dSAlex Tomas 		spin_unlock(&pa->pa_lock);
3055c9de560dSAlex Tomas 	}
3056c9de560dSAlex Tomas 	rcu_read_unlock();
3057c9de560dSAlex Tomas 
3058c9de560dSAlex Tomas 	if (start + size <= ac->ac_o_ex.fe_logical &&
3059c9de560dSAlex Tomas 			start > ac->ac_o_ex.fe_logical) {
30609d8b9ec4STheodore Ts'o 		ext4_msg(ac->ac_sb, KERN_ERR,
30619d8b9ec4STheodore Ts'o 			 "start %lu, size %lu, fe_logical %lu",
3062c9de560dSAlex Tomas 			 (unsigned long) start, (unsigned long) size,
3063c9de560dSAlex Tomas 			 (unsigned long) ac->ac_o_ex.fe_logical);
3064c9de560dSAlex Tomas 	}
3065c9de560dSAlex Tomas 	BUG_ON(start + size <= ac->ac_o_ex.fe_logical &&
3066c9de560dSAlex Tomas 			start > ac->ac_o_ex.fe_logical);
30677137d7a4STheodore Ts'o 	BUG_ON(size <= 0 || size > EXT4_CLUSTERS_PER_GROUP(ac->ac_sb));
3068c9de560dSAlex Tomas 
3069c9de560dSAlex Tomas 	/* now prepare goal request */
3070c9de560dSAlex Tomas 
3071c9de560dSAlex Tomas 	/* XXX: is it better to align blocks WRT to logical
3072c9de560dSAlex Tomas 	 * placement or satisfy big request as is */
3073c9de560dSAlex Tomas 	ac->ac_g_ex.fe_logical = start;
307453accfa9STheodore Ts'o 	ac->ac_g_ex.fe_len = EXT4_NUM_B2C(sbi, size);
3075c9de560dSAlex Tomas 
3076c9de560dSAlex Tomas 	/* define goal start in order to merge */
3077c9de560dSAlex Tomas 	if (ar->pright && (ar->lright == (start + size))) {
3078c9de560dSAlex Tomas 		/* merge to the right */
3079c9de560dSAlex Tomas 		ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
3080c9de560dSAlex Tomas 						&ac->ac_f_ex.fe_group,
3081c9de560dSAlex Tomas 						&ac->ac_f_ex.fe_start);
3082c9de560dSAlex Tomas 		ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3083c9de560dSAlex Tomas 	}
3084c9de560dSAlex Tomas 	if (ar->pleft && (ar->lleft + 1 == start)) {
3085c9de560dSAlex Tomas 		/* merge to the left */
3086c9de560dSAlex Tomas 		ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
3087c9de560dSAlex Tomas 						&ac->ac_f_ex.fe_group,
3088c9de560dSAlex Tomas 						&ac->ac_f_ex.fe_start);
3089c9de560dSAlex Tomas 		ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
3090c9de560dSAlex Tomas 	}
3091c9de560dSAlex Tomas 
30926ba495e9STheodore Ts'o 	mb_debug(1, "goal: %u(was %u) blocks at %u\n", (unsigned) size,
3093c9de560dSAlex Tomas 		(unsigned) orig_size, (unsigned) start);
3094c9de560dSAlex Tomas }
3095c9de560dSAlex Tomas 
3096c9de560dSAlex Tomas static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
3097c9de560dSAlex Tomas {
3098c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3099c9de560dSAlex Tomas 
3100c9de560dSAlex Tomas 	if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
3101c9de560dSAlex Tomas 		atomic_inc(&sbi->s_bal_reqs);
3102c9de560dSAlex Tomas 		atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
3103291dae47SCurt Wohlgemuth 		if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
3104c9de560dSAlex Tomas 			atomic_inc(&sbi->s_bal_success);
3105c9de560dSAlex Tomas 		atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
3106c9de560dSAlex Tomas 		if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
3107c9de560dSAlex Tomas 				ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
3108c9de560dSAlex Tomas 			atomic_inc(&sbi->s_bal_goals);
3109c9de560dSAlex Tomas 		if (ac->ac_found > sbi->s_mb_max_to_scan)
3110c9de560dSAlex Tomas 			atomic_inc(&sbi->s_bal_breaks);
3111c9de560dSAlex Tomas 	}
3112c9de560dSAlex Tomas 
3113296c355cSTheodore Ts'o 	if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
3114296c355cSTheodore Ts'o 		trace_ext4_mballoc_alloc(ac);
3115296c355cSTheodore Ts'o 	else
3116296c355cSTheodore Ts'o 		trace_ext4_mballoc_prealloc(ac);
3117c9de560dSAlex Tomas }
3118c9de560dSAlex Tomas 
3119c9de560dSAlex Tomas /*
3120b844167eSCurt Wohlgemuth  * Called on failure; free up any blocks from the inode PA for this
3121b844167eSCurt Wohlgemuth  * context.  We don't need this for MB_GROUP_PA because we only change
3122b844167eSCurt Wohlgemuth  * pa_free in ext4_mb_release_context(), but on failure, we've already
3123b844167eSCurt Wohlgemuth  * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
3124b844167eSCurt Wohlgemuth  */
3125b844167eSCurt Wohlgemuth static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
3126b844167eSCurt Wohlgemuth {
3127b844167eSCurt Wohlgemuth 	struct ext4_prealloc_space *pa = ac->ac_pa;
3128b844167eSCurt Wohlgemuth 	int len;
3129b844167eSCurt Wohlgemuth 
3130b844167eSCurt Wohlgemuth 	if (pa && pa->pa_type == MB_INODE_PA) {
3131b844167eSCurt Wohlgemuth 		len = ac->ac_b_ex.fe_len;
3132b844167eSCurt Wohlgemuth 		pa->pa_free += len;
3133b844167eSCurt Wohlgemuth 	}
3134b844167eSCurt Wohlgemuth 
3135b844167eSCurt Wohlgemuth }
3136b844167eSCurt Wohlgemuth 
3137b844167eSCurt Wohlgemuth /*
3138c9de560dSAlex Tomas  * use blocks preallocated to inode
3139c9de560dSAlex Tomas  */
3140c9de560dSAlex Tomas static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
3141c9de560dSAlex Tomas 				struct ext4_prealloc_space *pa)
3142c9de560dSAlex Tomas {
314353accfa9STheodore Ts'o 	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3144c9de560dSAlex Tomas 	ext4_fsblk_t start;
3145c9de560dSAlex Tomas 	ext4_fsblk_t end;
3146c9de560dSAlex Tomas 	int len;
3147c9de560dSAlex Tomas 
3148c9de560dSAlex Tomas 	/* found preallocated blocks, use them */
3149c9de560dSAlex Tomas 	start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
315053accfa9STheodore Ts'o 	end = min(pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len),
315153accfa9STheodore Ts'o 		  start + EXT4_C2B(sbi, ac->ac_o_ex.fe_len));
315253accfa9STheodore Ts'o 	len = EXT4_NUM_B2C(sbi, end - start);
3153c9de560dSAlex Tomas 	ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
3154c9de560dSAlex Tomas 					&ac->ac_b_ex.fe_start);
3155c9de560dSAlex Tomas 	ac->ac_b_ex.fe_len = len;
3156c9de560dSAlex Tomas 	ac->ac_status = AC_STATUS_FOUND;
3157c9de560dSAlex Tomas 	ac->ac_pa = pa;
3158c9de560dSAlex Tomas 
3159c9de560dSAlex Tomas 	BUG_ON(start < pa->pa_pstart);
316053accfa9STheodore Ts'o 	BUG_ON(end > pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len));
3161c9de560dSAlex Tomas 	BUG_ON(pa->pa_free < len);
3162c9de560dSAlex Tomas 	pa->pa_free -= len;
3163c9de560dSAlex Tomas 
31646ba495e9STheodore Ts'o 	mb_debug(1, "use %llu/%u from inode pa %p\n", start, len, pa);
3165c9de560dSAlex Tomas }
3166c9de560dSAlex Tomas 
3167c9de560dSAlex Tomas /*
3168c9de560dSAlex Tomas  * use blocks preallocated to locality group
3169c9de560dSAlex Tomas  */
3170c9de560dSAlex Tomas static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
3171c9de560dSAlex Tomas 				struct ext4_prealloc_space *pa)
3172c9de560dSAlex Tomas {
317303cddb80SAneesh Kumar K.V 	unsigned int len = ac->ac_o_ex.fe_len;
31746be2ded1SAneesh Kumar K.V 
3175c9de560dSAlex Tomas 	ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
3176c9de560dSAlex Tomas 					&ac->ac_b_ex.fe_group,
3177c9de560dSAlex Tomas 					&ac->ac_b_ex.fe_start);
3178c9de560dSAlex Tomas 	ac->ac_b_ex.fe_len = len;
3179c9de560dSAlex Tomas 	ac->ac_status = AC_STATUS_FOUND;
3180c9de560dSAlex Tomas 	ac->ac_pa = pa;
3181c9de560dSAlex Tomas 
3182c9de560dSAlex Tomas 	/* we don't correct pa_pstart or pa_plen here to avoid
318326346ff6SAneesh Kumar K.V 	 * possible race when the group is being loaded concurrently
3184c9de560dSAlex Tomas 	 * instead we correct pa later, after blocks are marked
318526346ff6SAneesh Kumar K.V 	 * in on-disk bitmap -- see ext4_mb_release_context()
318626346ff6SAneesh Kumar K.V 	 * Other CPUs are prevented from allocating from this pa by lg_mutex
3187c9de560dSAlex Tomas 	 */
31886ba495e9STheodore Ts'o 	mb_debug(1, "use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa);
3189c9de560dSAlex Tomas }
3190c9de560dSAlex Tomas 
3191c9de560dSAlex Tomas /*
31925e745b04SAneesh Kumar K.V  * Return the prealloc space that have minimal distance
31935e745b04SAneesh Kumar K.V  * from the goal block. @cpa is the prealloc
31945e745b04SAneesh Kumar K.V  * space that is having currently known minimal distance
31955e745b04SAneesh Kumar K.V  * from the goal block.
31965e745b04SAneesh Kumar K.V  */
31975e745b04SAneesh Kumar K.V static struct ext4_prealloc_space *
31985e745b04SAneesh Kumar K.V ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
31995e745b04SAneesh Kumar K.V 			struct ext4_prealloc_space *pa,
32005e745b04SAneesh Kumar K.V 			struct ext4_prealloc_space *cpa)
32015e745b04SAneesh Kumar K.V {
32025e745b04SAneesh Kumar K.V 	ext4_fsblk_t cur_distance, new_distance;
32035e745b04SAneesh Kumar K.V 
32045e745b04SAneesh Kumar K.V 	if (cpa == NULL) {
32055e745b04SAneesh Kumar K.V 		atomic_inc(&pa->pa_count);
32065e745b04SAneesh Kumar K.V 		return pa;
32075e745b04SAneesh Kumar K.V 	}
32085e745b04SAneesh Kumar K.V 	cur_distance = abs(goal_block - cpa->pa_pstart);
32095e745b04SAneesh Kumar K.V 	new_distance = abs(goal_block - pa->pa_pstart);
32105e745b04SAneesh Kumar K.V 
32115a54b2f1SColy Li 	if (cur_distance <= new_distance)
32125e745b04SAneesh Kumar K.V 		return cpa;
32135e745b04SAneesh Kumar K.V 
32145e745b04SAneesh Kumar K.V 	/* drop the previous reference */
32155e745b04SAneesh Kumar K.V 	atomic_dec(&cpa->pa_count);
32165e745b04SAneesh Kumar K.V 	atomic_inc(&pa->pa_count);
32175e745b04SAneesh Kumar K.V 	return pa;
32185e745b04SAneesh Kumar K.V }
32195e745b04SAneesh Kumar K.V 
32205e745b04SAneesh Kumar K.V /*
3221c9de560dSAlex Tomas  * search goal blocks in preallocated space
3222c9de560dSAlex Tomas  */
32234ddfef7bSEric Sandeen static noinline_for_stack int
32244ddfef7bSEric Sandeen ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
3225c9de560dSAlex Tomas {
322653accfa9STheodore Ts'o 	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
32276be2ded1SAneesh Kumar K.V 	int order, i;
3228c9de560dSAlex Tomas 	struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
3229c9de560dSAlex Tomas 	struct ext4_locality_group *lg;
32305e745b04SAneesh Kumar K.V 	struct ext4_prealloc_space *pa, *cpa = NULL;
32315e745b04SAneesh Kumar K.V 	ext4_fsblk_t goal_block;
3232c9de560dSAlex Tomas 
3233c9de560dSAlex Tomas 	/* only data can be preallocated */
3234c9de560dSAlex Tomas 	if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3235c9de560dSAlex Tomas 		return 0;
3236c9de560dSAlex Tomas 
3237c9de560dSAlex Tomas 	/* first, try per-file preallocation */
3238c9de560dSAlex Tomas 	rcu_read_lock();
32399a0762c5SAneesh Kumar K.V 	list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
3240c9de560dSAlex Tomas 
3241c9de560dSAlex Tomas 		/* all fields in this condition don't change,
3242c9de560dSAlex Tomas 		 * so we can skip locking for them */
3243c9de560dSAlex Tomas 		if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
324453accfa9STheodore Ts'o 		    ac->ac_o_ex.fe_logical >= (pa->pa_lstart +
324553accfa9STheodore Ts'o 					       EXT4_C2B(sbi, pa->pa_len)))
3246c9de560dSAlex Tomas 			continue;
3247c9de560dSAlex Tomas 
3248fb0a387dSEric Sandeen 		/* non-extent files can't have physical blocks past 2^32 */
324912e9b892SDmitry Monakhov 		if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
325053accfa9STheodore Ts'o 		    (pa->pa_pstart + EXT4_C2B(sbi, pa->pa_len) >
325153accfa9STheodore Ts'o 		     EXT4_MAX_BLOCK_FILE_PHYS))
3252fb0a387dSEric Sandeen 			continue;
3253fb0a387dSEric Sandeen 
3254c9de560dSAlex Tomas 		/* found preallocated blocks, use them */
3255c9de560dSAlex Tomas 		spin_lock(&pa->pa_lock);
3256c9de560dSAlex Tomas 		if (pa->pa_deleted == 0 && pa->pa_free) {
3257c9de560dSAlex Tomas 			atomic_inc(&pa->pa_count);
3258c9de560dSAlex Tomas 			ext4_mb_use_inode_pa(ac, pa);
3259c9de560dSAlex Tomas 			spin_unlock(&pa->pa_lock);
3260c9de560dSAlex Tomas 			ac->ac_criteria = 10;
3261c9de560dSAlex Tomas 			rcu_read_unlock();
3262c9de560dSAlex Tomas 			return 1;
3263c9de560dSAlex Tomas 		}
3264c9de560dSAlex Tomas 		spin_unlock(&pa->pa_lock);
3265c9de560dSAlex Tomas 	}
3266c9de560dSAlex Tomas 	rcu_read_unlock();
3267c9de560dSAlex Tomas 
3268c9de560dSAlex Tomas 	/* can we use group allocation? */
3269c9de560dSAlex Tomas 	if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
3270c9de560dSAlex Tomas 		return 0;
3271c9de560dSAlex Tomas 
3272c9de560dSAlex Tomas 	/* inode may have no locality group for some reason */
3273c9de560dSAlex Tomas 	lg = ac->ac_lg;
3274c9de560dSAlex Tomas 	if (lg == NULL)
3275c9de560dSAlex Tomas 		return 0;
32766be2ded1SAneesh Kumar K.V 	order  = fls(ac->ac_o_ex.fe_len) - 1;
32776be2ded1SAneesh Kumar K.V 	if (order > PREALLOC_TB_SIZE - 1)
32786be2ded1SAneesh Kumar K.V 		/* The max size of hash table is PREALLOC_TB_SIZE */
32796be2ded1SAneesh Kumar K.V 		order = PREALLOC_TB_SIZE - 1;
3280c9de560dSAlex Tomas 
3281bda00de7SAkinobu Mita 	goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
32825e745b04SAneesh Kumar K.V 	/*
32835e745b04SAneesh Kumar K.V 	 * search for the prealloc space that is having
32845e745b04SAneesh Kumar K.V 	 * minimal distance from the goal block.
32855e745b04SAneesh Kumar K.V 	 */
32866be2ded1SAneesh Kumar K.V 	for (i = order; i < PREALLOC_TB_SIZE; i++) {
3287c9de560dSAlex Tomas 		rcu_read_lock();
32886be2ded1SAneesh Kumar K.V 		list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
32896be2ded1SAneesh Kumar K.V 					pa_inode_list) {
3290c9de560dSAlex Tomas 			spin_lock(&pa->pa_lock);
32916be2ded1SAneesh Kumar K.V 			if (pa->pa_deleted == 0 &&
32926be2ded1SAneesh Kumar K.V 					pa->pa_free >= ac->ac_o_ex.fe_len) {
32935e745b04SAneesh Kumar K.V 
32945e745b04SAneesh Kumar K.V 				cpa = ext4_mb_check_group_pa(goal_block,
32955e745b04SAneesh Kumar K.V 								pa, cpa);
32965e745b04SAneesh Kumar K.V 			}
3297c9de560dSAlex Tomas 			spin_unlock(&pa->pa_lock);
32985e745b04SAneesh Kumar K.V 		}
32995e745b04SAneesh Kumar K.V 		rcu_read_unlock();
33005e745b04SAneesh Kumar K.V 	}
33015e745b04SAneesh Kumar K.V 	if (cpa) {
33025e745b04SAneesh Kumar K.V 		ext4_mb_use_group_pa(ac, cpa);
3303c9de560dSAlex Tomas 		ac->ac_criteria = 20;
3304c9de560dSAlex Tomas 		return 1;
3305c9de560dSAlex Tomas 	}
3306c9de560dSAlex Tomas 	return 0;
3307c9de560dSAlex Tomas }
3308c9de560dSAlex Tomas 
3309c9de560dSAlex Tomas /*
33107a2fcbf7SAneesh Kumar K.V  * the function goes through all block freed in the group
33117a2fcbf7SAneesh Kumar K.V  * but not yet committed and marks them used in in-core bitmap.
33127a2fcbf7SAneesh Kumar K.V  * buddy must be generated from this bitmap
3313955ce5f5SAneesh Kumar K.V  * Need to be called with the ext4 group lock held
33147a2fcbf7SAneesh Kumar K.V  */
33157a2fcbf7SAneesh Kumar K.V static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
33167a2fcbf7SAneesh Kumar K.V 						ext4_group_t group)
33177a2fcbf7SAneesh Kumar K.V {
33187a2fcbf7SAneesh Kumar K.V 	struct rb_node *n;
33197a2fcbf7SAneesh Kumar K.V 	struct ext4_group_info *grp;
33207a2fcbf7SAneesh Kumar K.V 	struct ext4_free_data *entry;
33217a2fcbf7SAneesh Kumar K.V 
33227a2fcbf7SAneesh Kumar K.V 	grp = ext4_get_group_info(sb, group);
33237a2fcbf7SAneesh Kumar K.V 	n = rb_first(&(grp->bb_free_root));
33247a2fcbf7SAneesh Kumar K.V 
33257a2fcbf7SAneesh Kumar K.V 	while (n) {
33267a2fcbf7SAneesh Kumar K.V 		entry = rb_entry(n, struct ext4_free_data, node);
332784130193STheodore Ts'o 		ext4_set_bits(bitmap, entry->start_cluster, entry->count);
33287a2fcbf7SAneesh Kumar K.V 		n = rb_next(n);
33297a2fcbf7SAneesh Kumar K.V 	}
33307a2fcbf7SAneesh Kumar K.V 	return;
33317a2fcbf7SAneesh Kumar K.V }
33327a2fcbf7SAneesh Kumar K.V 
33337a2fcbf7SAneesh Kumar K.V /*
3334c9de560dSAlex Tomas  * the function goes through all preallocation in this group and marks them
3335c9de560dSAlex Tomas  * used in in-core bitmap. buddy must be generated from this bitmap
3336955ce5f5SAneesh Kumar K.V  * Need to be called with ext4 group lock held
3337c9de560dSAlex Tomas  */
3338089ceeccSEric Sandeen static noinline_for_stack
3339089ceeccSEric Sandeen void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
3340c9de560dSAlex Tomas 					ext4_group_t group)
3341c9de560dSAlex Tomas {
3342c9de560dSAlex Tomas 	struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3343c9de560dSAlex Tomas 	struct ext4_prealloc_space *pa;
3344c9de560dSAlex Tomas 	struct list_head *cur;
3345c9de560dSAlex Tomas 	ext4_group_t groupnr;
3346c9de560dSAlex Tomas 	ext4_grpblk_t start;
3347c9de560dSAlex Tomas 	int preallocated = 0;
3348c9de560dSAlex Tomas 	int count = 0;
3349c9de560dSAlex Tomas 	int len;
3350c9de560dSAlex Tomas 
3351c9de560dSAlex Tomas 	/* all form of preallocation discards first load group,
3352c9de560dSAlex Tomas 	 * so the only competing code is preallocation use.
3353c9de560dSAlex Tomas 	 * we don't need any locking here
3354c9de560dSAlex Tomas 	 * notice we do NOT ignore preallocations with pa_deleted
3355c9de560dSAlex Tomas 	 * otherwise we could leave used blocks available for
3356c9de560dSAlex Tomas 	 * allocation in buddy when concurrent ext4_mb_put_pa()
3357c9de560dSAlex Tomas 	 * is dropping preallocation
3358c9de560dSAlex Tomas 	 */
3359c9de560dSAlex Tomas 	list_for_each(cur, &grp->bb_prealloc_list) {
3360c9de560dSAlex Tomas 		pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
3361c9de560dSAlex Tomas 		spin_lock(&pa->pa_lock);
3362c9de560dSAlex Tomas 		ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3363c9de560dSAlex Tomas 					     &groupnr, &start);
3364c9de560dSAlex Tomas 		len = pa->pa_len;
3365c9de560dSAlex Tomas 		spin_unlock(&pa->pa_lock);
3366c9de560dSAlex Tomas 		if (unlikely(len == 0))
3367c9de560dSAlex Tomas 			continue;
3368c9de560dSAlex Tomas 		BUG_ON(groupnr != group);
3369c3e94d1dSYongqiang Yang 		ext4_set_bits(bitmap, start, len);
3370c9de560dSAlex Tomas 		preallocated += len;
3371c9de560dSAlex Tomas 		count++;
3372c9de560dSAlex Tomas 	}
33736ba495e9STheodore Ts'o 	mb_debug(1, "prellocated %u for group %u\n", preallocated, group);
3374c9de560dSAlex Tomas }
3375c9de560dSAlex Tomas 
3376c9de560dSAlex Tomas static void ext4_mb_pa_callback(struct rcu_head *head)
3377c9de560dSAlex Tomas {
3378c9de560dSAlex Tomas 	struct ext4_prealloc_space *pa;
3379c9de560dSAlex Tomas 	pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
3380c9de560dSAlex Tomas 	kmem_cache_free(ext4_pspace_cachep, pa);
3381c9de560dSAlex Tomas }
3382c9de560dSAlex Tomas 
3383c9de560dSAlex Tomas /*
3384c9de560dSAlex Tomas  * drops a reference to preallocated space descriptor
3385c9de560dSAlex Tomas  * if this was the last reference and the space is consumed
3386c9de560dSAlex Tomas  */
3387c9de560dSAlex Tomas static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
3388c9de560dSAlex Tomas 			struct super_block *sb, struct ext4_prealloc_space *pa)
3389c9de560dSAlex Tomas {
3390a9df9a49STheodore Ts'o 	ext4_group_t grp;
3391d33a1976SEric Sandeen 	ext4_fsblk_t grp_blk;
3392c9de560dSAlex Tomas 
3393c9de560dSAlex Tomas 	if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0)
3394c9de560dSAlex Tomas 		return;
3395c9de560dSAlex Tomas 
3396c9de560dSAlex Tomas 	/* in this short window concurrent discard can set pa_deleted */
3397c9de560dSAlex Tomas 	spin_lock(&pa->pa_lock);
3398c9de560dSAlex Tomas 	if (pa->pa_deleted == 1) {
3399c9de560dSAlex Tomas 		spin_unlock(&pa->pa_lock);
3400c9de560dSAlex Tomas 		return;
3401c9de560dSAlex Tomas 	}
3402c9de560dSAlex Tomas 
3403c9de560dSAlex Tomas 	pa->pa_deleted = 1;
3404c9de560dSAlex Tomas 	spin_unlock(&pa->pa_lock);
3405c9de560dSAlex Tomas 
3406d33a1976SEric Sandeen 	grp_blk = pa->pa_pstart;
3407cc0fb9adSAneesh Kumar K.V 	/*
3408cc0fb9adSAneesh Kumar K.V 	 * If doing group-based preallocation, pa_pstart may be in the
3409cc0fb9adSAneesh Kumar K.V 	 * next group when pa is used up
3410cc0fb9adSAneesh Kumar K.V 	 */
3411cc0fb9adSAneesh Kumar K.V 	if (pa->pa_type == MB_GROUP_PA)
3412d33a1976SEric Sandeen 		grp_blk--;
3413d33a1976SEric Sandeen 
3414d33a1976SEric Sandeen 	ext4_get_group_no_and_offset(sb, grp_blk, &grp, NULL);
3415c9de560dSAlex Tomas 
3416c9de560dSAlex Tomas 	/*
3417c9de560dSAlex Tomas 	 * possible race:
3418c9de560dSAlex Tomas 	 *
3419c9de560dSAlex Tomas 	 *  P1 (buddy init)			P2 (regular allocation)
3420c9de560dSAlex Tomas 	 *					find block B in PA
3421c9de560dSAlex Tomas 	 *  copy on-disk bitmap to buddy
3422c9de560dSAlex Tomas 	 *  					mark B in on-disk bitmap
3423c9de560dSAlex Tomas 	 *					drop PA from group
3424c9de560dSAlex Tomas 	 *  mark all PAs in buddy
3425c9de560dSAlex Tomas 	 *
3426c9de560dSAlex Tomas 	 * thus, P1 initializes buddy with B available. to prevent this
3427c9de560dSAlex Tomas 	 * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
3428c9de560dSAlex Tomas 	 * against that pair
3429c9de560dSAlex Tomas 	 */
3430c9de560dSAlex Tomas 	ext4_lock_group(sb, grp);
3431c9de560dSAlex Tomas 	list_del(&pa->pa_group_list);
3432c9de560dSAlex Tomas 	ext4_unlock_group(sb, grp);
3433c9de560dSAlex Tomas 
3434c9de560dSAlex Tomas 	spin_lock(pa->pa_obj_lock);
3435c9de560dSAlex Tomas 	list_del_rcu(&pa->pa_inode_list);
3436c9de560dSAlex Tomas 	spin_unlock(pa->pa_obj_lock);
3437c9de560dSAlex Tomas 
3438c9de560dSAlex Tomas 	call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3439c9de560dSAlex Tomas }
3440c9de560dSAlex Tomas 
3441c9de560dSAlex Tomas /*
3442c9de560dSAlex Tomas  * creates new preallocated space for given inode
3443c9de560dSAlex Tomas  */
34444ddfef7bSEric Sandeen static noinline_for_stack int
34454ddfef7bSEric Sandeen ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
3446c9de560dSAlex Tomas {
3447c9de560dSAlex Tomas 	struct super_block *sb = ac->ac_sb;
344853accfa9STheodore Ts'o 	struct ext4_sb_info *sbi = EXT4_SB(sb);
3449c9de560dSAlex Tomas 	struct ext4_prealloc_space *pa;
3450c9de560dSAlex Tomas 	struct ext4_group_info *grp;
3451c9de560dSAlex Tomas 	struct ext4_inode_info *ei;
3452c9de560dSAlex Tomas 
3453c9de560dSAlex Tomas 	/* preallocate only when found space is larger then requested */
3454c9de560dSAlex Tomas 	BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3455c9de560dSAlex Tomas 	BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3456c9de560dSAlex Tomas 	BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3457c9de560dSAlex Tomas 
3458c9de560dSAlex Tomas 	pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3459c9de560dSAlex Tomas 	if (pa == NULL)
3460c9de560dSAlex Tomas 		return -ENOMEM;
3461c9de560dSAlex Tomas 
3462c9de560dSAlex Tomas 	if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
3463c9de560dSAlex Tomas 		int winl;
3464c9de560dSAlex Tomas 		int wins;
3465c9de560dSAlex Tomas 		int win;
3466c9de560dSAlex Tomas 		int offs;
3467c9de560dSAlex Tomas 
3468c9de560dSAlex Tomas 		/* we can't allocate as much as normalizer wants.
3469c9de560dSAlex Tomas 		 * so, found space must get proper lstart
3470c9de560dSAlex Tomas 		 * to cover original request */
3471c9de560dSAlex Tomas 		BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
3472c9de560dSAlex Tomas 		BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
3473c9de560dSAlex Tomas 
3474c9de560dSAlex Tomas 		/* we're limited by original request in that
3475c9de560dSAlex Tomas 		 * logical block must be covered any way
3476c9de560dSAlex Tomas 		 * winl is window we can move our chunk within */
3477c9de560dSAlex Tomas 		winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
3478c9de560dSAlex Tomas 
3479c9de560dSAlex Tomas 		/* also, we should cover whole original request */
348053accfa9STheodore Ts'o 		wins = EXT4_C2B(sbi, ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len);
3481c9de560dSAlex Tomas 
3482c9de560dSAlex Tomas 		/* the smallest one defines real window */
3483c9de560dSAlex Tomas 		win = min(winl, wins);
3484c9de560dSAlex Tomas 
348553accfa9STheodore Ts'o 		offs = ac->ac_o_ex.fe_logical %
348653accfa9STheodore Ts'o 			EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
3487c9de560dSAlex Tomas 		if (offs && offs < win)
3488c9de560dSAlex Tomas 			win = offs;
3489c9de560dSAlex Tomas 
349053accfa9STheodore Ts'o 		ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical -
349153accfa9STheodore Ts'o 			EXT4_B2C(sbi, win);
3492c9de560dSAlex Tomas 		BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
3493c9de560dSAlex Tomas 		BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
3494c9de560dSAlex Tomas 	}
3495c9de560dSAlex Tomas 
3496c9de560dSAlex Tomas 	/* preallocation can change ac_b_ex, thus we store actually
3497c9de560dSAlex Tomas 	 * allocated blocks for history */
3498c9de560dSAlex Tomas 	ac->ac_f_ex = ac->ac_b_ex;
3499c9de560dSAlex Tomas 
3500c9de560dSAlex Tomas 	pa->pa_lstart = ac->ac_b_ex.fe_logical;
3501c9de560dSAlex Tomas 	pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3502c9de560dSAlex Tomas 	pa->pa_len = ac->ac_b_ex.fe_len;
3503c9de560dSAlex Tomas 	pa->pa_free = pa->pa_len;
3504c9de560dSAlex Tomas 	atomic_set(&pa->pa_count, 1);
3505c9de560dSAlex Tomas 	spin_lock_init(&pa->pa_lock);
3506d794bf8eSAneesh Kumar K.V 	INIT_LIST_HEAD(&pa->pa_inode_list);
3507d794bf8eSAneesh Kumar K.V 	INIT_LIST_HEAD(&pa->pa_group_list);
3508c9de560dSAlex Tomas 	pa->pa_deleted = 0;
3509cc0fb9adSAneesh Kumar K.V 	pa->pa_type = MB_INODE_PA;
3510c9de560dSAlex Tomas 
35116ba495e9STheodore Ts'o 	mb_debug(1, "new inode pa %p: %llu/%u for %u\n", pa,
3512c9de560dSAlex Tomas 			pa->pa_pstart, pa->pa_len, pa->pa_lstart);
35139bffad1eSTheodore Ts'o 	trace_ext4_mb_new_inode_pa(ac, pa);
3514c9de560dSAlex Tomas 
3515c9de560dSAlex Tomas 	ext4_mb_use_inode_pa(ac, pa);
351653accfa9STheodore Ts'o 	atomic_add(pa->pa_free, &sbi->s_mb_preallocated);
3517c9de560dSAlex Tomas 
3518c9de560dSAlex Tomas 	ei = EXT4_I(ac->ac_inode);
3519c9de560dSAlex Tomas 	grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3520c9de560dSAlex Tomas 
3521c9de560dSAlex Tomas 	pa->pa_obj_lock = &ei->i_prealloc_lock;
3522c9de560dSAlex Tomas 	pa->pa_inode = ac->ac_inode;
3523c9de560dSAlex Tomas 
3524c9de560dSAlex Tomas 	ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3525c9de560dSAlex Tomas 	list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3526c9de560dSAlex Tomas 	ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3527c9de560dSAlex Tomas 
3528c9de560dSAlex Tomas 	spin_lock(pa->pa_obj_lock);
3529c9de560dSAlex Tomas 	list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
3530c9de560dSAlex Tomas 	spin_unlock(pa->pa_obj_lock);
3531c9de560dSAlex Tomas 
3532c9de560dSAlex Tomas 	return 0;
3533c9de560dSAlex Tomas }
3534c9de560dSAlex Tomas 
3535c9de560dSAlex Tomas /*
3536c9de560dSAlex Tomas  * creates new preallocated space for locality group inodes belongs to
3537c9de560dSAlex Tomas  */
35384ddfef7bSEric Sandeen static noinline_for_stack int
35394ddfef7bSEric Sandeen ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
3540c9de560dSAlex Tomas {
3541c9de560dSAlex Tomas 	struct super_block *sb = ac->ac_sb;
3542c9de560dSAlex Tomas 	struct ext4_locality_group *lg;
3543c9de560dSAlex Tomas 	struct ext4_prealloc_space *pa;
3544c9de560dSAlex Tomas 	struct ext4_group_info *grp;
3545c9de560dSAlex Tomas 
3546c9de560dSAlex Tomas 	/* preallocate only when found space is larger then requested */
3547c9de560dSAlex Tomas 	BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
3548c9de560dSAlex Tomas 	BUG_ON(ac->ac_status != AC_STATUS_FOUND);
3549c9de560dSAlex Tomas 	BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
3550c9de560dSAlex Tomas 
3551c9de560dSAlex Tomas 	BUG_ON(ext4_pspace_cachep == NULL);
3552c9de560dSAlex Tomas 	pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
3553c9de560dSAlex Tomas 	if (pa == NULL)
3554c9de560dSAlex Tomas 		return -ENOMEM;
3555c9de560dSAlex Tomas 
3556c9de560dSAlex Tomas 	/* preallocation can change ac_b_ex, thus we store actually
3557c9de560dSAlex Tomas 	 * allocated blocks for history */
3558c9de560dSAlex Tomas 	ac->ac_f_ex = ac->ac_b_ex;
3559c9de560dSAlex Tomas 
3560c9de560dSAlex Tomas 	pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
3561c9de560dSAlex Tomas 	pa->pa_lstart = pa->pa_pstart;
3562c9de560dSAlex Tomas 	pa->pa_len = ac->ac_b_ex.fe_len;
3563c9de560dSAlex Tomas 	pa->pa_free = pa->pa_len;
3564c9de560dSAlex Tomas 	atomic_set(&pa->pa_count, 1);
3565c9de560dSAlex Tomas 	spin_lock_init(&pa->pa_lock);
35666be2ded1SAneesh Kumar K.V 	INIT_LIST_HEAD(&pa->pa_inode_list);
3567d794bf8eSAneesh Kumar K.V 	INIT_LIST_HEAD(&pa->pa_group_list);
3568c9de560dSAlex Tomas 	pa->pa_deleted = 0;
3569cc0fb9adSAneesh Kumar K.V 	pa->pa_type = MB_GROUP_PA;
3570c9de560dSAlex Tomas 
35716ba495e9STheodore Ts'o 	mb_debug(1, "new group pa %p: %llu/%u for %u\n", pa,
3572c9de560dSAlex Tomas 			pa->pa_pstart, pa->pa_len, pa->pa_lstart);
35739bffad1eSTheodore Ts'o 	trace_ext4_mb_new_group_pa(ac, pa);
3574c9de560dSAlex Tomas 
3575c9de560dSAlex Tomas 	ext4_mb_use_group_pa(ac, pa);
3576c9de560dSAlex Tomas 	atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
3577c9de560dSAlex Tomas 
3578c9de560dSAlex Tomas 	grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
3579c9de560dSAlex Tomas 	lg = ac->ac_lg;
3580c9de560dSAlex Tomas 	BUG_ON(lg == NULL);
3581c9de560dSAlex Tomas 
3582c9de560dSAlex Tomas 	pa->pa_obj_lock = &lg->lg_prealloc_lock;
3583c9de560dSAlex Tomas 	pa->pa_inode = NULL;
3584c9de560dSAlex Tomas 
3585c9de560dSAlex Tomas 	ext4_lock_group(sb, ac->ac_b_ex.fe_group);
3586c9de560dSAlex Tomas 	list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
3587c9de560dSAlex Tomas 	ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
3588c9de560dSAlex Tomas 
35896be2ded1SAneesh Kumar K.V 	/*
35906be2ded1SAneesh Kumar K.V 	 * We will later add the new pa to the right bucket
35916be2ded1SAneesh Kumar K.V 	 * after updating the pa_free in ext4_mb_release_context
35926be2ded1SAneesh Kumar K.V 	 */
3593c9de560dSAlex Tomas 	return 0;
3594c9de560dSAlex Tomas }
3595c9de560dSAlex Tomas 
3596c9de560dSAlex Tomas static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
3597c9de560dSAlex Tomas {
3598c9de560dSAlex Tomas 	int err;
3599c9de560dSAlex Tomas 
3600c9de560dSAlex Tomas 	if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
3601c9de560dSAlex Tomas 		err = ext4_mb_new_group_pa(ac);
3602c9de560dSAlex Tomas 	else
3603c9de560dSAlex Tomas 		err = ext4_mb_new_inode_pa(ac);
3604c9de560dSAlex Tomas 	return err;
3605c9de560dSAlex Tomas }
3606c9de560dSAlex Tomas 
3607c9de560dSAlex Tomas /*
3608c9de560dSAlex Tomas  * finds all unused blocks in on-disk bitmap, frees them in
3609c9de560dSAlex Tomas  * in-core bitmap and buddy.
3610c9de560dSAlex Tomas  * @pa must be unlinked from inode and group lists, so that
3611c9de560dSAlex Tomas  * nobody else can find/use it.
3612c9de560dSAlex Tomas  * the caller MUST hold group/inode locks.
3613c9de560dSAlex Tomas  * TODO: optimize the case when there are no in-core structures yet
3614c9de560dSAlex Tomas  */
36154ddfef7bSEric Sandeen static noinline_for_stack int
36164ddfef7bSEric Sandeen ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
36173e1e5f50SEric Sandeen 			struct ext4_prealloc_space *pa)
3618c9de560dSAlex Tomas {
3619c9de560dSAlex Tomas 	struct super_block *sb = e4b->bd_sb;
3620c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(sb);
3621498e5f24STheodore Ts'o 	unsigned int end;
3622498e5f24STheodore Ts'o 	unsigned int next;
3623c9de560dSAlex Tomas 	ext4_group_t group;
3624c9de560dSAlex Tomas 	ext4_grpblk_t bit;
3625ba80b101STheodore Ts'o 	unsigned long long grp_blk_start;
3626c9de560dSAlex Tomas 	int err = 0;
3627c9de560dSAlex Tomas 	int free = 0;
3628c9de560dSAlex Tomas 
3629c9de560dSAlex Tomas 	BUG_ON(pa->pa_deleted == 0);
3630c9de560dSAlex Tomas 	ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
363153accfa9STheodore Ts'o 	grp_blk_start = pa->pa_pstart - EXT4_C2B(sbi, bit);
3632c9de560dSAlex Tomas 	BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3633c9de560dSAlex Tomas 	end = bit + pa->pa_len;
3634c9de560dSAlex Tomas 
3635c9de560dSAlex Tomas 	while (bit < end) {
3636ffad0a44SAneesh Kumar K.V 		bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
3637c9de560dSAlex Tomas 		if (bit >= end)
3638c9de560dSAlex Tomas 			break;
3639ffad0a44SAneesh Kumar K.V 		next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
36406ba495e9STheodore Ts'o 		mb_debug(1, "    free preallocated %u/%u in group %u\n",
36415a0790c2SAndi Kleen 			 (unsigned) ext4_group_first_block_no(sb, group) + bit,
36425a0790c2SAndi Kleen 			 (unsigned) next - bit, (unsigned) group);
3643c9de560dSAlex Tomas 		free += next - bit;
3644c9de560dSAlex Tomas 
36453e1e5f50SEric Sandeen 		trace_ext4_mballoc_discard(sb, NULL, group, bit, next - bit);
364653accfa9STheodore Ts'o 		trace_ext4_mb_release_inode_pa(pa, (grp_blk_start +
364753accfa9STheodore Ts'o 						    EXT4_C2B(sbi, bit)),
3648a9c667f8SLukas Czerner 					       next - bit);
3649c9de560dSAlex Tomas 		mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
3650c9de560dSAlex Tomas 		bit = next + 1;
3651c9de560dSAlex Tomas 	}
3652c9de560dSAlex Tomas 	if (free != pa->pa_free) {
36539d8b9ec4STheodore Ts'o 		ext4_msg(e4b->bd_sb, KERN_CRIT,
36549d8b9ec4STheodore Ts'o 			 "pa %p: logic %lu, phys. %lu, len %lu",
3655c9de560dSAlex Tomas 			 pa, (unsigned long) pa->pa_lstart,
3656c9de560dSAlex Tomas 			 (unsigned long) pa->pa_pstart,
3657c9de560dSAlex Tomas 			 (unsigned long) pa->pa_len);
3658e29136f8STheodore Ts'o 		ext4_grp_locked_error(sb, group, 0, 0, "free %u, pa_free %u",
365926346ff6SAneesh Kumar K.V 					free, pa->pa_free);
3660e56eb659SAneesh Kumar K.V 		/*
3661e56eb659SAneesh Kumar K.V 		 * pa is already deleted so we use the value obtained
3662e56eb659SAneesh Kumar K.V 		 * from the bitmap and continue.
3663e56eb659SAneesh Kumar K.V 		 */
3664c9de560dSAlex Tomas 	}
3665c9de560dSAlex Tomas 	atomic_add(free, &sbi->s_mb_discarded);
3666c9de560dSAlex Tomas 
3667c9de560dSAlex Tomas 	return err;
3668c9de560dSAlex Tomas }
3669c9de560dSAlex Tomas 
36704ddfef7bSEric Sandeen static noinline_for_stack int
36714ddfef7bSEric Sandeen ext4_mb_release_group_pa(struct ext4_buddy *e4b,
36723e1e5f50SEric Sandeen 				struct ext4_prealloc_space *pa)
3673c9de560dSAlex Tomas {
3674c9de560dSAlex Tomas 	struct super_block *sb = e4b->bd_sb;
3675c9de560dSAlex Tomas 	ext4_group_t group;
3676c9de560dSAlex Tomas 	ext4_grpblk_t bit;
3677c9de560dSAlex Tomas 
3678a9c667f8SLukas Czerner 	trace_ext4_mb_release_group_pa(pa);
3679c9de560dSAlex Tomas 	BUG_ON(pa->pa_deleted == 0);
3680c9de560dSAlex Tomas 	ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
3681c9de560dSAlex Tomas 	BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
3682c9de560dSAlex Tomas 	mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
3683c9de560dSAlex Tomas 	atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
36843e1e5f50SEric Sandeen 	trace_ext4_mballoc_discard(sb, NULL, group, bit, pa->pa_len);
3685c9de560dSAlex Tomas 
3686c9de560dSAlex Tomas 	return 0;
3687c9de560dSAlex Tomas }
3688c9de560dSAlex Tomas 
3689c9de560dSAlex Tomas /*
3690c9de560dSAlex Tomas  * releases all preallocations in given group
3691c9de560dSAlex Tomas  *
3692c9de560dSAlex Tomas  * first, we need to decide discard policy:
3693c9de560dSAlex Tomas  * - when do we discard
3694c9de560dSAlex Tomas  *   1) ENOSPC
3695c9de560dSAlex Tomas  * - how many do we discard
3696c9de560dSAlex Tomas  *   1) how many requested
3697c9de560dSAlex Tomas  */
36984ddfef7bSEric Sandeen static noinline_for_stack int
36994ddfef7bSEric Sandeen ext4_mb_discard_group_preallocations(struct super_block *sb,
3700c9de560dSAlex Tomas 					ext4_group_t group, int needed)
3701c9de560dSAlex Tomas {
3702c9de560dSAlex Tomas 	struct ext4_group_info *grp = ext4_get_group_info(sb, group);
3703c9de560dSAlex Tomas 	struct buffer_head *bitmap_bh = NULL;
3704c9de560dSAlex Tomas 	struct ext4_prealloc_space *pa, *tmp;
3705c9de560dSAlex Tomas 	struct list_head list;
3706c9de560dSAlex Tomas 	struct ext4_buddy e4b;
3707c9de560dSAlex Tomas 	int err;
3708c9de560dSAlex Tomas 	int busy = 0;
3709c9de560dSAlex Tomas 	int free = 0;
3710c9de560dSAlex Tomas 
37116ba495e9STheodore Ts'o 	mb_debug(1, "discard preallocation for group %u\n", group);
3712c9de560dSAlex Tomas 
3713c9de560dSAlex Tomas 	if (list_empty(&grp->bb_prealloc_list))
3714c9de560dSAlex Tomas 		return 0;
3715c9de560dSAlex Tomas 
3716574ca174STheodore Ts'o 	bitmap_bh = ext4_read_block_bitmap(sb, group);
3717c9de560dSAlex Tomas 	if (bitmap_bh == NULL) {
371812062dddSEric Sandeen 		ext4_error(sb, "Error reading block bitmap for %u", group);
3719ce89f46cSAneesh Kumar K.V 		return 0;
3720c9de560dSAlex Tomas 	}
3721c9de560dSAlex Tomas 
3722c9de560dSAlex Tomas 	err = ext4_mb_load_buddy(sb, group, &e4b);
3723ce89f46cSAneesh Kumar K.V 	if (err) {
372412062dddSEric Sandeen 		ext4_error(sb, "Error loading buddy information for %u", group);
3725ce89f46cSAneesh Kumar K.V 		put_bh(bitmap_bh);
3726ce89f46cSAneesh Kumar K.V 		return 0;
3727ce89f46cSAneesh Kumar K.V 	}
3728c9de560dSAlex Tomas 
3729c9de560dSAlex Tomas 	if (needed == 0)
37307137d7a4STheodore Ts'o 		needed = EXT4_CLUSTERS_PER_GROUP(sb) + 1;
3731c9de560dSAlex Tomas 
3732c9de560dSAlex Tomas 	INIT_LIST_HEAD(&list);
3733c9de560dSAlex Tomas repeat:
3734c9de560dSAlex Tomas 	ext4_lock_group(sb, group);
3735c9de560dSAlex Tomas 	list_for_each_entry_safe(pa, tmp,
3736c9de560dSAlex Tomas 				&grp->bb_prealloc_list, pa_group_list) {
3737c9de560dSAlex Tomas 		spin_lock(&pa->pa_lock);
3738c9de560dSAlex Tomas 		if (atomic_read(&pa->pa_count)) {
3739c9de560dSAlex Tomas 			spin_unlock(&pa->pa_lock);
3740c9de560dSAlex Tomas 			busy = 1;
3741c9de560dSAlex Tomas 			continue;
3742c9de560dSAlex Tomas 		}
3743c9de560dSAlex Tomas 		if (pa->pa_deleted) {
3744c9de560dSAlex Tomas 			spin_unlock(&pa->pa_lock);
3745c9de560dSAlex Tomas 			continue;
3746c9de560dSAlex Tomas 		}
3747c9de560dSAlex Tomas 
3748c9de560dSAlex Tomas 		/* seems this one can be freed ... */
3749c9de560dSAlex Tomas 		pa->pa_deleted = 1;
3750c9de560dSAlex Tomas 
3751c9de560dSAlex Tomas 		/* we can trust pa_free ... */
3752c9de560dSAlex Tomas 		free += pa->pa_free;
3753c9de560dSAlex Tomas 
3754c9de560dSAlex Tomas 		spin_unlock(&pa->pa_lock);
3755c9de560dSAlex Tomas 
3756c9de560dSAlex Tomas 		list_del(&pa->pa_group_list);
3757c9de560dSAlex Tomas 		list_add(&pa->u.pa_tmp_list, &list);
3758c9de560dSAlex Tomas 	}
3759c9de560dSAlex Tomas 
3760c9de560dSAlex Tomas 	/* if we still need more blocks and some PAs were used, try again */
3761c9de560dSAlex Tomas 	if (free < needed && busy) {
3762c9de560dSAlex Tomas 		busy = 0;
3763c9de560dSAlex Tomas 		ext4_unlock_group(sb, group);
3764c9de560dSAlex Tomas 		/*
3765c9de560dSAlex Tomas 		 * Yield the CPU here so that we don't get soft lockup
3766c9de560dSAlex Tomas 		 * in non preempt case.
3767c9de560dSAlex Tomas 		 */
3768c9de560dSAlex Tomas 		yield();
3769c9de560dSAlex Tomas 		goto repeat;
3770c9de560dSAlex Tomas 	}
3771c9de560dSAlex Tomas 
3772c9de560dSAlex Tomas 	/* found anything to free? */
3773c9de560dSAlex Tomas 	if (list_empty(&list)) {
3774c9de560dSAlex Tomas 		BUG_ON(free != 0);
3775c9de560dSAlex Tomas 		goto out;
3776c9de560dSAlex Tomas 	}
3777c9de560dSAlex Tomas 
3778c9de560dSAlex Tomas 	/* now free all selected PAs */
3779c9de560dSAlex Tomas 	list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
3780c9de560dSAlex Tomas 
3781c9de560dSAlex Tomas 		/* remove from object (inode or locality group) */
3782c9de560dSAlex Tomas 		spin_lock(pa->pa_obj_lock);
3783c9de560dSAlex Tomas 		list_del_rcu(&pa->pa_inode_list);
3784c9de560dSAlex Tomas 		spin_unlock(pa->pa_obj_lock);
3785c9de560dSAlex Tomas 
3786cc0fb9adSAneesh Kumar K.V 		if (pa->pa_type == MB_GROUP_PA)
37873e1e5f50SEric Sandeen 			ext4_mb_release_group_pa(&e4b, pa);
3788c9de560dSAlex Tomas 		else
37893e1e5f50SEric Sandeen 			ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
3790c9de560dSAlex Tomas 
3791c9de560dSAlex Tomas 		list_del(&pa->u.pa_tmp_list);
3792c9de560dSAlex Tomas 		call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3793c9de560dSAlex Tomas 	}
3794c9de560dSAlex Tomas 
3795c9de560dSAlex Tomas out:
3796c9de560dSAlex Tomas 	ext4_unlock_group(sb, group);
3797e39e07fdSJing Zhang 	ext4_mb_unload_buddy(&e4b);
3798c9de560dSAlex Tomas 	put_bh(bitmap_bh);
3799c9de560dSAlex Tomas 	return free;
3800c9de560dSAlex Tomas }
3801c9de560dSAlex Tomas 
3802c9de560dSAlex Tomas /*
3803c9de560dSAlex Tomas  * releases all non-used preallocated blocks for given inode
3804c9de560dSAlex Tomas  *
3805c9de560dSAlex Tomas  * It's important to discard preallocations under i_data_sem
3806c9de560dSAlex Tomas  * We don't want another block to be served from the prealloc
3807c9de560dSAlex Tomas  * space when we are discarding the inode prealloc space.
3808c9de560dSAlex Tomas  *
3809c9de560dSAlex Tomas  * FIXME!! Make sure it is valid at all the call sites
3810c9de560dSAlex Tomas  */
3811c2ea3fdeSTheodore Ts'o void ext4_discard_preallocations(struct inode *inode)
3812c9de560dSAlex Tomas {
3813c9de560dSAlex Tomas 	struct ext4_inode_info *ei = EXT4_I(inode);
3814c9de560dSAlex Tomas 	struct super_block *sb = inode->i_sb;
3815c9de560dSAlex Tomas 	struct buffer_head *bitmap_bh = NULL;
3816c9de560dSAlex Tomas 	struct ext4_prealloc_space *pa, *tmp;
3817c9de560dSAlex Tomas 	ext4_group_t group = 0;
3818c9de560dSAlex Tomas 	struct list_head list;
3819c9de560dSAlex Tomas 	struct ext4_buddy e4b;
3820c9de560dSAlex Tomas 	int err;
3821c9de560dSAlex Tomas 
3822c2ea3fdeSTheodore Ts'o 	if (!S_ISREG(inode->i_mode)) {
3823c9de560dSAlex Tomas 		/*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
3824c9de560dSAlex Tomas 		return;
3825c9de560dSAlex Tomas 	}
3826c9de560dSAlex Tomas 
38276ba495e9STheodore Ts'o 	mb_debug(1, "discard preallocation for inode %lu\n", inode->i_ino);
38289bffad1eSTheodore Ts'o 	trace_ext4_discard_preallocations(inode);
3829c9de560dSAlex Tomas 
3830c9de560dSAlex Tomas 	INIT_LIST_HEAD(&list);
3831c9de560dSAlex Tomas 
3832c9de560dSAlex Tomas repeat:
3833c9de560dSAlex Tomas 	/* first, collect all pa's in the inode */
3834c9de560dSAlex Tomas 	spin_lock(&ei->i_prealloc_lock);
3835c9de560dSAlex Tomas 	while (!list_empty(&ei->i_prealloc_list)) {
3836c9de560dSAlex Tomas 		pa = list_entry(ei->i_prealloc_list.next,
3837c9de560dSAlex Tomas 				struct ext4_prealloc_space, pa_inode_list);
3838c9de560dSAlex Tomas 		BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
3839c9de560dSAlex Tomas 		spin_lock(&pa->pa_lock);
3840c9de560dSAlex Tomas 		if (atomic_read(&pa->pa_count)) {
3841c9de560dSAlex Tomas 			/* this shouldn't happen often - nobody should
3842c9de560dSAlex Tomas 			 * use preallocation while we're discarding it */
3843c9de560dSAlex Tomas 			spin_unlock(&pa->pa_lock);
3844c9de560dSAlex Tomas 			spin_unlock(&ei->i_prealloc_lock);
38459d8b9ec4STheodore Ts'o 			ext4_msg(sb, KERN_ERR,
38469d8b9ec4STheodore Ts'o 				 "uh-oh! used pa while discarding");
3847c9de560dSAlex Tomas 			WARN_ON(1);
3848c9de560dSAlex Tomas 			schedule_timeout_uninterruptible(HZ);
3849c9de560dSAlex Tomas 			goto repeat;
3850c9de560dSAlex Tomas 
3851c9de560dSAlex Tomas 		}
3852c9de560dSAlex Tomas 		if (pa->pa_deleted == 0) {
3853c9de560dSAlex Tomas 			pa->pa_deleted = 1;
3854c9de560dSAlex Tomas 			spin_unlock(&pa->pa_lock);
3855c9de560dSAlex Tomas 			list_del_rcu(&pa->pa_inode_list);
3856c9de560dSAlex Tomas 			list_add(&pa->u.pa_tmp_list, &list);
3857c9de560dSAlex Tomas 			continue;
3858c9de560dSAlex Tomas 		}
3859c9de560dSAlex Tomas 
3860c9de560dSAlex Tomas 		/* someone is deleting pa right now */
3861c9de560dSAlex Tomas 		spin_unlock(&pa->pa_lock);
3862c9de560dSAlex Tomas 		spin_unlock(&ei->i_prealloc_lock);
3863c9de560dSAlex Tomas 
3864c9de560dSAlex Tomas 		/* we have to wait here because pa_deleted
3865c9de560dSAlex Tomas 		 * doesn't mean pa is already unlinked from
3866c9de560dSAlex Tomas 		 * the list. as we might be called from
3867c9de560dSAlex Tomas 		 * ->clear_inode() the inode will get freed
3868c9de560dSAlex Tomas 		 * and concurrent thread which is unlinking
3869c9de560dSAlex Tomas 		 * pa from inode's list may access already
3870c9de560dSAlex Tomas 		 * freed memory, bad-bad-bad */
3871c9de560dSAlex Tomas 
3872c9de560dSAlex Tomas 		/* XXX: if this happens too often, we can
3873c9de560dSAlex Tomas 		 * add a flag to force wait only in case
3874c9de560dSAlex Tomas 		 * of ->clear_inode(), but not in case of
3875c9de560dSAlex Tomas 		 * regular truncate */
3876c9de560dSAlex Tomas 		schedule_timeout_uninterruptible(HZ);
3877c9de560dSAlex Tomas 		goto repeat;
3878c9de560dSAlex Tomas 	}
3879c9de560dSAlex Tomas 	spin_unlock(&ei->i_prealloc_lock);
3880c9de560dSAlex Tomas 
3881c9de560dSAlex Tomas 	list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
3882cc0fb9adSAneesh Kumar K.V 		BUG_ON(pa->pa_type != MB_INODE_PA);
3883c9de560dSAlex Tomas 		ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
3884c9de560dSAlex Tomas 
3885c9de560dSAlex Tomas 		err = ext4_mb_load_buddy(sb, group, &e4b);
3886ce89f46cSAneesh Kumar K.V 		if (err) {
388712062dddSEric Sandeen 			ext4_error(sb, "Error loading buddy information for %u",
388812062dddSEric Sandeen 					group);
3889ce89f46cSAneesh Kumar K.V 			continue;
3890ce89f46cSAneesh Kumar K.V 		}
3891c9de560dSAlex Tomas 
3892574ca174STheodore Ts'o 		bitmap_bh = ext4_read_block_bitmap(sb, group);
3893c9de560dSAlex Tomas 		if (bitmap_bh == NULL) {
389412062dddSEric Sandeen 			ext4_error(sb, "Error reading block bitmap for %u",
389512062dddSEric Sandeen 					group);
3896e39e07fdSJing Zhang 			ext4_mb_unload_buddy(&e4b);
3897ce89f46cSAneesh Kumar K.V 			continue;
3898c9de560dSAlex Tomas 		}
3899c9de560dSAlex Tomas 
3900c9de560dSAlex Tomas 		ext4_lock_group(sb, group);
3901c9de560dSAlex Tomas 		list_del(&pa->pa_group_list);
39023e1e5f50SEric Sandeen 		ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
3903c9de560dSAlex Tomas 		ext4_unlock_group(sb, group);
3904c9de560dSAlex Tomas 
3905e39e07fdSJing Zhang 		ext4_mb_unload_buddy(&e4b);
3906c9de560dSAlex Tomas 		put_bh(bitmap_bh);
3907c9de560dSAlex Tomas 
3908c9de560dSAlex Tomas 		list_del(&pa->u.pa_tmp_list);
3909c9de560dSAlex Tomas 		call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
3910c9de560dSAlex Tomas 	}
3911c9de560dSAlex Tomas }
3912c9de560dSAlex Tomas 
39136ba495e9STheodore Ts'o #ifdef CONFIG_EXT4_DEBUG
3914c9de560dSAlex Tomas static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
3915c9de560dSAlex Tomas {
3916c9de560dSAlex Tomas 	struct super_block *sb = ac->ac_sb;
39178df9675fSTheodore Ts'o 	ext4_group_t ngroups, i;
3918c9de560dSAlex Tomas 
39194dd89fc6STheodore Ts'o 	if (!mb_enable_debug ||
39204dd89fc6STheodore Ts'o 	    (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED))
3921e3570639SEric Sandeen 		return;
3922e3570639SEric Sandeen 
39239d8b9ec4STheodore Ts'o 	ext4_msg(ac->ac_sb, KERN_ERR, "EXT4-fs: Can't allocate:"
39249d8b9ec4STheodore Ts'o 			" Allocation context details:");
39259d8b9ec4STheodore Ts'o 	ext4_msg(ac->ac_sb, KERN_ERR, "EXT4-fs: status %d flags %d",
3926c9de560dSAlex Tomas 			ac->ac_status, ac->ac_flags);
39279d8b9ec4STheodore Ts'o 	ext4_msg(ac->ac_sb, KERN_ERR, "EXT4-fs: orig %lu/%lu/%lu@%lu, "
39289d8b9ec4STheodore Ts'o 		 	"goal %lu/%lu/%lu@%lu, "
39299d8b9ec4STheodore Ts'o 			"best %lu/%lu/%lu@%lu cr %d",
3930c9de560dSAlex Tomas 			(unsigned long)ac->ac_o_ex.fe_group,
3931c9de560dSAlex Tomas 			(unsigned long)ac->ac_o_ex.fe_start,
3932c9de560dSAlex Tomas 			(unsigned long)ac->ac_o_ex.fe_len,
3933c9de560dSAlex Tomas 			(unsigned long)ac->ac_o_ex.fe_logical,
3934c9de560dSAlex Tomas 			(unsigned long)ac->ac_g_ex.fe_group,
3935c9de560dSAlex Tomas 			(unsigned long)ac->ac_g_ex.fe_start,
3936c9de560dSAlex Tomas 			(unsigned long)ac->ac_g_ex.fe_len,
3937c9de560dSAlex Tomas 			(unsigned long)ac->ac_g_ex.fe_logical,
3938c9de560dSAlex Tomas 			(unsigned long)ac->ac_b_ex.fe_group,
3939c9de560dSAlex Tomas 			(unsigned long)ac->ac_b_ex.fe_start,
3940c9de560dSAlex Tomas 			(unsigned long)ac->ac_b_ex.fe_len,
3941c9de560dSAlex Tomas 			(unsigned long)ac->ac_b_ex.fe_logical,
3942c9de560dSAlex Tomas 			(int)ac->ac_criteria);
39439d8b9ec4STheodore Ts'o 	ext4_msg(ac->ac_sb, KERN_ERR, "EXT4-fs: %lu scanned, %d found",
39449d8b9ec4STheodore Ts'o 		 ac->ac_ex_scanned, ac->ac_found);
39459d8b9ec4STheodore Ts'o 	ext4_msg(ac->ac_sb, KERN_ERR, "EXT4-fs: groups: ");
39468df9675fSTheodore Ts'o 	ngroups = ext4_get_groups_count(sb);
39478df9675fSTheodore Ts'o 	for (i = 0; i < ngroups; i++) {
3948c9de560dSAlex Tomas 		struct ext4_group_info *grp = ext4_get_group_info(sb, i);
3949c9de560dSAlex Tomas 		struct ext4_prealloc_space *pa;
3950c9de560dSAlex Tomas 		ext4_grpblk_t start;
3951c9de560dSAlex Tomas 		struct list_head *cur;
3952c9de560dSAlex Tomas 		ext4_lock_group(sb, i);
3953c9de560dSAlex Tomas 		list_for_each(cur, &grp->bb_prealloc_list) {
3954c9de560dSAlex Tomas 			pa = list_entry(cur, struct ext4_prealloc_space,
3955c9de560dSAlex Tomas 					pa_group_list);
3956c9de560dSAlex Tomas 			spin_lock(&pa->pa_lock);
3957c9de560dSAlex Tomas 			ext4_get_group_no_and_offset(sb, pa->pa_pstart,
3958c9de560dSAlex Tomas 						     NULL, &start);
3959c9de560dSAlex Tomas 			spin_unlock(&pa->pa_lock);
39601c718505SAkira Fujita 			printk(KERN_ERR "PA:%u:%d:%u \n", i,
3961c9de560dSAlex Tomas 			       start, pa->pa_len);
3962c9de560dSAlex Tomas 		}
396360bd63d1SSolofo Ramangalahy 		ext4_unlock_group(sb, i);
3964c9de560dSAlex Tomas 
3965c9de560dSAlex Tomas 		if (grp->bb_free == 0)
3966c9de560dSAlex Tomas 			continue;
39671c718505SAkira Fujita 		printk(KERN_ERR "%u: %d/%d \n",
3968c9de560dSAlex Tomas 		       i, grp->bb_free, grp->bb_fragments);
3969c9de560dSAlex Tomas 	}
3970c9de560dSAlex Tomas 	printk(KERN_ERR "\n");
3971c9de560dSAlex Tomas }
3972c9de560dSAlex Tomas #else
3973c9de560dSAlex Tomas static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
3974c9de560dSAlex Tomas {
3975c9de560dSAlex Tomas 	return;
3976c9de560dSAlex Tomas }
3977c9de560dSAlex Tomas #endif
3978c9de560dSAlex Tomas 
3979c9de560dSAlex Tomas /*
3980c9de560dSAlex Tomas  * We use locality group preallocation for small size file. The size of the
3981c9de560dSAlex Tomas  * file is determined by the current size or the resulting size after
3982c9de560dSAlex Tomas  * allocation which ever is larger
3983c9de560dSAlex Tomas  *
3984b713a5ecSTheodore Ts'o  * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
3985c9de560dSAlex Tomas  */
3986c9de560dSAlex Tomas static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
3987c9de560dSAlex Tomas {
3988c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
3989c9de560dSAlex Tomas 	int bsbits = ac->ac_sb->s_blocksize_bits;
3990c9de560dSAlex Tomas 	loff_t size, isize;
3991c9de560dSAlex Tomas 
3992c9de560dSAlex Tomas 	if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
3993c9de560dSAlex Tomas 		return;
3994c9de560dSAlex Tomas 
39954ba74d00STheodore Ts'o 	if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
39964ba74d00STheodore Ts'o 		return;
39974ba74d00STheodore Ts'o 
399853accfa9STheodore Ts'o 	size = ac->ac_o_ex.fe_logical + EXT4_C2B(sbi, ac->ac_o_ex.fe_len);
399950797481STheodore Ts'o 	isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
400050797481STheodore Ts'o 		>> bsbits;
4001c9de560dSAlex Tomas 
400250797481STheodore Ts'o 	if ((size == isize) &&
400350797481STheodore Ts'o 	    !ext4_fs_is_busy(sbi) &&
400450797481STheodore Ts'o 	    (atomic_read(&ac->ac_inode->i_writecount) == 0)) {
400550797481STheodore Ts'o 		ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
400650797481STheodore Ts'o 		return;
400750797481STheodore Ts'o 	}
400850797481STheodore Ts'o 
4009c9de560dSAlex Tomas 	/* don't use group allocation for large files */
401071780577STheodore Ts'o 	size = max(size, isize);
4011cc483f10STao Ma 	if (size > sbi->s_mb_stream_request) {
40124ba74d00STheodore Ts'o 		ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
4013c9de560dSAlex Tomas 		return;
40144ba74d00STheodore Ts'o 	}
4015c9de560dSAlex Tomas 
4016c9de560dSAlex Tomas 	BUG_ON(ac->ac_lg != NULL);
4017c9de560dSAlex Tomas 	/*
4018c9de560dSAlex Tomas 	 * locality group prealloc space are per cpu. The reason for having
4019c9de560dSAlex Tomas 	 * per cpu locality group is to reduce the contention between block
4020c9de560dSAlex Tomas 	 * request from multiple CPUs.
4021c9de560dSAlex Tomas 	 */
4022ca0c9584SChristoph Lameter 	ac->ac_lg = __this_cpu_ptr(sbi->s_locality_groups);
4023c9de560dSAlex Tomas 
4024c9de560dSAlex Tomas 	/* we're going to use group allocation */
4025c9de560dSAlex Tomas 	ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
4026c9de560dSAlex Tomas 
4027c9de560dSAlex Tomas 	/* serialize all allocations in the group */
4028c9de560dSAlex Tomas 	mutex_lock(&ac->ac_lg->lg_mutex);
4029c9de560dSAlex Tomas }
4030c9de560dSAlex Tomas 
40314ddfef7bSEric Sandeen static noinline_for_stack int
40324ddfef7bSEric Sandeen ext4_mb_initialize_context(struct ext4_allocation_context *ac,
4033c9de560dSAlex Tomas 				struct ext4_allocation_request *ar)
4034c9de560dSAlex Tomas {
4035c9de560dSAlex Tomas 	struct super_block *sb = ar->inode->i_sb;
4036c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(sb);
4037c9de560dSAlex Tomas 	struct ext4_super_block *es = sbi->s_es;
4038c9de560dSAlex Tomas 	ext4_group_t group;
4039498e5f24STheodore Ts'o 	unsigned int len;
4040498e5f24STheodore Ts'o 	ext4_fsblk_t goal;
4041c9de560dSAlex Tomas 	ext4_grpblk_t block;
4042c9de560dSAlex Tomas 
4043c9de560dSAlex Tomas 	/* we can't allocate > group size */
4044c9de560dSAlex Tomas 	len = ar->len;
4045c9de560dSAlex Tomas 
4046c9de560dSAlex Tomas 	/* just a dirty hack to filter too big requests  */
40477137d7a4STheodore Ts'o 	if (len >= EXT4_CLUSTERS_PER_GROUP(sb) - 10)
40487137d7a4STheodore Ts'o 		len = EXT4_CLUSTERS_PER_GROUP(sb) - 10;
4049c9de560dSAlex Tomas 
4050c9de560dSAlex Tomas 	/* start searching from the goal */
4051c9de560dSAlex Tomas 	goal = ar->goal;
4052c9de560dSAlex Tomas 	if (goal < le32_to_cpu(es->s_first_data_block) ||
4053c9de560dSAlex Tomas 			goal >= ext4_blocks_count(es))
4054c9de560dSAlex Tomas 		goal = le32_to_cpu(es->s_first_data_block);
4055c9de560dSAlex Tomas 	ext4_get_group_no_and_offset(sb, goal, &group, &block);
4056c9de560dSAlex Tomas 
4057c9de560dSAlex Tomas 	/* set up allocation goals */
4058833576b3STheodore Ts'o 	memset(ac, 0, sizeof(struct ext4_allocation_context));
405953accfa9STheodore Ts'o 	ac->ac_b_ex.fe_logical = ar->logical & ~(sbi->s_cluster_ratio - 1);
4060c9de560dSAlex Tomas 	ac->ac_status = AC_STATUS_CONTINUE;
4061c9de560dSAlex Tomas 	ac->ac_sb = sb;
4062c9de560dSAlex Tomas 	ac->ac_inode = ar->inode;
406353accfa9STheodore Ts'o 	ac->ac_o_ex.fe_logical = ac->ac_b_ex.fe_logical;
4064c9de560dSAlex Tomas 	ac->ac_o_ex.fe_group = group;
4065c9de560dSAlex Tomas 	ac->ac_o_ex.fe_start = block;
4066c9de560dSAlex Tomas 	ac->ac_o_ex.fe_len = len;
406753accfa9STheodore Ts'o 	ac->ac_g_ex = ac->ac_o_ex;
4068c9de560dSAlex Tomas 	ac->ac_flags = ar->flags;
4069c9de560dSAlex Tomas 
4070c9de560dSAlex Tomas 	/* we have to define context: we'll we work with a file or
4071c9de560dSAlex Tomas 	 * locality group. this is a policy, actually */
4072c9de560dSAlex Tomas 	ext4_mb_group_or_file(ac);
4073c9de560dSAlex Tomas 
40746ba495e9STheodore Ts'o 	mb_debug(1, "init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, "
4075c9de560dSAlex Tomas 			"left: %u/%u, right %u/%u to %swritable\n",
4076c9de560dSAlex Tomas 			(unsigned) ar->len, (unsigned) ar->logical,
4077c9de560dSAlex Tomas 			(unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
4078c9de560dSAlex Tomas 			(unsigned) ar->lleft, (unsigned) ar->pleft,
4079c9de560dSAlex Tomas 			(unsigned) ar->lright, (unsigned) ar->pright,
4080c9de560dSAlex Tomas 			atomic_read(&ar->inode->i_writecount) ? "" : "non-");
4081c9de560dSAlex Tomas 	return 0;
4082c9de560dSAlex Tomas 
4083c9de560dSAlex Tomas }
4084c9de560dSAlex Tomas 
40856be2ded1SAneesh Kumar K.V static noinline_for_stack void
40866be2ded1SAneesh Kumar K.V ext4_mb_discard_lg_preallocations(struct super_block *sb,
40876be2ded1SAneesh Kumar K.V 					struct ext4_locality_group *lg,
40886be2ded1SAneesh Kumar K.V 					int order, int total_entries)
40896be2ded1SAneesh Kumar K.V {
40906be2ded1SAneesh Kumar K.V 	ext4_group_t group = 0;
40916be2ded1SAneesh Kumar K.V 	struct ext4_buddy e4b;
40926be2ded1SAneesh Kumar K.V 	struct list_head discard_list;
40936be2ded1SAneesh Kumar K.V 	struct ext4_prealloc_space *pa, *tmp;
40946be2ded1SAneesh Kumar K.V 
40956ba495e9STheodore Ts'o 	mb_debug(1, "discard locality group preallocation\n");
40966be2ded1SAneesh Kumar K.V 
40976be2ded1SAneesh Kumar K.V 	INIT_LIST_HEAD(&discard_list);
40986be2ded1SAneesh Kumar K.V 
40996be2ded1SAneesh Kumar K.V 	spin_lock(&lg->lg_prealloc_lock);
41006be2ded1SAneesh Kumar K.V 	list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
41016be2ded1SAneesh Kumar K.V 						pa_inode_list) {
41026be2ded1SAneesh Kumar K.V 		spin_lock(&pa->pa_lock);
41036be2ded1SAneesh Kumar K.V 		if (atomic_read(&pa->pa_count)) {
41046be2ded1SAneesh Kumar K.V 			/*
41056be2ded1SAneesh Kumar K.V 			 * This is the pa that we just used
41066be2ded1SAneesh Kumar K.V 			 * for block allocation. So don't
41076be2ded1SAneesh Kumar K.V 			 * free that
41086be2ded1SAneesh Kumar K.V 			 */
41096be2ded1SAneesh Kumar K.V 			spin_unlock(&pa->pa_lock);
41106be2ded1SAneesh Kumar K.V 			continue;
41116be2ded1SAneesh Kumar K.V 		}
41126be2ded1SAneesh Kumar K.V 		if (pa->pa_deleted) {
41136be2ded1SAneesh Kumar K.V 			spin_unlock(&pa->pa_lock);
41146be2ded1SAneesh Kumar K.V 			continue;
41156be2ded1SAneesh Kumar K.V 		}
41166be2ded1SAneesh Kumar K.V 		/* only lg prealloc space */
4117cc0fb9adSAneesh Kumar K.V 		BUG_ON(pa->pa_type != MB_GROUP_PA);
41186be2ded1SAneesh Kumar K.V 
41196be2ded1SAneesh Kumar K.V 		/* seems this one can be freed ... */
41206be2ded1SAneesh Kumar K.V 		pa->pa_deleted = 1;
41216be2ded1SAneesh Kumar K.V 		spin_unlock(&pa->pa_lock);
41226be2ded1SAneesh Kumar K.V 
41236be2ded1SAneesh Kumar K.V 		list_del_rcu(&pa->pa_inode_list);
41246be2ded1SAneesh Kumar K.V 		list_add(&pa->u.pa_tmp_list, &discard_list);
41256be2ded1SAneesh Kumar K.V 
41266be2ded1SAneesh Kumar K.V 		total_entries--;
41276be2ded1SAneesh Kumar K.V 		if (total_entries <= 5) {
41286be2ded1SAneesh Kumar K.V 			/*
41296be2ded1SAneesh Kumar K.V 			 * we want to keep only 5 entries
41306be2ded1SAneesh Kumar K.V 			 * allowing it to grow to 8. This
41316be2ded1SAneesh Kumar K.V 			 * mak sure we don't call discard
41326be2ded1SAneesh Kumar K.V 			 * soon for this list.
41336be2ded1SAneesh Kumar K.V 			 */
41346be2ded1SAneesh Kumar K.V 			break;
41356be2ded1SAneesh Kumar K.V 		}
41366be2ded1SAneesh Kumar K.V 	}
41376be2ded1SAneesh Kumar K.V 	spin_unlock(&lg->lg_prealloc_lock);
41386be2ded1SAneesh Kumar K.V 
41396be2ded1SAneesh Kumar K.V 	list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
41406be2ded1SAneesh Kumar K.V 
41416be2ded1SAneesh Kumar K.V 		ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
41426be2ded1SAneesh Kumar K.V 		if (ext4_mb_load_buddy(sb, group, &e4b)) {
414312062dddSEric Sandeen 			ext4_error(sb, "Error loading buddy information for %u",
414412062dddSEric Sandeen 					group);
41456be2ded1SAneesh Kumar K.V 			continue;
41466be2ded1SAneesh Kumar K.V 		}
41476be2ded1SAneesh Kumar K.V 		ext4_lock_group(sb, group);
41486be2ded1SAneesh Kumar K.V 		list_del(&pa->pa_group_list);
41493e1e5f50SEric Sandeen 		ext4_mb_release_group_pa(&e4b, pa);
41506be2ded1SAneesh Kumar K.V 		ext4_unlock_group(sb, group);
41516be2ded1SAneesh Kumar K.V 
4152e39e07fdSJing Zhang 		ext4_mb_unload_buddy(&e4b);
41536be2ded1SAneesh Kumar K.V 		list_del(&pa->u.pa_tmp_list);
41546be2ded1SAneesh Kumar K.V 		call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
41556be2ded1SAneesh Kumar K.V 	}
41566be2ded1SAneesh Kumar K.V }
41576be2ded1SAneesh Kumar K.V 
41586be2ded1SAneesh Kumar K.V /*
41596be2ded1SAneesh Kumar K.V  * We have incremented pa_count. So it cannot be freed at this
41606be2ded1SAneesh Kumar K.V  * point. Also we hold lg_mutex. So no parallel allocation is
41616be2ded1SAneesh Kumar K.V  * possible from this lg. That means pa_free cannot be updated.
41626be2ded1SAneesh Kumar K.V  *
41636be2ded1SAneesh Kumar K.V  * A parallel ext4_mb_discard_group_preallocations is possible.
41646be2ded1SAneesh Kumar K.V  * which can cause the lg_prealloc_list to be updated.
41656be2ded1SAneesh Kumar K.V  */
41666be2ded1SAneesh Kumar K.V 
41676be2ded1SAneesh Kumar K.V static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
41686be2ded1SAneesh Kumar K.V {
41696be2ded1SAneesh Kumar K.V 	int order, added = 0, lg_prealloc_count = 1;
41706be2ded1SAneesh Kumar K.V 	struct super_block *sb = ac->ac_sb;
41716be2ded1SAneesh Kumar K.V 	struct ext4_locality_group *lg = ac->ac_lg;
41726be2ded1SAneesh Kumar K.V 	struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
41736be2ded1SAneesh Kumar K.V 
41746be2ded1SAneesh Kumar K.V 	order = fls(pa->pa_free) - 1;
41756be2ded1SAneesh Kumar K.V 	if (order > PREALLOC_TB_SIZE - 1)
41766be2ded1SAneesh Kumar K.V 		/* The max size of hash table is PREALLOC_TB_SIZE */
41776be2ded1SAneesh Kumar K.V 		order = PREALLOC_TB_SIZE - 1;
41786be2ded1SAneesh Kumar K.V 	/* Add the prealloc space to lg */
41796be2ded1SAneesh Kumar K.V 	rcu_read_lock();
41806be2ded1SAneesh Kumar K.V 	list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
41816be2ded1SAneesh Kumar K.V 						pa_inode_list) {
41826be2ded1SAneesh Kumar K.V 		spin_lock(&tmp_pa->pa_lock);
41836be2ded1SAneesh Kumar K.V 		if (tmp_pa->pa_deleted) {
4184e7c9e3e9STheodore Ts'o 			spin_unlock(&tmp_pa->pa_lock);
41856be2ded1SAneesh Kumar K.V 			continue;
41866be2ded1SAneesh Kumar K.V 		}
41876be2ded1SAneesh Kumar K.V 		if (!added && pa->pa_free < tmp_pa->pa_free) {
41886be2ded1SAneesh Kumar K.V 			/* Add to the tail of the previous entry */
41896be2ded1SAneesh Kumar K.V 			list_add_tail_rcu(&pa->pa_inode_list,
41906be2ded1SAneesh Kumar K.V 						&tmp_pa->pa_inode_list);
41916be2ded1SAneesh Kumar K.V 			added = 1;
41926be2ded1SAneesh Kumar K.V 			/*
41936be2ded1SAneesh Kumar K.V 			 * we want to count the total
41946be2ded1SAneesh Kumar K.V 			 * number of entries in the list
41956be2ded1SAneesh Kumar K.V 			 */
41966be2ded1SAneesh Kumar K.V 		}
41976be2ded1SAneesh Kumar K.V 		spin_unlock(&tmp_pa->pa_lock);
41986be2ded1SAneesh Kumar K.V 		lg_prealloc_count++;
41996be2ded1SAneesh Kumar K.V 	}
42006be2ded1SAneesh Kumar K.V 	if (!added)
42016be2ded1SAneesh Kumar K.V 		list_add_tail_rcu(&pa->pa_inode_list,
42026be2ded1SAneesh Kumar K.V 					&lg->lg_prealloc_list[order]);
42036be2ded1SAneesh Kumar K.V 	rcu_read_unlock();
42046be2ded1SAneesh Kumar K.V 
42056be2ded1SAneesh Kumar K.V 	/* Now trim the list to be not more than 8 elements */
42066be2ded1SAneesh Kumar K.V 	if (lg_prealloc_count > 8) {
42076be2ded1SAneesh Kumar K.V 		ext4_mb_discard_lg_preallocations(sb, lg,
42086be2ded1SAneesh Kumar K.V 						order, lg_prealloc_count);
42096be2ded1SAneesh Kumar K.V 		return;
42106be2ded1SAneesh Kumar K.V 	}
42116be2ded1SAneesh Kumar K.V 	return ;
42126be2ded1SAneesh Kumar K.V }
42136be2ded1SAneesh Kumar K.V 
4214c9de560dSAlex Tomas /*
4215c9de560dSAlex Tomas  * release all resource we used in allocation
4216c9de560dSAlex Tomas  */
4217c9de560dSAlex Tomas static int ext4_mb_release_context(struct ext4_allocation_context *ac)
4218c9de560dSAlex Tomas {
421953accfa9STheodore Ts'o 	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
42206be2ded1SAneesh Kumar K.V 	struct ext4_prealloc_space *pa = ac->ac_pa;
42216be2ded1SAneesh Kumar K.V 	if (pa) {
4222cc0fb9adSAneesh Kumar K.V 		if (pa->pa_type == MB_GROUP_PA) {
4223c9de560dSAlex Tomas 			/* see comment in ext4_mb_use_group_pa() */
42246be2ded1SAneesh Kumar K.V 			spin_lock(&pa->pa_lock);
422553accfa9STheodore Ts'o 			pa->pa_pstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
422653accfa9STheodore Ts'o 			pa->pa_lstart += EXT4_C2B(sbi, ac->ac_b_ex.fe_len);
42276be2ded1SAneesh Kumar K.V 			pa->pa_free -= ac->ac_b_ex.fe_len;
42286be2ded1SAneesh Kumar K.V 			pa->pa_len -= ac->ac_b_ex.fe_len;
42296be2ded1SAneesh Kumar K.V 			spin_unlock(&pa->pa_lock);
4230ba443916SAneesh Kumar K.V 		}
4231ba443916SAneesh Kumar K.V 	}
4232ba443916SAneesh Kumar K.V 	if (pa) {
42336be2ded1SAneesh Kumar K.V 		/*
42346be2ded1SAneesh Kumar K.V 		 * We want to add the pa to the right bucket.
42356be2ded1SAneesh Kumar K.V 		 * Remove it from the list and while adding
42366be2ded1SAneesh Kumar K.V 		 * make sure the list to which we are adding
423744183d42SAmir Goldstein 		 * doesn't grow big.
42386be2ded1SAneesh Kumar K.V 		 */
4239cc0fb9adSAneesh Kumar K.V 		if ((pa->pa_type == MB_GROUP_PA) && likely(pa->pa_free)) {
42406be2ded1SAneesh Kumar K.V 			spin_lock(pa->pa_obj_lock);
42416be2ded1SAneesh Kumar K.V 			list_del_rcu(&pa->pa_inode_list);
42426be2ded1SAneesh Kumar K.V 			spin_unlock(pa->pa_obj_lock);
42436be2ded1SAneesh Kumar K.V 			ext4_mb_add_n_trim(ac);
4244c9de560dSAlex Tomas 		}
42456be2ded1SAneesh Kumar K.V 		ext4_mb_put_pa(ac, ac->ac_sb, pa);
4246c9de560dSAlex Tomas 	}
4247c9de560dSAlex Tomas 	if (ac->ac_bitmap_page)
4248c9de560dSAlex Tomas 		page_cache_release(ac->ac_bitmap_page);
4249c9de560dSAlex Tomas 	if (ac->ac_buddy_page)
4250c9de560dSAlex Tomas 		page_cache_release(ac->ac_buddy_page);
4251c9de560dSAlex Tomas 	if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
4252c9de560dSAlex Tomas 		mutex_unlock(&ac->ac_lg->lg_mutex);
4253c9de560dSAlex Tomas 	ext4_mb_collect_stats(ac);
4254c9de560dSAlex Tomas 	return 0;
4255c9de560dSAlex Tomas }
4256c9de560dSAlex Tomas 
4257c9de560dSAlex Tomas static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
4258c9de560dSAlex Tomas {
42598df9675fSTheodore Ts'o 	ext4_group_t i, ngroups = ext4_get_groups_count(sb);
4260c9de560dSAlex Tomas 	int ret;
4261c9de560dSAlex Tomas 	int freed = 0;
4262c9de560dSAlex Tomas 
42639bffad1eSTheodore Ts'o 	trace_ext4_mb_discard_preallocations(sb, needed);
42648df9675fSTheodore Ts'o 	for (i = 0; i < ngroups && needed > 0; i++) {
4265c9de560dSAlex Tomas 		ret = ext4_mb_discard_group_preallocations(sb, i, needed);
4266c9de560dSAlex Tomas 		freed += ret;
4267c9de560dSAlex Tomas 		needed -= ret;
4268c9de560dSAlex Tomas 	}
4269c9de560dSAlex Tomas 
4270c9de560dSAlex Tomas 	return freed;
4271c9de560dSAlex Tomas }
4272c9de560dSAlex Tomas 
4273c9de560dSAlex Tomas /*
4274c9de560dSAlex Tomas  * Main entry point into mballoc to allocate blocks
4275c9de560dSAlex Tomas  * it tries to use preallocation first, then falls back
4276c9de560dSAlex Tomas  * to usual allocation
4277c9de560dSAlex Tomas  */
4278c9de560dSAlex Tomas ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
4279c9de560dSAlex Tomas 				struct ext4_allocation_request *ar, int *errp)
4280c9de560dSAlex Tomas {
42816bc6e63fSAneesh Kumar K.V 	int freed;
4282256bdb49SEric Sandeen 	struct ext4_allocation_context *ac = NULL;
4283c9de560dSAlex Tomas 	struct ext4_sb_info *sbi;
4284c9de560dSAlex Tomas 	struct super_block *sb;
4285c9de560dSAlex Tomas 	ext4_fsblk_t block = 0;
428660e58e0fSMingming Cao 	unsigned int inquota = 0;
428753accfa9STheodore Ts'o 	unsigned int reserv_clstrs = 0;
4288c9de560dSAlex Tomas 
4289c9de560dSAlex Tomas 	sb = ar->inode->i_sb;
4290c9de560dSAlex Tomas 	sbi = EXT4_SB(sb);
4291c9de560dSAlex Tomas 
42929bffad1eSTheodore Ts'o 	trace_ext4_request_blocks(ar);
4293ba80b101STheodore Ts'o 
4294d2a17637SMingming Cao 	/*
429560e58e0fSMingming Cao 	 * For delayed allocation, we could skip the ENOSPC and
429660e58e0fSMingming Cao 	 * EDQUOT check, as blocks and quotas have been already
429760e58e0fSMingming Cao 	 * reserved when data being copied into pagecache.
429860e58e0fSMingming Cao 	 */
4299f2321097STheodore Ts'o 	if (ext4_test_inode_state(ar->inode, EXT4_STATE_DELALLOC_RESERVED))
430060e58e0fSMingming Cao 		ar->flags |= EXT4_MB_DELALLOC_RESERVED;
430160e58e0fSMingming Cao 	else {
430260e58e0fSMingming Cao 		/* Without delayed allocation we need to verify
430360e58e0fSMingming Cao 		 * there is enough free blocks to do block allocation
430460e58e0fSMingming Cao 		 * and verify allocation doesn't exceed the quota limits.
4305d2a17637SMingming Cao 		 */
430655f020dbSAllison Henderson 		while (ar->len &&
4307e7d5f315STheodore Ts'o 			ext4_claim_free_clusters(sbi, ar->len, ar->flags)) {
430855f020dbSAllison Henderson 
4309030ba6bcSAneesh Kumar K.V 			/* let others to free the space */
4310030ba6bcSAneesh Kumar K.V 			yield();
4311030ba6bcSAneesh Kumar K.V 			ar->len = ar->len >> 1;
4312030ba6bcSAneesh Kumar K.V 		}
4313030ba6bcSAneesh Kumar K.V 		if (!ar->len) {
431407031431SMingming Cao 			*errp = -ENOSPC;
431507031431SMingming Cao 			return 0;
431607031431SMingming Cao 		}
431753accfa9STheodore Ts'o 		reserv_clstrs = ar->len;
431855f020dbSAllison Henderson 		if (ar->flags & EXT4_MB_USE_ROOT_BLOCKS) {
431953accfa9STheodore Ts'o 			dquot_alloc_block_nofail(ar->inode,
432053accfa9STheodore Ts'o 						 EXT4_C2B(sbi, ar->len));
432155f020dbSAllison Henderson 		} else {
432255f020dbSAllison Henderson 			while (ar->len &&
432353accfa9STheodore Ts'o 				dquot_alloc_block(ar->inode,
432453accfa9STheodore Ts'o 						  EXT4_C2B(sbi, ar->len))) {
432555f020dbSAllison Henderson 
4326c9de560dSAlex Tomas 				ar->flags |= EXT4_MB_HINT_NOPREALLOC;
4327c9de560dSAlex Tomas 				ar->len--;
4328c9de560dSAlex Tomas 			}
432955f020dbSAllison Henderson 		}
433060e58e0fSMingming Cao 		inquota = ar->len;
4331c9de560dSAlex Tomas 		if (ar->len == 0) {
4332c9de560dSAlex Tomas 			*errp = -EDQUOT;
43336c7a120aSAditya Kali 			goto out;
4334c9de560dSAlex Tomas 		}
433560e58e0fSMingming Cao 	}
4336d2a17637SMingming Cao 
4337256bdb49SEric Sandeen 	ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
4338833576b3STheodore Ts'o 	if (!ac) {
4339363d4251SShen Feng 		ar->len = 0;
4340256bdb49SEric Sandeen 		*errp = -ENOMEM;
43416c7a120aSAditya Kali 		goto out;
4342256bdb49SEric Sandeen 	}
4343256bdb49SEric Sandeen 
4344256bdb49SEric Sandeen 	*errp = ext4_mb_initialize_context(ac, ar);
4345c9de560dSAlex Tomas 	if (*errp) {
4346c9de560dSAlex Tomas 		ar->len = 0;
43476c7a120aSAditya Kali 		goto out;
4348c9de560dSAlex Tomas 	}
4349c9de560dSAlex Tomas 
4350256bdb49SEric Sandeen 	ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
4351256bdb49SEric Sandeen 	if (!ext4_mb_use_preallocated(ac)) {
4352256bdb49SEric Sandeen 		ac->ac_op = EXT4_MB_HISTORY_ALLOC;
4353256bdb49SEric Sandeen 		ext4_mb_normalize_request(ac, ar);
4354c9de560dSAlex Tomas repeat:
4355c9de560dSAlex Tomas 		/* allocate space in core */
43566c7a120aSAditya Kali 		*errp = ext4_mb_regular_allocator(ac);
43576c7a120aSAditya Kali 		if (*errp)
43586c7a120aSAditya Kali 			goto errout;
4359c9de560dSAlex Tomas 
4360c9de560dSAlex Tomas 		/* as we've just preallocated more space than
4361c9de560dSAlex Tomas 		 * user requested orinally, we store allocated
4362c9de560dSAlex Tomas 		 * space in a special descriptor */
4363256bdb49SEric Sandeen 		if (ac->ac_status == AC_STATUS_FOUND &&
4364256bdb49SEric Sandeen 				ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
4365256bdb49SEric Sandeen 			ext4_mb_new_preallocation(ac);
4366c9de560dSAlex Tomas 	}
4367256bdb49SEric Sandeen 	if (likely(ac->ac_status == AC_STATUS_FOUND)) {
436853accfa9STheodore Ts'o 		*errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_clstrs);
4369519deca0SAneesh Kumar K.V 		if (*errp == -EAGAIN) {
43708556e8f3SAneesh Kumar K.V 			/*
43718556e8f3SAneesh Kumar K.V 			 * drop the reference that we took
43728556e8f3SAneesh Kumar K.V 			 * in ext4_mb_use_best_found
43738556e8f3SAneesh Kumar K.V 			 */
43748556e8f3SAneesh Kumar K.V 			ext4_mb_release_context(ac);
4375519deca0SAneesh Kumar K.V 			ac->ac_b_ex.fe_group = 0;
4376519deca0SAneesh Kumar K.V 			ac->ac_b_ex.fe_start = 0;
4377519deca0SAneesh Kumar K.V 			ac->ac_b_ex.fe_len = 0;
4378519deca0SAneesh Kumar K.V 			ac->ac_status = AC_STATUS_CONTINUE;
4379519deca0SAneesh Kumar K.V 			goto repeat;
43806c7a120aSAditya Kali 		} else if (*errp)
43816c7a120aSAditya Kali 		errout:
4382b844167eSCurt Wohlgemuth 			ext4_discard_allocated_blocks(ac);
43836c7a120aSAditya Kali 		else {
4384256bdb49SEric Sandeen 			block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
4385256bdb49SEric Sandeen 			ar->len = ac->ac_b_ex.fe_len;
4386519deca0SAneesh Kumar K.V 		}
4387c9de560dSAlex Tomas 	} else {
4388256bdb49SEric Sandeen 		freed  = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
4389c9de560dSAlex Tomas 		if (freed)
4390c9de560dSAlex Tomas 			goto repeat;
4391c9de560dSAlex Tomas 		*errp = -ENOSPC;
43926c7a120aSAditya Kali 	}
43936c7a120aSAditya Kali 
43946c7a120aSAditya Kali 	if (*errp) {
4395256bdb49SEric Sandeen 		ac->ac_b_ex.fe_len = 0;
4396c9de560dSAlex Tomas 		ar->len = 0;
4397256bdb49SEric Sandeen 		ext4_mb_show_ac(ac);
4398c9de560dSAlex Tomas 	}
4399256bdb49SEric Sandeen 	ext4_mb_release_context(ac);
44006c7a120aSAditya Kali out:
44016c7a120aSAditya Kali 	if (ac)
4402363d4251SShen Feng 		kmem_cache_free(ext4_ac_cachep, ac);
440360e58e0fSMingming Cao 	if (inquota && ar->len < inquota)
440453accfa9STheodore Ts'o 		dquot_free_block(ar->inode, EXT4_C2B(sbi, inquota - ar->len));
44050087d9fbSAneesh Kumar K.V 	if (!ar->len) {
4406f2321097STheodore Ts'o 		if (!ext4_test_inode_state(ar->inode,
4407f2321097STheodore Ts'o 					   EXT4_STATE_DELALLOC_RESERVED))
44080087d9fbSAneesh Kumar K.V 			/* release all the reserved blocks if non delalloc */
440957042651STheodore Ts'o 			percpu_counter_sub(&sbi->s_dirtyclusters_counter,
441053accfa9STheodore Ts'o 						reserv_clstrs);
44110087d9fbSAneesh Kumar K.V 	}
4412c9de560dSAlex Tomas 
44139bffad1eSTheodore Ts'o 	trace_ext4_allocate_blocks(ar, (unsigned long long)block);
4414ba80b101STheodore Ts'o 
4415c9de560dSAlex Tomas 	return block;
4416c9de560dSAlex Tomas }
4417c9de560dSAlex Tomas 
4418c894058dSAneesh Kumar K.V /*
4419c894058dSAneesh Kumar K.V  * We can merge two free data extents only if the physical blocks
4420c894058dSAneesh Kumar K.V  * are contiguous, AND the extents were freed by the same transaction,
4421c894058dSAneesh Kumar K.V  * AND the blocks are associated with the same group.
4422c894058dSAneesh Kumar K.V  */
4423c894058dSAneesh Kumar K.V static int can_merge(struct ext4_free_data *entry1,
4424c894058dSAneesh Kumar K.V 			struct ext4_free_data *entry2)
4425c894058dSAneesh Kumar K.V {
4426c894058dSAneesh Kumar K.V 	if ((entry1->t_tid == entry2->t_tid) &&
4427c894058dSAneesh Kumar K.V 	    (entry1->group == entry2->group) &&
442884130193STheodore Ts'o 	    ((entry1->start_cluster + entry1->count) == entry2->start_cluster))
4429c894058dSAneesh Kumar K.V 		return 1;
4430c894058dSAneesh Kumar K.V 	return 0;
4431c894058dSAneesh Kumar K.V }
4432c894058dSAneesh Kumar K.V 
44334ddfef7bSEric Sandeen static noinline_for_stack int
44344ddfef7bSEric Sandeen ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
44357a2fcbf7SAneesh Kumar K.V 		      struct ext4_free_data *new_entry)
4436c9de560dSAlex Tomas {
4437e29136f8STheodore Ts'o 	ext4_group_t group = e4b->bd_group;
443884130193STheodore Ts'o 	ext4_grpblk_t cluster;
44397a2fcbf7SAneesh Kumar K.V 	struct ext4_free_data *entry;
4440c9de560dSAlex Tomas 	struct ext4_group_info *db = e4b->bd_info;
4441c9de560dSAlex Tomas 	struct super_block *sb = e4b->bd_sb;
4442c9de560dSAlex Tomas 	struct ext4_sb_info *sbi = EXT4_SB(sb);
4443c894058dSAneesh Kumar K.V 	struct rb_node **n = &db->bb_free_root.rb_node, *node;
4444c894058dSAneesh Kumar K.V 	struct rb_node *parent = NULL, *new_node;
4445c894058dSAneesh Kumar K.V 
44460390131bSFrank Mayhar 	BUG_ON(!ext4_handle_valid(handle));
4447c9de560dSAlex Tomas 	BUG_ON(e4b->bd_bitmap_page == NULL);
4448c9de560dSAlex Tomas 	BUG_ON(e4b->bd_buddy_page == NULL);
4449c9de560dSAlex Tomas 
4450c894058dSAneesh Kumar K.V 	new_node = &new_entry->node;
445184130193STheodore Ts'o 	cluster = new_entry->start_cluster;
4452c9de560dSAlex Tomas 
4453c894058dSAneesh Kumar K.V 	if (!*n) {
4454c894058dSAneesh Kumar K.V 		/* first free block exent. We need to
4455c894058dSAneesh Kumar K.V 		   protect buddy cache from being freed,
4456c9de560dSAlex Tomas 		 * otherwise we'll refresh it from
4457c9de560dSAlex Tomas 		 * on-disk bitmap and lose not-yet-available
4458c9de560dSAlex Tomas 		 * blocks */
4459c9de560dSAlex Tomas 		page_cache_get(e4b->bd_buddy_page);
4460c9de560dSAlex Tomas 		page_cache_get(e4b->bd_bitmap_page);
4461c894058dSAneesh Kumar K.V 	}
4462c894058dSAneesh Kumar K.V 	while (*n) {
4463c894058dSAneesh Kumar K.V 		parent = *n;
4464c894058dSAneesh Kumar K.V 		entry = rb_entry(parent, struct ext4_free_data, node);
446584130193STheodore Ts'o 		if (cluster < entry->start_cluster)
4466c894058dSAneesh Kumar K.V 			n = &(*n)->rb_left;
446784130193STheodore Ts'o 		else if (cluster >= (entry->start_cluster + entry->count))
4468c894058dSAneesh Kumar K.V 			n = &(*n)->rb_right;
4469c894058dSAneesh Kumar K.V 		else {
4470e29136f8STheodore Ts'o 			ext4_grp_locked_error(sb, group, 0,
447184130193STheodore Ts'o 				ext4_group_first_block_no(sb, group) +
447284130193STheodore Ts'o 				EXT4_C2B(sbi, cluster),
4473e29136f8STheodore Ts'o 				"Block already on to-be-freed list");
4474c894058dSAneesh Kumar K.V 			return 0;
4475c9de560dSAlex Tomas 		}
4476c9de560dSAlex Tomas 	}
4477c9de560dSAlex Tomas 
4478c894058dSAneesh Kumar K.V 	rb_link_node(new_node, parent, n);
4479c894058dSAneesh Kumar K.V 	rb_insert_color(new_node, &db->bb_free_root);
4480c894058dSAneesh Kumar K.V 
4481c894058dSAneesh Kumar K.V 	/* Now try to see the extent can be merged to left and right */
4482c894058dSAneesh Kumar K.V 	node = rb_prev(new_node);
4483c894058dSAneesh Kumar K.V 	if (node) {
4484c894058dSAneesh Kumar K.V 		entry = rb_entry(node, struct ext4_free_data, node);
4485c894058dSAneesh Kumar K.V 		if (can_merge(entry, new_entry)) {
448684130193STheodore Ts'o 			new_entry->start_cluster = entry->start_cluster;
4487c894058dSAneesh Kumar K.V 			new_entry->count += entry->count;
4488c894058dSAneesh Kumar K.V 			rb_erase(node, &(db->bb_free_root));
4489c894058dSAneesh Kumar K.V 			spin_lock(&sbi->s_md_lock);
4490c894058dSAneesh Kumar K.V 			list_del(&entry->list);
4491c894058dSAneesh Kumar K.V 			spin_unlock(&sbi->s_md_lock);
4492c894058dSAneesh Kumar K.V 			kmem_cache_free(ext4_free_ext_cachep, entry);
4493c9de560dSAlex Tomas 		}
4494c9de560dSAlex Tomas 	}
4495c894058dSAneesh Kumar K.V 
4496c894058dSAneesh Kumar K.V 	node = rb_next(new_node);
4497c894058dSAneesh Kumar K.V 	if (node) {
4498c894058dSAneesh Kumar K.V 		entry = rb_entry(node, struct ext4_free_data, node);
4499c894058dSAneesh Kumar K.V 		if (can_merge(new_entry, entry)) {
4500c894058dSAneesh Kumar K.V 			new_entry->count += entry->count;
4501c894058dSAneesh Kumar K.V 			rb_erase(node, &(db->bb_free_root));
4502c894058dSAneesh Kumar K.V 			spin_lock(&sbi->s_md_lock);
4503c894058dSAneesh Kumar K.V 			list_del(&entry->list);
4504c894058dSAneesh Kumar K.V 			spin_unlock(&sbi->s_md_lock);
4505c894058dSAneesh Kumar K.V 			kmem_cache_free(ext4_free_ext_cachep, entry);
4506c894058dSAneesh Kumar K.V 		}
4507c894058dSAneesh Kumar K.V 	}
45083e624fc7STheodore Ts'o 	/* Add the extent to transaction's private list */
4509c894058dSAneesh Kumar K.V 	spin_lock(&sbi->s_md_lock);
45103e624fc7STheodore Ts'o 	list_add(&new_entry->list, &handle->h_transaction->t_private_list);
4511c894058dSAneesh Kumar K.V 	spin_unlock(&sbi->s_md_lock);
4512c9de560dSAlex Tomas 	return 0;
4513c9de560dSAlex Tomas }
4514c9de560dSAlex Tomas 
451544338711STheodore Ts'o /**
451644338711STheodore Ts'o  * ext4_free_blocks() -- Free given blocks and update quota
451744338711STheodore Ts'o  * @handle:		handle for this transaction
451844338711STheodore Ts'o  * @inode:		inode
451944338711STheodore Ts'o  * @block:		start physical block to free
452044338711STheodore Ts'o  * @count:		number of blocks to count
45215def1360SYongqiang Yang  * @flags:		flags used by ext4_free_blocks
4522c9de560dSAlex Tomas  */
452344338711STheodore Ts'o void ext4_free_blocks(handle_t *handle, struct inode *inode,
4524e6362609STheodore Ts'o 		      struct buffer_head *bh, ext4_fsblk_t block,
4525e6362609STheodore Ts'o 		      unsigned long count, int flags)
4526c9de560dSAlex Tomas {
452726346ff6SAneesh Kumar K.V 	struct buffer_head *bitmap_bh = NULL;
4528c9de560dSAlex Tomas 	struct super_block *sb = inode->i_sb;
4529c9de560dSAlex Tomas 	struct ext4_group_desc *gdp;
453044338711STheodore Ts'o 	unsigned long freed = 0;
4531498e5f24STheodore Ts'o 	unsigned int overflow;
4532c9de560dSAlex Tomas 	ext4_grpblk_t bit;
4533c9de560dSAlex Tomas 	struct buffer_head *gd_bh;
4534c9de560dSAlex Tomas 	ext4_group_t block_group;
4535c9de560dSAlex Tomas 	struct ext4_sb_info *sbi;
4536c9de560dSAlex Tomas 	struct ext4_buddy e4b;
453784130193STheodore Ts'o 	unsigned int count_clusters;
4538c9de560dSAlex Tomas 	int err = 0;
4539c9de560dSAlex Tomas 	int ret;
4540c9de560dSAlex Tomas 
4541e6362609STheodore Ts'o 	if (bh) {
4542e6362609STheodore Ts'o 		if (block)
4543e6362609STheodore Ts'o 			BUG_ON(block != bh->b_blocknr);
4544e6362609STheodore Ts'o 		else
4545e6362609STheodore Ts'o 			block = bh->b_blocknr;
4546e6362609STheodore Ts'o 	}
4547c9de560dSAlex Tomas 
4548c9de560dSAlex Tomas 	sbi = EXT4_SB(sb);
45491f2acb60STheodore Ts'o 	if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
45501f2acb60STheodore Ts'o 	    !ext4_data_block_valid(sbi, block, count)) {
455112062dddSEric Sandeen 		ext4_error(sb, "Freeing blocks not in datazone - "
45520610b6e9STheodore Ts'o 			   "block = %llu, count = %lu", block, count);
4553c9de560dSAlex Tomas 		goto error_return;
4554c9de560dSAlex Tomas 	}
4555c9de560dSAlex Tomas 
45560610b6e9STheodore Ts'o 	ext4_debug("freeing block %llu\n", block);
4557e6362609STheodore Ts'o 	trace_ext4_free_blocks(inode, block, count, flags);
4558e6362609STheodore Ts'o 
4559e6362609STheodore Ts'o 	if (flags & EXT4_FREE_BLOCKS_FORGET) {
4560e6362609STheodore Ts'o 		struct buffer_head *tbh = bh;
4561e6362609STheodore Ts'o 		int i;
4562e6362609STheodore Ts'o 
4563e6362609STheodore Ts'o 		BUG_ON(bh && (count > 1));
4564e6362609STheodore Ts'o 
4565e6362609STheodore Ts'o 		for (i = 0; i < count; i++) {
4566e6362609STheodore Ts'o 			if (!bh)
4567e6362609STheodore Ts'o 				tbh = sb_find_get_block(inode->i_sb,
4568e6362609STheodore Ts'o 							block + i);
456987783690SNamhyung Kim 			if (unlikely(!tbh))
457087783690SNamhyung Kim 				continue;
4571e6362609STheodore Ts'o 			ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
4572e6362609STheodore Ts'o 				    inode, tbh, block + i);
4573e6362609STheodore Ts'o 		}
4574e6362609STheodore Ts'o 	}
4575e6362609STheodore Ts'o 
4576e6362609STheodore Ts'o 	/*
4577e6362609STheodore Ts'o 	 * We need to make sure we don't reuse the freed block until
4578e6362609STheodore Ts'o 	 * after the transaction is committed, which we can do by
4579e6362609STheodore Ts'o 	 * treating the block as metadata, below.  We make an
4580e6362609STheodore Ts'o 	 * exception if the inode is to be written in writeback mode
4581e6362609STheodore Ts'o 	 * since writeback mode has weak data consistency guarantees.
4582e6362609STheodore Ts'o 	 */
4583e6362609STheodore Ts'o 	if (!ext4_should_writeback_data(inode))
4584e6362609STheodore Ts'o 		flags |= EXT4_FREE_BLOCKS_METADATA;
4585c9de560dSAlex Tomas 
458684130193STheodore Ts'o 	/*
458784130193STheodore Ts'o 	 * If the extent to be freed does not begin on a cluster
458884130193STheodore Ts'o 	 * boundary, we need to deal with partial clusters at the
458984130193STheodore Ts'o 	 * beginning and end of the extent.  Normally we will free
459084130193STheodore Ts'o 	 * blocks at the beginning or the end unless we are explicitly
459184130193STheodore Ts'o 	 * requested to avoid doing so.
459284130193STheodore Ts'o 	 */
459384130193STheodore Ts'o 	overflow = block & (sbi->s_cluster_ratio - 1);
459484130193STheodore Ts'o 	if (overflow) {
459584130193STheodore Ts'o 		if (flags & EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER) {
459684130193STheodore Ts'o 			overflow = sbi->s_cluster_ratio - overflow;
459784130193STheodore Ts'o 			block += overflow;
459884130193STheodore Ts'o 			if (count > overflow)
459984130193STheodore Ts'o 				count -= overflow;
460084130193STheodore Ts'o 			else
460184130193STheodore Ts'o 				return;
460284130193STheodore Ts'o 		} else {
460384130193STheodore Ts'o 			block -= overflow;
460484130193STheodore Ts'o 			count += overflow;
460584130193STheodore Ts'o 		}
460684130193STheodore Ts'o 	}
460784130193STheodore Ts'o 	overflow = count & (sbi->s_cluster_ratio - 1);
460884130193STheodore Ts'o 	if (overflow) {
460984130193STheodore Ts'o 		if (flags & EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER) {
461084130193STheodore Ts'o 			if (count > overflow)
461184130193STheodore Ts'o 				count -= overflow;
461284130193STheodore Ts'o 			else
461384130193STheodore Ts'o 				return;
461484130193STheodore Ts'o 		} else
461584130193STheodore Ts'o 			count += sbi->s_cluster_ratio - overflow;
461684130193STheodore Ts'o 	}
461784130193STheodore Ts'o 
4618c9de560dSAlex Tomas do_more:
4619c9de560dSAlex Tomas 	overflow = 0;
4620c9de560dSAlex Tomas 	ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
4621c9de560dSAlex Tomas 
4622c9de560dSAlex Tomas 	/*
4623c9de560dSAlex Tomas 	 * Check to see if we are freeing blocks across a group
4624c9de560dSAlex Tomas 	 * boundary.
4625c9de560dSAlex Tomas 	 */
462684130193STheodore Ts'o 	if (EXT4_C2B(sbi, bit) + count > EXT4_BLOCKS_PER_GROUP(sb)) {
462784130193STheodore Ts'o 		overflow = EXT4_C2B(sbi, bit) + count -
462884130193STheodore Ts'o 			EXT4_BLOCKS_PER_GROUP(sb);
4629c9de560dSAlex Tomas 		count -= overflow;
4630c9de560dSAlex Tomas 	}
463184130193STheodore Ts'o 	count_clusters = EXT4_B2C(sbi, count);
4632574ca174STheodore Ts'o 	bitmap_bh = ext4_read_block_bitmap(sb, block_group);
4633ce89f46cSAneesh Kumar K.V 	if (!bitmap_bh) {
4634ce89f46cSAneesh Kumar K.V 		err = -EIO;
4635c9de560dSAlex Tomas 		goto error_return;
4636ce89f46cSAneesh Kumar K.V 	}
4637c9de560dSAlex Tomas 	gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
4638ce89f46cSAneesh Kumar K.V 	if (!gdp) {
4639ce89f46cSAneesh Kumar K.V 		err = -EIO;
4640c9de560dSAlex Tomas 		goto error_return;
4641ce89f46cSAneesh Kumar K.V 	}
4642c9de560dSAlex Tomas 
4643c9de560dSAlex Tomas 	if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
4644c9de560dSAlex Tomas 	    in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
4645c9de560dSAlex Tomas 	    in_range(block, ext4_inode_table(sb, gdp),
4646c9de560dSAlex Tomas 		     EXT4_SB(sb)->s_itb_per_group) ||
4647c9de560dSAlex Tomas 	    in_range(block + count - 1, ext4_inode_table(sb, gdp),
4648c9de560dSAlex Tomas 		     EXT4_SB(sb)->s_itb_per_group)) {
4649c9de560dSAlex Tomas 
465012062dddSEric Sandeen 		ext4_error(sb, "Freeing blocks in system zone - "
46510610b6e9STheodore Ts'o 			   "Block = %llu, count = %lu", block, count);
4652519deca0SAneesh Kumar K.V 		/* err = 0. ext4_std_error should be a no op */
4653519deca0SAneesh Kumar K.V 		goto error_return;
4654c9de560dSAlex Tomas 	}
4655c9de560dSAlex Tomas 
4656c9de560dSAlex Tomas 	BUFFER_TRACE(bitmap_bh, "getting write access");
4657c9de560dSAlex Tomas 	err = ext4_journal_get_write_access(handle, bitmap_bh);
4658c9de560dSAlex Tomas 	if (err)
4659c9de560dSAlex Tomas 		goto error_return;
4660c9de560dSAlex Tomas 
4661c9de560dSAlex Tomas 	/*
4662c9de560dSAlex Tomas 	 * We are about to modify some metadata.  Call the journal APIs
4663c9de560dSAlex Tomas 	 * to unshare ->b_data if a currently-committing transaction is
4664c9de560dSAlex Tomas 	 * using it
4665c9de560dSAlex Tomas 	 */
4666c9de560dSAlex Tomas 	BUFFER_TRACE(gd_bh, "get_write_access");
4667c9de560dSAlex Tomas 	err = ext4_journal_get_write_access(handle, gd_bh);
4668c9de560dSAlex Tomas 	if (err)
4669c9de560dSAlex Tomas 		goto error_return;
4670c9de560dSAlex Tomas #ifdef AGGRESSIVE_CHECK
4671c9de560dSAlex Tomas 	{
4672c9de560dSAlex Tomas 		int i;
467384130193STheodore Ts'o 		for (i = 0; i < count_clusters; i++)
4674c9de560dSAlex Tomas 			BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
4675c9de560dSAlex Tomas 	}
4676c9de560dSAlex Tomas #endif
467784130193STheodore Ts'o 	trace_ext4_mballoc_free(sb, inode, block_group, bit, count_clusters);
4678c9de560dSAlex Tomas 
4679920313a7SAneesh Kumar K.V 	err = ext4_mb_load_buddy(sb, block_group, &e4b);
4680920313a7SAneesh Kumar K.V 	if (err)
4681920313a7SAneesh Kumar K.V 		goto error_return;
4682e6362609STheodore Ts'o 
4683e6362609STheodore Ts'o 	if ((flags & EXT4_FREE_BLOCKS_METADATA) && ext4_handle_valid(handle)) {
46847a2fcbf7SAneesh Kumar K.V 		struct ext4_free_data *new_entry;
46857a2fcbf7SAneesh Kumar K.V 		/*
46867a2fcbf7SAneesh Kumar K.V 		 * blocks being freed are metadata. these blocks shouldn't
46877a2fcbf7SAneesh Kumar K.V 		 * be used until this transaction is committed
46887a2fcbf7SAneesh Kumar K.V 		 */
46897a2fcbf7SAneesh Kumar K.V 		new_entry = kmem_cache_alloc(ext4_free_ext_cachep, GFP_NOFS);
4690b72143abSTheodore Ts'o 		if (!new_entry) {
4691b72143abSTheodore Ts'o 			err = -ENOMEM;
4692b72143abSTheodore Ts'o 			goto error_return;
4693b72143abSTheodore Ts'o 		}
469484130193STheodore Ts'o 		new_entry->start_cluster = bit;
46957a2fcbf7SAneesh Kumar K.V 		new_entry->group  = block_group;
469684130193STheodore Ts'o 		new_entry->count = count_clusters;
46977a2fcbf7SAneesh Kumar K.V 		new_entry->t_tid = handle->h_transaction->t_tid;
4698955ce5f5SAneesh Kumar K.V 
46997a2fcbf7SAneesh Kumar K.V 		ext4_lock_group(sb, block_group);
470084130193STheodore Ts'o 		mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
47017a2fcbf7SAneesh Kumar K.V 		ext4_mb_free_metadata(handle, &e4b, new_entry);
4702c9de560dSAlex Tomas 	} else {
47037a2fcbf7SAneesh Kumar K.V 		/* need to update group_info->bb_free and bitmap
47047a2fcbf7SAneesh Kumar K.V 		 * with group lock held. generate_buddy look at
47057a2fcbf7SAneesh Kumar K.V 		 * them with group lock_held
47067a2fcbf7SAneesh Kumar K.V 		 */
4707955ce5f5SAneesh Kumar K.V 		ext4_lock_group(sb, block_group);
470884130193STheodore Ts'o 		mb_clear_bits(bitmap_bh->b_data, bit, count_clusters);
470984130193STheodore Ts'o 		mb_free_blocks(inode, &e4b, bit, count_clusters);
4710c9de560dSAlex Tomas 	}
4711c9de560dSAlex Tomas 
4712021b65bbSTheodore Ts'o 	ret = ext4_free_group_clusters(sb, gdp) + count_clusters;
4713021b65bbSTheodore Ts'o 	ext4_free_group_clusters_set(sb, gdp, ret);
4714c9de560dSAlex Tomas 	gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
4715955ce5f5SAneesh Kumar K.V 	ext4_unlock_group(sb, block_group);
471657042651STheodore Ts'o 	percpu_counter_add(&sbi->s_freeclusters_counter, count_clusters);
4717c9de560dSAlex Tomas 
4718772cb7c8SJose R. Santos 	if (sbi->s_log_groups_per_flex) {
4719772cb7c8SJose R. Santos 		ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
472024aaa8efSTheodore Ts'o 		atomic_add(count_clusters,
472124aaa8efSTheodore Ts'o 			   &sbi->s_flex_groups[flex_group].free_clusters);
4722772cb7c8SJose R. Santos 	}
4723772cb7c8SJose R. Santos 
4724e39e07fdSJing Zhang 	ext4_mb_unload_buddy(&e4b);
4725c9de560dSAlex Tomas 
472644338711STheodore Ts'o 	freed += count;
4727c9de560dSAlex Tomas 
47287b415bf6SAditya Kali 	if (!(flags & EXT4_FREE_BLOCKS_NO_QUOT_UPDATE))
47297b415bf6SAditya Kali 		dquot_free_block(inode, EXT4_C2B(sbi, count_clusters));
47307b415bf6SAditya Kali 
47317a2fcbf7SAneesh Kumar K.V 	/* We dirtied the bitmap block */
47327a2fcbf7SAneesh Kumar K.V 	BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
47337a2fcbf7SAneesh Kumar K.V 	err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
47347a2fcbf7SAneesh Kumar K.V 
4735c9de560dSAlex Tomas 	/* And the group descriptor block */
4736c9de560dSAlex Tomas 	BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
47370390131bSFrank Mayhar 	ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
4738c9de560dSAlex Tomas 	if (!err)
4739c9de560dSAlex Tomas 		err = ret;
4740c9de560dSAlex Tomas 
4741c9de560dSAlex Tomas 	if (overflow && !err) {
4742c9de560dSAlex Tomas 		block += count;
4743c9de560dSAlex Tomas 		count = overflow;
4744c9de560dSAlex Tomas 		put_bh(bitmap_bh);
4745c9de560dSAlex Tomas 		goto do_more;
4746c9de560dSAlex Tomas 	}
4747a0375156STheodore Ts'o 	ext4_mark_super_dirty(sb);
4748c9de560dSAlex Tomas error_return:
4749c9de560dSAlex Tomas 	brelse(bitmap_bh);
4750c9de560dSAlex Tomas 	ext4_std_error(sb, err);
4751c9de560dSAlex Tomas 	return;
4752c9de560dSAlex Tomas }
47537360d173SLukas Czerner 
47547360d173SLukas Czerner /**
47550529155eSYongqiang Yang  * ext4_group_add_blocks() -- Add given blocks to an existing group
47562846e820SAmir Goldstein  * @handle:			handle to this transaction
47572846e820SAmir Goldstein  * @sb:				super block
47582846e820SAmir Goldstein  * @block:			start physcial block to add to the block group
47592846e820SAmir Goldstein  * @count:			number of blocks to free
47602846e820SAmir Goldstein  *
4761e73a347bSAmir Goldstein  * This marks the blocks as free in the bitmap and buddy.
47622846e820SAmir Goldstein  */
4763cc7365dfSYongqiang Yang int ext4_group_add_blocks(handle_t *handle, struct super_block *sb,
47642846e820SAmir Goldstein 			 ext4_fsblk_t block, unsigned long count)
47652846e820SAmir Goldstein {
47662846e820SAmir Goldstein 	struct buffer_head *bitmap_bh = NULL;
47672846e820SAmir Goldstein 	struct buffer_head *gd_bh;
47682846e820SAmir Goldstein 	ext4_group_t block_group;
47692846e820SAmir Goldstein 	ext4_grpblk_t bit;
47702846e820SAmir Goldstein 	unsigned int i;
47712846e820SAmir Goldstein 	struct ext4_group_desc *desc;
47722846e820SAmir Goldstein 	struct ext4_sb_info *sbi = EXT4_SB(sb);
4773e73a347bSAmir Goldstein 	struct ext4_buddy e4b;
47742846e820SAmir Goldstein 	int err = 0, ret, blk_free_count;
47752846e820SAmir Goldstein 	ext4_grpblk_t blocks_freed;
47762846e820SAmir Goldstein 
47772846e820SAmir Goldstein 	ext4_debug("Adding block(s) %llu-%llu\n", block, block + count - 1);
47782846e820SAmir Goldstein 
47794740b830SYongqiang Yang 	if (count == 0)
47804740b830SYongqiang Yang 		return 0;
47814740b830SYongqiang Yang 
47822846e820SAmir Goldstein 	ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
47832846e820SAmir Goldstein 	/*
47842846e820SAmir Goldstein 	 * Check to see if we are freeing blocks across a group
47852846e820SAmir Goldstein 	 * boundary.
47862846e820SAmir Goldstein 	 */
4787cc7365dfSYongqiang Yang 	if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
4788cc7365dfSYongqiang Yang 		ext4_warning(sb, "too much blocks added to group %u\n",
4789cc7365dfSYongqiang Yang 			     block_group);
4790cc7365dfSYongqiang Yang 		err = -EINVAL;
47912846e820SAmir Goldstein 		goto error_return;
4792cc7365dfSYongqiang Yang 	}
47932cd05cc3STheodore Ts'o 
47942846e820SAmir Goldstein 	bitmap_bh = ext4_read_block_bitmap(sb, block_group);
4795cc7365dfSYongqiang Yang 	if (!bitmap_bh) {
4796cc7365dfSYongqiang Yang 		err = -EIO;
47972846e820SAmir Goldstein 		goto error_return;
4798cc7365dfSYongqiang Yang 	}
4799cc7365dfSYongqiang Yang 
48002846e820SAmir Goldstein 	desc = ext4_get_group_desc(sb, block_group, &gd_bh);
4801cc7365dfSYongqiang Yang 	if (!desc) {
4802cc7365dfSYongqiang Yang 		err = -EIO;
48032846e820SAmir Goldstein 		goto error_return;
4804cc7365dfSYongqiang Yang 	}
48052846e820SAmir Goldstein 
48062846e820SAmir Goldstein 	if (in_range(ext4_block_bitmap(sb, desc), block, count) ||
48072846e820SAmir Goldstein 	    in_range(ext4_inode_bitmap(sb, desc), block, count) ||
48082846e820SAmir Goldstein 	    in_range(block, ext4_inode_table(sb, desc), sbi->s_itb_per_group) ||
48092846e820SAmir Goldstein 	    in_range(block + count - 1, ext4_inode_table(sb, desc),
48102846e820SAmir Goldstein 		     sbi->s_itb_per_group)) {
48112846e820SAmir Goldstein 		ext4_error(sb, "Adding blocks in system zones - "
48122846e820SAmir Goldstein 			   "Block = %llu, count = %lu",
48132846e820SAmir Goldstein 			   block, count);
4814cc7365dfSYongqiang Yang 		err = -EINVAL;
48152846e820SAmir Goldstein 		goto error_return;
48162846e820SAmir Goldstein 	}
48172846e820SAmir Goldstein 
48182cd05cc3STheodore Ts'o 	BUFFER_TRACE(bitmap_bh, "getting write access");
48192cd05cc3STheodore Ts'o 	err = ext4_journal_get_write_access(handle, bitmap_bh);
48202846e820SAmir Goldstein 	if (err)
48212846e820SAmir Goldstein 		goto error_return;
48222846e820SAmir Goldstein 
48232846e820SAmir Goldstein 	/*
48242846e820SAmir Goldstein 	 * We are about to modify some metadata.  Call the journal APIs
48252846e820SAmir Goldstein 	 * to unshare ->b_data if a currently-committing transaction is
48262846e820SAmir Goldstein 	 * using it
48272846e820SAmir Goldstein 	 */
48282846e820SAmir Goldstein 	BUFFER_TRACE(gd_bh, "get_write_access");
48292846e820SAmir Goldstein 	err = ext4_journal_get_write_access(handle, gd_bh);
48302846e820SAmir Goldstein 	if (err)
48312846e820SAmir Goldstein 		goto error_return;
4832e73a347bSAmir Goldstein 
48332846e820SAmir Goldstein 	for (i = 0, blocks_freed = 0; i < count; i++) {
48342846e820SAmir Goldstein 		BUFFER_TRACE(bitmap_bh, "clear bit");
4835e73a347bSAmir Goldstein 		if (!mb_test_bit(bit + i, bitmap_bh->b_data)) {
48362846e820SAmir Goldstein 			ext4_error(sb, "bit already cleared for block %llu",
48372846e820SAmir Goldstein 				   (ext4_fsblk_t)(block + i));
48382846e820SAmir Goldstein 			BUFFER_TRACE(bitmap_bh, "bit already cleared");
48392846e820SAmir Goldstein 		} else {
48402846e820SAmir Goldstein 			blocks_freed++;
48412846e820SAmir Goldstein 		}
48422846e820SAmir Goldstein 	}
4843e73a347bSAmir Goldstein 
4844e73a347bSAmir Goldstein 	err = ext4_mb_load_buddy(sb, block_group, &e4b);
4845e73a347bSAmir Goldstein 	if (err)
4846e73a347bSAmir Goldstein 		goto error_return;
4847e73a347bSAmir Goldstein 
4848e73a347bSAmir Goldstein 	/*
4849e73a347bSAmir Goldstein 	 * need to update group_info->bb_free and bitmap
4850e73a347bSAmir Goldstein 	 * with group lock held. generate_buddy look at
4851e73a347bSAmir Goldstein 	 * them with group lock_held
4852e73a347bSAmir Goldstein 	 */
48532846e820SAmir Goldstein 	ext4_lock_group(sb, block_group);
4854e73a347bSAmir Goldstein 	mb_clear_bits(bitmap_bh->b_data, bit, count);
4855e73a347bSAmir Goldstein 	mb_free_blocks(NULL, &e4b, bit, count);
4856021b65bbSTheodore Ts'o 	blk_free_count = blocks_freed + ext4_free_group_clusters(sb, desc);
4857021b65bbSTheodore Ts'o 	ext4_free_group_clusters_set(sb, desc, blk_free_count);
48582846e820SAmir Goldstein 	desc->bg_checksum = ext4_group_desc_csum(sbi, block_group, desc);
48592846e820SAmir Goldstein 	ext4_unlock_group(sb, block_group);
486057042651STheodore Ts'o 	percpu_counter_add(&sbi->s_freeclusters_counter,
486157042651STheodore Ts'o 			   EXT4_B2C(sbi, blocks_freed));
48622846e820SAmir Goldstein 
48632846e820SAmir Goldstein 	if (sbi->s_log_groups_per_flex) {
48642846e820SAmir Goldstein 		ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
486524aaa8efSTheodore Ts'o 		atomic_add(EXT4_B2C(sbi, blocks_freed),
486624aaa8efSTheodore Ts'o 			   &sbi->s_flex_groups[flex_group].free_clusters);
48672846e820SAmir Goldstein 	}
4868e73a347bSAmir Goldstein 
4869e73a347bSAmir Goldstein 	ext4_mb_unload_buddy(&e4b);
48702846e820SAmir Goldstein 
48712846e820SAmir Goldstein 	/* We dirtied the bitmap block */
48722846e820SAmir Goldstein 	BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
48732846e820SAmir Goldstein 	err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
48742846e820SAmir Goldstein 
48752846e820SAmir Goldstein 	/* And the group descriptor block */
48762846e820SAmir Goldstein 	BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
48772846e820SAmir Goldstein 	ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
48782846e820SAmir Goldstein 	if (!err)
48792846e820SAmir Goldstein 		err = ret;
48802846e820SAmir Goldstein 
48812846e820SAmir Goldstein error_return:
48822846e820SAmir Goldstein 	brelse(bitmap_bh);
48832846e820SAmir Goldstein 	ext4_std_error(sb, err);
4884cc7365dfSYongqiang Yang 	return err;
48852846e820SAmir Goldstein }
48862846e820SAmir Goldstein 
48872846e820SAmir Goldstein /**
48887360d173SLukas Czerner  * ext4_trim_extent -- function to TRIM one single free extent in the group
48897360d173SLukas Czerner  * @sb:		super block for the file system
48907360d173SLukas Czerner  * @start:	starting block of the free extent in the alloc. group
48917360d173SLukas Czerner  * @count:	number of blocks to TRIM
48927360d173SLukas Czerner  * @group:	alloc. group we are working with
48937360d173SLukas Czerner  * @e4b:	ext4 buddy for the group
48947360d173SLukas Czerner  *
48957360d173SLukas Czerner  * Trim "count" blocks starting at "start" in the "group". To assure that no
48967360d173SLukas Czerner  * one will allocate those blocks, mark it as used in buddy bitmap. This must
48977360d173SLukas Czerner  * be called with under the group lock.
48987360d173SLukas Czerner  */
4899d9f34504STheodore Ts'o static void ext4_trim_extent(struct super_block *sb, int start, int count,
49007360d173SLukas Czerner 			     ext4_group_t group, struct ext4_buddy *e4b)
49017360d173SLukas Czerner {
49027360d173SLukas Czerner 	struct ext4_free_extent ex;
49037360d173SLukas Czerner 
4904b3d4c2b1STao Ma 	trace_ext4_trim_extent(sb, group, start, count);
4905b3d4c2b1STao Ma 
49067360d173SLukas Czerner 	assert_spin_locked(ext4_group_lock_ptr(sb, group));
49077360d173SLukas Czerner 
49087360d173SLukas Czerner 	ex.fe_start = start;
49097360d173SLukas Czerner 	ex.fe_group = group;
49107360d173SLukas Czerner 	ex.fe_len = count;
49117360d173SLukas Czerner 
49127360d173SLukas Czerner 	/*
49137360d173SLukas Czerner 	 * Mark blocks used, so no one can reuse them while
49147360d173SLukas Czerner 	 * being trimmed.
49157360d173SLukas Czerner 	 */
49167360d173SLukas Czerner 	mb_mark_used(e4b, &ex);
49177360d173SLukas Czerner 	ext4_unlock_group(sb, group);
4918d9f34504STheodore Ts'o 	ext4_issue_discard(sb, group, start, count);
49197360d173SLukas Czerner 	ext4_lock_group(sb, group);
49207360d173SLukas Czerner 	mb_free_blocks(NULL, e4b, start, ex.fe_len);
49217360d173SLukas Czerner }
49227360d173SLukas Czerner 
49237360d173SLukas Czerner /**
49247360d173SLukas Czerner  * ext4_trim_all_free -- function to trim all free space in alloc. group
49257360d173SLukas Czerner  * @sb:			super block for file system
492622612283STao Ma  * @group:		group to be trimmed
49277360d173SLukas Czerner  * @start:		first group block to examine
49287360d173SLukas Czerner  * @max:		last group block to examine
49297360d173SLukas Czerner  * @minblocks:		minimum extent block count
49307360d173SLukas Czerner  *
49317360d173SLukas Czerner  * ext4_trim_all_free walks through group's buddy bitmap searching for free
49327360d173SLukas Czerner  * extents. When the free block is found, ext4_trim_extent is called to TRIM
49337360d173SLukas Czerner  * the extent.
49347360d173SLukas Czerner  *
49357360d173SLukas Czerner  *
49367360d173SLukas Czerner  * ext4_trim_all_free walks through group's block bitmap searching for free
49377360d173SLukas Czerner  * extents. When the free extent is found, mark it as used in group buddy
49387360d173SLukas Czerner  * bitmap. Then issue a TRIM command on this extent and free the extent in
49397360d173SLukas Czerner  * the group buddy bitmap. This is done until whole group is scanned.
49407360d173SLukas Czerner  */
49410b75a840SLukas Czerner static ext4_grpblk_t
494278944086SLukas Czerner ext4_trim_all_free(struct super_block *sb, ext4_group_t group,
494378944086SLukas Czerner 		   ext4_grpblk_t start, ext4_grpblk_t max,
494478944086SLukas Czerner 		   ext4_grpblk_t minblocks)
49457360d173SLukas Czerner {
49467360d173SLukas Czerner 	void *bitmap;
4947169ddc3eSTao Ma 	ext4_grpblk_t next, count = 0, free_count = 0;
494878944086SLukas Czerner 	struct ext4_buddy e4b;
494978944086SLukas Czerner 	int ret;
49507360d173SLukas Czerner 
4951b3d4c2b1STao Ma 	trace_ext4_trim_all_free(sb, group, start, max);
4952b3d4c2b1STao Ma 
495378944086SLukas Czerner 	ret = ext4_mb_load_buddy(sb, group, &e4b);
495478944086SLukas Czerner 	if (ret) {
495578944086SLukas Czerner 		ext4_error(sb, "Error in loading buddy "
495678944086SLukas Czerner 				"information for %u", group);
495778944086SLukas Czerner 		return ret;
495878944086SLukas Czerner 	}
495978944086SLukas Czerner 	bitmap = e4b.bd_bitmap;
496028739eeaSLukas Czerner 
496128739eeaSLukas Czerner 	ext4_lock_group(sb, group);
49623d56b8d2STao Ma 	if (EXT4_MB_GRP_WAS_TRIMMED(e4b.bd_info) &&
49633d56b8d2STao Ma 	    minblocks >= atomic_read(&EXT4_SB(sb)->s_last_trim_minblks))
49643d56b8d2STao Ma 		goto out;
49653d56b8d2STao Ma 
496678944086SLukas Czerner 	start = (e4b.bd_info->bb_first_free > start) ?
496778944086SLukas Czerner 		e4b.bd_info->bb_first_free : start;
49687360d173SLukas Czerner 
49697360d173SLukas Czerner 	while (start < max) {
49707360d173SLukas Czerner 		start = mb_find_next_zero_bit(bitmap, max, start);
49717360d173SLukas Czerner 		if (start >= max)
49727360d173SLukas Czerner 			break;
49737360d173SLukas Czerner 		next = mb_find_next_bit(bitmap, max, start);
49747360d173SLukas Czerner 
49757360d173SLukas Czerner 		if ((next - start) >= minblocks) {
4976d9f34504STheodore Ts'o 			ext4_trim_extent(sb, start,
497778944086SLukas Czerner 					 next - start, group, &e4b);
49787360d173SLukas Czerner 			count += next - start;
49797360d173SLukas Czerner 		}
4980169ddc3eSTao Ma 		free_count += next - start;
49817360d173SLukas Czerner 		start = next + 1;
49827360d173SLukas Czerner 
49837360d173SLukas Czerner 		if (fatal_signal_pending(current)) {
49847360d173SLukas Czerner 			count = -ERESTARTSYS;
49857360d173SLukas Czerner 			break;
49867360d173SLukas Czerner 		}
49877360d173SLukas Czerner 
49887360d173SLukas Czerner 		if (need_resched()) {
49897360d173SLukas Czerner 			ext4_unlock_group(sb, group);
49907360d173SLukas Czerner 			cond_resched();
49917360d173SLukas Czerner 			ext4_lock_group(sb, group);
49927360d173SLukas Czerner 		}
49937360d173SLukas Czerner 
4994169ddc3eSTao Ma 		if ((e4b.bd_info->bb_free - free_count) < minblocks)
49957360d173SLukas Czerner 			break;
49967360d173SLukas Czerner 	}
49973d56b8d2STao Ma 
49983d56b8d2STao Ma 	if (!ret)
49993d56b8d2STao Ma 		EXT4_MB_GRP_SET_TRIMMED(e4b.bd_info);
50003d56b8d2STao Ma out:
50017360d173SLukas Czerner 	ext4_unlock_group(sb, group);
500278944086SLukas Czerner 	ext4_mb_unload_buddy(&e4b);
50037360d173SLukas Czerner 
50047360d173SLukas Czerner 	ext4_debug("trimmed %d blocks in the group %d\n",
50057360d173SLukas Czerner 		count, group);
50067360d173SLukas Czerner 
50077360d173SLukas Czerner 	return count;
50087360d173SLukas Czerner }
50097360d173SLukas Czerner 
50107360d173SLukas Czerner /**
50117360d173SLukas Czerner  * ext4_trim_fs() -- trim ioctl handle function
50127360d173SLukas Czerner  * @sb:			superblock for filesystem
50137360d173SLukas Czerner  * @range:		fstrim_range structure
50147360d173SLukas Czerner  *
50157360d173SLukas Czerner  * start:	First Byte to trim
50167360d173SLukas Czerner  * len:		number of Bytes to trim from start
50177360d173SLukas Czerner  * minlen:	minimum extent length in Bytes
50187360d173SLukas Czerner  * ext4_trim_fs goes through all allocation groups containing Bytes from
50197360d173SLukas Czerner  * start to start+len. For each such a group ext4_trim_all_free function
50207360d173SLukas Czerner  * is invoked to trim all free space.
50217360d173SLukas Czerner  */
50227360d173SLukas Czerner int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range)
50237360d173SLukas Czerner {
502478944086SLukas Czerner 	struct ext4_group_info *grp;
50257360d173SLukas Czerner 	ext4_group_t first_group, last_group;
50267360d173SLukas Czerner 	ext4_group_t group, ngroups = ext4_get_groups_count(sb);
50277137d7a4STheodore Ts'o 	ext4_grpblk_t cnt = 0, first_cluster, last_cluster;
502878944086SLukas Czerner 	uint64_t start, len, minlen, trimmed = 0;
50290f0a25bfSJan Kara 	ext4_fsblk_t first_data_blk =
50300f0a25bfSJan Kara 			le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
50317360d173SLukas Czerner 	int ret = 0;
50327360d173SLukas Czerner 
50337360d173SLukas Czerner 	start = range->start >> sb->s_blocksize_bits;
50347360d173SLukas Czerner 	len = range->len >> sb->s_blocksize_bits;
50357360d173SLukas Czerner 	minlen = range->minlen >> sb->s_blocksize_bits;
50367360d173SLukas Czerner 
50377137d7a4STheodore Ts'o 	if (unlikely(minlen > EXT4_CLUSTERS_PER_GROUP(sb)))
50387360d173SLukas Czerner 		return -EINVAL;
503922f10457STao Ma 	if (start + len <= first_data_blk)
504022f10457STao Ma 		goto out;
50410f0a25bfSJan Kara 	if (start < first_data_blk) {
50420f0a25bfSJan Kara 		len -= first_data_blk - start;
50430f0a25bfSJan Kara 		start = first_data_blk;
50440f0a25bfSJan Kara 	}
50457360d173SLukas Czerner 
50467360d173SLukas Czerner 	/* Determine first and last group to examine based on start and len */
50477360d173SLukas Czerner 	ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) start,
50487137d7a4STheodore Ts'o 				     &first_group, &first_cluster);
50497360d173SLukas Czerner 	ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) (start + len),
50507137d7a4STheodore Ts'o 				     &last_group, &last_cluster);
50517360d173SLukas Czerner 	last_group = (last_group > ngroups - 1) ? ngroups - 1 : last_group;
50527137d7a4STheodore Ts'o 	last_cluster = EXT4_CLUSTERS_PER_GROUP(sb);
50537360d173SLukas Czerner 
50547360d173SLukas Czerner 	if (first_group > last_group)
50557360d173SLukas Czerner 		return -EINVAL;
50567360d173SLukas Czerner 
50577360d173SLukas Czerner 	for (group = first_group; group <= last_group; group++) {
505878944086SLukas Czerner 		grp = ext4_get_group_info(sb, group);
505978944086SLukas Czerner 		/* We only do this if the grp has never been initialized */
506078944086SLukas Czerner 		if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
506178944086SLukas Czerner 			ret = ext4_mb_init_group(sb, group);
506278944086SLukas Czerner 			if (ret)
50637360d173SLukas Czerner 				break;
50647360d173SLukas Czerner 		}
50657360d173SLukas Czerner 
50660ba08517STao Ma 		/*
50670ba08517STao Ma 		 * For all the groups except the last one, last block will
50680ba08517STao Ma 		 * always be EXT4_BLOCKS_PER_GROUP(sb), so we only need to
50690ba08517STao Ma 		 * change it for the last group in which case start +
50700ba08517STao Ma 		 * len < EXT4_BLOCKS_PER_GROUP(sb).
50710ba08517STao Ma 		 */
50727137d7a4STheodore Ts'o 		if (first_cluster + len < EXT4_CLUSTERS_PER_GROUP(sb))
50737137d7a4STheodore Ts'o 			last_cluster = first_cluster + len;
50747137d7a4STheodore Ts'o 		len -= last_cluster - first_cluster;
50757360d173SLukas Czerner 
507678944086SLukas Czerner 		if (grp->bb_free >= minlen) {
50777137d7a4STheodore Ts'o 			cnt = ext4_trim_all_free(sb, group, first_cluster,
50787137d7a4STheodore Ts'o 						last_cluster, minlen);
50797360d173SLukas Czerner 			if (cnt < 0) {
50807360d173SLukas Czerner 				ret = cnt;
50817360d173SLukas Czerner 				break;
50827360d173SLukas Czerner 			}
50837360d173SLukas Czerner 		}
50847360d173SLukas Czerner 		trimmed += cnt;
50857137d7a4STheodore Ts'o 		first_cluster = 0;
50867360d173SLukas Czerner 	}
50877360d173SLukas Czerner 	range->len = trimmed * sb->s_blocksize;
50887360d173SLukas Czerner 
50893d56b8d2STao Ma 	if (!ret)
50903d56b8d2STao Ma 		atomic_set(&EXT4_SB(sb)->s_last_trim_minblks, minlen);
50913d56b8d2STao Ma 
509222f10457STao Ma out:
50937360d173SLukas Czerner 	return ret;
50947360d173SLukas Czerner }
5095