aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/btrfs/extent_io.c1
-rw-r--r--fs/btrfs/inode.c8
2 files changed, 6 insertions, 3 deletions
diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c
index 9aaa544e65a9..ea12d0ee684f 100644
--- a/fs/btrfs/extent_io.c
+++ b/fs/btrfs/extent_io.c
@@ -2756,7 +2756,6 @@ static int merge_bio(int rw, struct extent_io_tree *tree, struct page *page,
2756 if (tree->ops && tree->ops->merge_bio_hook) 2756 if (tree->ops && tree->ops->merge_bio_hook)
2757 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio, 2757 ret = tree->ops->merge_bio_hook(rw, page, offset, size, bio,
2758 bio_flags); 2758 bio_flags);
2759 BUG_ON(ret < 0);
2760 return ret; 2759 return ret;
2761 2760
2762} 2761}
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 01c6fca925f7..f935fad17838 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -1822,6 +1822,10 @@ static void btrfs_clear_bit_hook(struct inode *inode,
1822/* 1822/*
1823 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure 1823 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1824 * we don't create bios that span stripes or chunks 1824 * we don't create bios that span stripes or chunks
1825 *
1826 * return 1 if page cannot be merged to bio
1827 * return 0 if page can be merged to bio
1828 * return error otherwise
1825 */ 1829 */
1826int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset, 1830int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset,
1827 size_t size, struct bio *bio, 1831 size_t size, struct bio *bio,
@@ -1840,8 +1844,8 @@ int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset,
1840 map_length = length; 1844 map_length = length;
1841 ret = btrfs_map_block(root->fs_info, rw, logical, 1845 ret = btrfs_map_block(root->fs_info, rw, logical,
1842 &map_length, NULL, 0); 1846 &map_length, NULL, 0);
1843 /* Will always return 0 with map_multi == NULL */ 1847 if (ret < 0)
1844 BUG_ON(ret < 0); 1848 return ret;
1845 if (map_length < length + size) 1849 if (map_length < length + size)
1846 return 1; 1850 return 1;
1847 return 0; 1851 return 0;