|
|
@@ -411,7 +411,7 @@ static void __lru_cache_add(struct page *page)
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * lru_cache_add: add a page to the page lists
|
|
|
+ * lru_cache_add_anon - add a page to the page lists
|
|
|
* @page: the page to add
|
|
|
*/
|
|
|
void lru_cache_add_anon(struct page *page)
|
|
|
@@ -930,10 +930,10 @@ EXPORT_SYMBOL(__pagevec_lru_add);
|
|
|
*/
|
|
|
unsigned pagevec_lookup_entries(struct pagevec *pvec,
|
|
|
struct address_space *mapping,
|
|
|
- pgoff_t start, unsigned nr_pages,
|
|
|
+ pgoff_t start, unsigned nr_entries,
|
|
|
pgoff_t *indices)
|
|
|
{
|
|
|
- pvec->nr = find_get_entries(mapping, start, nr_pages,
|
|
|
+ pvec->nr = find_get_entries(mapping, start, nr_entries,
|
|
|
pvec->pages, indices);
|
|
|
return pagevec_count(pvec);
|
|
|
}
|
|
|
@@ -965,9 +965,8 @@ void pagevec_remove_exceptionals(struct pagevec *pvec)
|
|
|
* @mapping: The address_space to search
|
|
|
* @start: The starting page index
|
|
|
* @end: The final page index
|
|
|
- * @nr_pages: The maximum number of pages
|
|
|
*
|
|
|
- * pagevec_lookup_range() will search for and return a group of up to @nr_pages
|
|
|
+ * pagevec_lookup_range() will search for & return a group of up to PAGEVEC_SIZE
|
|
|
* pages in the mapping starting from index @start and upto index @end
|
|
|
* (inclusive). The pages are placed in @pvec. pagevec_lookup() takes a
|
|
|
* reference against the pages in @pvec.
|
|
|
@@ -977,7 +976,7 @@ void pagevec_remove_exceptionals(struct pagevec *pvec)
|
|
|
* also update @start to index the next page for the traversal.
|
|
|
*
|
|
|
* pagevec_lookup_range() returns the number of pages which were found. If this
|
|
|
- * number is smaller than @nr_pages, the end of specified range has been
|
|
|
+ * number is smaller than PAGEVEC_SIZE, the end of specified range has been
|
|
|
* reached.
|
|
|
*/
|
|
|
unsigned pagevec_lookup_range(struct pagevec *pvec,
|