]> git.dujemihanovic.xyz Git - linux.git/commitdiff
jbd2: use shrink_type type instead of bool type for __jbd2_journal_clean_checkpoint_l...
authorYe Bin <yebin10@huawei.com>
Sun, 7 Apr 2024 06:53:54 +0000 (14:53 +0800)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 9 May 2024 14:52:31 +0000 (10:52 -0400)
"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 <yebin10@huawei.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Reviewed-by: Zhang Yi <yi.zhang@huawei.com>
Link: https://lore.kernel.org/r/20240407065355.1528580-2-yebin10@huawei.com
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/jbd2/checkpoint.c
fs/jbd2/commit.c
include/linux/jbd2.h

index 1c97e64c478496bee8dd0615ad6ea261a2426d56..80c0ab98bc6390cd3594d6df625ced656171b5bd 100644 (file)
@@ -337,8 +337,6 @@ int jbd2_cleanup_journal_tail(journal_t *journal)
 
 /* Checkpoint list management */
 
-enum shrink_type {SHRINK_DESTROY, SHRINK_BUSY_STOP, SHRINK_BUSY_SKIP};
-
 /*
  * journal_shrink_one_cp_list
  *
@@ -472,21 +470,25 @@ out:
  * journal_clean_checkpoint_list
  *
  * Find all the written-back checkpoint buffers in the journal and release them.
- * If 'destroy' is set, release all buffers unconditionally.
+ * If 'type' is SHRINK_DESTROY, release all buffers unconditionally. If 'type'
+ * is SHRINK_BUSY_STOP, will stop release buffers if encounters a busy buffer.
+ * To avoid wasting CPU cycles scanning the buffer list in some cases, don't
+ * pass SHRINK_BUSY_SKIP 'type' for this function.
  *
  * Called with j_list_lock held.
  */
-void __jbd2_journal_clean_checkpoint_list(journal_t *journal, bool destroy)
+void __jbd2_journal_clean_checkpoint_list(journal_t *journal,
+                                         enum shrink_type type)
 {
        transaction_t *transaction, *last_transaction, *next_transaction;
-       enum shrink_type type;
        bool released;
 
+       WARN_ON_ONCE(type == SHRINK_BUSY_SKIP);
+
        transaction = journal->j_checkpoint_transactions;
        if (!transaction)
                return;
 
-       type = destroy ? SHRINK_DESTROY : SHRINK_BUSY_STOP;
        last_transaction = transaction->t_cpprev;
        next_transaction = transaction;
        do {
@@ -527,7 +529,7 @@ void jbd2_journal_destroy_checkpoint(journal_t *journal)
                        spin_unlock(&journal->j_list_lock);
                        break;
                }
-               __jbd2_journal_clean_checkpoint_list(journal, true);
+               __jbd2_journal_clean_checkpoint_list(journal, SHRINK_DESTROY);
                spin_unlock(&journal->j_list_lock);
                cond_resched();
        }
index 78a9d08ae9f85c2c1b14facdc0fcd376b8faa419..b341c396311b492cb0c67caada90f03b2e409fec 100644 (file)
@@ -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");
index 971f3e826e15280ef00df8906398a9c83efbf6e4..58a961999d7043ad2c488c048a2ccc00945611e7 100644 (file)
@@ -1434,7 +1434,9 @@ void jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block);
 extern void jbd2_journal_commit_transaction(journal_t *);
 
 /* Checkpoint list management */
-void __jbd2_journal_clean_checkpoint_list(journal_t *journal, bool destroy);
+enum shrink_type {SHRINK_DESTROY, SHRINK_BUSY_STOP, SHRINK_BUSY_SKIP};
+
+void __jbd2_journal_clean_checkpoint_list(journal_t *journal, enum shrink_type type);
 unsigned long jbd2_journal_shrink_checkpoint_list(journal_t *journal, unsigned long *nr_to_scan);
 int __jbd2_journal_remove_checkpoint(struct journal_head *);
 int jbd2_journal_try_remove_checkpoint(struct journal_head *jh);