Whamcloud - gitweb
LU-11545 debugfs: allow <inode> for ncheck
[tools/e2fsprogs.git] / doc / RelNotes / v1.43.1.txt
1 E2fsprogs 1.43.1 (June 8, 2016)
2 ===============================
3
4 Fixed e2fsck so that it would correctly update the project quota usage
5 when deleting a corrupted and inode, and fixed mke2fs so it wouldn't
6 dereference memory beyond the small inode structure (which was wrong,
7 but worked mostly by accident unless hardening or some security malloc
8 was in use).
9
10 Fixed a large number of FreeBSD portability problems.  (To build on
11 FreeBSD, however, we still need to use GNU Make and redirect dd to use
12 GNU dd.)
13
14 The configure script now supports --enable-hardening, which enables
15 stack protection, fortify, read-only relocation tables, immediate
16 dynamic symbol binding, and text segment ASLR (if the kernel has
17 userspace ASLR support enabled) by enabling position independent
18 executable code.  (Distributions who want to do their own special
19 thing can set CFLAGS, CFLAGS_SHLIB, CLFAGS_STLIB, LDFLAGS,
20 LDFLAGS_SHLIB and LDFLAGS_STATIC as appropriate.)
21
22 The configure script now supports --disable-tdb since on 64-bit
23 systems, it's much faster to just enable additional swap space.  The
24 scratch_files feature in e2fsck.conf is mostly only useful on 32-bit
25 systems.
26
27 Fixed the Direct I/O fallback codepath in the Unix I/O manager so that
28 read/modify/write worked correctly.  Fortunately in practice (with the
29 exception of the Undo handler when running on FreeBSD) used this buggy
30 codepath. so file systems weren't getting corrupted.
31
32 Mke2fs will now warn if the user provides a label which is too long.
33 (Addresses Debian Bug: #791630)
34
35 Debugfs's rdump command now works correctly when dumping the root
36 directory of a file system.  (Addresses Debian Bug: #766125)
37
38 Fixed a bug in debugfs so it would correctly calculate a block group's
39 checksum field field on 64-bit systems.
40
41 E2fsck now has a much more understandable error message when the
42 journal superblock is corrupt and the user declines to fix it.
43 (Addresses Debian Bug: #768162)
44
45 Fixed support of extended timestamps on 64-bit systems.
46
47 Updated/fixed various man pages.  (Addresses Debian Bugs: #766379,
48 #761144, #770750, #428361, #766127)
49
50 Fixed various Debian Packaging Issues.  (Addresses Debian Bug: #825868)
51
52
53 Programming notes
54 -----------------
55
56 Fixed coverity, sparse, gcc -Wall, and clang warnings/nits.
57
58 Fixed Android build makefiles (which was missing a newly added file in
59 lib/support).
60
61 In general, checks on s_creator_os have been removed in favor of
62 feature flag specific checks; if there is something that can't be
63 checked via the presence of a feature flag, we will simply check
64 whether the creator OS is *not* EXT2_OS_HURD which is the one
65 operating system where there has been extensive abuse of the
66 s_creator_os flag.
67
68 The libmagic library has been suppressed when running the regression
69 test suite to avoid false test failures caused by differences between
70 versions of libmagic (and/or the magic number database).
71
72 The tests/test_script program now accepts the --failed option, which
73 will run those tests that had previously failed.
74
75 Fixed tests build on those systems which require LDFLAGS to be set.
76
77 Fixed the regression test suite so it will properly filter out version
78 numbers with two components (such as 1.43) from log files before
79 comparing them with the expected golden output.
80