Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 311707
b: refs/heads/master
c: 9ab4233
h: refs/heads/master
i:
  311705: 5502ff0
  311703: 7e2e907
v: v3
  • Loading branch information
Andy Lutomirski authored and Linus Torvalds committed Jul 6, 2012
1 parent a1ad42e commit 99710e0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1b7fa4c27111757789b21bb78543317dad4cfd08
refs/heads/master: 9ab4233dd08036fe34a89c7dc6f47a8bf2eb29eb
18 changes: 14 additions & 4 deletions trunk/mm/madvise.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <linux/sched.h>
#include <linux/ksm.h>
#include <linux/fs.h>
#include <linux/file.h>

/*
* Any behaviour which results in changes to the vma->vm_flags needs to
Expand Down Expand Up @@ -204,14 +205,16 @@ static long madvise_remove(struct vm_area_struct *vma,
{
loff_t offset;
int error;
struct file *f;

*prev = NULL; /* tell sys_madvise we drop mmap_sem */

if (vma->vm_flags & (VM_LOCKED|VM_NONLINEAR|VM_HUGETLB))
return -EINVAL;

if (!vma->vm_file || !vma->vm_file->f_mapping
|| !vma->vm_file->f_mapping->host) {
f = vma->vm_file;

if (!f || !f->f_mapping || !f->f_mapping->host) {
return -EINVAL;
}

Expand All @@ -221,11 +224,18 @@ static long madvise_remove(struct vm_area_struct *vma,
offset = (loff_t)(start - vma->vm_start)
+ ((loff_t)vma->vm_pgoff << PAGE_SHIFT);

/* filesystem's fallocate may need to take i_mutex */
/*
* Filesystem's fallocate may need to take i_mutex. We need to
* explicitly grab a reference because the vma (and hence the
* vma's reference to the file) can go away as soon as we drop
* mmap_sem.
*/
get_file(f);
up_read(&current->mm->mmap_sem);
error = do_fallocate(vma->vm_file,
error = do_fallocate(f,
FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
offset, end - start);
fput(f);
down_read(&current->mm->mmap_sem);
return error;
}
Expand Down

0 comments on commit 99710e0

Please sign in to comment.