mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-12-28 11:20:36 +08:00
ChangeLog, pass1.c:
pass1.c (e2fsck_pass1): Offer to update the filesystem revision level if we need to set large files flag. Patch from Andreas Dilger.
This commit is contained in:
parent
a917d1ccf4
commit
8188c9e6b3
@ -1,5 +1,9 @@
|
||||
2000-12-13 Theodore Ts'o <tytso@valinux.com>
|
||||
|
||||
* pass1.c (e2fsck_pass1): Offer to update the filesystem revision
|
||||
level if we need to set large files flag. Patch from
|
||||
Andreas Dilger.
|
||||
|
||||
* super.c (check_super_block): If we have any of the compatibility
|
||||
flags set, we need to have a revision 1 filesystem. Most
|
||||
kernels will not check the flags on a rev 0 filesystem
|
||||
|
@ -606,14 +606,19 @@ endit:
|
||||
|
||||
ext2fs_free_mem((void **) &block_buf);
|
||||
|
||||
if (ctx->large_files &&
|
||||
!(sb->s_feature_ro_compat &
|
||||
EXT2_FEATURE_RO_COMPAT_LARGE_FILE)) {
|
||||
if (fix_problem(ctx, PR_1_FEATURE_LARGE_FILES, &pctx)) {
|
||||
sb->s_feature_ro_compat |=
|
||||
if (ctx->large_files) {
|
||||
if (!EXT2_HAS_RO_COMPAT_FEATURE(sb,
|
||||
EXT2_FEATURE_RO_COMPAT_LARGE_FILE) &&
|
||||
fix_problem(ctx, PR_1_FEATURE_LARGE_FILES, &pctx)) {
|
||||
sb->s_feature_ro_compat |=
|
||||
EXT2_FEATURE_RO_COMPAT_LARGE_FILE;
|
||||
ext2fs_mark_super_dirty(fs);
|
||||
}
|
||||
if (sb->s_rev_level == EXT2_GOOD_OLD_REV &&
|
||||
fix_problem(ctx, PR_1_FS_REV_LEVEL, &pctx)) {
|
||||
ext2fs_update_dynamic_rev(fs);
|
||||
ext2fs_mark_super_dirty(fs);
|
||||
}
|
||||
} else if (!ctx->large_files &&
|
||||
(sb->s_feature_ro_compat &
|
||||
EXT2_FEATURE_RO_COMPAT_LARGE_FILE)) {
|
||||
|
Loading…
Reference in New Issue
Block a user