aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/extent-tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs/extent-tree.c')
-rw-r--r--fs/btrfs/extent-tree.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
index a589912fdd51..fe4fe709c312 100644
--- a/fs/btrfs/extent-tree.c
+++ b/fs/btrfs/extent-tree.c
@@ -2263,6 +2263,12 @@ int btrfs_free_block_groups(struct btrfs_fs_info *info)
2263 return 0; 2263 return 0;
2264} 2264}
2265 2265
2266static unsigned long calc_ra(unsigned long start, unsigned long last,
2267 unsigned long nr)
2268{
2269 return min(last, start + nr - 1);
2270}
2271
2266static int noinline relocate_inode_pages(struct inode *inode, u64 start, 2272static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2267 u64 len) 2273 u64 len)
2268{ 2274{
@@ -2275,6 +2281,8 @@ static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2275 struct page *page; 2281 struct page *page;
2276 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree; 2282 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2277 struct file_ra_state *ra; 2283 struct file_ra_state *ra;
2284 unsigned long total_read = 0;
2285 unsigned long ra_pages;
2278 2286
2279 ra = kzalloc(sizeof(*ra), GFP_NOFS); 2287 ra = kzalloc(sizeof(*ra), GFP_NOFS);
2280 2288
@@ -2282,11 +2290,17 @@ static int noinline relocate_inode_pages(struct inode *inode, u64 start,
2282 i = start >> PAGE_CACHE_SHIFT; 2290 i = start >> PAGE_CACHE_SHIFT;
2283 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT; 2291 last_index = (start + len - 1) >> PAGE_CACHE_SHIFT;
2284 2292
2293 ra_pages = BTRFS_I(inode)->root->fs_info->bdi.ra_pages;
2294
2285 file_ra_state_init(ra, inode->i_mapping); 2295 file_ra_state_init(ra, inode->i_mapping);
2286 btrfs_force_ra(inode->i_mapping, ra, NULL, i, last_index);
2287 kfree(ra); 2296 kfree(ra);
2288 2297
2289 for (; i <= last_index; i++) { 2298 for (; i <= last_index; i++) {
2299 if (total_read % ra_pages == 0) {
2300 btrfs_force_ra(inode->i_mapping, ra, NULL, i,
2301 calc_ra(i, last_index, ra_pages));
2302 }
2303 total_read++;
2290 page = grab_cache_page(inode->i_mapping, i); 2304 page = grab_cache_page(inode->i_mapping, i);
2291 if (!page) 2305 if (!page)
2292 goto out_unlock; 2306 goto out_unlock;