2 * linux/fs/ext3/balloc.c
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
9 * Enhanced block allocation by Stephen Tweedie (sct@redhat.com), 1993
10 * Big-endian to little-endian byte-swapping/bitmaps by
11 * David S. Miller (davem@caip.rutgers.edu), 1995
14 #include <linux/time.h>
15 #include <linux/capability.h>
17 #include <linux/slab.h>
18 #include <linux/jbd.h>
19 #include <linux/ext3_fs.h>
20 #include <linux/ext3_jbd.h>
21 #include <linux/quotaops.h>
22 #include <linux/buffer_head.h>
23 #include <linux/blkdev.h>
26 * balloc.c contains the blocks allocation and deallocation routines
30 * The free blocks are managed by bitmaps. A file system contains several
31 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
32 * block for inodes, N blocks for the inode table and data blocks.
34 * The file system contains group descriptors which are located after the
35 * super block. Each descriptor contains the number of the bitmap block and
36 * the free blocks count in the block. The descriptors are loaded in memory
37 * when a file system is mounted (see ext3_fill_super).
41 #define in_range(b, first, len) ((b) >= (first) && (b) <= (first) + (len) - 1)
44 * Calculate the block group number and offset, given a block number
46 static void ext3_get_group_no_and_offset(struct super_block
*sb
,
47 ext3_fsblk_t blocknr
, unsigned long *blockgrpp
, ext3_grpblk_t
*offsetp
)
49 struct ext3_super_block
*es
= EXT3_SB(sb
)->s_es
;
51 blocknr
= blocknr
- le32_to_cpu(es
->s_first_data_block
);
53 *offsetp
= blocknr
% EXT3_BLOCKS_PER_GROUP(sb
);
55 *blockgrpp
= blocknr
/ EXT3_BLOCKS_PER_GROUP(sb
);
59 * ext3_get_group_desc() -- load group descriptor from disk
61 * @block_group: given block group
62 * @bh: pointer to the buffer head to store the block
65 struct ext3_group_desc
* ext3_get_group_desc(struct super_block
* sb
,
66 unsigned int block_group
,
67 struct buffer_head
** bh
)
69 unsigned long group_desc
;
71 struct ext3_group_desc
* desc
;
72 struct ext3_sb_info
*sbi
= EXT3_SB(sb
);
74 if (block_group
>= sbi
->s_groups_count
) {
75 ext3_error (sb
, "ext3_get_group_desc",
76 "block_group >= groups_count - "
77 "block_group = %d, groups_count = %lu",
78 block_group
, sbi
->s_groups_count
);
84 group_desc
= block_group
>> EXT3_DESC_PER_BLOCK_BITS(sb
);
85 offset
= block_group
& (EXT3_DESC_PER_BLOCK(sb
) - 1);
86 if (!sbi
->s_group_desc
[group_desc
]) {
87 ext3_error (sb
, "ext3_get_group_desc",
88 "Group descriptor not loaded - "
89 "block_group = %d, group_desc = %lu, desc = %lu",
90 block_group
, group_desc
, offset
);
94 desc
= (struct ext3_group_desc
*) sbi
->s_group_desc
[group_desc
]->b_data
;
96 *bh
= sbi
->s_group_desc
[group_desc
];
100 static int ext3_valid_block_bitmap(struct super_block
*sb
,
101 struct ext3_group_desc
*desc
,
102 unsigned int block_group
,
103 struct buffer_head
*bh
)
105 ext3_grpblk_t offset
;
106 ext3_grpblk_t next_zero_bit
;
107 ext3_fsblk_t bitmap_blk
;
108 ext3_fsblk_t group_first_block
;
110 group_first_block
= ext3_group_first_block_no(sb
, block_group
);
112 /* check whether block bitmap block number is set */
113 bitmap_blk
= le32_to_cpu(desc
->bg_block_bitmap
);
114 offset
= bitmap_blk
- group_first_block
;
115 if (!ext3_test_bit(offset
, bh
->b_data
))
116 /* bad block bitmap */
119 /* check whether the inode bitmap block number is set */
120 bitmap_blk
= le32_to_cpu(desc
->bg_inode_bitmap
);
121 offset
= bitmap_blk
- group_first_block
;
122 if (!ext3_test_bit(offset
, bh
->b_data
))
123 /* bad block bitmap */
126 /* check whether the inode table block number is set */
127 bitmap_blk
= le32_to_cpu(desc
->bg_inode_table
);
128 offset
= bitmap_blk
- group_first_block
;
129 next_zero_bit
= ext3_find_next_zero_bit(bh
->b_data
,
130 offset
+ EXT3_SB(sb
)->s_itb_per_group
,
132 if (next_zero_bit
>= offset
+ EXT3_SB(sb
)->s_itb_per_group
)
133 /* good bitmap for inode tables */
137 ext3_error(sb
, __func__
,
138 "Invalid block bitmap - "
139 "block_group = %d, block = %lu",
140 block_group
, bitmap_blk
);
145 * read_block_bitmap()
147 * @block_group: given block group
149 * Read the bitmap for a given block_group,and validate the
150 * bits for block/inode/inode tables are set in the bitmaps
152 * Return buffer_head on success or NULL in case of failure.
154 static struct buffer_head
*
155 read_block_bitmap(struct super_block
*sb
, unsigned int block_group
)
157 struct ext3_group_desc
* desc
;
158 struct buffer_head
* bh
= NULL
;
159 ext3_fsblk_t bitmap_blk
;
161 desc
= ext3_get_group_desc(sb
, block_group
, NULL
);
164 bitmap_blk
= le32_to_cpu(desc
->bg_block_bitmap
);
165 bh
= sb_getblk(sb
, bitmap_blk
);
167 ext3_error(sb
, __func__
,
168 "Cannot read block bitmap - "
169 "block_group = %d, block_bitmap = %u",
170 block_group
, le32_to_cpu(desc
->bg_block_bitmap
));
173 if (likely(bh_uptodate_or_lock(bh
)))
176 if (bh_submit_read(bh
) < 0) {
178 ext3_error(sb
, __func__
,
179 "Cannot read block bitmap - "
180 "block_group = %d, block_bitmap = %u",
181 block_group
, le32_to_cpu(desc
->bg_block_bitmap
));
184 ext3_valid_block_bitmap(sb
, desc
, block_group
, bh
);
186 * file system mounted not to panic on error, continue with corrupt
192 * The reservation window structure operations
193 * --------------------------------------------
194 * Operations include:
195 * dump, find, add, remove, is_empty, find_next_reservable_window, etc.
197 * We use a red-black tree to represent per-filesystem reservation
203 * __rsv_window_dump() -- Dump the filesystem block allocation reservation map
204 * @rb_root: root of per-filesystem reservation rb tree
205 * @verbose: verbose mode
206 * @fn: function which wishes to dump the reservation map
208 * If verbose is turned on, it will print the whole block reservation
209 * windows(start, end). Otherwise, it will only print out the "bad" windows,
210 * those windows that overlap with their immediate neighbors.
213 static void __rsv_window_dump(struct rb_root
*root
, int verbose
,
217 struct ext3_reserve_window_node
*rsv
, *prev
;
225 printk("Block Allocation Reservation Windows Map (%s):\n", fn
);
227 rsv
= rb_entry(n
, struct ext3_reserve_window_node
, rsv_node
);
229 printk("reservation window 0x%p "
230 "start: %lu, end: %lu\n",
231 rsv
, rsv
->rsv_start
, rsv
->rsv_end
);
232 if (rsv
->rsv_start
&& rsv
->rsv_start
>= rsv
->rsv_end
) {
233 printk("Bad reservation %p (start >= end)\n",
237 if (prev
&& prev
->rsv_end
>= rsv
->rsv_start
) {
238 printk("Bad reservation %p (prev->end >= start)\n",
244 printk("Restarting reservation walk in verbose mode\n");
252 printk("Window map complete.\n");
255 #define rsv_window_dump(root, verbose) \
256 __rsv_window_dump((root), (verbose), __func__)
258 #define rsv_window_dump(root, verbose) do {} while (0)
262 * goal_in_my_reservation()
263 * @rsv: inode's reservation window
264 * @grp_goal: given goal block relative to the allocation block group
265 * @group: the current allocation block group
266 * @sb: filesystem super block
268 * Test if the given goal block (group relative) is within the file's
269 * own block reservation window range.
271 * If the reservation window is outside the goal allocation group, return 0;
272 * grp_goal (given goal block) could be -1, which means no specific
273 * goal block. In this case, always return 1.
274 * If the goal block is within the reservation window, return 1;
275 * otherwise, return 0;
278 goal_in_my_reservation(struct ext3_reserve_window
*rsv
, ext3_grpblk_t grp_goal
,
279 unsigned int group
, struct super_block
* sb
)
281 ext3_fsblk_t group_first_block
, group_last_block
;
283 group_first_block
= ext3_group_first_block_no(sb
, group
);
284 group_last_block
= group_first_block
+ (EXT3_BLOCKS_PER_GROUP(sb
) - 1);
286 if ((rsv
->_rsv_start
> group_last_block
) ||
287 (rsv
->_rsv_end
< group_first_block
))
289 if ((grp_goal
>= 0) && ((grp_goal
+ group_first_block
< rsv
->_rsv_start
)
290 || (grp_goal
+ group_first_block
> rsv
->_rsv_end
)))
296 * search_reserve_window()
297 * @rb_root: root of reservation tree
298 * @goal: target allocation block
300 * Find the reserved window which includes the goal, or the previous one
301 * if the goal is not in any window.
302 * Returns NULL if there are no windows or if all windows start after the goal.
304 static struct ext3_reserve_window_node
*
305 search_reserve_window(struct rb_root
*root
, ext3_fsblk_t goal
)
307 struct rb_node
*n
= root
->rb_node
;
308 struct ext3_reserve_window_node
*rsv
;
314 rsv
= rb_entry(n
, struct ext3_reserve_window_node
, rsv_node
);
316 if (goal
< rsv
->rsv_start
)
318 else if (goal
> rsv
->rsv_end
)
324 * We've fallen off the end of the tree: the goal wasn't inside
325 * any particular node. OK, the previous node must be to one
326 * side of the interval containing the goal. If it's the RHS,
327 * we need to back up one.
329 if (rsv
->rsv_start
> goal
) {
330 n
= rb_prev(&rsv
->rsv_node
);
331 rsv
= rb_entry(n
, struct ext3_reserve_window_node
, rsv_node
);
337 * ext3_rsv_window_add() -- Insert a window to the block reservation rb tree.
339 * @rsv: reservation window to add
341 * Must be called with rsv_lock hold.
343 void ext3_rsv_window_add(struct super_block
*sb
,
344 struct ext3_reserve_window_node
*rsv
)
346 struct rb_root
*root
= &EXT3_SB(sb
)->s_rsv_window_root
;
347 struct rb_node
*node
= &rsv
->rsv_node
;
348 ext3_fsblk_t start
= rsv
->rsv_start
;
350 struct rb_node
** p
= &root
->rb_node
;
351 struct rb_node
* parent
= NULL
;
352 struct ext3_reserve_window_node
*this;
357 this = rb_entry(parent
, struct ext3_reserve_window_node
, rsv_node
);
359 if (start
< this->rsv_start
)
361 else if (start
> this->rsv_end
)
364 rsv_window_dump(root
, 1);
369 rb_link_node(node
, parent
, p
);
370 rb_insert_color(node
, root
);
374 * ext3_rsv_window_remove() -- unlink a window from the reservation rb tree
376 * @rsv: reservation window to remove
378 * Mark the block reservation window as not allocated, and unlink it
379 * from the filesystem reservation window rb tree. Must be called with
382 static void rsv_window_remove(struct super_block
*sb
,
383 struct ext3_reserve_window_node
*rsv
)
385 rsv
->rsv_start
= EXT3_RESERVE_WINDOW_NOT_ALLOCATED
;
386 rsv
->rsv_end
= EXT3_RESERVE_WINDOW_NOT_ALLOCATED
;
387 rsv
->rsv_alloc_hit
= 0;
388 rb_erase(&rsv
->rsv_node
, &EXT3_SB(sb
)->s_rsv_window_root
);
392 * rsv_is_empty() -- Check if the reservation window is allocated.
393 * @rsv: given reservation window to check
395 * returns 1 if the end block is EXT3_RESERVE_WINDOW_NOT_ALLOCATED.
397 static inline int rsv_is_empty(struct ext3_reserve_window
*rsv
)
399 /* a valid reservation end block could not be 0 */
400 return rsv
->_rsv_end
== EXT3_RESERVE_WINDOW_NOT_ALLOCATED
;
404 * ext3_init_block_alloc_info()
405 * @inode: file inode structure
407 * Allocate and initialize the reservation window structure, and
408 * link the window to the ext3 inode structure at last
410 * The reservation window structure is only dynamically allocated
411 * and linked to ext3 inode the first time the open file
412 * needs a new block. So, before every ext3_new_block(s) call, for
413 * regular files, we should check whether the reservation window
414 * structure exists or not. In the latter case, this function is called.
415 * Fail to do so will result in block reservation being turned off for that
418 * This function is called from ext3_get_blocks_handle(), also called
419 * when setting the reservation window size through ioctl before the file
420 * is open for write (needs block allocation).
422 * Needs truncate_mutex protection prior to call this function.
424 void ext3_init_block_alloc_info(struct inode
*inode
)
426 struct ext3_inode_info
*ei
= EXT3_I(inode
);
427 struct ext3_block_alloc_info
*block_i
= ei
->i_block_alloc_info
;
428 struct super_block
*sb
= inode
->i_sb
;
430 block_i
= kmalloc(sizeof(*block_i
), GFP_NOFS
);
432 struct ext3_reserve_window_node
*rsv
= &block_i
->rsv_window_node
;
434 rsv
->rsv_start
= EXT3_RESERVE_WINDOW_NOT_ALLOCATED
;
435 rsv
->rsv_end
= EXT3_RESERVE_WINDOW_NOT_ALLOCATED
;
438 * if filesystem is mounted with NORESERVATION, the goal
439 * reservation window size is set to zero to indicate
440 * block reservation is off
442 if (!test_opt(sb
, RESERVATION
))
443 rsv
->rsv_goal_size
= 0;
445 rsv
->rsv_goal_size
= EXT3_DEFAULT_RESERVE_BLOCKS
;
446 rsv
->rsv_alloc_hit
= 0;
447 block_i
->last_alloc_logical_block
= 0;
448 block_i
->last_alloc_physical_block
= 0;
450 ei
->i_block_alloc_info
= block_i
;
454 * ext3_discard_reservation()
457 * Discard(free) block reservation window on last file close, or truncate
460 * It is being called in three cases:
461 * ext3_release_file(): last writer close the file
462 * ext3_clear_inode(): last iput(), when nobody link to this file.
463 * ext3_truncate(): when the block indirect map is about to change.
466 void ext3_discard_reservation(struct inode
*inode
)
468 struct ext3_inode_info
*ei
= EXT3_I(inode
);
469 struct ext3_block_alloc_info
*block_i
= ei
->i_block_alloc_info
;
470 struct ext3_reserve_window_node
*rsv
;
471 spinlock_t
*rsv_lock
= &EXT3_SB(inode
->i_sb
)->s_rsv_window_lock
;
476 rsv
= &block_i
->rsv_window_node
;
477 if (!rsv_is_empty(&rsv
->rsv_window
)) {
479 if (!rsv_is_empty(&rsv
->rsv_window
))
480 rsv_window_remove(inode
->i_sb
, rsv
);
481 spin_unlock(rsv_lock
);
486 * ext3_free_blocks_sb() -- Free given blocks and update quota
487 * @handle: handle to this transaction
489 * @block: start physcial block to free
490 * @count: number of blocks to free
491 * @pdquot_freed_blocks: pointer to quota
493 void ext3_free_blocks_sb(handle_t
*handle
, struct super_block
*sb
,
494 ext3_fsblk_t block
, unsigned long count
,
495 unsigned long *pdquot_freed_blocks
)
497 struct buffer_head
*bitmap_bh
= NULL
;
498 struct buffer_head
*gd_bh
;
499 unsigned long block_group
;
502 unsigned long overflow
;
503 struct ext3_group_desc
* desc
;
504 struct ext3_super_block
* es
;
505 struct ext3_sb_info
*sbi
;
507 ext3_grpblk_t group_freed
;
509 *pdquot_freed_blocks
= 0;
512 if (block
< le32_to_cpu(es
->s_first_data_block
) ||
513 block
+ count
< block
||
514 block
+ count
> le32_to_cpu(es
->s_blocks_count
)) {
515 ext3_error (sb
, "ext3_free_blocks",
516 "Freeing blocks not in datazone - "
517 "block = "E3FSBLK
", count = %lu", block
, count
);
521 ext3_debug ("freeing block(s) %lu-%lu\n", block
, block
+ count
- 1);
525 block_group
= (block
- le32_to_cpu(es
->s_first_data_block
)) /
526 EXT3_BLOCKS_PER_GROUP(sb
);
527 bit
= (block
- le32_to_cpu(es
->s_first_data_block
)) %
528 EXT3_BLOCKS_PER_GROUP(sb
);
530 * Check to see if we are freeing blocks across a group
533 if (bit
+ count
> EXT3_BLOCKS_PER_GROUP(sb
)) {
534 overflow
= bit
+ count
- EXT3_BLOCKS_PER_GROUP(sb
);
538 bitmap_bh
= read_block_bitmap(sb
, block_group
);
541 desc
= ext3_get_group_desc (sb
, block_group
, &gd_bh
);
545 if (in_range (le32_to_cpu(desc
->bg_block_bitmap
), block
, count
) ||
546 in_range (le32_to_cpu(desc
->bg_inode_bitmap
), block
, count
) ||
547 in_range (block
, le32_to_cpu(desc
->bg_inode_table
),
548 sbi
->s_itb_per_group
) ||
549 in_range (block
+ count
- 1, le32_to_cpu(desc
->bg_inode_table
),
550 sbi
->s_itb_per_group
)) {
551 ext3_error (sb
, "ext3_free_blocks",
552 "Freeing blocks in system zones - "
553 "Block = "E3FSBLK
", count = %lu",
559 * We are about to start releasing blocks in the bitmap,
560 * so we need undo access.
562 /* @@@ check errors */
563 BUFFER_TRACE(bitmap_bh
, "getting undo access");
564 err
= ext3_journal_get_undo_access(handle
, bitmap_bh
);
569 * We are about to modify some metadata. Call the journal APIs
570 * to unshare ->b_data if a currently-committing transaction is
573 BUFFER_TRACE(gd_bh
, "get_write_access");
574 err
= ext3_journal_get_write_access(handle
, gd_bh
);
578 jbd_lock_bh_state(bitmap_bh
);
580 for (i
= 0, group_freed
= 0; i
< count
; i
++) {
582 * An HJ special. This is expensive...
584 #ifdef CONFIG_JBD_DEBUG
585 jbd_unlock_bh_state(bitmap_bh
);
587 struct buffer_head
*debug_bh
;
588 debug_bh
= sb_find_get_block(sb
, block
+ i
);
590 BUFFER_TRACE(debug_bh
, "Deleted!");
591 if (!bh2jh(bitmap_bh
)->b_committed_data
)
592 BUFFER_TRACE(debug_bh
,
593 "No committed data in bitmap");
594 BUFFER_TRACE2(debug_bh
, bitmap_bh
, "bitmap");
598 jbd_lock_bh_state(bitmap_bh
);
600 if (need_resched()) {
601 jbd_unlock_bh_state(bitmap_bh
);
603 jbd_lock_bh_state(bitmap_bh
);
605 /* @@@ This prevents newly-allocated data from being
606 * freed and then reallocated within the same
609 * Ideally we would want to allow that to happen, but to
610 * do so requires making journal_forget() capable of
611 * revoking the queued write of a data block, which
612 * implies blocking on the journal lock. *forget()
613 * cannot block due to truncate races.
615 * Eventually we can fix this by making journal_forget()
616 * return a status indicating whether or not it was able
617 * to revoke the buffer. On successful revoke, it is
618 * safe not to set the allocation bit in the committed
619 * bitmap, because we know that there is no outstanding
620 * activity on the buffer any more and so it is safe to
623 BUFFER_TRACE(bitmap_bh
, "set in b_committed_data");
624 J_ASSERT_BH(bitmap_bh
,
625 bh2jh(bitmap_bh
)->b_committed_data
!= NULL
);
626 ext3_set_bit_atomic(sb_bgl_lock(sbi
, block_group
), bit
+ i
,
627 bh2jh(bitmap_bh
)->b_committed_data
);
630 * We clear the bit in the bitmap after setting the committed
631 * data bit, because this is the reverse order to that which
632 * the allocator uses.
634 BUFFER_TRACE(bitmap_bh
, "clear bit");
635 if (!ext3_clear_bit_atomic(sb_bgl_lock(sbi
, block_group
),
636 bit
+ i
, bitmap_bh
->b_data
)) {
637 jbd_unlock_bh_state(bitmap_bh
);
638 ext3_error(sb
, __func__
,
639 "bit already cleared for block "E3FSBLK
,
641 jbd_lock_bh_state(bitmap_bh
);
642 BUFFER_TRACE(bitmap_bh
, "bit already cleared");
647 jbd_unlock_bh_state(bitmap_bh
);
649 spin_lock(sb_bgl_lock(sbi
, block_group
));
650 le16_add_cpu(&desc
->bg_free_blocks_count
, group_freed
);
651 spin_unlock(sb_bgl_lock(sbi
, block_group
));
652 percpu_counter_add(&sbi
->s_freeblocks_counter
, count
);
654 /* We dirtied the bitmap block */
655 BUFFER_TRACE(bitmap_bh
, "dirtied bitmap block");
656 err
= ext3_journal_dirty_metadata(handle
, bitmap_bh
);
658 /* And the group descriptor block */
659 BUFFER_TRACE(gd_bh
, "dirtied group descriptor block");
660 ret
= ext3_journal_dirty_metadata(handle
, gd_bh
);
662 *pdquot_freed_blocks
+= group_freed
;
664 if (overflow
&& !err
) {
672 ext3_std_error(sb
, err
);
677 * ext3_free_blocks() -- Free given blocks and update quota
678 * @handle: handle for this transaction
680 * @block: start physical block to free
681 * @count: number of blocks to count
683 void ext3_free_blocks(handle_t
*handle
, struct inode
*inode
,
684 ext3_fsblk_t block
, unsigned long count
)
686 struct super_block
* sb
;
687 unsigned long dquot_freed_blocks
;
691 printk ("ext3_free_blocks: nonexistent device");
694 ext3_free_blocks_sb(handle
, sb
, block
, count
, &dquot_freed_blocks
);
695 if (dquot_freed_blocks
)
696 dquot_free_block(inode
, dquot_freed_blocks
);
701 * ext3_test_allocatable()
702 * @nr: given allocation block group
703 * @bh: bufferhead contains the bitmap of the given block group
705 * For ext3 allocations, we must not reuse any blocks which are
706 * allocated in the bitmap buffer's "last committed data" copy. This
707 * prevents deletes from freeing up the page for reuse until we have
708 * committed the delete transaction.
710 * If we didn't do this, then deleting something and reallocating it as
711 * data would allow the old block to be overwritten before the
712 * transaction committed (because we force data to disk before commit).
713 * This would lead to corruption if we crashed between overwriting the
714 * data and committing the delete.
716 * @@@ We may want to make this allocation behaviour conditional on
717 * data-writes at some point, and disable it for metadata allocations or
720 static int ext3_test_allocatable(ext3_grpblk_t nr
, struct buffer_head
*bh
)
723 struct journal_head
*jh
= bh2jh(bh
);
725 if (ext3_test_bit(nr
, bh
->b_data
))
728 jbd_lock_bh_state(bh
);
729 if (!jh
->b_committed_data
)
732 ret
= !ext3_test_bit(nr
, jh
->b_committed_data
);
733 jbd_unlock_bh_state(bh
);
738 * bitmap_search_next_usable_block()
739 * @start: the starting block (group relative) of the search
740 * @bh: bufferhead contains the block group bitmap
741 * @maxblocks: the ending block (group relative) of the reservation
743 * The bitmap search --- search forward alternately through the actual
744 * bitmap on disk and the last-committed copy in journal, until we find a
745 * bit free in both bitmaps.
748 bitmap_search_next_usable_block(ext3_grpblk_t start
, struct buffer_head
*bh
,
749 ext3_grpblk_t maxblocks
)
752 struct journal_head
*jh
= bh2jh(bh
);
754 while (start
< maxblocks
) {
755 next
= ext3_find_next_zero_bit(bh
->b_data
, maxblocks
, start
);
756 if (next
>= maxblocks
)
758 if (ext3_test_allocatable(next
, bh
))
760 jbd_lock_bh_state(bh
);
761 if (jh
->b_committed_data
)
762 start
= ext3_find_next_zero_bit(jh
->b_committed_data
,
764 jbd_unlock_bh_state(bh
);
770 * find_next_usable_block()
771 * @start: the starting block (group relative) to find next
772 * allocatable block in bitmap.
773 * @bh: bufferhead contains the block group bitmap
774 * @maxblocks: the ending block (group relative) for the search
776 * Find an allocatable block in a bitmap. We honor both the bitmap and
777 * its last-committed copy (if that exists), and perform the "most
778 * appropriate allocation" algorithm of looking for a free block near
779 * the initial goal; then for a free byte somewhere in the bitmap; then
780 * for any free bit in the bitmap.
783 find_next_usable_block(ext3_grpblk_t start
, struct buffer_head
*bh
,
784 ext3_grpblk_t maxblocks
)
786 ext3_grpblk_t here
, next
;
791 * The goal was occupied; search forward for a free
792 * block within the next XX blocks.
794 * end_goal is more or less random, but it has to be
795 * less than EXT3_BLOCKS_PER_GROUP. Aligning up to the
796 * next 64-bit boundary is simple..
798 ext3_grpblk_t end_goal
= (start
+ 63) & ~63;
799 if (end_goal
> maxblocks
)
800 end_goal
= maxblocks
;
801 here
= ext3_find_next_zero_bit(bh
->b_data
, end_goal
, start
);
802 if (here
< end_goal
&& ext3_test_allocatable(here
, bh
))
804 ext3_debug("Bit not found near goal\n");
811 p
= bh
->b_data
+ (here
>> 3);
812 r
= memscan(p
, 0, ((maxblocks
+ 7) >> 3) - (here
>> 3));
813 next
= (r
- bh
->b_data
) << 3;
815 if (next
< maxblocks
&& next
>= start
&& ext3_test_allocatable(next
, bh
))
819 * The bitmap search --- search forward alternately through the actual
820 * bitmap and the last-committed copy until we find a bit free in
823 here
= bitmap_search_next_usable_block(here
, bh
, maxblocks
);
829 * @lock: the spin lock for this block group
830 * @block: the free block (group relative) to allocate
831 * @bh: the buffer_head contains the block group bitmap
833 * We think we can allocate this block in this bitmap. Try to set the bit.
834 * If that succeeds then check that nobody has allocated and then freed the
835 * block since we saw that is was not marked in b_committed_data. If it _was_
836 * allocated and freed then clear the bit in the bitmap again and return
840 claim_block(spinlock_t
*lock
, ext3_grpblk_t block
, struct buffer_head
*bh
)
842 struct journal_head
*jh
= bh2jh(bh
);
845 if (ext3_set_bit_atomic(lock
, block
, bh
->b_data
))
847 jbd_lock_bh_state(bh
);
848 if (jh
->b_committed_data
&& ext3_test_bit(block
,jh
->b_committed_data
)) {
849 ext3_clear_bit_atomic(lock
, block
, bh
->b_data
);
854 jbd_unlock_bh_state(bh
);
859 * ext3_try_to_allocate()
861 * @handle: handle to this transaction
862 * @group: given allocation block group
863 * @bitmap_bh: bufferhead holds the block bitmap
864 * @grp_goal: given target block within the group
865 * @count: target number of blocks to allocate
866 * @my_rsv: reservation window
868 * Attempt to allocate blocks within a give range. Set the range of allocation
869 * first, then find the first free bit(s) from the bitmap (within the range),
870 * and at last, allocate the blocks by claiming the found free bit as allocated.
872 * To set the range of this allocation:
873 * if there is a reservation window, only try to allocate block(s) from the
874 * file's own reservation window;
875 * Otherwise, the allocation range starts from the give goal block, ends at
876 * the block group's last block.
878 * If we failed to allocate the desired block then we may end up crossing to a
879 * new bitmap. In that case we must release write access to the old one via
880 * ext3_journal_release_buffer(), else we'll run out of credits.
883 ext3_try_to_allocate(struct super_block
*sb
, handle_t
*handle
, int group
,
884 struct buffer_head
*bitmap_bh
, ext3_grpblk_t grp_goal
,
885 unsigned long *count
, struct ext3_reserve_window
*my_rsv
)
887 ext3_fsblk_t group_first_block
;
888 ext3_grpblk_t start
, end
;
889 unsigned long num
= 0;
891 /* we do allocation within the reservation window if we have a window */
893 group_first_block
= ext3_group_first_block_no(sb
, group
);
894 if (my_rsv
->_rsv_start
>= group_first_block
)
895 start
= my_rsv
->_rsv_start
- group_first_block
;
897 /* reservation window cross group boundary */
899 end
= my_rsv
->_rsv_end
- group_first_block
+ 1;
900 if (end
> EXT3_BLOCKS_PER_GROUP(sb
))
901 /* reservation window crosses group boundary */
902 end
= EXT3_BLOCKS_PER_GROUP(sb
);
903 if ((start
<= grp_goal
) && (grp_goal
< end
))
912 end
= EXT3_BLOCKS_PER_GROUP(sb
);
915 BUG_ON(start
> EXT3_BLOCKS_PER_GROUP(sb
));
918 if (grp_goal
< 0 || !ext3_test_allocatable(grp_goal
, bitmap_bh
)) {
919 grp_goal
= find_next_usable_block(start
, bitmap_bh
, end
);
925 for (i
= 0; i
< 7 && grp_goal
> start
&&
926 ext3_test_allocatable(grp_goal
- 1,
934 if (!claim_block(sb_bgl_lock(EXT3_SB(sb
), group
),
935 grp_goal
, bitmap_bh
)) {
937 * The block was allocated by another thread, or it was
938 * allocated and then freed by another thread
948 while (num
< *count
&& grp_goal
< end
949 && ext3_test_allocatable(grp_goal
, bitmap_bh
)
950 && claim_block(sb_bgl_lock(EXT3_SB(sb
), group
),
951 grp_goal
, bitmap_bh
)) {
956 return grp_goal
- num
;
963 * find_next_reservable_window():
964 * find a reservable space within the given range.
965 * It does not allocate the reservation window for now:
966 * alloc_new_reservation() will do the work later.
968 * @search_head: the head of the searching list;
969 * This is not necessarily the list head of the whole filesystem
971 * We have both head and start_block to assist the search
972 * for the reservable space. The list starts from head,
973 * but we will shift to the place where start_block is,
974 * then start from there, when looking for a reservable space.
976 * @my_rsv: the reservation window
978 * @sb: the super block
980 * @start_block: the first block we consider to start
981 * the real search from
984 * the maximum block number that our goal reservable space
985 * could start from. This is normally the last block in this
986 * group. The search will end when we found the start of next
987 * possible reservable space is out of this boundary.
988 * This could handle the cross boundary reservation window
991 * basically we search from the given range, rather than the whole
992 * reservation double linked list, (start_block, last_block)
993 * to find a free region that is of my size and has not
997 static int find_next_reservable_window(
998 struct ext3_reserve_window_node
*search_head
,
999 struct ext3_reserve_window_node
*my_rsv
,
1000 struct super_block
* sb
,
1001 ext3_fsblk_t start_block
,
1002 ext3_fsblk_t last_block
)
1004 struct rb_node
*next
;
1005 struct ext3_reserve_window_node
*rsv
, *prev
;
1007 int size
= my_rsv
->rsv_goal_size
;
1009 /* TODO: make the start of the reservation window byte-aligned */
1010 /* cur = *start_block & ~7;*/
1017 if (cur
<= rsv
->rsv_end
)
1018 cur
= rsv
->rsv_end
+ 1;
1021 * in the case we could not find a reservable space
1022 * that is what is expected, during the re-search, we could
1023 * remember what's the largest reservable space we could have
1024 * and return that one.
1026 * For now it will fail if we could not find the reservable
1027 * space with expected-size (or more)...
1029 if (cur
> last_block
)
1030 return -1; /* fail */
1033 next
= rb_next(&rsv
->rsv_node
);
1034 rsv
= rb_entry(next
,struct ext3_reserve_window_node
,rsv_node
);
1037 * Reached the last reservation, we can just append to the
1043 if (cur
+ size
<= rsv
->rsv_start
) {
1045 * Found a reserveable space big enough. We could
1046 * have a reservation across the group boundary here
1052 * we come here either :
1053 * when we reach the end of the whole list,
1054 * and there is empty reservable space after last entry in the list.
1055 * append it to the end of the list.
1057 * or we found one reservable space in the middle of the list,
1058 * return the reservation window that we could append to.
1062 if ((prev
!= my_rsv
) && (!rsv_is_empty(&my_rsv
->rsv_window
)))
1063 rsv_window_remove(sb
, my_rsv
);
1066 * Let's book the whole available window for now. We will check the
1067 * disk bitmap later and then, if there are free blocks then we adjust
1068 * the window size if it's larger than requested.
1069 * Otherwise, we will remove this node from the tree next time
1070 * call find_next_reservable_window.
1072 my_rsv
->rsv_start
= cur
;
1073 my_rsv
->rsv_end
= cur
+ size
- 1;
1074 my_rsv
->rsv_alloc_hit
= 0;
1077 ext3_rsv_window_add(sb
, my_rsv
);
1083 * alloc_new_reservation()--allocate a new reservation window
1085 * To make a new reservation, we search part of the filesystem
1086 * reservation list (the list that inside the group). We try to
1087 * allocate a new reservation window near the allocation goal,
1088 * or the beginning of the group, if there is no goal.
1090 * We first find a reservable space after the goal, then from
1091 * there, we check the bitmap for the first free block after
1092 * it. If there is no free block until the end of group, then the
1093 * whole group is full, we failed. Otherwise, check if the free
1094 * block is inside the expected reservable space, if so, we
1096 * If the first free block is outside the reservable space, then
1097 * start from the first free block, we search for next available
1100 * on succeed, a new reservation will be found and inserted into the list
1101 * It contains at least one free block, and it does not overlap with other
1102 * reservation windows.
1104 * failed: we failed to find a reservation window in this group
1106 * @my_rsv: the reservation window
1108 * @grp_goal: The goal (group-relative). It is where the search for a
1109 * free reservable space should start from.
1110 * if we have a grp_goal(grp_goal >0 ), then start from there,
1111 * no grp_goal(grp_goal = -1), we start from the first block
1114 * @sb: the super block
1115 * @group: the group we are trying to allocate in
1116 * @bitmap_bh: the block group block bitmap
1119 static int alloc_new_reservation(struct ext3_reserve_window_node
*my_rsv
,
1120 ext3_grpblk_t grp_goal
, struct super_block
*sb
,
1121 unsigned int group
, struct buffer_head
*bitmap_bh
)
1123 struct ext3_reserve_window_node
*search_head
;
1124 ext3_fsblk_t group_first_block
, group_end_block
, start_block
;
1125 ext3_grpblk_t first_free_block
;
1126 struct rb_root
*fs_rsv_root
= &EXT3_SB(sb
)->s_rsv_window_root
;
1129 spinlock_t
*rsv_lock
= &EXT3_SB(sb
)->s_rsv_window_lock
;
1131 group_first_block
= ext3_group_first_block_no(sb
, group
);
1132 group_end_block
= group_first_block
+ (EXT3_BLOCKS_PER_GROUP(sb
) - 1);
1135 start_block
= group_first_block
;
1137 start_block
= grp_goal
+ group_first_block
;
1139 size
= my_rsv
->rsv_goal_size
;
1141 if (!rsv_is_empty(&my_rsv
->rsv_window
)) {
1143 * if the old reservation is cross group boundary
1144 * and if the goal is inside the old reservation window,
1145 * we will come here when we just failed to allocate from
1146 * the first part of the window. We still have another part
1147 * that belongs to the next group. In this case, there is no
1148 * point to discard our window and try to allocate a new one
1149 * in this group(which will fail). we should
1150 * keep the reservation window, just simply move on.
1152 * Maybe we could shift the start block of the reservation
1153 * window to the first block of next group.
1156 if ((my_rsv
->rsv_start
<= group_end_block
) &&
1157 (my_rsv
->rsv_end
> group_end_block
) &&
1158 (start_block
>= my_rsv
->rsv_start
))
1161 if ((my_rsv
->rsv_alloc_hit
>
1162 (my_rsv
->rsv_end
- my_rsv
->rsv_start
+ 1) / 2)) {
1164 * if the previously allocation hit ratio is
1165 * greater than 1/2, then we double the size of
1166 * the reservation window the next time,
1167 * otherwise we keep the same size window
1170 if (size
> EXT3_MAX_RESERVE_BLOCKS
)
1171 size
= EXT3_MAX_RESERVE_BLOCKS
;
1172 my_rsv
->rsv_goal_size
= size
;
1176 spin_lock(rsv_lock
);
1178 * shift the search start to the window near the goal block
1180 search_head
= search_reserve_window(fs_rsv_root
, start_block
);
1183 * find_next_reservable_window() simply finds a reservable window
1184 * inside the given range(start_block, group_end_block).
1186 * To make sure the reservation window has a free bit inside it, we
1187 * need to check the bitmap after we found a reservable window.
1190 ret
= find_next_reservable_window(search_head
, my_rsv
, sb
,
1191 start_block
, group_end_block
);
1194 if (!rsv_is_empty(&my_rsv
->rsv_window
))
1195 rsv_window_remove(sb
, my_rsv
);
1196 spin_unlock(rsv_lock
);
1201 * On success, find_next_reservable_window() returns the
1202 * reservation window where there is a reservable space after it.
1203 * Before we reserve this reservable space, we need
1204 * to make sure there is at least a free block inside this region.
1206 * searching the first free bit on the block bitmap and copy of
1207 * last committed bitmap alternatively, until we found a allocatable
1208 * block. Search start from the start block of the reservable space
1211 spin_unlock(rsv_lock
);
1212 first_free_block
= bitmap_search_next_usable_block(
1213 my_rsv
->rsv_start
- group_first_block
,
1214 bitmap_bh
, group_end_block
- group_first_block
+ 1);
1216 if (first_free_block
< 0) {
1218 * no free block left on the bitmap, no point
1219 * to reserve the space. return failed.
1221 spin_lock(rsv_lock
);
1222 if (!rsv_is_empty(&my_rsv
->rsv_window
))
1223 rsv_window_remove(sb
, my_rsv
);
1224 spin_unlock(rsv_lock
);
1225 return -1; /* failed */
1228 start_block
= first_free_block
+ group_first_block
;
1230 * check if the first free block is within the
1231 * free space we just reserved
1233 if (start_block
>= my_rsv
->rsv_start
&& start_block
<= my_rsv
->rsv_end
)
1234 return 0; /* success */
1236 * if the first free bit we found is out of the reservable space
1237 * continue search for next reservable space,
1238 * start from where the free block is,
1239 * we also shift the list head to where we stopped last time
1241 search_head
= my_rsv
;
1242 spin_lock(rsv_lock
);
1247 * try_to_extend_reservation()
1248 * @my_rsv: given reservation window
1250 * @size: the delta to extend
1252 * Attempt to expand the reservation window large enough to have
1253 * required number of free blocks
1255 * Since ext3_try_to_allocate() will always allocate blocks within
1256 * the reservation window range, if the window size is too small,
1257 * multiple blocks allocation has to stop at the end of the reservation
1258 * window. To make this more efficient, given the total number of
1259 * blocks needed and the current size of the window, we try to
1260 * expand the reservation window size if necessary on a best-effort
1261 * basis before ext3_new_blocks() tries to allocate blocks,
1263 static void try_to_extend_reservation(struct ext3_reserve_window_node
*my_rsv
,
1264 struct super_block
*sb
, int size
)
1266 struct ext3_reserve_window_node
*next_rsv
;
1267 struct rb_node
*next
;
1268 spinlock_t
*rsv_lock
= &EXT3_SB(sb
)->s_rsv_window_lock
;
1270 if (!spin_trylock(rsv_lock
))
1273 next
= rb_next(&my_rsv
->rsv_node
);
1276 my_rsv
->rsv_end
+= size
;
1278 next_rsv
= rb_entry(next
, struct ext3_reserve_window_node
, rsv_node
);
1280 if ((next_rsv
->rsv_start
- my_rsv
->rsv_end
- 1) >= size
)
1281 my_rsv
->rsv_end
+= size
;
1283 my_rsv
->rsv_end
= next_rsv
->rsv_start
- 1;
1285 spin_unlock(rsv_lock
);
1289 * ext3_try_to_allocate_with_rsv()
1291 * @handle: handle to this transaction
1292 * @group: given allocation block group
1293 * @bitmap_bh: bufferhead holds the block bitmap
1294 * @grp_goal: given target block within the group
1295 * @my_rsv: reservation window
1296 * @count: target number of blocks to allocate
1297 * @errp: pointer to store the error code
1299 * This is the main function used to allocate a new block and its reservation
1302 * Each time when a new block allocation is need, first try to allocate from
1303 * its own reservation. If it does not have a reservation window, instead of
1304 * looking for a free bit on bitmap first, then look up the reservation list to
1305 * see if it is inside somebody else's reservation window, we try to allocate a
1306 * reservation window for it starting from the goal first. Then do the block
1307 * allocation within the reservation window.
1309 * This will avoid keeping on searching the reservation list again and
1310 * again when somebody is looking for a free block (without
1311 * reservation), and there are lots of free blocks, but they are all
1314 * We use a red-black tree for the per-filesystem reservation list.
1317 static ext3_grpblk_t
1318 ext3_try_to_allocate_with_rsv(struct super_block
*sb
, handle_t
*handle
,
1319 unsigned int group
, struct buffer_head
*bitmap_bh
,
1320 ext3_grpblk_t grp_goal
,
1321 struct ext3_reserve_window_node
* my_rsv
,
1322 unsigned long *count
, int *errp
)
1324 ext3_fsblk_t group_first_block
, group_last_block
;
1325 ext3_grpblk_t ret
= 0;
1327 unsigned long num
= *count
;
1332 * Make sure we use undo access for the bitmap, because it is critical
1333 * that we do the frozen_data COW on bitmap buffers in all cases even
1334 * if the buffer is in BJ_Forget state in the committing transaction.
1336 BUFFER_TRACE(bitmap_bh
, "get undo access for new block");
1337 fatal
= ext3_journal_get_undo_access(handle
, bitmap_bh
);
1344 * we don't deal with reservation when
1345 * filesystem is mounted without reservation
1346 * or the file is not a regular file
1347 * or last attempt to allocate a block with reservation turned on failed
1349 if (my_rsv
== NULL
) {
1350 ret
= ext3_try_to_allocate(sb
, handle
, group
, bitmap_bh
,
1351 grp_goal
, count
, NULL
);
1355 * grp_goal is a group relative block number (if there is a goal)
1356 * 0 <= grp_goal < EXT3_BLOCKS_PER_GROUP(sb)
1357 * first block is a filesystem wide block number
1358 * first block is the block number of the first block in this group
1360 group_first_block
= ext3_group_first_block_no(sb
, group
);
1361 group_last_block
= group_first_block
+ (EXT3_BLOCKS_PER_GROUP(sb
) - 1);
1364 * Basically we will allocate a new block from inode's reservation
1367 * We need to allocate a new reservation window, if:
1368 * a) inode does not have a reservation window; or
1369 * b) last attempt to allocate a block from existing reservation
1371 * c) we come here with a goal and with a reservation window
1373 * We do not need to allocate a new reservation window if we come here
1374 * at the beginning with a goal and the goal is inside the window, or
1375 * we don't have a goal but already have a reservation window.
1376 * then we could go to allocate from the reservation window directly.
1379 if (rsv_is_empty(&my_rsv
->rsv_window
) || (ret
< 0) ||
1380 !goal_in_my_reservation(&my_rsv
->rsv_window
,
1381 grp_goal
, group
, sb
)) {
1382 if (my_rsv
->rsv_goal_size
< *count
)
1383 my_rsv
->rsv_goal_size
= *count
;
1384 ret
= alloc_new_reservation(my_rsv
, grp_goal
, sb
,
1389 if (!goal_in_my_reservation(&my_rsv
->rsv_window
,
1390 grp_goal
, group
, sb
))
1392 } else if (grp_goal
>= 0) {
1393 int curr
= my_rsv
->rsv_end
-
1394 (grp_goal
+ group_first_block
) + 1;
1397 try_to_extend_reservation(my_rsv
, sb
,
1401 if ((my_rsv
->rsv_start
> group_last_block
) ||
1402 (my_rsv
->rsv_end
< group_first_block
)) {
1403 rsv_window_dump(&EXT3_SB(sb
)->s_rsv_window_root
, 1);
1406 ret
= ext3_try_to_allocate(sb
, handle
, group
, bitmap_bh
,
1407 grp_goal
, &num
, &my_rsv
->rsv_window
);
1409 my_rsv
->rsv_alloc_hit
+= num
;
1411 break; /* succeed */
1417 BUFFER_TRACE(bitmap_bh
, "journal_dirty_metadata for "
1419 fatal
= ext3_journal_dirty_metadata(handle
, bitmap_bh
);
1427 BUFFER_TRACE(bitmap_bh
, "journal_release_buffer");
1428 ext3_journal_release_buffer(handle
, bitmap_bh
);
1433 * ext3_has_free_blocks()
1434 * @sbi: in-core super block structure.
1436 * Check if filesystem has at least 1 free block available for allocation.
1438 static int ext3_has_free_blocks(struct ext3_sb_info
*sbi
)
1440 ext3_fsblk_t free_blocks
, root_blocks
;
1442 free_blocks
= percpu_counter_read_positive(&sbi
->s_freeblocks_counter
);
1443 root_blocks
= le32_to_cpu(sbi
->s_es
->s_r_blocks_count
);
1444 if (free_blocks
< root_blocks
+ 1 && !capable(CAP_SYS_RESOURCE
) &&
1445 sbi
->s_resuid
!= current_fsuid() &&
1446 (sbi
->s_resgid
== 0 || !in_group_p (sbi
->s_resgid
))) {
1453 * ext3_should_retry_alloc()
1455 * @retries number of attemps has been made
1457 * ext3_should_retry_alloc() is called when ENOSPC is returned, and if
1458 * it is profitable to retry the operation, this function will wait
1459 * for the current or committing transaction to complete, and then
1462 * if the total number of retries exceed three times, return FALSE.
1464 int ext3_should_retry_alloc(struct super_block
*sb
, int *retries
)
1466 if (!ext3_has_free_blocks(EXT3_SB(sb
)) || (*retries
)++ > 3)
1469 jbd_debug(1, "%s: retrying operation after ENOSPC\n", sb
->s_id
);
1471 return journal_force_commit_nested(EXT3_SB(sb
)->s_journal
);
1475 * ext3_new_blocks() -- core block(s) allocation function
1476 * @handle: handle to this transaction
1477 * @inode: file inode
1478 * @goal: given target block(filesystem wide)
1479 * @count: target number of blocks to allocate
1482 * ext3_new_blocks uses a goal block to assist allocation. It tries to
1483 * allocate block(s) from the block group contains the goal block first. If that
1484 * fails, it will try to allocate block(s) from other block groups without
1485 * any specific goal block.
1488 ext3_fsblk_t
ext3_new_blocks(handle_t
*handle
, struct inode
*inode
,
1489 ext3_fsblk_t goal
, unsigned long *count
, int *errp
)
1491 struct buffer_head
*bitmap_bh
= NULL
;
1492 struct buffer_head
*gdp_bh
;
1495 ext3_grpblk_t grp_target_blk
; /* blockgroup relative goal block */
1496 ext3_grpblk_t grp_alloc_blk
; /* blockgroup-relative allocated block*/
1497 ext3_fsblk_t ret_block
; /* filesyetem-wide allocated block */
1498 int bgi
; /* blockgroup iteration index */
1500 int performed_allocation
= 0;
1501 ext3_grpblk_t free_blocks
; /* number of free blocks in a group */
1502 struct super_block
*sb
;
1503 struct ext3_group_desc
*gdp
;
1504 struct ext3_super_block
*es
;
1505 struct ext3_sb_info
*sbi
;
1506 struct ext3_reserve_window_node
*my_rsv
= NULL
;
1507 struct ext3_block_alloc_info
*block_i
;
1508 unsigned short windowsz
= 0;
1510 static int goal_hits
, goal_attempts
;
1512 unsigned long ngroups
;
1513 unsigned long num
= *count
;
1518 printk("ext3_new_block: nonexistent device");
1523 * Check quota for allocation of this block.
1525 err
= dquot_alloc_block(inode
, num
);
1532 es
= EXT3_SB(sb
)->s_es
;
1533 ext3_debug("goal=%lu.\n", goal
);
1535 * Allocate a block from reservation only when
1536 * filesystem is mounted with reservation(default,-o reservation), and
1537 * it's a regular file, and
1538 * the desired window size is greater than 0 (One could use ioctl
1539 * command EXT3_IOC_SETRSVSZ to set the window size to 0 to turn off
1540 * reservation on that particular file)
1542 block_i
= EXT3_I(inode
)->i_block_alloc_info
;
1543 if (block_i
&& ((windowsz
= block_i
->rsv_window_node
.rsv_goal_size
) > 0))
1544 my_rsv
= &block_i
->rsv_window_node
;
1546 if (!ext3_has_free_blocks(sbi
)) {
1552 * First, test whether the goal block is free.
1554 if (goal
< le32_to_cpu(es
->s_first_data_block
) ||
1555 goal
>= le32_to_cpu(es
->s_blocks_count
))
1556 goal
= le32_to_cpu(es
->s_first_data_block
);
1557 group_no
= (goal
- le32_to_cpu(es
->s_first_data_block
)) /
1558 EXT3_BLOCKS_PER_GROUP(sb
);
1559 goal_group
= group_no
;
1561 gdp
= ext3_get_group_desc(sb
, group_no
, &gdp_bh
);
1565 free_blocks
= le16_to_cpu(gdp
->bg_free_blocks_count
);
1567 * if there is not enough free blocks to make a new resevation
1568 * turn off reservation for this allocation
1570 if (my_rsv
&& (free_blocks
< windowsz
)
1571 && (free_blocks
> 0)
1572 && (rsv_is_empty(&my_rsv
->rsv_window
)))
1575 if (free_blocks
> 0) {
1576 grp_target_blk
= ((goal
- le32_to_cpu(es
->s_first_data_block
)) %
1577 EXT3_BLOCKS_PER_GROUP(sb
));
1578 bitmap_bh
= read_block_bitmap(sb
, group_no
);
1581 grp_alloc_blk
= ext3_try_to_allocate_with_rsv(sb
, handle
,
1582 group_no
, bitmap_bh
, grp_target_blk
,
1583 my_rsv
, &num
, &fatal
);
1586 if (grp_alloc_blk
>= 0)
1590 ngroups
= EXT3_SB(sb
)->s_groups_count
;
1594 * Now search the rest of the groups. We assume that
1595 * group_no and gdp correctly point to the last group visited.
1597 for (bgi
= 0; bgi
< ngroups
; bgi
++) {
1599 if (group_no
>= ngroups
)
1601 gdp
= ext3_get_group_desc(sb
, group_no
, &gdp_bh
);
1604 free_blocks
= le16_to_cpu(gdp
->bg_free_blocks_count
);
1606 * skip this group (and avoid loading bitmap) if there
1607 * are no free blocks
1612 * skip this group if the number of
1613 * free blocks is less than half of the reservation
1616 if (my_rsv
&& (free_blocks
<= (windowsz
/2)))
1620 bitmap_bh
= read_block_bitmap(sb
, group_no
);
1624 * try to allocate block(s) from this group, without a goal(-1).
1626 grp_alloc_blk
= ext3_try_to_allocate_with_rsv(sb
, handle
,
1627 group_no
, bitmap_bh
, -1, my_rsv
,
1631 if (grp_alloc_blk
>= 0)
1635 * We may end up a bogus earlier ENOSPC error due to
1636 * filesystem is "full" of reservations, but
1637 * there maybe indeed free blocks available on disk
1638 * In this case, we just forget about the reservations
1639 * just do block allocation as without reservations.
1644 group_no
= goal_group
;
1647 /* No space left on the device */
1653 ext3_debug("using block group %d(%d)\n",
1654 group_no
, gdp
->bg_free_blocks_count
);
1656 BUFFER_TRACE(gdp_bh
, "get_write_access");
1657 fatal
= ext3_journal_get_write_access(handle
, gdp_bh
);
1661 ret_block
= grp_alloc_blk
+ ext3_group_first_block_no(sb
, group_no
);
1663 if (in_range(le32_to_cpu(gdp
->bg_block_bitmap
), ret_block
, num
) ||
1664 in_range(le32_to_cpu(gdp
->bg_inode_bitmap
), ret_block
, num
) ||
1665 in_range(ret_block
, le32_to_cpu(gdp
->bg_inode_table
),
1666 EXT3_SB(sb
)->s_itb_per_group
) ||
1667 in_range(ret_block
+ num
- 1, le32_to_cpu(gdp
->bg_inode_table
),
1668 EXT3_SB(sb
)->s_itb_per_group
)) {
1669 ext3_error(sb
, "ext3_new_block",
1670 "Allocating block in system zone - "
1671 "blocks from "E3FSBLK
", length %lu",
1674 * claim_block() marked the blocks we allocated as in use. So we
1675 * may want to selectively mark some of the blocks as free.
1680 performed_allocation
= 1;
1682 #ifdef CONFIG_JBD_DEBUG
1684 struct buffer_head
*debug_bh
;
1686 /* Record bitmap buffer state in the newly allocated block */
1687 debug_bh
= sb_find_get_block(sb
, ret_block
);
1689 BUFFER_TRACE(debug_bh
, "state when allocated");
1690 BUFFER_TRACE2(debug_bh
, bitmap_bh
, "bitmap state");
1694 jbd_lock_bh_state(bitmap_bh
);
1695 spin_lock(sb_bgl_lock(sbi
, group_no
));
1696 if (buffer_jbd(bitmap_bh
) && bh2jh(bitmap_bh
)->b_committed_data
) {
1699 for (i
= 0; i
< num
; i
++) {
1700 if (ext3_test_bit(grp_alloc_blk
+i
,
1701 bh2jh(bitmap_bh
)->b_committed_data
)) {
1702 printk("%s: block was unexpectedly set in "
1703 "b_committed_data\n", __func__
);
1707 ext3_debug("found bit %d\n", grp_alloc_blk
);
1708 spin_unlock(sb_bgl_lock(sbi
, group_no
));
1709 jbd_unlock_bh_state(bitmap_bh
);
1712 if (ret_block
+ num
- 1 >= le32_to_cpu(es
->s_blocks_count
)) {
1713 ext3_error(sb
, "ext3_new_block",
1714 "block("E3FSBLK
") >= blocks count(%d) - "
1715 "block_group = %d, es == %p ", ret_block
,
1716 le32_to_cpu(es
->s_blocks_count
), group_no
, es
);
1721 * It is up to the caller to add the new buffer to a journal
1722 * list of some description. We don't know in advance whether
1723 * the caller wants to use it as metadata or data.
1725 ext3_debug("allocating block %lu. Goal hits %d of %d.\n",
1726 ret_block
, goal_hits
, goal_attempts
);
1728 spin_lock(sb_bgl_lock(sbi
, group_no
));
1729 le16_add_cpu(&gdp
->bg_free_blocks_count
, -num
);
1730 spin_unlock(sb_bgl_lock(sbi
, group_no
));
1731 percpu_counter_sub(&sbi
->s_freeblocks_counter
, num
);
1733 BUFFER_TRACE(gdp_bh
, "journal_dirty_metadata for group descriptor");
1734 err
= ext3_journal_dirty_metadata(handle
, gdp_bh
);
1743 dquot_free_block(inode
, *count
-num
);
1752 ext3_std_error(sb
, fatal
);
1755 * Undo the block allocation
1757 if (!performed_allocation
)
1758 dquot_free_block(inode
, *count
);
1763 ext3_fsblk_t
ext3_new_block(handle_t
*handle
, struct inode
*inode
,
1764 ext3_fsblk_t goal
, int *errp
)
1766 unsigned long count
= 1;
1768 return ext3_new_blocks(handle
, inode
, goal
, &count
, errp
);
1772 * ext3_count_free_blocks() -- count filesystem free blocks
1775 * Adds up the number of free blocks from each block group.
1777 ext3_fsblk_t
ext3_count_free_blocks(struct super_block
*sb
)
1779 ext3_fsblk_t desc_count
;
1780 struct ext3_group_desc
*gdp
;
1782 unsigned long ngroups
= EXT3_SB(sb
)->s_groups_count
;
1784 struct ext3_super_block
*es
;
1785 ext3_fsblk_t bitmap_count
;
1787 struct buffer_head
*bitmap_bh
= NULL
;
1789 es
= EXT3_SB(sb
)->s_es
;
1795 for (i
= 0; i
< ngroups
; i
++) {
1796 gdp
= ext3_get_group_desc(sb
, i
, NULL
);
1799 desc_count
+= le16_to_cpu(gdp
->bg_free_blocks_count
);
1801 bitmap_bh
= read_block_bitmap(sb
, i
);
1802 if (bitmap_bh
== NULL
)
1805 x
= ext3_count_free(bitmap_bh
, sb
->s_blocksize
);
1806 printk("group %d: stored = %d, counted = %lu\n",
1807 i
, le16_to_cpu(gdp
->bg_free_blocks_count
), x
);
1811 printk("ext3_count_free_blocks: stored = "E3FSBLK
1812 ", computed = "E3FSBLK
", "E3FSBLK
"\n",
1813 le32_to_cpu(es
->s_free_blocks_count
),
1814 desc_count
, bitmap_count
);
1815 return bitmap_count
;
1819 for (i
= 0; i
< ngroups
; i
++) {
1820 gdp
= ext3_get_group_desc(sb
, i
, NULL
);
1823 desc_count
+= le16_to_cpu(gdp
->bg_free_blocks_count
);
1830 static inline int test_root(int a
, int b
)
1839 static int ext3_group_sparse(int group
)
1845 return (test_root(group
, 7) || test_root(group
, 5) ||
1846 test_root(group
, 3));
1850 * ext3_bg_has_super - number of blocks used by the superblock in group
1851 * @sb: superblock for filesystem
1852 * @group: group number to check
1854 * Return the number of blocks used by the superblock (primary or backup)
1855 * in this group. Currently this will be only 0 or 1.
1857 int ext3_bg_has_super(struct super_block
*sb
, int group
)
1859 if (EXT3_HAS_RO_COMPAT_FEATURE(sb
,
1860 EXT3_FEATURE_RO_COMPAT_SPARSE_SUPER
) &&
1861 !ext3_group_sparse(group
))
1866 static unsigned long ext3_bg_num_gdb_meta(struct super_block
*sb
, int group
)
1868 unsigned long metagroup
= group
/ EXT3_DESC_PER_BLOCK(sb
);
1869 unsigned long first
= metagroup
* EXT3_DESC_PER_BLOCK(sb
);
1870 unsigned long last
= first
+ EXT3_DESC_PER_BLOCK(sb
) - 1;
1872 if (group
== first
|| group
== first
+ 1 || group
== last
)
1877 static unsigned long ext3_bg_num_gdb_nometa(struct super_block
*sb
, int group
)
1879 return ext3_bg_has_super(sb
, group
) ? EXT3_SB(sb
)->s_gdb_count
: 0;
1883 * ext3_bg_num_gdb - number of blocks used by the group table in group
1884 * @sb: superblock for filesystem
1885 * @group: group number to check
1887 * Return the number of blocks used by the group descriptor table
1888 * (primary or backup) in this group. In the future there may be a
1889 * different number of descriptor blocks in each group.
1891 unsigned long ext3_bg_num_gdb(struct super_block
*sb
, int group
)
1893 unsigned long first_meta_bg
=
1894 le32_to_cpu(EXT3_SB(sb
)->s_es
->s_first_meta_bg
);
1895 unsigned long metagroup
= group
/ EXT3_DESC_PER_BLOCK(sb
);
1897 if (!EXT3_HAS_INCOMPAT_FEATURE(sb
,EXT3_FEATURE_INCOMPAT_META_BG
) ||
1898 metagroup
< first_meta_bg
)
1899 return ext3_bg_num_gdb_nometa(sb
,group
);
1901 return ext3_bg_num_gdb_meta(sb
,group
);
1906 * ext3_trim_all_free -- function to trim all free space in alloc. group
1907 * @sb: super block for file system
1908 * @group: allocation group to trim
1909 * @start: first group block to examine
1910 * @max: last group block to examine
1911 * @gdp: allocation group description structure
1912 * @minblocks: minimum extent block count
1914 * ext3_trim_all_free walks through group's block bitmap searching for free
1915 * blocks. When the free block is found, it tries to allocate this block and
1916 * consequent free block to get the biggest free extent possible, until it
1917 * reaches any used block. Then issue a TRIM command on this extent and free
1918 * the extent in the block bitmap. This is done until whole group is scanned.
1920 ext3_grpblk_t
ext3_trim_all_free(struct super_block
*sb
, unsigned int group
,
1921 ext3_grpblk_t start
, ext3_grpblk_t max
,
1922 ext3_grpblk_t minblocks
)
1925 ext3_grpblk_t next
, free_blocks
, bit
, freed
, count
= 0;
1926 ext3_fsblk_t discard_block
;
1927 struct ext3_sb_info
*sbi
;
1928 struct buffer_head
*gdp_bh
, *bitmap_bh
= NULL
;
1929 struct ext3_group_desc
*gdp
;
1930 int err
= 0, ret
= 0;
1933 * We will update one block bitmap, and one group descriptor
1935 handle
= ext3_journal_start_sb(sb
, 2);
1937 return PTR_ERR(handle
);
1939 bitmap_bh
= read_block_bitmap(sb
, group
);
1945 BUFFER_TRACE(bitmap_bh
, "getting undo access");
1946 err
= ext3_journal_get_undo_access(handle
, bitmap_bh
);
1950 gdp
= ext3_get_group_desc(sb
, group
, &gdp_bh
);
1956 BUFFER_TRACE(gdp_bh
, "get_write_access");
1957 err
= ext3_journal_get_write_access(handle
, gdp_bh
);
1961 free_blocks
= le16_to_cpu(gdp
->bg_free_blocks_count
);
1964 /* Walk through the whole group */
1965 while (start
< max
) {
1966 start
= bitmap_search_next_usable_block(start
, bitmap_bh
, max
);
1972 * Allocate contiguous free extents by setting bits in the
1976 && claim_block(sb_bgl_lock(sbi
, group
),
1981 /* We did not claim any blocks */
1985 discard_block
= (ext3_fsblk_t
)start
+
1986 ext3_group_first_block_no(sb
, group
);
1988 /* Update counters */
1989 spin_lock(sb_bgl_lock(sbi
, group
));
1990 le16_add_cpu(&gdp
->bg_free_blocks_count
, start
- next
);
1991 spin_unlock(sb_bgl_lock(sbi
, group
));
1992 percpu_counter_sub(&sbi
->s_freeblocks_counter
, next
- start
);
1994 free_blocks
-= next
- start
;
1995 /* Do not issue a TRIM on extents smaller than minblocks */
1996 if ((next
- start
) < minblocks
)
1999 /* Send the TRIM command down to the device */
2000 err
= sb_issue_discard(sb
, discard_block
, next
- start
,
2002 count
+= (next
- start
);
2007 * Clear bits in the bitmap
2009 for (bit
= start
; bit
< next
; bit
++) {
2010 BUFFER_TRACE(bitmap_bh
, "clear bit");
2011 if (!ext3_clear_bit_atomic(sb_bgl_lock(sbi
, group
),
2012 bit
, bitmap_bh
->b_data
)) {
2013 ext3_error(sb
, __func__
,
2014 "bit already cleared for block "E3FSBLK
,
2015 (unsigned long)bit
);
2016 BUFFER_TRACE(bitmap_bh
, "bit already cleared");
2022 /* Update couters */
2023 spin_lock(sb_bgl_lock(sbi
, group
));
2024 le16_add_cpu(&gdp
->bg_free_blocks_count
, freed
);
2025 spin_unlock(sb_bgl_lock(sbi
, group
));
2026 percpu_counter_add(&sbi
->s_freeblocks_counter
, freed
);
2030 if (err
!= -EOPNOTSUPP
)
2031 ext3_warning(sb
, __func__
, "Discard command "
2032 "returned error %d\n", err
);
2036 if (fatal_signal_pending(current
)) {
2043 /* No more suitable extents */
2044 if (free_blocks
< minblocks
)
2048 /* We dirtied the bitmap block */
2049 BUFFER_TRACE(bitmap_bh
, "dirtied bitmap block");
2050 ret
= ext3_journal_dirty_metadata(handle
, bitmap_bh
);
2054 /* And the group descriptor block */
2055 BUFFER_TRACE(gdp_bh
, "dirtied group descriptor block");
2056 ret
= ext3_journal_dirty_metadata(handle
, gdp_bh
);
2060 ext3_debug("trimmed %d blocks in the group %d\n",
2066 ext3_journal_stop(handle
);
2073 * ext3_trim_fs() -- trim ioctl handle function
2074 * @sb: superblock for filesystem
2075 * @start: First Byte to trim
2076 * @len: number of Bytes to trim from start
2077 * @minlen: minimum extent length in Bytes
2079 * ext3_trim_fs goes through all allocation groups containing Bytes from
2080 * start to start+len. For each such a group ext3_trim_all_free function
2081 * is invoked to trim all free space.
2083 int ext3_trim_fs(struct super_block
*sb
, struct fstrim_range
*range
)
2085 ext3_grpblk_t last_block
, first_block
, free_blocks
;
2086 unsigned long first_group
, last_group
;
2087 unsigned long group
, ngroups
;
2088 struct ext3_group_desc
*gdp
;
2089 struct ext3_super_block
*es
= EXT3_SB(sb
)->s_es
;
2090 uint64_t start
, len
, minlen
, trimmed
;
2091 ext3_fsblk_t max_blks
= le32_to_cpu(es
->s_blocks_count
);
2094 start
= (range
->start
>> sb
->s_blocksize_bits
) +
2095 le32_to_cpu(es
->s_first_data_block
);
2096 len
= range
->len
>> sb
->s_blocksize_bits
;
2097 minlen
= range
->minlen
>> sb
->s_blocksize_bits
;
2100 if (unlikely(minlen
> EXT3_BLOCKS_PER_GROUP(sb
)))
2102 if (start
>= max_blks
)
2104 if (start
+ len
> max_blks
)
2105 len
= max_blks
- start
;
2107 ngroups
= EXT3_SB(sb
)->s_groups_count
;
2110 /* Determine first and last group to examine based on start and len */
2111 ext3_get_group_no_and_offset(sb
, (ext3_fsblk_t
) start
,
2112 &first_group
, &first_block
);
2113 ext3_get_group_no_and_offset(sb
, (ext3_fsblk_t
) (start
+ len
),
2114 &last_group
, &last_block
);
2115 last_group
= (last_group
> ngroups
- 1) ? ngroups
- 1 : last_group
;
2116 last_block
= EXT3_BLOCKS_PER_GROUP(sb
);
2118 if (first_group
> last_group
)
2121 for (group
= first_group
; group
<= last_group
; group
++) {
2122 gdp
= ext3_get_group_desc(sb
, group
, NULL
);
2126 free_blocks
= le16_to_cpu(gdp
->bg_free_blocks_count
);
2127 if (free_blocks
< minlen
)
2131 * For all the groups except the last one, last block will
2132 * always be EXT3_BLOCKS_PER_GROUP(sb), so we only need to
2133 * change it for the last group in which case first_block +
2134 * len < EXT3_BLOCKS_PER_GROUP(sb).
2136 if (first_block
+ len
< EXT3_BLOCKS_PER_GROUP(sb
))
2137 last_block
= first_block
+ len
;
2138 len
-= last_block
- first_block
;
2140 ret
= ext3_trim_all_free(sb
, group
, first_block
,
2141 last_block
, minlen
);
2153 range
->len
= trimmed
* sb
->s_blocksize
;