aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/inode.c
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2013-11-02 06:57:18 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2013-11-04 16:42:38 -0500
commit3da580aab9482f5bf88ea79a4bf0a511eea6fa44 (patch)
tree498abae8e430c71d70e68b0b6d677c0e0c77eca4 /fs/nfs/inode.c
parentf3f5a0f8cc40b942f4c0ae117df82eeb65f07d4d (diff)
nfs: set security label when revalidating inode
Currently, we fetch the security label when revalidating an inode's attributes, but don't apply it. This is in contrast to the readdir() codepath where we do apply label changes. Cc: Dave Quigley <dpquigl@davequigley.com> Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/inode.c')
-rw-r--r--fs/nfs/inode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index 471ba59c42f9..26e77d81234e 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -923,6 +923,8 @@ __nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
923 if (nfsi->cache_validity & NFS_INO_INVALID_ACL) 923 if (nfsi->cache_validity & NFS_INO_INVALID_ACL)
924 nfs_zap_acl_cache(inode); 924 nfs_zap_acl_cache(inode);
925 925
926 nfs_setsecurity(inode, fattr, label);
927
926 dfprintk(PAGECACHE, "NFS: (%s/%Ld) revalidation complete\n", 928 dfprintk(PAGECACHE, "NFS: (%s/%Ld) revalidation complete\n",
927 inode->i_sb->s_id, 929 inode->i_sb->s_id,
928 (long long)NFS_FILEID(inode)); 930 (long long)NFS_FILEID(inode));