aboutsummaryrefslogtreecommitdiffstats
path: root/mm/shmem.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/shmem.c')
-rw-r--r--mm/shmem.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mm/shmem.c b/mm/shmem.c
index 882053031aa0..fcb07882c8e0 100644
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@ -1228,7 +1228,8 @@ failed:
1228 return error; 1228 return error;
1229} 1229}
1230 1230
1231struct page *shmem_nopage(struct vm_area_struct *vma, unsigned long address, int *type) 1231static struct page *shmem_nopage(struct vm_area_struct *vma,
1232 unsigned long address, int *type)
1232{ 1233{
1233 struct inode *inode = vma->vm_file->f_path.dentry->d_inode; 1234 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
1234 struct page *page = NULL; 1235 struct page *page = NULL;
@@ -1335,7 +1336,7 @@ out_nomem:
1335 return retval; 1336 return retval;
1336} 1337}
1337 1338
1338int shmem_mmap(struct file *file, struct vm_area_struct *vma) 1339static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
1339{ 1340{
1340 file_accessed(file); 1341 file_accessed(file);
1341 vma->vm_ops = &shmem_vm_ops; 1342 vma->vm_ops = &shmem_vm_ops;