diff options
author | Chris Mason <chris.mason@oracle.com> | 2008-09-11 16:17:57 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2008-09-25 11:04:07 -0400 |
commit | d0c803c4049c5ca322d4795d8b74f28768603e0e (patch) | |
tree | b4c4f11b2f5938ad183a1771cd0b9e122709e2ff /fs/btrfs/extent-tree.c | |
parent | 31ff1cd25d376e8f499d450de177dffadc9e1c56 (diff) |
Btrfs: Record dirty pages tree-log pages in an extent_io tree
This is the same way the transaction code makes sure that all the
other tree blocks are safely on disk. There's an extent_io tree
for each root, and any blocks allocated to the tree logs are
recorded in that tree.
At tree-log sync, the extent_io tree is walked to flush down the
dirty pages and wait for them.
The main benefit is less time spent walking the tree log and skipping
clean pages, and getting sequential IO down to the drive.
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/extent-tree.c')
-rw-r--r-- | fs/btrfs/extent-tree.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c index c479d71e2869..c0bb6b9ac4c6 100644 --- a/fs/btrfs/extent-tree.c +++ b/fs/btrfs/extent-tree.c | |||
@@ -2392,8 +2392,13 @@ struct extent_buffer *btrfs_init_new_buffer(struct btrfs_trans_handle *trans, | |||
2392 | btrfs_tree_lock(buf); | 2392 | btrfs_tree_lock(buf); |
2393 | clean_tree_block(trans, root, buf); | 2393 | clean_tree_block(trans, root, buf); |
2394 | btrfs_set_buffer_uptodate(buf); | 2394 | btrfs_set_buffer_uptodate(buf); |
2395 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, | 2395 | if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) { |
2396 | set_extent_dirty(&root->dirty_log_pages, buf->start, | ||
2397 | buf->start + buf->len - 1, GFP_NOFS); | ||
2398 | } else { | ||
2399 | set_extent_dirty(&trans->transaction->dirty_pages, buf->start, | ||
2396 | buf->start + buf->len - 1, GFP_NOFS); | 2400 | buf->start + buf->len - 1, GFP_NOFS); |
2401 | } | ||
2397 | trans->blocks_used++; | 2402 | trans->blocks_used++; |
2398 | return buf; | 2403 | return buf; |
2399 | } | 2404 | } |