diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2009-07-15 18:29:37 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@fusionio.com> | 2013-02-01 11:49:47 -0500 |
commit | 64a167011bcabc1e855658387c8a4464b71f3138 (patch) | |
tree | 768b39580c96931f1a47fdc0a8959e3e473df5a6 /fs/btrfs/inode.c | |
parent | 3c911608085bf2d5a0822c418129f96a2a89d1b5 (diff) |
Btrfs: add rw argument to merge_bio_hook()
We'll want to merge writes so they can fill a full RAID[56] stripe, but
not necessarily reads.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r-- | fs/btrfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 67ed24ae86bb..1b98c4ce3c6f 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c | |||
@@ -1566,7 +1566,7 @@ static void btrfs_clear_bit_hook(struct inode *inode, | |||
1566 | * extent_io.c merge_bio_hook, this must check the chunk tree to make sure | 1566 | * extent_io.c merge_bio_hook, this must check the chunk tree to make sure |
1567 | * we don't create bios that span stripes or chunks | 1567 | * we don't create bios that span stripes or chunks |
1568 | */ | 1568 | */ |
1569 | int btrfs_merge_bio_hook(struct page *page, unsigned long offset, | 1569 | int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset, |
1570 | size_t size, struct bio *bio, | 1570 | size_t size, struct bio *bio, |
1571 | unsigned long bio_flags) | 1571 | unsigned long bio_flags) |
1572 | { | 1572 | { |
@@ -1581,7 +1581,7 @@ int btrfs_merge_bio_hook(struct page *page, unsigned long offset, | |||
1581 | 1581 | ||
1582 | length = bio->bi_size; | 1582 | length = bio->bi_size; |
1583 | map_length = length; | 1583 | map_length = length; |
1584 | ret = btrfs_map_block(root->fs_info, READ, logical, | 1584 | ret = btrfs_map_block(root->fs_info, rw, logical, |
1585 | &map_length, NULL, 0); | 1585 | &map_length, NULL, 0); |
1586 | /* Will always return 0 with map_multi == NULL */ | 1586 | /* Will always return 0 with map_multi == NULL */ |
1587 | BUG_ON(ret < 0); | 1587 | BUG_ON(ret < 0); |