diff options
author | Colin Ian King <colin.king@canonical.com> | 2019-05-10 22:06:38 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-09-16 08:22:24 +0200 |
commit | ff69322509bb3f48c4e08cc3bef7c414519a7862 (patch) | |
tree | c844054a6aaeb9a3ba1be17c9d75a5f109064408 /fs | |
parent | 292666d2d868f30a55f6d5f15c5a1a16a38a99c5 (diff) | |
download | linux-stable-ff69322509bb3f48c4e08cc3bef7c414519a7862.tar.gz linux-stable-ff69322509bb3f48c4e08cc3bef7c414519a7862.tar.bz2 linux-stable-ff69322509bb3f48c4e08cc3bef7c414519a7862.zip |
ext4: unsigned int compared against zero
[ Upstream commit fbbbbd2f28aec991f3fbc248df211550fbdfd58c ]
There are two cases where u32 variables n and err are being checked
for less than zero error values, the checks is always false because
the variables are not signed. Fix this by making the variables ints.
Addresses-Coverity: ("Unsigned compared against 0")
Fixes: 345c0dbf3a30 ("ext4: protect journal inode's blocks using block_validity")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/block_validity.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext4/block_validity.c b/fs/ext4/block_validity.c index cd7129b622f8..e8e27cdc2f67 100644 --- a/fs/ext4/block_validity.c +++ b/fs/ext4/block_validity.c @@ -142,7 +142,8 @@ static int ext4_protect_reserved_inode(struct super_block *sb, u32 ino) struct inode *inode; struct ext4_sb_info *sbi = EXT4_SB(sb); struct ext4_map_blocks map; - u32 i = 0, err = 0, num, n; + u32 i = 0, num; + int err = 0, n; if ((ino < EXT4_ROOT_INO) || (ino > le32_to_cpu(sbi->s_es->s_inodes_count))) |