3 @@ -2951,6 +2951,16 @@ out:
7 +void shmem_set_file(struct vm_area_struct *vma, struct file *file)
11 + vma->vm_file = file;
12 + vma->vm_ops = &shmem_vm_ops;
13 + vma->vm_flags |= VM_CAN_NONLINEAR;
15 +EXPORT_SYMBOL_GPL(shmem_set_file);
18 * shmem_file_setup - get an unlinked file living in tmpfs
19 * @name: name for dentry (to be seen in /proc/<pid>/maps
20 @@ -3028,11 +3038,8 @@ int shmem_zero_setup(struct vm_area_stru
26 - vma->vm_file = file;
27 - vma->vm_ops = &shmem_vm_ops;
28 - vma->vm_flags |= VM_CAN_NONLINEAR;
29 + shmem_set_file(vma, file);
36 @@ -268,6 +268,7 @@ int expand_files(struct files_struct *fi
37 /* All good, so we try */
38 return expand_fdtable(files, nr);
40 +EXPORT_SYMBOL_GPL(expand_files);
42 static int count_open_files(struct fdtable *fdt)
46 @@ -513,6 +513,7 @@ struct files_struct *get_files_struct(st
50 +EXPORT_SYMBOL_GPL(get_files_struct);
52 void put_files_struct(struct files_struct *files)
54 @@ -534,6 +535,7 @@ void put_files_struct(struct files_struc
58 +EXPORT_SYMBOL_GPL(put_files_struct);
60 void reset_files_struct(struct files_struct *files)
64 @@ -4937,6 +4937,7 @@ int can_nice(const struct task_struct *p
65 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
66 capable(CAP_SYS_NICE));
68 +EXPORT_SYMBOL_GPL(can_nice);
70 #ifdef __ARCH_WANT_SYS_NICE
74 @@ -1396,6 +1396,7 @@ unsigned long zap_page_range(struct vm_a
75 tlb_finish_mmu(&tlb, address, end);
78 +EXPORT_SYMBOL_GPL(zap_page_range);
81 * zap_vma_ptes - remove ptes mapping the vma
82 @@ -3071,6 +3072,7 @@ static inline int check_stack_guard_page
86 +EXPORT_SYMBOL_GPL(vmtruncate_range);
89 * We enter with non-exclusive mmap_sem (to exclude vma changes,
92 @@ -1246,6 +1246,7 @@ void unmap_kernel_range(unsigned long ad
93 vunmap_page_range(addr, end);
94 flush_tlb_kernel_range(addr, end);
96 +EXPORT_SYMBOL_GPL(unmap_kernel_range);
98 int map_vm_area(struct vm_struct *area, pgprot_t prot, struct page ***pages)
100 @@ -1361,6 +1362,7 @@ struct vm_struct *get_vm_area(unsigned l
101 return __get_vm_area_node(size, 1, flags, VMALLOC_START, VMALLOC_END,
102 -1, GFP_KERNEL, __builtin_return_address(0));
104 +EXPORT_SYMBOL_GPL(get_vm_area);
106 struct vm_struct *get_vm_area_caller(unsigned long size, unsigned long flags,
108 --- a/include/linux/mm.h
109 +++ b/include/linux/mm.h
110 @@ -871,6 +871,7 @@ extern bool skip_free_areas_node(unsigne
112 int shmem_lock(struct file *file, int lock, struct user_struct *user);
113 struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags);
114 +void shmem_set_file(struct vm_area_struct *vma, struct file *file);
115 int shmem_zero_setup(struct vm_area_struct *);
117 extern int can_do_mlock(void);