Home
last modified time | relevance | path

Searched refs:b_tprev (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/include/linux/
H A Djournal-head.h91 struct journal_head *b_tnext, *b_tprev; member
/openbmc/linux/fs/jbd2/
H A Dtransaction.c1968 jh->b_tnext = jh->b_tprev = jh; in __blist_add_buffer()
1972 struct journal_head *first = *list, *last = first->b_tprev; in __blist_add_buffer()
1973 jh->b_tprev = last; in __blist_add_buffer()
1975 last->b_tnext = first->b_tprev = jh; in __blist_add_buffer()
1996 jh->b_tprev->b_tnext = jh->b_tnext; in __blist_del_buffer()
1997 jh->b_tnext->b_tprev = jh->b_tprev; in __blist_del_buffer()
H A Dcommit.c833 jh = commit_transaction->t_shadow_list->b_tprev; in jbd2_journal_commit_transaction()