aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2016-12-14 18:07:45 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-14 19:04:09 -0500
commitcae1240257d9ba4b40eb240124c530de8ee349bc (patch)
tree8655c822aa48bb1dd03eb229c9e3010a7218006c
parenta19e25536ed3a20845f642ce531e10c27fb2add5 (diff)
mm: export follow_pte()
DAX will need to implement its own version of page_check_address(). To avoid duplicating page table walking code, export follow_pte() which does what we need. Link: http://lkml.kernel.org/r/1479460644-25076-18-git-send-email-jack@suse.cz Signed-off-by: Jan Kara <jack@suse.cz> Reviewed-by: Ross Zwisler <ross.zwisler@linux.intel.com> Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Cc: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--include/linux/mm.h2
-rw-r--r--mm/memory.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index cec967e93f95..63926492c06a 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1210,6 +1210,8 @@ int copy_page_range(struct mm_struct *dst, struct mm_struct *src,
1210 struct vm_area_struct *vma); 1210 struct vm_area_struct *vma);
1211void unmap_mapping_range(struct address_space *mapping, 1211void unmap_mapping_range(struct address_space *mapping,
1212 loff_t const holebegin, loff_t const holelen, int even_cows); 1212 loff_t const holebegin, loff_t const holelen, int even_cows);
1213int follow_pte(struct mm_struct *mm, unsigned long address, pte_t **ptepp,
1214 spinlock_t **ptlp);
1213int follow_pfn(struct vm_area_struct *vma, unsigned long address, 1215int follow_pfn(struct vm_area_struct *vma, unsigned long address,
1214 unsigned long *pfn); 1216 unsigned long *pfn);
1215int follow_phys(struct vm_area_struct *vma, unsigned long address, 1217int follow_phys(struct vm_area_struct *vma, unsigned long address,
diff --git a/mm/memory.c b/mm/memory.c
index 8b7f0656a921..edd899d0decb 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -3817,8 +3817,8 @@ out:
3817 return -EINVAL; 3817 return -EINVAL;
3818} 3818}
3819 3819
3820static inline int follow_pte(struct mm_struct *mm, unsigned long address, 3820int follow_pte(struct mm_struct *mm, unsigned long address, pte_t **ptepp,
3821 pte_t **ptepp, spinlock_t **ptlp) 3821 spinlock_t **ptlp)
3822{ 3822{
3823 int res; 3823 int res;
3824 3824