Commit c28abd70 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] JBD: BH_Revoke cleanup

Use the bh bit test/set infrastructure rather than open-coding everything. 
No functional changes.
parent d0d15d84
...@@ -358,17 +358,15 @@ int journal_revoke(handle_t *handle, unsigned long blocknr, ...@@ -358,17 +358,15 @@ int journal_revoke(handle_t *handle, unsigned long blocknr,
bh2 = __find_get_block(bdev, blocknr, journal->j_blocksize); bh2 = __find_get_block(bdev, blocknr, journal->j_blocksize);
if (bh2) { if (bh2) {
/* ... and it has RevokeValid status... */ /* ... and it has RevokeValid status... */
if ((bh2 != bh) && if (bh2 != bh && buffer_revokevalid(bh2))
test_bit(BH_RevokeValid, &bh2->b_state))
/* ...then it better be revoked too, /* ...then it better be revoked too,
* since it's illegal to create a revoke * since it's illegal to create a revoke
* record against a buffer_head which is * record against a buffer_head which is
* not marked revoked --- that would * not marked revoked --- that would
* risk missing a subsequent revoke * risk missing a subsequent revoke
* cancel. */ * cancel. */
J_ASSERT_BH(bh2, test_bit(BH_Revoked, & J_ASSERT_BH(bh2, buffer_revoked(bh2));
bh2->b_state)); put_bh(bh2);
__brelse(bh2);
} }
} }
#endif #endif
...@@ -377,9 +375,9 @@ int journal_revoke(handle_t *handle, unsigned long blocknr, ...@@ -377,9 +375,9 @@ int journal_revoke(handle_t *handle, unsigned long blocknr,
first having the revoke cancelled: it's illegal to free a first having the revoke cancelled: it's illegal to free a
block twice without allocating it in between! */ block twice without allocating it in between! */
if (bh) { if (bh) {
J_ASSERT_BH(bh, !test_bit(BH_Revoked, &bh->b_state)); J_ASSERT_BH(bh, !buffer_revoked(bh));
set_bit(BH_Revoked, &bh->b_state); set_buffer_revoked(bh);
set_bit(BH_RevokeValid, &bh->b_state); set_buffer_revokevalid(bh);
if (bh_in) { if (bh_in) {
BUFFER_TRACE(bh_in, "call journal_forget"); BUFFER_TRACE(bh_in, "call journal_forget");
journal_forget(handle, bh_in); journal_forget(handle, bh_in);
...@@ -400,7 +398,7 @@ int journal_revoke(handle_t *handle, unsigned long blocknr, ...@@ -400,7 +398,7 @@ int journal_revoke(handle_t *handle, unsigned long blocknr,
* Cancel an outstanding revoke. For use only internally by the * Cancel an outstanding revoke. For use only internally by the
* journaling code (called from journal_get_write_access). * journaling code (called from journal_get_write_access).
* *
* We trust the BH_Revoked bit on the buffer if the buffer is already * We trust buffer_revoked() on the buffer if the buffer is already
* being journaled: if there is no revoke pending on the buffer, then we * being journaled: if there is no revoke pending on the buffer, then we
* don't do anything here. * don't do anything here.
* *
...@@ -427,11 +425,11 @@ int journal_cancel_revoke(handle_t *handle, struct journal_head *jh) ...@@ -427,11 +425,11 @@ int journal_cancel_revoke(handle_t *handle, struct journal_head *jh)
* only perform the full cancel if the revoke bit is set. If * only perform the full cancel if the revoke bit is set. If
* not, we can't trust the revoke bit, and we need to do the * not, we can't trust the revoke bit, and we need to do the
* full search for a revoke record. */ * full search for a revoke record. */
if (test_and_set_bit(BH_RevokeValid, &bh->b_state)) if (test_set_buffer_revokevalid(bh)) {
need_cancel = (test_and_clear_bit(BH_Revoked, &bh->b_state)); need_cancel = test_clear_buffer_revoked(bh);
else { } else {
need_cancel = 1; need_cancel = 1;
clear_bit(BH_Revoked, &bh->b_state); clear_buffer_revoked(bh);
} }
if (need_cancel) { if (need_cancel) {
...@@ -462,7 +460,7 @@ int journal_cancel_revoke(handle_t *handle, struct journal_head *jh) ...@@ -462,7 +460,7 @@ int journal_cancel_revoke(handle_t *handle, struct journal_head *jh)
bh2 = __find_get_block(bh->b_bdev, bh->b_blocknr, bh->b_size); bh2 = __find_get_block(bh->b_bdev, bh->b_blocknr, bh->b_size);
if (bh2) { if (bh2) {
if (bh2 != bh) if (bh2 != bh)
clear_bit(BH_Revoked, &bh2->b_state); clear_buffer_revoked(bh2);
__brelse(bh2); __brelse(bh2);
} }
} }
...@@ -597,24 +595,20 @@ static void flush_descriptor(journal_t *journal, ...@@ -597,24 +595,20 @@ static void flush_descriptor(journal_t *journal,
int offset) int offset)
{ {
journal_revoke_header_t *header; journal_revoke_header_t *header;
struct buffer_head *bh = jh2bh(descriptor);
if (is_journal_aborted(journal)) { if (is_journal_aborted(journal)) {
JBUFFER_TRACE(descriptor, "brelse"); put_bh(bh);
__brelse(jh2bh(descriptor));
return; return;
} }
header = (journal_revoke_header_t *) jh2bh(descriptor)->b_data; header = (journal_revoke_header_t *) jh2bh(descriptor)->b_data;
header->r_count = htonl(offset); header->r_count = htonl(offset);
set_bit(BH_JWrite, &jh2bh(descriptor)->b_state); set_buffer_jwrite(bh);
{ BUFFER_TRACE(bh, "write");
struct buffer_head *bh = jh2bh(descriptor); set_buffer_uptodate(bh);
BUFFER_TRACE(bh, "write"); ll_rw_block(WRITE, 1, &bh);
set_buffer_uptodate(bh);
ll_rw_block (WRITE, 1, &bh);
}
} }
#endif #endif
/* /*
......
...@@ -305,6 +305,10 @@ BUFFER_FNS(JBD, jbd) ...@@ -305,6 +305,10 @@ BUFFER_FNS(JBD, jbd)
BUFFER_FNS(JWrite, jwrite) BUFFER_FNS(JWrite, jwrite)
BUFFER_FNS(JBDDirty, jbddirty) BUFFER_FNS(JBDDirty, jbddirty)
TAS_BUFFER_FNS(JBDDirty, jbddirty) TAS_BUFFER_FNS(JBDDirty, jbddirty)
BUFFER_FNS(Revoked, revoked)
TAS_BUFFER_FNS(Revoked, revoked)
BUFFER_FNS(RevokeValid, revokevalid)
TAS_BUFFER_FNS(RevokeValid, revokevalid)
BUFFER_FNS(Freed, freed) BUFFER_FNS(Freed, freed)
static inline struct buffer_head *jh2bh(struct journal_head *jh) static inline struct buffer_head *jh2bh(struct journal_head *jh)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment