diff options
author | Tyler Hicks <tyhicks@linux.vnet.ibm.com> | 2011-01-11 12:43:42 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-03-02 09:46:53 -0500 |
commit | 57ff64c3e0fefd381b58c3d6c18bdf6f978d1766 (patch) | |
tree | c59ee19cfc6087768865d0a12b4c8d7394d40203 | |
parent | 8cb4b8d2d14a7048a3ed8fa9c03e44c013cdc3a8 (diff) | |
download | linux-stable-57ff64c3e0fefd381b58c3d6c18bdf6f978d1766.tar.gz linux-stable-57ff64c3e0fefd381b58c3d6c18bdf6f978d1766.tar.bz2 linux-stable-57ff64c3e0fefd381b58c3d6c18bdf6f978d1766.zip |
eCryptfs: Copy up lower inode attrs in getattr
commit 55f9cf6bbaa682958a7dd2755f883b768270c3ce upstream.
The lower filesystem may do some type of inode revalidation during a
getattr call. eCryptfs should take advantage of that by copying the
lower inode attributes to the eCryptfs inode after a call to
vfs_getattr() on the lower inode.
I originally wrote this fix while working on eCryptfs on nfsv3 support,
but discovered it also fixed an eCryptfs on ext4 nanosecond timestamp
bug that was reported.
https://bugs.launchpad.net/bugs/613873
Signed-off-by: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | fs/ecryptfs/inode.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c index b582f09a9012..88ba4d43299a 100644 --- a/fs/ecryptfs/inode.c +++ b/fs/ecryptfs/inode.c @@ -988,6 +988,8 @@ int ecryptfs_getattr(struct vfsmount *mnt, struct dentry *dentry, rc = vfs_getattr(ecryptfs_dentry_to_lower_mnt(dentry), ecryptfs_dentry_to_lower(dentry), &lower_stat); if (!rc) { + fsstack_copy_attr_all(dentry->d_inode, + ecryptfs_inode_to_lower(dentry->d_inode), NULL); generic_fillattr(dentry->d_inode, stat); stat->blocks = lower_stat.blocks; } |