diff mbox series

ext4: remove useless resetting io_end_size in mpage_process_page()

Message ID 20211025221803.3326-1-nghialm78@gmail.com
State Awaiting Upstream
Headers show
Series ext4: remove useless resetting io_end_size in mpage_process_page() | expand

Commit Message

Nghia Le Oct. 25, 2021, 10:18 p.m. UTC
The command "make clang-analyzer" detects dead stores in
mpage_process_page() function.

Do not reset io_end_size to 0 in the current paths, as the function
exits on those paths without further using io_end_size.

Signed-off-by: Nghia Le <nghialm78@gmail.com>
---
 fs/ext4/inode.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Theodore Ts'o Jan. 5, 2022, 11:39 p.m. UTC | #1
On Tue, 26 Oct 2021 05:18:03 +0700, Nghia Le wrote:
> The command "make clang-analyzer" detects dead stores in
> mpage_process_page() function.
> 
> Do not reset io_end_size to 0 in the current paths, as the function
> exits on those paths without further using io_end_size.
> 
> 
> [...]

Applied, thanks!

[1/1] ext4: remove useless resetting io_end_size in mpage_process_page()
      commit: 2e1a1101de1e37c80c750c2657cc35d7f560756c

Best regards,
diff mbox series

Patch

diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index 0f06305167d5..03efed2ed1ea 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -2260,7 +2260,6 @@  static int mpage_process_page(struct mpage_da_data *mpd, struct page *page,
 			mpd->map.m_len = 0;
 			mpd->map.m_flags = 0;
 			io_end_vec->size += io_end_size;
-			io_end_size = 0;
 
 			err = mpage_process_page_bufs(mpd, head, bh, lblk);
 			if (err > 0)
@@ -2285,7 +2284,6 @@  static int mpage_process_page(struct mpage_da_data *mpd, struct page *page,
 	} while (lblk++, (bh = bh->b_this_page) != head);
 
 	io_end_vec->size += io_end_size;
-	io_end_size = 0;
 	*map_bh = false;
 out:
 	*m_lblk = lblk;