diff options
Diffstat (limited to 'include/linux/rmap.h')
| -rw-r--r-- | include/linux/rmap.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/linux/rmap.h b/include/linux/rmap.h index 49eb4f8ebac9..b46bb5620a76 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h @@ -158,14 +158,14 @@ struct anon_vma *page_get_anon_vma(struct page *page);  /*   * rmap interfaces called when adding or removing pte of page   */ -void page_move_anon_rmap(struct page *, struct vm_area_struct *, unsigned long); +void page_move_anon_rmap(struct page *, struct vm_area_struct *);  void page_add_anon_rmap(struct page *, struct vm_area_struct *,  		unsigned long, bool);  void do_page_add_anon_rmap(struct page *, struct vm_area_struct *,  			   unsigned long, int);  void page_add_new_anon_rmap(struct page *, struct vm_area_struct *,  		unsigned long, bool); -void page_add_file_rmap(struct page *); +void page_add_file_rmap(struct page *, bool);  void page_remove_rmap(struct page *, bool);  void hugepage_add_anon_rmap(struct page *, struct vm_area_struct *, |