]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
jbd2: remove redundant assignement to variable err
authorColin Ian King <colin.i.king@gmail.com>
Wed, 10 Apr 2024 11:28:03 +0000 (12:28 +0100)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 7 May 2024 19:52:20 +0000 (15:52 -0400)
The variable err is being assigned a value that is never read, it
is being re-assigned inside the following while loop and also
after the while loop. The assignment is redundant and can be
removed.

Cleans up clang scan build warning:
fs/jbd2/commit.c:574:2: warning: Value stored to 'err' is never
read [deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20240410112803.232993-1-colin.i.king@gmail.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/jbd2/commit.c

index 5e122586e06ed0f9b9a36ebfe089ca7b3a75aee8..78a9d08ae9f85c2c1b14facdc0fcd376b8faa419 100644 (file)
@@ -571,7 +571,6 @@ void jbd2_journal_commit_transaction(journal_t *journal)
        J_ASSERT(commit_transaction->t_nr_buffers <=
                 atomic_read(&commit_transaction->t_outstanding_credits));
 
-       err = 0;
        bufs = 0;
        descriptor = NULL;
        while (commit_transaction->t_buffers) {