Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 275922
b: refs/heads/master
c: 32001d6
h: refs/heads/master
v: v3
  • Loading branch information
Tyler Hicks committed Nov 23, 2011
1 parent 08998ab commit 2305804
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 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: b59db43ad4434519feb338eacb01d77eb50825c5
refs/heads/master: 32001d6fe9ac6b0423e674a3093aa56740849f3b
23 changes: 22 additions & 1 deletion trunk/fs/ecryptfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,27 @@ static int ecryptfs_readdir(struct file *file, void *dirent, filldir_t filldir)
return rc;
}

static void ecryptfs_vma_close(struct vm_area_struct *vma)
{
filemap_write_and_wait(vma->vm_file->f_mapping);
}

static const struct vm_operations_struct ecryptfs_file_vm_ops = {
.close = ecryptfs_vma_close,
.fault = filemap_fault,
};

static int ecryptfs_file_mmap(struct file *file, struct vm_area_struct *vma)
{
int rc;

rc = generic_file_mmap(file, vma);
if (!rc)
vma->vm_ops = &ecryptfs_file_vm_ops;

return rc;
}

struct kmem_cache *ecryptfs_file_info_cache;

/**
Expand Down Expand Up @@ -349,7 +370,7 @@ const struct file_operations ecryptfs_main_fops = {
#ifdef CONFIG_COMPAT
.compat_ioctl = ecryptfs_compat_ioctl,
#endif
.mmap = generic_file_mmap,
.mmap = ecryptfs_file_mmap,
.open = ecryptfs_open,
.flush = ecryptfs_flush,
.release = ecryptfs_release,
Expand Down

0 comments on commit 2305804

Please sign in to comment.