aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/nommu.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/mm/nommu.c b/mm/nommu.c
index 2fd2ad5da98e..598bc871487a 100644
--- a/mm/nommu.c
+++ b/mm/nommu.c
@@ -240,6 +240,27 @@ int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
240} 240}
241EXPORT_SYMBOL(get_user_pages); 241EXPORT_SYMBOL(get_user_pages);
242 242
243/**
244 * follow_pfn - look up PFN at a user virtual address
245 * @vma: memory mapping
246 * @address: user virtual address
247 * @pfn: location to store found PFN
248 *
249 * Only IO mappings and raw PFN mappings are allowed.
250 *
251 * Returns zero and the pfn at @pfn on success, -ve otherwise.
252 */
253int follow_pfn(struct vm_area_struct *vma, unsigned long address,
254 unsigned long *pfn)
255{
256 if (!(vma->vm_flags & (VM_IO | VM_PFNMAP)))
257 return -EINVAL;
258
259 *pfn = address >> PAGE_SHIFT;
260 return 0;
261}
262EXPORT_SYMBOL(follow_pfn);
263
243DEFINE_RWLOCK(vmlist_lock); 264DEFINE_RWLOCK(vmlist_lock);
244struct vm_struct *vmlist; 265struct vm_struct *vmlist;
245 266