ChangeLog, swapfs.c:

swapfs.c (ext2fs_swap_super): Swap the compression usage bitmap.
bitmap-optimize
Theodore Ts'o 2000-02-11 15:39:19 +00:00
parent 8f3f29d383
commit 2c1a0ce7c6
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-02-11 <tytso@snap.thunk.org>
* swapfs.c (ext2fs_swap_super): Swap the compression usage bitmap.
2000-02-08 <tytso@snap.thunk.org>
* bitops.h (ext2fs_mark_generic_bitmap, ext2fs_unmark_generic_bitmap,

View File

@ -60,6 +60,7 @@ void ext2fs_swap_super(struct ext2_super_block * super)
s->s_feature_compat = ext2fs_swab32(s->s_feature_compat);
s->s_feature_incompat = ext2fs_swab32(s->s_feature_incompat);
s->s_feature_ro_compat = ext2fs_swab32(s->s_feature_ro_compat);
s->s_algorithm_usage_bitmap = ext2fs_swab32(s->s_algorithm_usage_bitmap);
}
void ext2fs_swap_group_desc(struct ext2_group_desc *gdp)