diff options
author | Namhyung Kim <namhyung@gmail.com> | 2010-10-08 07:05:06 -0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2010-10-27 19:30:02 -0400 |
commit | a910eefa511f9d1118effc13fba6773163502c4f (patch) | |
tree | c041e592875a0048ca0c39fa8ea3ec9c5f03ff19 /fs/jbd/commit.c | |
parent | dff6825e9fde93891e60751e01480337a991235e (diff) |
jbd: Convert bitops to buffer fns
Convert set/clear_bit(BH_JWrite, ...) to set/clear_buffer_jwrite()
for consistency.
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/jbd/commit.c')
-rw-r--r-- | fs/jbd/commit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jbd/commit.c b/fs/jbd/commit.c index 95d8c11c929e..c8428323167f 100644 --- a/fs/jbd/commit.c +++ b/fs/jbd/commit.c | |||
@@ -617,7 +617,7 @@ void journal_commit_transaction(journal_t *journal) | |||
617 | (this will requeue both the metadata buffer and the | 617 | (this will requeue both the metadata buffer and the |
618 | temporary IO buffer). new_bh goes on BJ_IO*/ | 618 | temporary IO buffer). new_bh goes on BJ_IO*/ |
619 | 619 | ||
620 | set_bit(BH_JWrite, &jh2bh(jh)->b_state); | 620 | set_buffer_jwrite(jh2bh(jh)); |
621 | /* | 621 | /* |
622 | * akpm: journal_write_metadata_buffer() sets | 622 | * akpm: journal_write_metadata_buffer() sets |
623 | * new_bh->b_transaction to commit_transaction. | 623 | * new_bh->b_transaction to commit_transaction. |
@@ -627,7 +627,7 @@ void journal_commit_transaction(journal_t *journal) | |||
627 | JBUFFER_TRACE(jh, "ph3: write metadata"); | 627 | JBUFFER_TRACE(jh, "ph3: write metadata"); |
628 | flags = journal_write_metadata_buffer(commit_transaction, | 628 | flags = journal_write_metadata_buffer(commit_transaction, |
629 | jh, &new_jh, blocknr); | 629 | jh, &new_jh, blocknr); |
630 | set_bit(BH_JWrite, &jh2bh(new_jh)->b_state); | 630 | set_buffer_jwrite(jh2bh(new_jh)); |
631 | wbuf[bufs++] = jh2bh(new_jh); | 631 | wbuf[bufs++] = jh2bh(new_jh); |
632 | 632 | ||
633 | /* Record the new block's tag in the current descriptor | 633 | /* Record the new block's tag in the current descriptor |
@@ -737,7 +737,7 @@ wait_for_iobuf: | |||
737 | shadowed buffer */ | 737 | shadowed buffer */ |
738 | jh = commit_transaction->t_shadow_list->b_tprev; | 738 | jh = commit_transaction->t_shadow_list->b_tprev; |
739 | bh = jh2bh(jh); | 739 | bh = jh2bh(jh); |
740 | clear_bit(BH_JWrite, &bh->b_state); | 740 | clear_buffer_jwrite(bh); |
741 | J_ASSERT_BH(bh, buffer_jbddirty(bh)); | 741 | J_ASSERT_BH(bh, buffer_jbddirty(bh)); |
742 | 742 | ||
743 | /* The metadata is now released for reuse, but we need | 743 | /* The metadata is now released for reuse, but we need |