ChangeLog, closefs.c, ext2fs.h, jump.funcs, super.c:

Rename _ext2fs_update_fs_dynamic_rev to _ext2fs_update_dynamic_rev
bitmap-optimize
Theodore Ts'o 2000-12-13 18:36:23 +00:00
parent 7b59f1efb1
commit a917d1ccf4
5 changed files with 5 additions and 5 deletions

View File

@ -485,7 +485,7 @@ void check_super_block(e2fsck_t ctx)
fs->super->s_feature_ro_compat ||
fs->super->s_feature_incompat) &&
fix_problem(ctx, PR_0_FS_REV_LEVEL, &pctx)) {
ext2fs_update_fs_rev(fs);
ext2fs_update_dynamic_rev(fs);
ext2fs_mark_super_dirty(fs);
}

View File

@ -1,6 +1,6 @@
2000-12-13 Theodore Ts'o <tytso@valinux.com>
* closefs.c (ext2fs_update_fs_dynamic_rev): New function suggested
* closefs.c (ext2fs_update_dynamic_rev): New function suggested
by Andreas Dilger to update the filesystem revision to
EXT2_DYNAMIC_REV.

View File

@ -109,7 +109,7 @@ static errcode_t write_primary_superblock(ext2_filsys fs,
/*
* Updates the revision to EXT2_DYNAMIC_REV
*/
void ext2fs_update_fs_dynamic_rev(ext2_filsys fs)
void ext2fs_update_dynamic_rev(ext2_filsys fs)
{
struct ext2_super_block *sb = fs->super;

View File

@ -173,4 +173,4 @@
00000000 T _ext2fs_read_bb_FILE2 libext2fs read_bb_file
00000000 T _ext2fs_write_bb_FILE libext2fs write_bb_file
00000000 T _ext2fs_badblocks_equal libext2fs badblocks
00000000 T _ext2fs_update_fs_dynamic_rev libext2fs closefs
00000000 T _ext2fs_update_dynamic_rev libext2fs closefs

View File

@ -646,7 +646,7 @@ extern errcode_t ext2fs_check_desc(ext2_filsys fs);
extern errcode_t ext2fs_close(ext2_filsys fs);
extern errcode_t ext2fs_flush(ext2_filsys fs);
extern int ext2fs_bg_has_super(ext2_filsys fs, int group_block);
extern void ext2fs_update_fs_dynamic_rev(ext2_filsys fs);
extern void ext2fs_update_dynamic_rev(ext2_filsys fs);
/* cmp_bitmaps.c */
extern errcode_t ext2fs_compare_block_bitmap(ext2fs_block_bitmap bm1,