Lines Matching refs:c_bh
2011 struct buffer_head *c_bh;
2053 c_bh =
2058 if (!c_bh)
2060 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
2065 c_bh->b_blocknr -
2069 brelse(c_bh);
2081 brelse(c_bh);
2119 struct buffer_head *c_bh;
2152 c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2155 if (!c_bh) {
2159 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
2164 c_bh->b_blocknr -
2168 brelse(c_bh);
2176 brelse(c_bh);
2193 brelse(c_bh);
2235 brelse(c_bh);
2254 brelse(c_bh);
2278 brelse(c_bh);
2304 brelse(c_bh);
3998 struct buffer_head *c_bh; /* commit bh */
4096 c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
4099 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
4100 memset(c_bh->b_data, 0, c_bh->b_size);
4102 set_buffer_uptodate(c_bh);
4121 jl->j_commit_bh = c_bh;
4244 * we are done with both the c_bh and d_bh, but
4245 * c_bh must be written after all other commit blocks,
4246 * so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.