Lines Matching refs:jh
30 static inline void __buffer_unlink_first(struct journal_head *jh) in __buffer_unlink_first() argument
32 transaction_t *transaction = jh->b_cp_transaction; in __buffer_unlink_first()
34 jh->b_cpnext->b_cpprev = jh->b_cpprev; in __buffer_unlink_first()
35 jh->b_cpprev->b_cpnext = jh->b_cpnext; in __buffer_unlink_first()
36 if (transaction->t_checkpoint_list == jh) { in __buffer_unlink_first()
37 transaction->t_checkpoint_list = jh->b_cpnext; in __buffer_unlink_first()
38 if (transaction->t_checkpoint_list == jh) in __buffer_unlink_first()
48 static inline void __buffer_unlink(struct journal_head *jh) in __buffer_unlink() argument
50 transaction_t *transaction = jh->b_cp_transaction; in __buffer_unlink()
52 __buffer_unlink_first(jh); in __buffer_unlink()
53 if (transaction->t_checkpoint_io_list == jh) { in __buffer_unlink()
54 transaction->t_checkpoint_io_list = jh->b_cpnext; in __buffer_unlink()
55 if (transaction->t_checkpoint_io_list == jh) in __buffer_unlink()
65 static inline void __buffer_relink_io(struct journal_head *jh) in __buffer_relink_io() argument
67 transaction_t *transaction = jh->b_cp_transaction; in __buffer_relink_io()
69 __buffer_unlink_first(jh); in __buffer_relink_io()
72 jh->b_cpnext = jh->b_cpprev = jh; in __buffer_relink_io()
74 jh->b_cpnext = transaction->t_checkpoint_io_list; in __buffer_relink_io()
75 jh->b_cpprev = transaction->t_checkpoint_io_list->b_cpprev; in __buffer_relink_io()
76 jh->b_cpprev->b_cpnext = jh; in __buffer_relink_io()
77 jh->b_cpnext->b_cpprev = jh; in __buffer_relink_io()
79 transaction->t_checkpoint_io_list = jh; in __buffer_relink_io()
89 static int __try_to_free_cp_buf(struct journal_head *jh) in __try_to_free_cp_buf() argument
92 struct buffer_head *bh = jh2bh(jh); in __try_to_free_cp_buf()
94 if (jh->b_transaction == NULL && !buffer_locked(bh) && in __try_to_free_cp_buf()
96 JBUFFER_TRACE(jh, "remove from checkpoint list"); in __try_to_free_cp_buf()
97 ret = __jbd2_journal_remove_checkpoint(jh) + 1; in __try_to_free_cp_buf()
208 struct journal_head *jh; in jbd2_log_do_checkpoint() local
251 jh = transaction->t_checkpoint_list; in jbd2_log_do_checkpoint()
252 bh = jh2bh(jh); in jbd2_log_do_checkpoint()
263 if (jh->b_transaction != NULL) { in jbd2_log_do_checkpoint()
264 transaction_t *t = jh->b_transaction; in jbd2_log_do_checkpoint()
301 if (__jbd2_journal_remove_checkpoint(jh)) in jbd2_log_do_checkpoint()
318 __buffer_relink_io(jh); in jbd2_log_do_checkpoint()
347 jh = transaction->t_checkpoint_io_list; in jbd2_log_do_checkpoint()
348 bh = jh2bh(jh); in jbd2_log_do_checkpoint()
367 if (__jbd2_journal_remove_checkpoint(jh)) in jbd2_log_do_checkpoint()
436 static int journal_clean_one_cp_list(struct journal_head *jh, bool destroy) in journal_clean_one_cp_list() argument
439 struct journal_head *next_jh = jh; in journal_clean_one_cp_list()
442 if (!jh) in journal_clean_one_cp_list()
445 last_jh = jh->b_cpprev; in journal_clean_one_cp_list()
447 jh = next_jh; in journal_clean_one_cp_list()
448 next_jh = jh->b_cpnext; in journal_clean_one_cp_list()
450 ret = __try_to_free_cp_buf(jh); in journal_clean_one_cp_list()
452 ret = __jbd2_journal_remove_checkpoint(jh) + 1; in journal_clean_one_cp_list()
465 } while (jh != last_jh); in journal_clean_one_cp_list()
562 int __jbd2_journal_remove_checkpoint(struct journal_head *jh) in __jbd2_journal_remove_checkpoint() argument
569 JBUFFER_TRACE(jh, "entry"); in __jbd2_journal_remove_checkpoint()
571 if ((transaction = jh->b_cp_transaction) == NULL) { in __jbd2_journal_remove_checkpoint()
572 JBUFFER_TRACE(jh, "not on transaction"); in __jbd2_journal_remove_checkpoint()
577 JBUFFER_TRACE(jh, "removing from transaction"); in __jbd2_journal_remove_checkpoint()
578 __buffer_unlink(jh); in __jbd2_journal_remove_checkpoint()
579 jh->b_cp_transaction = NULL; in __jbd2_journal_remove_checkpoint()
580 jbd2_journal_put_journal_head(jh); in __jbd2_journal_remove_checkpoint()
622 void __jbd2_journal_insert_checkpoint(struct journal_head *jh, in __jbd2_journal_insert_checkpoint() argument
625 JBUFFER_TRACE(jh, "entry"); in __jbd2_journal_insert_checkpoint()
626 J_ASSERT_JH(jh, buffer_dirty(jh2bh(jh)) || buffer_jbddirty(jh2bh(jh))); in __jbd2_journal_insert_checkpoint()
627 J_ASSERT_JH(jh, jh->b_cp_transaction == NULL); in __jbd2_journal_insert_checkpoint()
630 jbd2_journal_grab_journal_head(jh2bh(jh)); in __jbd2_journal_insert_checkpoint()
631 jh->b_cp_transaction = transaction; in __jbd2_journal_insert_checkpoint()
634 jh->b_cpnext = jh->b_cpprev = jh; in __jbd2_journal_insert_checkpoint()
636 jh->b_cpnext = transaction->t_checkpoint_list; in __jbd2_journal_insert_checkpoint()
637 jh->b_cpprev = transaction->t_checkpoint_list->b_cpprev; in __jbd2_journal_insert_checkpoint()
638 jh->b_cpprev->b_cpnext = jh; in __jbd2_journal_insert_checkpoint()
639 jh->b_cpnext->b_cpprev = jh; in __jbd2_journal_insert_checkpoint()
641 transaction->t_checkpoint_list = jh; in __jbd2_journal_insert_checkpoint()