aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/memory.c1
-rw-r--r--mm/vmalloc.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/mm/memory.c b/mm/memory.c
index 50dd3d1f4d18..8aace3db3a54 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2865,3 +2865,4 @@ int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, in
2865 2865
2866 return buf - old_buf; 2866 return buf - old_buf;
2867} 2867}
2868EXPORT_SYMBOL_GPL(access_process_vm);
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 213d5e5079ff..3cee76a8c9f0 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -164,6 +164,7 @@ int map_vm_area(struct vm_struct *area, pgprot_t prot, struct page ***pages)
164 flush_cache_vmap((unsigned long) area->addr, end); 164 flush_cache_vmap((unsigned long) area->addr, end);
165 return err; 165 return err;
166} 166}
167EXPORT_SYMBOL_GPL(map_vm_area);
167 168
168static struct vm_struct *__get_vm_area_node(unsigned long size, unsigned long flags, 169static struct vm_struct *__get_vm_area_node(unsigned long size, unsigned long flags,
169 unsigned long start, unsigned long end, 170 unsigned long start, unsigned long end,
@@ -242,6 +243,7 @@ struct vm_struct *__get_vm_area(unsigned long size, unsigned long flags,
242{ 243{
243 return __get_vm_area_node(size, flags, start, end, -1, GFP_KERNEL); 244 return __get_vm_area_node(size, flags, start, end, -1, GFP_KERNEL);
244} 245}
246EXPORT_SYMBOL_GPL(__get_vm_area);
245 247
246/** 248/**
247 * get_vm_area - reserve a contingous kernel virtual area 249 * get_vm_area - reserve a contingous kernel virtual area