summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2002-02-19 18:10:45 +0100
committerIngo Molnar <mingo@elte.hu>2002-02-19 18:10:45 +0100
commit094686d30d5f58780a1efda2ade5cb0d18e25f82 (patch)
tree566377cdfb4fc49fee8dc0a2f3c066b70cac37dc /include
parentf3ebe6543ce9406433bb31cfdd8efbe79924a915 (diff)
- the new vmalloc_to_page() interface should be used to determine the physical page a given vmalloc() area virtual address is mapped to.
Diffstat (limited to 'include')
-rw-r--r--include/linux/mm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 5377dd7836cc..b0427754e619 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -516,6 +516,8 @@ static inline struct vm_area_struct * find_vma_intersection(struct mm_struct * m
extern struct vm_area_struct *find_extend_vma(struct mm_struct *mm, unsigned long addr);
+extern struct page * vmalloc_to_page(pgd_t *pgd, unsigned long adr);
+
#endif /* __KERNEL__ */
#endif