Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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.cz


Signed-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
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -870,11 +870,9 @@ static int ceph_writepages_start(struct address_space *mapping,
		max_pages = wsize >> PAGE_SHIFT;

get_more_pages:
		pvec_pages = min_t(unsigned, PAGEVEC_SIZE,
				   max_pages - locked_pages);
		pvec_pages = pagevec_lookup_range_tag(&pvec, mapping, &index,
		pvec_pages = pagevec_lookup_range_nr_tag(&pvec, mapping, &index,
						end, PAGECACHE_TAG_DIRTY,
						pvec_pages);
						max_pages - locked_pages);
		dout("pagevec_lookup_range_tag got %d\n", pvec_pages);
		if (!pvec_pages && !locked_pages)
			break;