diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-09 15:51:21 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-09 15:51:21 -0500 |
| commit | ac69e0928054ff29a5049902fb477f9c7605c773 (patch) | |
| tree | 05be6b9285186823452e0adeffe40e1dfee6e354 /include/linux | |
| parent | 9e203936eac786f9268d6a13e6442d2accef1829 (diff) | |
| parent | 302bf2f3259948c93361d501b04a5ed69c3bd4f8 (diff) | |
Merge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs
* 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
ext2/3/4: delete unneeded includes of module.h
ext{3,4}: Fix potential race when setversion ioctl updates inode
udf: Mark LVID buffer as uptodate before marking it dirty
ext3: Don't warn from writepage when readonly inode is spotted after error
jbd: Remove j_barrier mutex
reiserfs: Force inode evictions before umount to avoid crash
reiserfs: Fix quota mount option parsing
udf: Treat symlink component of type 2 as /
udf: Fix deadlock when converting file from in-ICB one to normal one
udf: Cleanup calling convention of inode_getblk()
ext2: Fix error handling on inode bitmap corruption
ext3: Fix error handling on inode bitmap corruption
ext3: replace ll_rw_block with other functions
ext3: NULL dereference in ext3_evict_inode()
jbd: clear revoked flag on buffers before a new transaction started
ext3: call ext3_mark_recovery_complete() when recovery is really needed
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/jbd.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index c7acdde3243d..d211732b9e99 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h | |||
| @@ -497,7 +497,6 @@ struct transaction_s | |||
| 497 | * @j_format_version: Version of the superblock format | 497 | * @j_format_version: Version of the superblock format |
| 498 | * @j_state_lock: Protect the various scalars in the journal | 498 | * @j_state_lock: Protect the various scalars in the journal |
| 499 | * @j_barrier_count: Number of processes waiting to create a barrier lock | 499 | * @j_barrier_count: Number of processes waiting to create a barrier lock |
| 500 | * @j_barrier: The barrier lock itself | ||
| 501 | * @j_running_transaction: The current running transaction.. | 500 | * @j_running_transaction: The current running transaction.. |
| 502 | * @j_committing_transaction: the transaction we are pushing to disk | 501 | * @j_committing_transaction: the transaction we are pushing to disk |
| 503 | * @j_checkpoint_transactions: a linked circular list of all transactions | 502 | * @j_checkpoint_transactions: a linked circular list of all transactions |
| @@ -580,9 +579,6 @@ struct journal_s | |||
| 580 | */ | 579 | */ |
| 581 | int j_barrier_count; | 580 | int j_barrier_count; |
| 582 | 581 | ||
| 583 | /* The barrier lock itself */ | ||
| 584 | struct mutex j_barrier; | ||
| 585 | |||
| 586 | /* | 582 | /* |
| 587 | * Transactions: The current running transaction... | 583 | * Transactions: The current running transaction... |
| 588 | * [j_state_lock] [caller holding open handle] | 584 | * [j_state_lock] [caller holding open handle] |
| @@ -913,6 +909,7 @@ extern int journal_set_revoke(journal_t *, unsigned int, tid_t); | |||
| 913 | extern int journal_test_revoke(journal_t *, unsigned int, tid_t); | 909 | extern int journal_test_revoke(journal_t *, unsigned int, tid_t); |
| 914 | extern void journal_clear_revoke(journal_t *); | 910 | extern void journal_clear_revoke(journal_t *); |
| 915 | extern void journal_switch_revoke_table(journal_t *journal); | 911 | extern void journal_switch_revoke_table(journal_t *journal); |
| 912 | extern void journal_clear_buffer_revoked_flags(journal_t *journal); | ||
| 916 | 913 | ||
| 917 | /* | 914 | /* |
| 918 | * The log thread user interface: | 915 | * The log thread user interface: |
