diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2005-06-22 13:16:22 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-06-22 16:07:10 -0400 |
commit | 6b3b5496d7b261d6c9202008dc528e52dbd11e57 (patch) | |
tree | bcd625880fc7799ddd85b132e3cdfd501f5a82b9 /fs/nfs/dir.c | |
parent | ada70d9425bcc5e376fef8591e4e76e204c0834c (diff) |
[PATCH] NFSv4: Add {get,set,list}xattr methods for nfs4
Add {get,set,list}xattr methods for nfs4. The new methods are no-ops, to be
used by subsequent ACL patch.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/dir.c')
-rw-r--r-- | fs/nfs/dir.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index dffa21abd3ea..5720537bffdd 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c | |||
@@ -91,6 +91,9 @@ struct inode_operations nfs4_dir_inode_operations = { | |||
91 | .permission = nfs_permission, | 91 | .permission = nfs_permission, |
92 | .getattr = nfs_getattr, | 92 | .getattr = nfs_getattr, |
93 | .setattr = nfs_setattr, | 93 | .setattr = nfs_setattr, |
94 | .getxattr = nfs4_getxattr, | ||
95 | .setxattr = nfs4_setxattr, | ||
96 | .listxattr = nfs4_listxattr, | ||
94 | }; | 97 | }; |
95 | 98 | ||
96 | #endif /* CONFIG_NFS_V4 */ | 99 | #endif /* CONFIG_NFS_V4 */ |