Whamcloud - gitweb
LU-11545 debugfs: allow <inode> for ncheck
[tools/e2fsprogs.git] / doc / RelNotes / v1.10.txt
1 E2fsprogs 1.10 (April 24, 1997)
2 ===============================
3
4 Mke2fs once again defaults to creating revision #0 filesystems, since
5 people were complaining about breaking compatibility with 1.2 kernels.
6 Warning messages were added to the mke2fs and tune2fs man pages that
7 the sparse superblock option isn't supported by most kernels yet (1.2
8 and 2.0 both don't support parse superblocks.)
9
10 Added new flag to mke2fs, -R <raid options>, which allows the user to
11 tell mke2fs about the RAID configuration of the filesystem.  Currently
12 the only supported raid option is "stride" which specifies the width
13 of the RAID stripe.
14
15 Fixed bug in e2fsck where pass1b would bomb out if there were any
16 blocks marked bad in the inode table.
17
18 Fixed rare bug in mke2fs where if the user had a very unlucky number
19 of blocks in a filesystem (probability less than .002) the resulting
20 filesystem would be corrupt in the last block group.
21
22 Fixed bug where if e2fsck tried to allocate a block to fix a
23 filesystem corruption problem and the filesystem had no free blocks,
24 ext2fs_new_block() would loop forever.
25
26 The configure script now checks explicitly to see if "-static" works,
27 since that can't be assumed to be true --- RedHat doesn't install
28 libc-static by default.
29
30 Fixed bug in libext2's block iterator functions where under some
31 circumstances, file with holes would cause the bcount parameter to the
32 callback function to be incorrect.  This bug didn't affect any of
33 e2fsprogs programs, but it was discovered by Paul Mackerras, the
34 author of the PPC boot loader.
35
36 Removed use of static variables to store the inode cache in libext2fs.
37 This caused problems if more than one filesystem was accessed via
38 libext2fs (static variables in libraries are generally a bad idea).
39 Again, this didn't affect e2fsprogs programs, but it was discovered by
40 Paul Mackerras.
41
42 Fixed minor bugs and version code drift to assure that e2fsprogs 1.10
43 will compile cleanly with 1.2.13 kernels (even with a.out shared
44 libraries!)
45
46 Programmer's notes:
47 -------------------
48
49 Added new functions to duplicate an ext2 filesystem handle, and its
50 associated substructure.  New functions: ext2fs_dup_handle(),
51 ext2fs_copy_dblist(), ext2fs_badblocks_copy(), ext2fs_copy_bitmap().
52 Other structures, such as the io_channel and the inode_cache, now have
53 a ref count so that they only get freed when they are no longer used
54 by any filesystem handle.  (These functions were added as part of the
55 development effort for an ext2 resizer).
56