aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/pagevec.h1
-rw-r--r--include/linux/swap.h6
2 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/pagevec.h b/include/linux/pagevec.h
index 6b8f11bcc948..fea3a982ee55 100644
--- a/include/linux/pagevec.h
+++ b/include/linux/pagevec.h
@@ -25,6 +25,7 @@ void __pagevec_release_nonlru(struct pagevec *pvec);
25void __pagevec_free(struct pagevec *pvec); 25void __pagevec_free(struct pagevec *pvec);
26void ____pagevec_lru_add(struct pagevec *pvec, enum lru_list lru); 26void ____pagevec_lru_add(struct pagevec *pvec, enum lru_list lru);
27void pagevec_strip(struct pagevec *pvec); 27void pagevec_strip(struct pagevec *pvec);
28void pagevec_swap_free(struct pagevec *pvec);
28unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping, 29unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping,
29 pgoff_t start, unsigned nr_pages); 30 pgoff_t start, unsigned nr_pages);
30unsigned pagevec_lookup_tag(struct pagevec *pvec, 31unsigned pagevec_lookup_tag(struct pagevec *pvec,
diff --git a/include/linux/swap.h b/include/linux/swap.h
index fcc169610d09..833be56ad835 100644
--- a/include/linux/swap.h
+++ b/include/linux/swap.h
@@ -265,6 +265,7 @@ extern sector_t swapdev_block(int, pgoff_t);
265extern struct swap_info_struct *get_swap_info_struct(unsigned); 265extern struct swap_info_struct *get_swap_info_struct(unsigned);
266extern int can_share_swap_page(struct page *); 266extern int can_share_swap_page(struct page *);
267extern int remove_exclusive_swap_page(struct page *); 267extern int remove_exclusive_swap_page(struct page *);
268extern int remove_exclusive_swap_page_ref(struct page *);
268struct backing_dev_info; 269struct backing_dev_info;
269 270
270/* linux/mm/thrash.c */ 271/* linux/mm/thrash.c */
@@ -353,6 +354,11 @@ static inline int remove_exclusive_swap_page(struct page *p)
353 return 0; 354 return 0;
354} 355}
355 356
357static inline int remove_exclusive_swap_page_ref(struct page *page)
358{
359 return 0;
360}
361
356static inline swp_entry_t get_swap_page(void) 362static inline swp_entry_t get_swap_page(void)
357{ 363{
358 swp_entry_t entry; 364 swp_entry_t entry;