Lines Matching refs:c_bh
2010 struct buffer_head *c_bh;
2052 c_bh =
2057 if (!c_bh)
2059 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
2064 c_bh->b_blocknr -
2068 brelse(c_bh);
2080 brelse(c_bh);
2118 struct buffer_head *c_bh;
2151 c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2154 if (!c_bh) {
2158 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
2163 c_bh->b_blocknr -
2167 brelse(c_bh);
2175 brelse(c_bh);
2192 brelse(c_bh);
2234 brelse(c_bh);
2253 brelse(c_bh);
2277 brelse(c_bh);
2303 brelse(c_bh);
3993 struct buffer_head *c_bh; /* commit bh */
4091 c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
4094 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
4095 memset(c_bh->b_data, 0, c_bh->b_size);
4097 set_buffer_uptodate(c_bh);
4116 jl->j_commit_bh = c_bh;
4239 * we are done with both the c_bh and d_bh, but
4240 * c_bh must be written after all other commit blocks,
4241 * so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.