2 * linux/fs/ext4/resize.c
4 * Support for resizing an ext4 filesystem while it is mounted.
6 * Copyright (C) 2001, 2002 Andreas Dilger <adilger@clusterfs.com>
8 * This could probably be made into a module, because it is not often in use.
14 #include <linux/errno.h>
15 #include <linux/slab.h>
17 #include "ext4_jbd2.h"
19 int ext4_resize_begin(struct super_block
*sb
)
23 if (!capable(CAP_SYS_RESOURCE
))
27 * We are not allowed to do online-resizing on a filesystem mounted
28 * with error, because it can destroy the filesystem easily.
30 if (EXT4_SB(sb
)->s_mount_state
& EXT4_ERROR_FS
) {
31 ext4_warning(sb
, "There are errors in the filesystem, "
32 "so online resizing is not allowed\n");
36 if (test_and_set_bit_lock(EXT4_RESIZING
, &EXT4_SB(sb
)->s_resize_flags
))
42 void ext4_resize_end(struct super_block
*sb
)
44 clear_bit_unlock(EXT4_RESIZING
, &EXT4_SB(sb
)->s_resize_flags
);
45 smp_mb__after_clear_bit();
48 #define outside(b, first, last) ((b) < (first) || (b) >= (last))
49 #define inside(b, first, last) ((b) >= (first) && (b) < (last))
51 static int verify_group_input(struct super_block
*sb
,
52 struct ext4_new_group_data
*input
)
54 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
55 struct ext4_super_block
*es
= sbi
->s_es
;
56 ext4_fsblk_t start
= ext4_blocks_count(es
);
57 ext4_fsblk_t end
= start
+ input
->blocks_count
;
58 ext4_group_t group
= input
->group
;
59 ext4_fsblk_t itend
= input
->inode_table
+ sbi
->s_itb_per_group
;
60 unsigned overhead
= ext4_bg_has_super(sb
, group
) ?
61 (1 + ext4_bg_num_gdb(sb
, group
) +
62 le16_to_cpu(es
->s_reserved_gdt_blocks
)) : 0;
63 ext4_fsblk_t metaend
= start
+ overhead
;
64 struct buffer_head
*bh
= NULL
;
65 ext4_grpblk_t free_blocks_count
, offset
;
68 input
->free_blocks_count
= free_blocks_count
=
69 input
->blocks_count
- 2 - overhead
- sbi
->s_itb_per_group
;
71 if (test_opt(sb
, DEBUG
))
72 printk(KERN_DEBUG
"EXT4-fs: adding %s group %u: %u blocks "
73 "(%d free, %u reserved)\n",
74 ext4_bg_has_super(sb
, input
->group
) ? "normal" :
75 "no-super", input
->group
, input
->blocks_count
,
76 free_blocks_count
, input
->reserved_blocks
);
78 ext4_get_group_no_and_offset(sb
, start
, NULL
, &offset
);
79 if (group
!= sbi
->s_groups_count
)
80 ext4_warning(sb
, "Cannot add at group %u (only %u groups)",
81 input
->group
, sbi
->s_groups_count
);
83 ext4_warning(sb
, "Last group not full");
84 else if (input
->reserved_blocks
> input
->blocks_count
/ 5)
85 ext4_warning(sb
, "Reserved blocks too high (%u)",
86 input
->reserved_blocks
);
87 else if (free_blocks_count
< 0)
88 ext4_warning(sb
, "Bad blocks count %u",
90 else if (!(bh
= sb_bread(sb
, end
- 1)))
91 ext4_warning(sb
, "Cannot read last block (%llu)",
93 else if (outside(input
->block_bitmap
, start
, end
))
94 ext4_warning(sb
, "Block bitmap not in group (block %llu)",
95 (unsigned long long)input
->block_bitmap
);
96 else if (outside(input
->inode_bitmap
, start
, end
))
97 ext4_warning(sb
, "Inode bitmap not in group (block %llu)",
98 (unsigned long long)input
->inode_bitmap
);
99 else if (outside(input
->inode_table
, start
, end
) ||
100 outside(itend
- 1, start
, end
))
101 ext4_warning(sb
, "Inode table not in group (blocks %llu-%llu)",
102 (unsigned long long)input
->inode_table
, itend
- 1);
103 else if (input
->inode_bitmap
== input
->block_bitmap
)
104 ext4_warning(sb
, "Block bitmap same as inode bitmap (%llu)",
105 (unsigned long long)input
->block_bitmap
);
106 else if (inside(input
->block_bitmap
, input
->inode_table
, itend
))
107 ext4_warning(sb
, "Block bitmap (%llu) in inode table "
109 (unsigned long long)input
->block_bitmap
,
110 (unsigned long long)input
->inode_table
, itend
- 1);
111 else if (inside(input
->inode_bitmap
, input
->inode_table
, itend
))
112 ext4_warning(sb
, "Inode bitmap (%llu) in inode table "
114 (unsigned long long)input
->inode_bitmap
,
115 (unsigned long long)input
->inode_table
, itend
- 1);
116 else if (inside(input
->block_bitmap
, start
, metaend
))
117 ext4_warning(sb
, "Block bitmap (%llu) in GDT table (%llu-%llu)",
118 (unsigned long long)input
->block_bitmap
,
120 else if (inside(input
->inode_bitmap
, start
, metaend
))
121 ext4_warning(sb
, "Inode bitmap (%llu) in GDT table (%llu-%llu)",
122 (unsigned long long)input
->inode_bitmap
,
124 else if (inside(input
->inode_table
, start
, metaend
) ||
125 inside(itend
- 1, start
, metaend
))
126 ext4_warning(sb
, "Inode table (%llu-%llu) overlaps GDT table "
128 (unsigned long long)input
->inode_table
,
129 itend
- 1, start
, metaend
- 1);
138 * ext4_new_flex_group_data is used by 64bit-resize interface to add a flex
141 struct ext4_new_flex_group_data
{
142 struct ext4_new_group_data
*groups
; /* new_group_data for groups
144 __u16
*bg_flags
; /* block group flags of groups
146 ext4_group_t count
; /* number of groups in @groups
151 * alloc_flex_gd() allocates a ext4_new_flex_group_data with size of
154 * Returns NULL on failure otherwise address of the allocated structure.
156 static struct ext4_new_flex_group_data
*alloc_flex_gd(unsigned long flexbg_size
)
158 struct ext4_new_flex_group_data
*flex_gd
;
160 flex_gd
= kmalloc(sizeof(*flex_gd
), GFP_NOFS
);
164 flex_gd
->count
= flexbg_size
;
166 flex_gd
->groups
= kmalloc(sizeof(struct ext4_new_group_data
) *
167 flexbg_size
, GFP_NOFS
);
168 if (flex_gd
->groups
== NULL
)
171 flex_gd
->bg_flags
= kmalloc(flexbg_size
* sizeof(__u16
), GFP_NOFS
);
172 if (flex_gd
->bg_flags
== NULL
)
178 kfree(flex_gd
->groups
);
185 static void free_flex_gd(struct ext4_new_flex_group_data
*flex_gd
)
187 kfree(flex_gd
->bg_flags
);
188 kfree(flex_gd
->groups
);
193 * ext4_alloc_group_tables() allocates block bitmaps, inode bitmaps
194 * and inode tables for a flex group.
196 * This function is used by 64bit-resize. Note that this function allocates
197 * group tables from the 1st group of groups contained by @flexgd, which may
198 * be a partial of a flex group.
200 * @sb: super block of fs to which the groups belongs
202 static void ext4_alloc_group_tables(struct super_block
*sb
,
203 struct ext4_new_flex_group_data
*flex_gd
,
206 struct ext4_new_group_data
*group_data
= flex_gd
->groups
;
207 struct ext4_super_block
*es
= EXT4_SB(sb
)->s_es
;
208 ext4_fsblk_t start_blk
;
209 ext4_fsblk_t last_blk
;
210 ext4_group_t src_group
;
211 ext4_group_t bb_index
= 0;
212 ext4_group_t ib_index
= 0;
213 ext4_group_t it_index
= 0;
215 ext4_group_t last_group
;
218 BUG_ON(flex_gd
->count
== 0 || group_data
== NULL
);
220 src_group
= group_data
[0].group
;
221 last_group
= src_group
+ flex_gd
->count
- 1;
223 BUG_ON((flexbg_size
> 1) && ((src_group
& ~(flexbg_size
- 1)) !=
224 (last_group
& ~(flexbg_size
- 1))));
226 group
= group_data
[0].group
;
227 start_blk
= ext4_group_first_block_no(sb
, src_group
);
228 last_blk
= start_blk
+ group_data
[src_group
- group
].blocks_count
;
230 overhead
= ext4_bg_has_super(sb
, src_group
) ?
231 (1 + ext4_bg_num_gdb(sb
, src_group
) +
232 le16_to_cpu(es
->s_reserved_gdt_blocks
)) : 0;
234 start_blk
+= overhead
;
236 BUG_ON(src_group
>= group_data
[0].group
+ flex_gd
->count
);
237 /* We collect contiguous blocks as much as possible. */
239 for (; src_group
<= last_group
; src_group
++)
240 if (!ext4_bg_has_super(sb
, src_group
))
241 last_blk
+= group_data
[src_group
- group
].blocks_count
;
245 /* Allocate block bitmaps */
246 for (; bb_index
< flex_gd
->count
; bb_index
++) {
247 if (start_blk
>= last_blk
)
249 group_data
[bb_index
].block_bitmap
= start_blk
++;
250 ext4_get_group_no_and_offset(sb
, start_blk
- 1, &group
, NULL
);
251 group
-= group_data
[0].group
;
252 group_data
[group
].free_blocks_count
--;
254 flex_gd
->bg_flags
[group
] &= ~EXT4_BG_BLOCK_UNINIT
;
257 /* Allocate inode bitmaps */
258 for (; ib_index
< flex_gd
->count
; ib_index
++) {
259 if (start_blk
>= last_blk
)
261 group_data
[ib_index
].inode_bitmap
= start_blk
++;
262 ext4_get_group_no_and_offset(sb
, start_blk
- 1, &group
, NULL
);
263 group
-= group_data
[0].group
;
264 group_data
[group
].free_blocks_count
--;
266 flex_gd
->bg_flags
[group
] &= ~EXT4_BG_BLOCK_UNINIT
;
269 /* Allocate inode tables */
270 for (; it_index
< flex_gd
->count
; it_index
++) {
271 if (start_blk
+ EXT4_SB(sb
)->s_itb_per_group
> last_blk
)
273 group_data
[it_index
].inode_table
= start_blk
;
274 ext4_get_group_no_and_offset(sb
, start_blk
, &group
, NULL
);
275 group
-= group_data
[0].group
;
276 group_data
[group
].free_blocks_count
-=
277 EXT4_SB(sb
)->s_itb_per_group
;
279 flex_gd
->bg_flags
[group
] &= ~EXT4_BG_BLOCK_UNINIT
;
281 start_blk
+= EXT4_SB(sb
)->s_itb_per_group
;
284 if (test_opt(sb
, DEBUG
)) {
286 group
= group_data
[0].group
;
288 printk(KERN_DEBUG
"EXT4-fs: adding a flex group with "
289 "%d groups, flexbg size is %d:\n", flex_gd
->count
,
292 for (i
= 0; i
< flex_gd
->count
; i
++) {
293 printk(KERN_DEBUG
"adding %s group %u: %u "
294 "blocks (%d free)\n",
295 ext4_bg_has_super(sb
, group
+ i
) ? "normal" :
296 "no-super", group
+ i
,
297 group_data
[i
].blocks_count
,
298 group_data
[i
].free_blocks_count
);
303 static struct buffer_head
*bclean(handle_t
*handle
, struct super_block
*sb
,
306 struct buffer_head
*bh
;
309 bh
= sb_getblk(sb
, blk
);
311 return ERR_PTR(-EIO
);
312 if ((err
= ext4_journal_get_write_access(handle
, bh
))) {
316 memset(bh
->b_data
, 0, sb
->s_blocksize
);
317 set_buffer_uptodate(bh
);
324 * If we have fewer than thresh credits, extend by EXT4_MAX_TRANS_DATA.
325 * If that fails, restart the transaction & regain write access for the
326 * buffer head which is used for block_bitmap modifications.
328 static int extend_or_restart_transaction(handle_t
*handle
, int thresh
)
332 if (ext4_handle_has_enough_credits(handle
, thresh
))
335 err
= ext4_journal_extend(handle
, EXT4_MAX_TRANS_DATA
);
339 err
= ext4_journal_restart(handle
, EXT4_MAX_TRANS_DATA
);
348 * set_flexbg_block_bitmap() mark @count blocks starting from @block used.
350 * Helper function for ext4_setup_new_group_blocks() which set .
353 * @handle: journal handle
354 * @flex_gd: flex group data
356 static int set_flexbg_block_bitmap(struct super_block
*sb
, handle_t
*handle
,
357 struct ext4_new_flex_group_data
*flex_gd
,
358 ext4_fsblk_t block
, ext4_group_t count
)
362 ext4_debug("mark blocks [%llu/%u] used\n", block
, count
);
363 for (count2
= count
; count
> 0; count
-= count2
, block
+= count2
) {
365 struct buffer_head
*bh
;
369 ext4_get_group_no_and_offset(sb
, block
, &group
, NULL
);
370 start
= ext4_group_first_block_no(sb
, group
);
371 group
-= flex_gd
->groups
[0].group
;
373 count2
= sb
->s_blocksize
* 8 - (block
- start
);
377 if (flex_gd
->bg_flags
[group
] & EXT4_BG_BLOCK_UNINIT
) {
378 BUG_ON(flex_gd
->count
> 1);
382 err
= extend_or_restart_transaction(handle
, 1);
386 bh
= sb_getblk(sb
, flex_gd
->groups
[group
].block_bitmap
);
390 err
= ext4_journal_get_write_access(handle
, bh
);
393 ext4_debug("mark block bitmap %#04llx (+%llu/%u)\n", block
,
394 block
- start
, count2
);
395 ext4_set_bits(bh
->b_data
, block
- start
, count2
);
397 err
= ext4_handle_dirty_metadata(handle
, NULL
, bh
);
407 * Set up the block and inode bitmaps, and the inode table for the new groups.
408 * This doesn't need to be part of the main transaction, since we are only
409 * changing blocks outside the actual filesystem. We still do journaling to
410 * ensure the recovery is correct in case of a failure just after resize.
411 * If any part of this fails, we simply abort the resize.
413 * setup_new_flex_group_blocks handles a flex group as follow:
414 * 1. copy super block and GDT, and initialize group tables if necessary.
415 * In this step, we only set bits in blocks bitmaps for blocks taken by
416 * super block and GDT.
417 * 2. allocate group tables in block bitmaps, that is, set bits in block
418 * bitmap for blocks taken by group tables.
420 static int setup_new_flex_group_blocks(struct super_block
*sb
,
421 struct ext4_new_flex_group_data
*flex_gd
)
423 int group_table_count
[] = {1, 1, EXT4_SB(sb
)->s_itb_per_group
};
426 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
427 struct ext4_super_block
*es
= sbi
->s_es
;
428 struct ext4_new_group_data
*group_data
= flex_gd
->groups
;
429 __u16
*bg_flags
= flex_gd
->bg_flags
;
431 ext4_group_t group
, count
;
432 struct buffer_head
*bh
= NULL
;
433 int reserved_gdb
, i
, j
, err
= 0, err2
;
435 BUG_ON(!flex_gd
->count
|| !group_data
||
436 group_data
[0].group
!= sbi
->s_groups_count
);
438 reserved_gdb
= le16_to_cpu(es
->s_reserved_gdt_blocks
);
440 /* This transaction may be extended/restarted along the way */
441 handle
= ext4_journal_start_sb(sb
, EXT4_MAX_TRANS_DATA
);
443 return PTR_ERR(handle
);
445 group
= group_data
[0].group
;
446 for (i
= 0; i
< flex_gd
->count
; i
++, group
++) {
447 unsigned long gdblocks
;
449 gdblocks
= ext4_bg_num_gdb(sb
, group
);
450 start
= ext4_group_first_block_no(sb
, group
);
452 /* Copy all of the GDT blocks into the backup in this group */
453 for (j
= 0, block
= start
+ 1; j
< gdblocks
; j
++, block
++) {
454 struct buffer_head
*gdb
;
456 ext4_debug("update backup group %#04llx\n", block
);
457 err
= extend_or_restart_transaction(handle
, 1);
461 gdb
= sb_getblk(sb
, block
);
467 err
= ext4_journal_get_write_access(handle
, gdb
);
472 memcpy(gdb
->b_data
, sbi
->s_group_desc
[j
]->b_data
,
474 set_buffer_uptodate(gdb
);
476 err
= ext4_handle_dirty_metadata(handle
, NULL
, gdb
);
484 /* Zero out all of the reserved backup group descriptor
487 if (ext4_bg_has_super(sb
, group
)) {
488 err
= sb_issue_zeroout(sb
, gdblocks
+ start
+ 1,
489 reserved_gdb
, GFP_NOFS
);
494 /* Initialize group tables of the grop @group */
495 if (!(bg_flags
[i
] & EXT4_BG_INODE_ZEROED
))
498 /* Zero out all of the inode table blocks */
499 block
= group_data
[i
].inode_table
;
500 ext4_debug("clear inode table blocks %#04llx -> %#04lx\n",
501 block
, sbi
->s_itb_per_group
);
502 err
= sb_issue_zeroout(sb
, block
, sbi
->s_itb_per_group
,
508 if (bg_flags
[i
] & EXT4_BG_BLOCK_UNINIT
)
511 /* Initialize block bitmap of the @group */
512 block
= group_data
[i
].block_bitmap
;
513 err
= extend_or_restart_transaction(handle
, 1);
517 bh
= bclean(handle
, sb
, block
);
522 if (ext4_bg_has_super(sb
, group
)) {
523 ext4_debug("mark backup superblock %#04llx (+0)\n",
525 ext4_set_bits(bh
->b_data
, 0, gdblocks
+ reserved_gdb
+
528 ext4_mark_bitmap_end(group_data
[i
].blocks_count
,
529 sb
->s_blocksize
* 8, bh
->b_data
);
530 err
= ext4_handle_dirty_metadata(handle
, NULL
, bh
);
536 if (bg_flags
[i
] & EXT4_BG_INODE_UNINIT
)
539 /* Initialize inode bitmap of the @group */
540 block
= group_data
[i
].inode_bitmap
;
541 err
= extend_or_restart_transaction(handle
, 1);
544 /* Mark unused entries in inode bitmap used */
545 bh
= bclean(handle
, sb
, block
);
551 ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb
),
552 sb
->s_blocksize
* 8, bh
->b_data
);
553 err
= ext4_handle_dirty_metadata(handle
, NULL
, bh
);
560 /* Mark group tables in block bitmap */
561 for (j
= 0; j
< GROUP_TABLE_COUNT
; j
++) {
562 count
= group_table_count
[j
];
563 start
= (&group_data
[0].block_bitmap
)[j
];
565 for (i
= 1; i
< flex_gd
->count
; i
++) {
566 block
+= group_table_count
[j
];
567 if (block
== (&group_data
[i
].block_bitmap
)[j
]) {
568 count
+= group_table_count
[j
];
571 err
= set_flexbg_block_bitmap(sb
, handle
,
572 flex_gd
, start
, count
);
575 count
= group_table_count
[j
];
576 start
= group_data
[i
].block_bitmap
;
581 err
= set_flexbg_block_bitmap(sb
, handle
,
582 flex_gd
, start
, count
);
590 err2
= ext4_journal_stop(handle
);
598 * Iterate through the groups which hold BACKUP superblock/GDT copies in an
599 * ext4 filesystem. The counters should be initialized to 1, 5, and 7 before
600 * calling this for the first time. In a sparse filesystem it will be the
601 * sequence of powers of 3, 5, and 7: 1, 3, 5, 7, 9, 25, 27, 49, 81, ...
602 * For a non-sparse filesystem it will be every group: 1, 2, 3, 4, ...
604 static unsigned ext4_list_backups(struct super_block
*sb
, unsigned *three
,
605 unsigned *five
, unsigned *seven
)
607 unsigned *min
= three
;
611 if (!EXT4_HAS_RO_COMPAT_FEATURE(sb
,
612 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER
)) {
634 * Check that all of the backup GDT blocks are held in the primary GDT block.
635 * It is assumed that they are stored in group order. Returns the number of
636 * groups in current filesystem that have BACKUPS, or -ve error code.
638 static int verify_reserved_gdb(struct super_block
*sb
,
640 struct buffer_head
*primary
)
642 const ext4_fsblk_t blk
= primary
->b_blocknr
;
647 __le32
*p
= (__le32
*)primary
->b_data
;
650 while ((grp
= ext4_list_backups(sb
, &three
, &five
, &seven
)) < end
) {
651 if (le32_to_cpu(*p
++) !=
652 grp
* EXT4_BLOCKS_PER_GROUP(sb
) + blk
){
653 ext4_warning(sb
, "reserved GDT %llu"
654 " missing grp %d (%llu)",
657 (ext4_fsblk_t
)EXT4_BLOCKS_PER_GROUP(sb
) +
661 if (++gdbackups
> EXT4_ADDR_PER_BLOCK(sb
))
669 * Called when we need to bring a reserved group descriptor table block into
670 * use from the resize inode. The primary copy of the new GDT block currently
671 * is an indirect block (under the double indirect block in the resize inode).
672 * The new backup GDT blocks will be stored as leaf blocks in this indirect
673 * block, in group order. Even though we know all the block numbers we need,
674 * we check to ensure that the resize inode has actually reserved these blocks.
676 * Don't need to update the block bitmaps because the blocks are still in use.
678 * We get all of the error cases out of the way, so that we are sure to not
679 * fail once we start modifying the data on disk, because JBD has no rollback.
681 static int add_new_gdb(handle_t
*handle
, struct inode
*inode
,
684 struct super_block
*sb
= inode
->i_sb
;
685 struct ext4_super_block
*es
= EXT4_SB(sb
)->s_es
;
686 unsigned long gdb_num
= group
/ EXT4_DESC_PER_BLOCK(sb
);
687 ext4_fsblk_t gdblock
= EXT4_SB(sb
)->s_sbh
->b_blocknr
+ 1 + gdb_num
;
688 struct buffer_head
**o_group_desc
, **n_group_desc
;
689 struct buffer_head
*dind
;
690 struct buffer_head
*gdb_bh
;
692 struct ext4_iloc iloc
;
696 if (test_opt(sb
, DEBUG
))
698 "EXT4-fs: ext4_add_new_gdb: adding group block %lu\n",
702 * If we are not using the primary superblock/GDT copy don't resize,
703 * because the user tools have no way of handling this. Probably a
704 * bad time to do it anyways.
706 if (EXT4_SB(sb
)->s_sbh
->b_blocknr
!=
707 le32_to_cpu(EXT4_SB(sb
)->s_es
->s_first_data_block
)) {
708 ext4_warning(sb
, "won't resize using backup superblock at %llu",
709 (unsigned long long)EXT4_SB(sb
)->s_sbh
->b_blocknr
);
713 gdb_bh
= sb_bread(sb
, gdblock
);
717 gdbackups
= verify_reserved_gdb(sb
, group
, gdb_bh
);
723 data
= EXT4_I(inode
)->i_data
+ EXT4_DIND_BLOCK
;
724 dind
= sb_bread(sb
, le32_to_cpu(*data
));
730 data
= (__le32
*)dind
->b_data
;
731 if (le32_to_cpu(data
[gdb_num
% EXT4_ADDR_PER_BLOCK(sb
)]) != gdblock
) {
732 ext4_warning(sb
, "new group %u GDT block %llu not reserved",
738 err
= ext4_journal_get_write_access(handle
, EXT4_SB(sb
)->s_sbh
);
742 err
= ext4_journal_get_write_access(handle
, gdb_bh
);
746 err
= ext4_journal_get_write_access(handle
, dind
);
748 ext4_std_error(sb
, err
);
750 /* ext4_reserve_inode_write() gets a reference on the iloc */
751 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
755 n_group_desc
= ext4_kvmalloc((gdb_num
+ 1) *
756 sizeof(struct buffer_head
*),
760 ext4_warning(sb
, "not enough memory for %lu groups",
766 * Finally, we have all of the possible failures behind us...
768 * Remove new GDT block from inode double-indirect block and clear out
769 * the new GDT block for use (which also "frees" the backup GDT blocks
770 * from the reserved inode). We don't need to change the bitmaps for
771 * these blocks, because they are marked as in-use from being in the
772 * reserved inode, and will become GDT blocks (primary and backup).
774 data
[gdb_num
% EXT4_ADDR_PER_BLOCK(sb
)] = 0;
775 err
= ext4_handle_dirty_metadata(handle
, NULL
, dind
);
777 ext4_std_error(sb
, err
);
780 inode
->i_blocks
-= (gdbackups
+ 1) * sb
->s_blocksize
>> 9;
781 ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
782 memset(gdb_bh
->b_data
, 0, sb
->s_blocksize
);
783 err
= ext4_handle_dirty_metadata(handle
, NULL
, gdb_bh
);
785 ext4_std_error(sb
, err
);
790 o_group_desc
= EXT4_SB(sb
)->s_group_desc
;
791 memcpy(n_group_desc
, o_group_desc
,
792 EXT4_SB(sb
)->s_gdb_count
* sizeof(struct buffer_head
*));
793 n_group_desc
[gdb_num
] = gdb_bh
;
794 EXT4_SB(sb
)->s_group_desc
= n_group_desc
;
795 EXT4_SB(sb
)->s_gdb_count
++;
796 ext4_kvfree(o_group_desc
);
798 le16_add_cpu(&es
->s_reserved_gdt_blocks
, -1);
799 err
= ext4_handle_dirty_metadata(handle
, NULL
, EXT4_SB(sb
)->s_sbh
);
801 ext4_std_error(sb
, err
);
806 ext4_kvfree(n_group_desc
);
807 /* ext4_handle_release_buffer(handle, iloc.bh); */
810 /* ext4_handle_release_buffer(handle, dind); */
812 /* ext4_handle_release_buffer(handle, EXT4_SB(sb)->s_sbh); */
818 ext4_debug("leaving with error %d\n", err
);
823 * Called when we are adding a new group which has a backup copy of each of
824 * the GDT blocks (i.e. sparse group) and there are reserved GDT blocks.
825 * We need to add these reserved backup GDT blocks to the resize inode, so
826 * that they are kept for future resizing and not allocated to files.
828 * Each reserved backup GDT block will go into a different indirect block.
829 * The indirect blocks are actually the primary reserved GDT blocks,
830 * so we know in advance what their block numbers are. We only get the
831 * double-indirect block to verify it is pointing to the primary reserved
832 * GDT blocks so we don't overwrite a data block by accident. The reserved
833 * backup GDT blocks are stored in their reserved primary GDT block.
835 static int reserve_backup_gdb(handle_t
*handle
, struct inode
*inode
,
838 struct super_block
*sb
= inode
->i_sb
;
839 int reserved_gdb
=le16_to_cpu(EXT4_SB(sb
)->s_es
->s_reserved_gdt_blocks
);
840 struct buffer_head
**primary
;
841 struct buffer_head
*dind
;
842 struct ext4_iloc iloc
;
849 primary
= kmalloc(reserved_gdb
* sizeof(*primary
), GFP_NOFS
);
853 data
= EXT4_I(inode
)->i_data
+ EXT4_DIND_BLOCK
;
854 dind
= sb_bread(sb
, le32_to_cpu(*data
));
860 blk
= EXT4_SB(sb
)->s_sbh
->b_blocknr
+ 1 + EXT4_SB(sb
)->s_gdb_count
;
861 data
= (__le32
*)dind
->b_data
+ (EXT4_SB(sb
)->s_gdb_count
%
862 EXT4_ADDR_PER_BLOCK(sb
));
863 end
= (__le32
*)dind
->b_data
+ EXT4_ADDR_PER_BLOCK(sb
);
865 /* Get each reserved primary GDT block and verify it holds backups */
866 for (res
= 0; res
< reserved_gdb
; res
++, blk
++) {
867 if (le32_to_cpu(*data
) != blk
) {
868 ext4_warning(sb
, "reserved block %llu"
869 " not at offset %ld",
871 (long)(data
- (__le32
*)dind
->b_data
));
875 primary
[res
] = sb_bread(sb
, blk
);
880 gdbackups
= verify_reserved_gdb(sb
, group
, primary
[res
]);
882 brelse(primary
[res
]);
887 data
= (__le32
*)dind
->b_data
;
890 for (i
= 0; i
< reserved_gdb
; i
++) {
891 if ((err
= ext4_journal_get_write_access(handle
, primary
[i
]))) {
894 for (j = 0; j < i; j++)
895 ext4_handle_release_buffer(handle, primary[j]);
901 if ((err
= ext4_reserve_inode_write(handle
, inode
, &iloc
)))
905 * Finally we can add each of the reserved backup GDT blocks from
906 * the new group to its reserved primary GDT block.
908 blk
= group
* EXT4_BLOCKS_PER_GROUP(sb
);
909 for (i
= 0; i
< reserved_gdb
; i
++) {
911 data
= (__le32
*)primary
[i
]->b_data
;
912 /* printk("reserving backup %lu[%u] = %lu\n",
913 primary[i]->b_blocknr, gdbackups,
914 blk + primary[i]->b_blocknr); */
915 data
[gdbackups
] = cpu_to_le32(blk
+ primary
[i
]->b_blocknr
);
916 err2
= ext4_handle_dirty_metadata(handle
, NULL
, primary
[i
]);
920 inode
->i_blocks
+= reserved_gdb
* sb
->s_blocksize
>> 9;
921 ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
925 brelse(primary
[res
]);
935 * Update the backup copies of the ext4 metadata. These don't need to be part
936 * of the main resize transaction, because e2fsck will re-write them if there
937 * is a problem (basically only OOM will cause a problem). However, we
938 * _should_ update the backups if possible, in case the primary gets trashed
939 * for some reason and we need to run e2fsck from a backup superblock. The
940 * important part is that the new block and inode counts are in the backup
941 * superblocks, and the location of the new group metadata in the GDT backups.
943 * We do not need take the s_resize_lock for this, because these
944 * blocks are not otherwise touched by the filesystem code when it is
945 * mounted. We don't need to worry about last changing from
946 * sbi->s_groups_count, because the worst that can happen is that we
947 * do not copy the full number of backups at this time. The resize
948 * which changed s_groups_count will backup again.
950 static void update_backups(struct super_block
*sb
,
951 int blk_off
, char *data
, int size
)
953 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
954 const ext4_group_t last
= sbi
->s_groups_count
;
955 const int bpg
= EXT4_BLOCKS_PER_GROUP(sb
);
960 int rest
= sb
->s_blocksize
- size
;
964 handle
= ext4_journal_start_sb(sb
, EXT4_MAX_TRANS_DATA
);
965 if (IS_ERR(handle
)) {
967 err
= PTR_ERR(handle
);
971 while ((group
= ext4_list_backups(sb
, &three
, &five
, &seven
)) < last
) {
972 struct buffer_head
*bh
;
974 /* Out of journal space, and can't get more - abort - so sad */
975 if (ext4_handle_valid(handle
) &&
976 handle
->h_buffer_credits
== 0 &&
977 ext4_journal_extend(handle
, EXT4_MAX_TRANS_DATA
) &&
978 (err
= ext4_journal_restart(handle
, EXT4_MAX_TRANS_DATA
)))
981 bh
= sb_getblk(sb
, group
* bpg
+ blk_off
);
986 ext4_debug("update metadata backup %#04lx\n",
987 (unsigned long)bh
->b_blocknr
);
988 if ((err
= ext4_journal_get_write_access(handle
, bh
)))
991 memcpy(bh
->b_data
, data
, size
);
993 memset(bh
->b_data
+ size
, 0, rest
);
994 set_buffer_uptodate(bh
);
996 err
= ext4_handle_dirty_metadata(handle
, NULL
, bh
);
998 ext4_std_error(sb
, err
);
1001 if ((err2
= ext4_journal_stop(handle
)) && !err
)
1005 * Ugh! Need to have e2fsck write the backup copies. It is too
1006 * late to revert the resize, we shouldn't fail just because of
1007 * the backup copies (they are only needed in case of corruption).
1009 * However, if we got here we have a journal problem too, so we
1010 * can't really start a transaction to mark the superblock.
1011 * Chicken out and just set the flag on the hope it will be written
1012 * to disk, and if not - we will simply wait until next fsck.
1016 ext4_warning(sb
, "can't update backup for group %u (err %d), "
1017 "forcing fsck on next reboot", group
, err
);
1018 sbi
->s_mount_state
&= ~EXT4_VALID_FS
;
1019 sbi
->s_es
->s_state
&= cpu_to_le16(~EXT4_VALID_FS
);
1020 mark_buffer_dirty(sbi
->s_sbh
);
1025 * ext4_add_new_descs() adds @count group descriptor of groups
1026 * starting at @group
1028 * @handle: journal handle
1030 * @group: the group no. of the first group desc to be added
1031 * @resize_inode: the resize inode
1032 * @count: number of group descriptors to be added
1034 static int ext4_add_new_descs(handle_t
*handle
, struct super_block
*sb
,
1035 ext4_group_t group
, struct inode
*resize_inode
,
1038 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
1039 struct ext4_super_block
*es
= sbi
->s_es
;
1040 struct buffer_head
*gdb_bh
;
1041 int i
, gdb_off
, gdb_num
, err
= 0;
1043 for (i
= 0; i
< count
; i
++, group
++) {
1044 int reserved_gdb
= ext4_bg_has_super(sb
, group
) ?
1045 le16_to_cpu(es
->s_reserved_gdt_blocks
) : 0;
1047 gdb_off
= group
% EXT4_DESC_PER_BLOCK(sb
);
1048 gdb_num
= group
/ EXT4_DESC_PER_BLOCK(sb
);
1051 * We will only either add reserved group blocks to a backup group
1052 * or remove reserved blocks for the first group in a new group block.
1053 * Doing both would be mean more complex code, and sane people don't
1054 * use non-sparse filesystems anymore. This is already checked above.
1057 gdb_bh
= sbi
->s_group_desc
[gdb_num
];
1058 err
= ext4_journal_get_write_access(handle
, gdb_bh
);
1060 if (!err
&& reserved_gdb
&& ext4_bg_num_gdb(sb
, group
))
1061 err
= reserve_backup_gdb(handle
, resize_inode
, group
);
1063 err
= add_new_gdb(handle
, resize_inode
, group
);
1071 * ext4_setup_new_descs() will set up the group descriptor descriptors of a flex bg
1073 static int ext4_setup_new_descs(handle_t
*handle
, struct super_block
*sb
,
1074 struct ext4_new_flex_group_data
*flex_gd
)
1076 struct ext4_new_group_data
*group_data
= flex_gd
->groups
;
1077 struct ext4_group_desc
*gdp
;
1078 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
1079 struct buffer_head
*gdb_bh
;
1081 __u16
*bg_flags
= flex_gd
->bg_flags
;
1082 int i
, gdb_off
, gdb_num
, err
= 0;
1085 for (i
= 0; i
< flex_gd
->count
; i
++, group_data
++, bg_flags
++) {
1086 group
= group_data
->group
;
1088 gdb_off
= group
% EXT4_DESC_PER_BLOCK(sb
);
1089 gdb_num
= group
/ EXT4_DESC_PER_BLOCK(sb
);
1092 * get_write_access() has been called on gdb_bh by ext4_add_new_desc().
1094 gdb_bh
= sbi
->s_group_desc
[gdb_num
];
1095 /* Update group descriptor block for new group */
1096 gdp
= (struct ext4_group_desc
*)((char *)gdb_bh
->b_data
+
1097 gdb_off
* EXT4_DESC_SIZE(sb
));
1099 memset(gdp
, 0, EXT4_DESC_SIZE(sb
));
1100 ext4_block_bitmap_set(sb
, gdp
, group_data
->block_bitmap
);
1101 ext4_inode_bitmap_set(sb
, gdp
, group_data
->inode_bitmap
);
1102 ext4_inode_table_set(sb
, gdp
, group_data
->inode_table
);
1103 ext4_free_group_clusters_set(sb
, gdp
,
1104 EXT4_B2C(sbi
, group_data
->free_blocks_count
));
1105 ext4_free_inodes_set(sb
, gdp
, EXT4_INODES_PER_GROUP(sb
));
1106 gdp
->bg_flags
= cpu_to_le16(*bg_flags
);
1107 gdp
->bg_checksum
= ext4_group_desc_csum(sbi
, group
, gdp
);
1109 err
= ext4_handle_dirty_metadata(handle
, NULL
, gdb_bh
);
1110 if (unlikely(err
)) {
1111 ext4_std_error(sb
, err
);
1116 * We can allocate memory for mb_alloc based on the new group
1119 err
= ext4_mb_add_groupinfo(sb
, group
, gdp
);
1127 * ext4_update_super() updates the super block so that the newly added
1128 * groups can be seen by the filesystem.
1131 * @flex_gd: new added groups
1133 static void ext4_update_super(struct super_block
*sb
,
1134 struct ext4_new_flex_group_data
*flex_gd
)
1136 ext4_fsblk_t blocks_count
= 0;
1137 ext4_fsblk_t free_blocks
= 0;
1138 ext4_fsblk_t reserved_blocks
= 0;
1139 struct ext4_new_group_data
*group_data
= flex_gd
->groups
;
1140 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
1141 struct ext4_super_block
*es
= sbi
->s_es
;
1144 BUG_ON(flex_gd
->count
== 0 || group_data
== NULL
);
1146 * Make the new blocks and inodes valid next. We do this before
1147 * increasing the group count so that once the group is enabled,
1148 * all of its blocks and inodes are already valid.
1150 * We always allocate group-by-group, then block-by-block or
1151 * inode-by-inode within a group, so enabling these
1152 * blocks/inodes before the group is live won't actually let us
1153 * allocate the new space yet.
1155 for (i
= 0; i
< flex_gd
->count
; i
++) {
1156 blocks_count
+= group_data
[i
].blocks_count
;
1157 free_blocks
+= group_data
[i
].free_blocks_count
;
1160 reserved_blocks
= ext4_r_blocks_count(es
) * 100;
1161 do_div(reserved_blocks
, ext4_blocks_count(es
));
1162 reserved_blocks
*= blocks_count
;
1163 do_div(reserved_blocks
, 100);
1165 ext4_blocks_count_set(es
, ext4_blocks_count(es
) + blocks_count
);
1166 le32_add_cpu(&es
->s_inodes_count
, EXT4_INODES_PER_GROUP(sb
) *
1170 * We need to protect s_groups_count against other CPUs seeing
1171 * inconsistent state in the superblock.
1173 * The precise rules we use are:
1175 * * Writers must perform a smp_wmb() after updating all
1176 * dependent data and before modifying the groups count
1178 * * Readers must perform an smp_rmb() after reading the groups
1179 * count and before reading any dependent data.
1181 * NB. These rules can be relaxed when checking the group count
1182 * while freeing data, as we can only allocate from a block
1183 * group after serialising against the group count, and we can
1184 * only then free after serialising in turn against that
1189 /* Update the global fs size fields */
1190 sbi
->s_groups_count
+= flex_gd
->count
;
1192 /* Update the reserved block counts only once the new group is
1194 ext4_r_blocks_count_set(es
, ext4_r_blocks_count(es
) +
1197 /* Update the free space counts */
1198 percpu_counter_add(&sbi
->s_freeclusters_counter
,
1199 EXT4_B2C(sbi
, free_blocks
));
1200 percpu_counter_add(&sbi
->s_freeinodes_counter
,
1201 EXT4_INODES_PER_GROUP(sb
) * flex_gd
->count
);
1203 if (EXT4_HAS_INCOMPAT_FEATURE(sb
,
1204 EXT4_FEATURE_INCOMPAT_FLEX_BG
) &&
1205 sbi
->s_log_groups_per_flex
) {
1206 ext4_group_t flex_group
;
1207 flex_group
= ext4_flex_group(sbi
, group_data
[0].group
);
1208 atomic_add(EXT4_B2C(sbi
, free_blocks
),
1209 &sbi
->s_flex_groups
[flex_group
].free_clusters
);
1210 atomic_add(EXT4_INODES_PER_GROUP(sb
) * flex_gd
->count
,
1211 &sbi
->s_flex_groups
[flex_group
].free_inodes
);
1214 if (test_opt(sb
, DEBUG
))
1215 printk(KERN_DEBUG
"EXT4-fs: added group %u:"
1216 "%llu blocks(%llu free %llu reserved)\n", flex_gd
->count
,
1217 blocks_count
, free_blocks
, reserved_blocks
);
1220 /* Add a flex group to an fs. Ensure we handle all possible error conditions
1221 * _before_ we start modifying the filesystem, because we cannot abort the
1222 * transaction and not have it write the data to disk.
1224 static int ext4_flex_group_add(struct super_block
*sb
,
1225 struct inode
*resize_inode
,
1226 struct ext4_new_flex_group_data
*flex_gd
)
1228 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
1229 struct ext4_super_block
*es
= sbi
->s_es
;
1230 ext4_fsblk_t o_blocks_count
;
1234 unsigned reserved_gdb
;
1235 int err
= 0, err2
= 0, credit
;
1237 BUG_ON(!flex_gd
->count
|| !flex_gd
->groups
|| !flex_gd
->bg_flags
);
1239 reserved_gdb
= le16_to_cpu(es
->s_reserved_gdt_blocks
);
1240 o_blocks_count
= ext4_blocks_count(es
);
1241 ext4_get_group_no_and_offset(sb
, o_blocks_count
, &group
, &last
);
1244 err
= setup_new_flex_group_blocks(sb
, flex_gd
);
1248 * We will always be modifying at least the superblock and GDT
1249 * block. If we are adding a group past the last current GDT block,
1250 * we will also modify the inode and the dindirect block. If we
1251 * are adding a group with superblock/GDT backups we will also
1252 * modify each of the reserved GDT dindirect blocks.
1254 credit
= flex_gd
->count
* 4 + reserved_gdb
;
1255 handle
= ext4_journal_start_sb(sb
, credit
);
1256 if (IS_ERR(handle
)) {
1257 err
= PTR_ERR(handle
);
1261 err
= ext4_journal_get_write_access(handle
, sbi
->s_sbh
);
1265 group
= flex_gd
->groups
[0].group
;
1266 BUG_ON(group
!= EXT4_SB(sb
)->s_groups_count
);
1267 err
= ext4_add_new_descs(handle
, sb
, group
,
1268 resize_inode
, flex_gd
->count
);
1272 err
= ext4_setup_new_descs(handle
, sb
, flex_gd
);
1276 ext4_update_super(sb
, flex_gd
);
1278 err
= ext4_handle_dirty_super(handle
, sb
);
1281 err2
= ext4_journal_stop(handle
);
1287 update_backups(sb
, sbi
->s_sbh
->b_blocknr
, (char *)es
,
1288 sizeof(struct ext4_super_block
));
1289 for (i
= 0; i
< flex_gd
->count
; i
++, group
++) {
1290 struct buffer_head
*gdb_bh
;
1292 gdb_num
= group
/ EXT4_BLOCKS_PER_GROUP(sb
);
1293 gdb_bh
= sbi
->s_group_desc
[gdb_num
];
1294 update_backups(sb
, gdb_bh
->b_blocknr
, gdb_bh
->b_data
,
1302 static int ext4_setup_next_flex_gd(struct super_block
*sb
,
1303 struct ext4_new_flex_group_data
*flex_gd
,
1304 ext4_fsblk_t n_blocks_count
,
1305 unsigned long flexbg_size
)
1307 struct ext4_super_block
*es
= EXT4_SB(sb
)->s_es
;
1308 struct ext4_new_group_data
*group_data
= flex_gd
->groups
;
1309 ext4_fsblk_t o_blocks_count
;
1310 ext4_group_t n_group
;
1312 ext4_group_t last_group
;
1314 ext4_grpblk_t blocks_per_group
;
1317 blocks_per_group
= EXT4_BLOCKS_PER_GROUP(sb
);
1319 o_blocks_count
= ext4_blocks_count(es
);
1321 if (o_blocks_count
== n_blocks_count
)
1324 ext4_get_group_no_and_offset(sb
, o_blocks_count
, &group
, &last
);
1326 ext4_get_group_no_and_offset(sb
, n_blocks_count
- 1, &n_group
, &last
);
1328 last_group
= group
| (flexbg_size
- 1);
1329 if (last_group
> n_group
)
1330 last_group
= n_group
;
1332 flex_gd
->count
= last_group
- group
+ 1;
1334 for (i
= 0; i
< flex_gd
->count
; i
++) {
1337 group_data
[i
].group
= group
+ i
;
1338 group_data
[i
].blocks_count
= blocks_per_group
;
1339 overhead
= ext4_bg_has_super(sb
, group
+ i
) ?
1340 (1 + ext4_bg_num_gdb(sb
, group
+ i
) +
1341 le16_to_cpu(es
->s_reserved_gdt_blocks
)) : 0;
1342 group_data
[i
].free_blocks_count
= blocks_per_group
- overhead
;
1343 if (EXT4_HAS_RO_COMPAT_FEATURE(sb
,
1344 EXT4_FEATURE_RO_COMPAT_GDT_CSUM
))
1345 flex_gd
->bg_flags
[i
] = EXT4_BG_BLOCK_UNINIT
|
1346 EXT4_BG_INODE_UNINIT
;
1348 flex_gd
->bg_flags
[i
] = EXT4_BG_INODE_ZEROED
;
1351 if (last_group
== n_group
&&
1352 EXT4_HAS_RO_COMPAT_FEATURE(sb
,
1353 EXT4_FEATURE_RO_COMPAT_GDT_CSUM
))
1354 /* We need to initialize block bitmap of last group. */
1355 flex_gd
->bg_flags
[i
- 1] &= ~EXT4_BG_BLOCK_UNINIT
;
1357 if ((last_group
== n_group
) && (last
!= blocks_per_group
- 1)) {
1358 group_data
[i
- 1].blocks_count
= last
+ 1;
1359 group_data
[i
- 1].free_blocks_count
-= blocks_per_group
-
1366 /* Add group descriptor data to an existing or new group descriptor block.
1367 * Ensure we handle all possible error conditions _before_ we start modifying
1368 * the filesystem, because we cannot abort the transaction and not have it
1369 * write the data to disk.
1371 * If we are on a GDT block boundary, we need to get the reserved GDT block.
1372 * Otherwise, we may need to add backup GDT blocks for a sparse group.
1374 * We only need to hold the superblock lock while we are actually adding
1375 * in the new group's counts to the superblock. Prior to that we have
1376 * not really "added" the group at all. We re-check that we are still
1377 * adding in the last group in case things have changed since verifying.
1379 int ext4_group_add(struct super_block
*sb
, struct ext4_new_group_data
*input
)
1381 struct ext4_new_flex_group_data flex_gd
;
1382 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
1383 struct ext4_super_block
*es
= sbi
->s_es
;
1384 int reserved_gdb
= ext4_bg_has_super(sb
, input
->group
) ?
1385 le16_to_cpu(es
->s_reserved_gdt_blocks
) : 0;
1386 struct inode
*inode
= NULL
;
1387 int gdb_off
, gdb_num
;
1391 gdb_num
= input
->group
/ EXT4_DESC_PER_BLOCK(sb
);
1392 gdb_off
= input
->group
% EXT4_DESC_PER_BLOCK(sb
);
1394 if (gdb_off
== 0 && !EXT4_HAS_RO_COMPAT_FEATURE(sb
,
1395 EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER
)) {
1396 ext4_warning(sb
, "Can't resize non-sparse filesystem further");
1400 if (ext4_blocks_count(es
) + input
->blocks_count
<
1401 ext4_blocks_count(es
)) {
1402 ext4_warning(sb
, "blocks_count overflow");
1406 if (le32_to_cpu(es
->s_inodes_count
) + EXT4_INODES_PER_GROUP(sb
) <
1407 le32_to_cpu(es
->s_inodes_count
)) {
1408 ext4_warning(sb
, "inodes_count overflow");
1412 if (reserved_gdb
|| gdb_off
== 0) {
1413 if (!EXT4_HAS_COMPAT_FEATURE(sb
,
1414 EXT4_FEATURE_COMPAT_RESIZE_INODE
)
1415 || !le16_to_cpu(es
->s_reserved_gdt_blocks
)) {
1417 "No reserved GDT blocks, can't resize");
1420 inode
= ext4_iget(sb
, EXT4_RESIZE_INO
);
1421 if (IS_ERR(inode
)) {
1422 ext4_warning(sb
, "Error opening resize inode");
1423 return PTR_ERR(inode
);
1428 err
= verify_group_input(sb
, input
);
1433 flex_gd
.groups
= input
;
1434 flex_gd
.bg_flags
= &bg_flags
;
1435 err
= ext4_flex_group_add(sb
, inode
, &flex_gd
);
1439 } /* ext4_group_add */
1442 * extend a group without checking assuming that checking has been done.
1444 static int ext4_group_extend_no_check(struct super_block
*sb
,
1445 ext4_fsblk_t o_blocks_count
, ext4_grpblk_t add
)
1447 struct ext4_super_block
*es
= EXT4_SB(sb
)->s_es
;
1451 /* We will update the superblock, one block bitmap, and
1452 * one group descriptor via ext4_group_add_blocks().
1454 handle
= ext4_journal_start_sb(sb
, 3);
1455 if (IS_ERR(handle
)) {
1456 err
= PTR_ERR(handle
);
1457 ext4_warning(sb
, "error %d on journal start", err
);
1461 err
= ext4_journal_get_write_access(handle
, EXT4_SB(sb
)->s_sbh
);
1463 ext4_warning(sb
, "error %d on journal write access", err
);
1467 ext4_blocks_count_set(es
, o_blocks_count
+ add
);
1468 ext4_debug("freeing blocks %llu through %llu\n", o_blocks_count
,
1469 o_blocks_count
+ add
);
1470 /* We add the blocks to the bitmap and set the group need init bit */
1471 err
= ext4_group_add_blocks(handle
, sb
, o_blocks_count
, add
);
1474 ext4_handle_dirty_super(handle
, sb
);
1475 ext4_debug("freed blocks %llu through %llu\n", o_blocks_count
,
1476 o_blocks_count
+ add
);
1478 err2
= ext4_journal_stop(handle
);
1483 if (test_opt(sb
, DEBUG
))
1484 printk(KERN_DEBUG
"EXT4-fs: extended group to %llu "
1485 "blocks\n", ext4_blocks_count(es
));
1486 update_backups(sb
, EXT4_SB(sb
)->s_sbh
->b_blocknr
, (char *)es
,
1487 sizeof(struct ext4_super_block
));
1493 * Extend the filesystem to the new number of blocks specified. This entry
1494 * point is only used to extend the current filesystem to the end of the last
1495 * existing group. It can be accessed via ioctl, or by "remount,resize=<size>"
1496 * for emergencies (because it has no dependencies on reserved blocks).
1498 * If we _really_ wanted, we could use default values to call ext4_group_add()
1499 * allow the "remount" trick to work for arbitrary resizing, assuming enough
1500 * GDT blocks are reserved to grow to the desired size.
1502 int ext4_group_extend(struct super_block
*sb
, struct ext4_super_block
*es
,
1503 ext4_fsblk_t n_blocks_count
)
1505 ext4_fsblk_t o_blocks_count
;
1508 struct buffer_head
*bh
;
1512 o_blocks_count
= ext4_blocks_count(es
);
1514 if (test_opt(sb
, DEBUG
))
1515 printk(KERN_DEBUG
"EXT4-fs: extending last group from %llu to %llu blocks\n",
1516 o_blocks_count
, n_blocks_count
);
1518 if (n_blocks_count
== 0 || n_blocks_count
== o_blocks_count
)
1521 if (n_blocks_count
> (sector_t
)(~0ULL) >> (sb
->s_blocksize_bits
- 9)) {
1522 printk(KERN_ERR
"EXT4-fs: filesystem on %s:"
1523 " too large to resize to %llu blocks safely\n",
1524 sb
->s_id
, n_blocks_count
);
1525 if (sizeof(sector_t
) < 8)
1526 ext4_warning(sb
, "CONFIG_LBDAF not enabled");
1530 if (n_blocks_count
< o_blocks_count
) {
1531 ext4_warning(sb
, "can't shrink FS - resize aborted");
1535 /* Handle the remaining blocks in the last group only. */
1536 ext4_get_group_no_and_offset(sb
, o_blocks_count
, &group
, &last
);
1539 ext4_warning(sb
, "need to use ext2online to resize further");
1543 add
= EXT4_BLOCKS_PER_GROUP(sb
) - last
;
1545 if (o_blocks_count
+ add
< o_blocks_count
) {
1546 ext4_warning(sb
, "blocks_count overflow");
1550 if (o_blocks_count
+ add
> n_blocks_count
)
1551 add
= n_blocks_count
- o_blocks_count
;
1553 if (o_blocks_count
+ add
< n_blocks_count
)
1554 ext4_warning(sb
, "will only finish group (%llu blocks, %u new)",
1555 o_blocks_count
+ add
, add
);
1557 /* See if the device is actually as big as what was requested */
1558 bh
= sb_bread(sb
, o_blocks_count
+ add
- 1);
1560 ext4_warning(sb
, "can't read last block, resize aborted");
1565 err
= ext4_group_extend_no_check(sb
, o_blocks_count
, add
);
1567 } /* ext4_group_extend */
1570 * ext4_resize_fs() resizes a fs to new size specified by @n_blocks_count
1572 * @sb: super block of the fs to be resized
1573 * @n_blocks_count: the number of blocks resides in the resized fs
1575 int ext4_resize_fs(struct super_block
*sb
, ext4_fsblk_t n_blocks_count
)
1577 struct ext4_new_flex_group_data
*flex_gd
= NULL
;
1578 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
1579 struct ext4_super_block
*es
= sbi
->s_es
;
1580 struct buffer_head
*bh
;
1581 struct inode
*resize_inode
;
1582 ext4_fsblk_t o_blocks_count
;
1583 ext4_group_t o_group
;
1584 ext4_group_t n_group
;
1585 ext4_grpblk_t offset
;
1586 unsigned long n_desc_blocks
;
1587 unsigned long o_desc_blocks
;
1588 unsigned long desc_blocks
;
1589 int err
= 0, flexbg_size
= 1;
1591 o_blocks_count
= ext4_blocks_count(es
);
1593 if (test_opt(sb
, DEBUG
))
1594 printk(KERN_DEBUG
"EXT4-fs: resizing filesystem from %llu "
1595 "upto %llu blocks\n", o_blocks_count
, n_blocks_count
);
1597 if (n_blocks_count
< o_blocks_count
) {
1598 /* On-line shrinking not supported */
1599 ext4_warning(sb
, "can't shrink FS - resize aborted");
1603 if (n_blocks_count
== o_blocks_count
)
1604 /* Nothing need to do */
1607 ext4_get_group_no_and_offset(sb
, n_blocks_count
- 1, &n_group
, &offset
);
1608 ext4_get_group_no_and_offset(sb
, o_blocks_count
, &o_group
, &offset
);
1610 n_desc_blocks
= (n_group
+ EXT4_DESC_PER_BLOCK(sb
)) /
1611 EXT4_DESC_PER_BLOCK(sb
);
1612 o_desc_blocks
= (sbi
->s_groups_count
+ EXT4_DESC_PER_BLOCK(sb
) - 1) /
1613 EXT4_DESC_PER_BLOCK(sb
);
1614 desc_blocks
= n_desc_blocks
- o_desc_blocks
;
1617 (!EXT4_HAS_COMPAT_FEATURE(sb
, EXT4_FEATURE_COMPAT_RESIZE_INODE
) ||
1618 le16_to_cpu(es
->s_reserved_gdt_blocks
) < desc_blocks
)) {
1619 ext4_warning(sb
, "No reserved GDT blocks, can't resize");
1623 resize_inode
= ext4_iget(sb
, EXT4_RESIZE_INO
);
1624 if (IS_ERR(resize_inode
)) {
1625 ext4_warning(sb
, "Error opening resize inode");
1626 return PTR_ERR(resize_inode
);
1629 /* See if the device is actually as big as what was requested */
1630 bh
= sb_bread(sb
, n_blocks_count
- 1);
1632 ext4_warning(sb
, "can't read last block, resize aborted");
1638 /* extend the last group */
1640 add
= EXT4_BLOCKS_PER_GROUP(sb
) - offset
;
1641 err
= ext4_group_extend_no_check(sb
, o_blocks_count
, add
);
1646 if (EXT4_HAS_INCOMPAT_FEATURE(sb
, EXT4_FEATURE_INCOMPAT_FLEX_BG
) &&
1647 es
->s_log_groups_per_flex
)
1648 flexbg_size
= 1 << es
->s_log_groups_per_flex
;
1650 o_blocks_count
= ext4_blocks_count(es
);
1651 if (o_blocks_count
== n_blocks_count
)
1654 flex_gd
= alloc_flex_gd(flexbg_size
);
1655 if (flex_gd
== NULL
) {
1660 /* Add flex groups. Note that a regular group is a
1661 * flex group with 1 group.
1663 while (ext4_setup_next_flex_gd(sb
, flex_gd
, n_blocks_count
,
1665 ext4_alloc_group_tables(sb
, flex_gd
, flexbg_size
);
1666 err
= ext4_flex_group_add(sb
, resize_inode
, flex_gd
);
1673 free_flex_gd(flex_gd
);
1676 if (test_opt(sb
, DEBUG
))
1677 printk(KERN_DEBUG
"EXT4-fs: resized filesystem from %llu "
1678 "upto %llu blocks\n", o_blocks_count
, n_blocks_count
);