]> git.itanic.dy.fi Git - linux-stable/commit
ext4: fix special inode number checks in __ext4_iget()
authorTheodore Ts'o <tytso@mit.edu>
Tue, 1 Jan 2019 03:34:31 +0000 (22:34 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 5 May 2020 17:14:29 +0000 (19:14 +0200)
commitfb57d4e291ff7c618587df2fb7a3d38e18ac1c4d
tree9bd2e19a7084994a1239f573b74b950d29898a19
parent775dfa8c1c635c82fa077d31f4b3c6dbf4fd3d9b
ext4: fix special inode number checks in __ext4_iget()

commit 191ce17876c9367819c4b0a25b503c0f6d9054d8 upstream.

The check for special (reserved) inode number checks in __ext4_iget()
was broken by commit 8a363970d1dc: ("ext4: avoid declaring fs
inconsistent due to invalid file handles").  This was caused by a
botched reversal of the sense of the flag now known as
EXT4_IGET_SPECIAL (when it was previously named EXT4_IGET_NORMAL).
Fix the logic appropriately.

Fixes: 8a363970d1dc ("ext4: avoid declaring fs inconsistent...")
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Cc: stable@kernel.org
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/inode.c