diff options
| author | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2024-10-14 13:52:42 +0300 |
|---|---|---|
| committer | Konstantin Komarov <almaz.alexandrovich@paragon-software.com> | 2024-11-01 11:19:52 +0300 |
| commit | db1d2b4cc9c654d18dd17c65a14de2da78bdf998 (patch) | |
| tree | 70125e6fd94420fdd96c70f140cafcd6e6c10ef3 /fs/ntfs3 | |
| parent | fs/ntfs3: Add more checks in mi_enum_attr (part 2) (diff) | |
| download | linux-db1d2b4cc9c654d18dd17c65a14de2da78bdf998.tar.gz linux-db1d2b4cc9c654d18dd17c65a14de2da78bdf998.zip | |
fs/ntfs3: Add check in ntfs_extend_initialized_size
Check arguments again after lock.
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Diffstat (limited to 'fs/ntfs3')
| -rw-r--r-- | fs/ntfs3/file.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ntfs3/file.c b/fs/ntfs3/file.c index f704ceef9539..0063e2351aa9 100644 --- a/fs/ntfs3/file.c +++ b/fs/ntfs3/file.c @@ -182,13 +182,15 @@ static int ntfs_extend_initialized_size(struct file *file, loff_t pos = valid; int err; + if (valid >= new_valid) + return 0; + if (is_resident(ni)) { ni->i_valid = new_valid; return 0; } WARN_ON(is_compressed(ni)); - WARN_ON(valid >= new_valid); for (;;) { u32 zerofrom, len; |
