Skip to content

Commit

Permalink
jbd: Convert bitops to buffer fns
Browse files Browse the repository at this point in the history
Convert set/clear_bit(BH_JWrite, ...) to set/clear_buffer_jwrite()
for consistency.

Signed-off-by: Namhyung Kim <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
  • Loading branch information
namhyung authored and jankara committed Oct 27, 2010
1 parent dff6825 commit a910eef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fs/jbd/commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ void journal_commit_transaction(journal_t *journal)
(this will requeue both the metadata buffer and the
temporary IO buffer). new_bh goes on BJ_IO*/

set_bit(BH_JWrite, &jh2bh(jh)->b_state);
set_buffer_jwrite(jh2bh(jh));
/*
* akpm: journal_write_metadata_buffer() sets
* new_bh->b_transaction to commit_transaction.
Expand All @@ -627,7 +627,7 @@ void journal_commit_transaction(journal_t *journal)
JBUFFER_TRACE(jh, "ph3: write metadata");
flags = journal_write_metadata_buffer(commit_transaction,
jh, &new_jh, blocknr);
set_bit(BH_JWrite, &jh2bh(new_jh)->b_state);
set_buffer_jwrite(jh2bh(new_jh));
wbuf[bufs++] = jh2bh(new_jh);

/* Record the new block's tag in the current descriptor
Expand Down Expand Up @@ -737,7 +737,7 @@ void journal_commit_transaction(journal_t *journal)
shadowed buffer */
jh = commit_transaction->t_shadow_list->b_tprev;
bh = jh2bh(jh);
clear_bit(BH_JWrite, &bh->b_state);
clear_buffer_jwrite(bh);
J_ASSERT_BH(bh, buffer_jbddirty(bh));

/* The metadata is now released for reuse, but we need
Expand Down

0 comments on commit a910eef

Please sign in to comment.