| Submitter | Colin King |
|---|---|
| Date | March 6, 2012, 3:15 p.m. |
| Message ID | <1331046946-1530-2-git-send-email-colin.king@canonical.com> |
| Download | mbox | patch |
| Permalink | /patch/144953/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c index 19892d7..ab35b11 100644 --- a/fs/ecryptfs/inode.c +++ b/fs/ecryptfs/inode.c @@ -1085,6 +1085,8 @@ ecryptfs_setxattr(struct dentry *dentry, const char *name, const void *value, } rc = vfs_setxattr(lower_dentry, name, value, size, flags); + if (!rc) + fsstack_copy_attr_all(dentry->d_inode, lower_dentry->d_inode); out: return rc; }