All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ext4: remove set but rewrite variables
@ 2021-05-17  2:56 Tian Tao
  2021-05-17  8:05 ` Благодаренко Артём
  0 siblings, 1 reply; 4+ messages in thread
From: Tian Tao @ 2021-05-17  2:56 UTC (permalink / raw)
  To: tytso, adilger.kernel; +Cc: linux-ext4, Tian Tao

In line 2500 of the ext4_dx_add_entry function, the at variable is
assigned but not used, and it is reassigned in line 2449, so delete
the assignment of the at variable in line 2500.

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
---
 fs/ext4/namei.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index afb9d05..18bbf15 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -2497,7 +2497,7 @@ static int ext4_dx_add_entry(handle_t *handle, struct ext4_filename *fname,
 
 			/* Which index block gets the new entry? */
 			if (at - entries >= icount1) {
-				frame->at = at = at - entries - icount1 + entries2;
+				frame->at = at - entries - icount1 + entries2;
 				frame->entries = entries = entries2;
 				swap(frame->bh, bh2);
 			}
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-05-17  9:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-17  2:56 [PATCH] ext4: remove set but rewrite variables Tian Tao
2021-05-17  8:05 ` Благодаренко Артём
2021-05-17  8:44   ` tiantao (H)
2021-05-17  9:18     ` Благодаренко Артём

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.