diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2005-06-22 17:16:22 +0000 |
---|---|---|
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) | |
download | op-kernel-dev-6b3b5496d7b261d6c9202008dc528e52dbd11e57.zip op-kernel-dev-6b3b5496d7b261d6c9202008dc528e52dbd11e57.tar.gz |
[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 dffa21a..5720537 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c @@ -91,6 +91,9 @@ struct inode_operations nfs4_dir_inode_operations = { .permission = nfs_permission, .getattr = nfs_getattr, .setattr = nfs_setattr, + .getxattr = nfs4_getxattr, + .setxattr = nfs4_setxattr, + .listxattr = nfs4_listxattr, }; #endif /* CONFIG_NFS_V4 */ |