diff options
author | Jan Kara <jack@suse.cz> | 2017-11-15 17:35:19 -0800 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2018-07-08 17:37:49 -0700 |
commit | 91e7d9d2ddbfda40393c8400e3d0b4852ea3c6d0 (patch) | |
tree | 14759d6cc990bb8fbd66b9f4f14debe75aaa2476 /mm/filemap.c | |
parent | feb94dc82928286a323576eaaadfec057d474112 (diff) |
mm: remove nr_pages argument from pagevec_lookup_{,range}_tag()
All users of pagevec_lookup() and pagevec_lookup_range() now pass
PAGEVEC_SIZE as a desired number of pages. Just drop the argument.
Link: http://lkml.kernel.org/r/20171009151359.31984-15-jack@suse.cz
Signed-off-by: Jan Kara <jack@suse.cz>
Reviewed-by: Daniel Jordan <daniel.m.jordan@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/filemap.c')
-rw-r--r-- | mm/filemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index 1544865fa64a..226e4d89ef5d 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -348,7 +348,7 @@ static int __filemap_fdatawait_range(struct address_space *mapping, unsigned i; nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, - end, PAGECACHE_TAG_WRITEBACK, PAGEVEC_SIZE); + end, PAGECACHE_TAG_WRITEBACK); if (!nr_pages) break; |