diff options
| author | Ye Bin <[email protected]> | 2024-04-07 06:53:54 +0000 |
|---|---|---|
| committer | Theodore Ts'o <[email protected]> | 2024-05-09 14:52:31 +0000 |
| commit | 078760d950016f5982751f5512e69f26ad8feb31 (patch) | |
| tree | 290ef513133c519a9c198340988bede8cc5e24ad /fs/jbd2/commit.c | |
| parent | ext4: fix uninitialized ratelimit_state->lock access in __ext4_fill_super() (diff) | |
| download | kernel-078760d950016f5982751f5512e69f26ad8feb31.tar.gz kernel-078760d950016f5982751f5512e69f26ad8feb31.zip | |
jbd2: use shrink_type type instead of bool type for __jbd2_journal_clean_checkpoint_list()
"enum shrink_type" can clearly express the meaning of the parameter of
__jbd2_journal_clean_checkpoint_list(), and there is no need to use the
bool type.
Signed-off-by: Ye Bin <[email protected]>
Reviewed-by: Jan Kara <[email protected]>
Reviewed-by: Zhang Yi <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Theodore Ts'o <[email protected]>
Diffstat (limited to 'fs/jbd2/commit.c')
| -rw-r--r-- | fs/jbd2/commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jbd2/commit.c b/fs/jbd2/commit.c index 78a9d08ae9f8..b341c396311b 100644 --- a/fs/jbd2/commit.c +++ b/fs/jbd2/commit.c @@ -501,7 +501,7 @@ void jbd2_journal_commit_transaction(journal_t *journal) * frees some memory */ spin_lock(&journal->j_list_lock); - __jbd2_journal_clean_checkpoint_list(journal, false); + __jbd2_journal_clean_checkpoint_list(journal, SHRINK_BUSY_STOP); spin_unlock(&journal->j_list_lock); jbd2_debug(3, "JBD2: commit phase 1\n"); |
