diff options
author | Jan Kara <jack@suse.cz> | 2006-01-06 00:19:55 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 08:33:59 -0800 |
commit | f93ea411b73594f7d144855fd34278bcf34a9afc (patch) | |
tree | 50419ba9250be6f923470b4eff73370512c00267 /include/linux/jbd.h | |
parent | 6fe2e70bbed3995d930f39452fb6ce3be7dc47dc (diff) | |
download | kernel_samsung_smdk4412-f93ea411b73594f7d144855fd34278bcf34a9afc.zip kernel_samsung_smdk4412-f93ea411b73594f7d144855fd34278bcf34a9afc.tar.gz kernel_samsung_smdk4412-f93ea411b73594f7d144855fd34278bcf34a9afc.tar.bz2 |
[PATCH] jbd: split checkpoint lists
Split the checkpoint list of the transaction into two lists. In the first
list we keep the buffers that need to be submitted for IO. In the second
list are kept buffers that were already submitted and we just have to wait
for the IO to complete. This should simplify a handling of checkpoint
lists a bit and can eventually be also a performance gain.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/jbd.h')
-rw-r--r-- | include/linux/jbd.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index dcde7ad..558cb4c 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h @@ -498,6 +498,12 @@ struct transaction_s struct journal_head *t_checkpoint_list; /* + * Doubly-linked circular list of all buffers submitted for IO while + * checkpointing. [j_list_lock] + */ + struct journal_head *t_checkpoint_io_list; + + /* * Doubly-linked circular list of temporary buffers currently undergoing * IO in the log [j_list_lock] */ @@ -843,7 +849,7 @@ extern void journal_commit_transaction(journal_t *); /* Checkpoint list management */ int __journal_clean_checkpoint_list(journal_t *journal); -void __journal_remove_checkpoint(struct journal_head *); +int __journal_remove_checkpoint(struct journal_head *); void __journal_insert_checkpoint(struct journal_head *, transaction_t *); /* Buffer IO */ |