aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/ecryptfs/inode.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c
index 2b449d79b7fa..5726d7adaf5b 100644
--- a/fs/ecryptfs/inode.c
+++ b/fs/ecryptfs/inode.c
@@ -1006,6 +1006,21 @@ out:
1006 return rc; 1006 return rc;
1007} 1007}
1008 1008
1009int ecryptfs_getattr(struct vfsmount *mnt, struct dentry *dentry,
1010 struct kstat *stat)
1011{
1012 struct kstat lower_stat;
1013 int rc;
1014
1015 rc = vfs_getattr(ecryptfs_dentry_to_lower_mnt(dentry),
1016 ecryptfs_dentry_to_lower(dentry), &lower_stat);
1017 if (!rc) {
1018 generic_fillattr(dentry->d_inode, stat);
1019 stat->blocks = lower_stat.blocks;
1020 }
1021 return rc;
1022}
1023
1009int 1024int
1010ecryptfs_setxattr(struct dentry *dentry, const char *name, const void *value, 1025ecryptfs_setxattr(struct dentry *dentry, const char *name, const void *value,
1011 size_t size, int flags) 1026 size_t size, int flags)
@@ -1135,6 +1150,7 @@ const struct inode_operations ecryptfs_dir_iops = {
1135const struct inode_operations ecryptfs_main_iops = { 1150const struct inode_operations ecryptfs_main_iops = {
1136 .permission = ecryptfs_permission, 1151 .permission = ecryptfs_permission,
1137 .setattr = ecryptfs_setattr, 1152 .setattr = ecryptfs_setattr,
1153 .getattr = ecryptfs_getattr,
1138 .setxattr = ecryptfs_setxattr, 1154 .setxattr = ecryptfs_setxattr,
1139 .getxattr = ecryptfs_getxattr, 1155 .getxattr = ecryptfs_getxattr,
1140 .listxattr = ecryptfs_listxattr, 1156 .listxattr = ecryptfs_listxattr,