ext4: fix check to prevent initializing reserved inodes
authorTheodore Ts'o <tytso@mit.edu>
Sat, 28 Jul 2018 12:12:04 +0000 (08:12 -0400)
committerJianxin Pan <jianxin.pan@amlogic.com>
Thu, 9 Aug 2018 06:10:57 +0000 (23:10 -0700)
commita8b6fdf0f39129269bd2d645b4075c129d22eb19
tree6e599cce3ea91d83ae3201692a70819600c70fdb
parent73cde5ceafb615ea3f657dacc12b73146399b8b4
ext4: fix check to prevent initializing reserved inodes

Commit 8844618d8aa7: "ext4: only look at the bg_flags field if it is
valid" will complain if block group zero does not have the
EXT4_BG_INODE_ZEROED flag set.  Unfortunately, this is not correct,
since a freshly created file system has this flag cleared.  It gets
almost immediately after the file system is mounted read-write --- but
the following somewhat unlikely sequence will end up triggering a
false positive report of a corrupted file system:

   mkfs.ext4 /dev/vdc
   mount -o ro /dev/vdc /vdc
   mount -o remount,rw /dev/vdc

Instead, when initializing the inode table for block group zero, test
to make sure that itable_unused count is not too large, since that is
the case that will result in some or all of the reserved inodes
getting cleared.

This fixes the failures reported by Eric Whiteney when running
generic/230 and generic/231 in the the nojournal test case.

Change-Id: I3967036c1d84cc69798b7c948420735c623c9ae8
Fixes: 8844618d8aa7 ("ext4: only look at the bg_flags field if it is valid")
Reported-by: Eric Whitney <enwlinux@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/ialloc.c
fs/ext4/super.c