fs/ntfs3: Remove redundant assignment to variable frame
authorColin Ian King <colin.i.king@gmail.com>
Thu, 30 Dec 2021 15:59:00 +0000 (18:59 +0300)
committerKonstantin Komarov <almaz.alexandrovich@paragon-software.com>
Tue, 7 Jun 2022 16:40:24 +0000 (19:40 +0300)
Variable frame is assigned a value that is never read. The
assignment is redundant and can be removed. Cleans up the
clang-scan build warning:

fs/ntfs3/file.c:995:3: warning: Value stored to 'frame' is
never read [deadcode.DeadStores]
                frame = pos >> frame_bits;

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
fs/ntfs3/file.c

index 3bae769..27c3269 100644 (file)
@@ -992,7 +992,6 @@ static ssize_t ntfs_compress_write(struct kiocb *iocb, struct iov_iter *from)
                if (bytes > count)
                        bytes = count;
 
-               frame = pos >> frame_bits;
                frame_vbo = pos & ~(frame_size - 1);
                index = frame_vbo >> PAGE_SHIFT;