diff options
author | Ding Xiang <dingxiang@cmss.chinamobile.com> | 2022-05-30 18:00:47 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-06-25 11:45:18 +0200 |
commit | 984ceb2fc8f2b8cd7d38f9702ba5586c30804153 (patch) | |
tree | d62b869a96adeb709d190c787486adf7569435be /fs | |
parent | 6880fb2e64331b9fdc85d3f32b1d7e81ad8703f1 (diff) | |
download | linux-stable-984ceb2fc8f2b8cd7d38f9702ba5586c30804153.tar.gz linux-stable-984ceb2fc8f2b8cd7d38f9702ba5586c30804153.tar.bz2 linux-stable-984ceb2fc8f2b8cd7d38f9702ba5586c30804153.zip |
ext4: make variable "count" signed
commit bc75a6eb856cb1507fa907bf6c1eda91b3fef52f upstream.
Since dx_make_map() may return -EFSCORRUPTED now, so change "count" to
be a signed integer so we can correctly check for an error code returned
by dx_make_map().
Fixes: 46c116b920eb ("ext4: verify dir block before splitting it")
Cc: stable@kernel.org
Signed-off-by: Ding Xiang <dingxiang@cmss.chinamobile.com>
Link: https://lore.kernel.org/r/20220530100047.537598-1-dingxiang@cmss.chinamobile.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/namei.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 159d259e5e5e..edf78728ed32 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c @@ -1726,7 +1726,8 @@ static struct ext4_dir_entry_2 *do_split(handle_t *handle, struct inode *dir, struct dx_hash_info *hinfo) { unsigned blocksize = dir->i_sb->s_blocksize; - unsigned count, continued; + unsigned continued; + int count; struct buffer_head *bh2; ext4_lblk_t newblock; u32 hash2; |