Skip to content

Commit dfff66f

Browse files
Ye Bintytso
Ye Bin
authored andcommitted
jbd2: add miss release buffer head in fc_do_one_pass()
In fc_do_one_pass() miss release buffer head after use which will lead to reference count leak. Cc: [email protected] Signed-off-by: Ye Bin <[email protected]> Reviewed-by: Jan Kara <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Theodore Ts'o <[email protected]>
1 parent 3df11e2 commit dfff66f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

fs/jbd2/recovery.c

+1
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ static int fc_do_one_pass(journal_t *journal,
256256
err = journal->j_fc_replay_callback(journal, bh, pass,
257257
next_fc_block - journal->j_fc_first,
258258
expected_commit_id);
259+
brelse(bh);
259260
next_fc_block++;
260261
if (err < 0 || err == JBD2_FC_REPLAY_STOP)
261262
break;

0 commit comments

Comments
 (0)