Commit 4be90299 authored by Jan Kara's avatar Jan Kara Committed by Linus Torvalds

ceph: use pagevec_lookup_range_nr_tag()

Use new function for looking up pages since nr_pages argument from
pagevec_lookup_range_tag() is going away.

Link: http://lkml.kernel.org/r/20171009151359.31984-14-jack@suse.czSigned-off-by: default avatarJan Kara <jack@suse.cz>
Reviewed-by: default avatar"Yan, Zheng" <zyan@redhat.com>
Reviewed-by: default avatarDaniel Jordan <daniel.m.jordan@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 93d3b714
...@@ -870,11 +870,9 @@ static int ceph_writepages_start(struct address_space *mapping, ...@@ -870,11 +870,9 @@ static int ceph_writepages_start(struct address_space *mapping,
max_pages = wsize >> PAGE_SHIFT; max_pages = wsize >> PAGE_SHIFT;
get_more_pages: get_more_pages:
pvec_pages = min_t(unsigned, PAGEVEC_SIZE, pvec_pages = pagevec_lookup_range_nr_tag(&pvec, mapping, &index,
max_pages - locked_pages);
pvec_pages = pagevec_lookup_range_tag(&pvec, mapping, &index,
end, PAGECACHE_TAG_DIRTY, end, PAGECACHE_TAG_DIRTY,
pvec_pages); max_pages - locked_pages);
dout("pagevec_lookup_range_tag got %d\n", pvec_pages); dout("pagevec_lookup_range_tag got %d\n", pvec_pages);
if (!pvec_pages && !locked_pages) if (!pvec_pages && !locked_pages)
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment