diff options
author | Shehjar Tikoo <shehjart@gluster.com> | 2011-07-04 06:32:32 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-07-12 06:59:40 -0700 |
commit | f9e0638b7597f4b1a4245f63c94d3d6bd3158136 (patch) | |
tree | 2d32cc277dd2032e3420b7b16d21a3d68d909435 /xlators/nfs/server/src/nfs-generics.c | |
parent | 43d6d33d35618eb684975d6f0d1263e25ae6466c (diff) |
nfs: Change NFS3 access op to use access fop
This change is needed so that we have a uniform dependence on
posix-acl for permission checks as well as ACL checks.
Signed-off-by: Shehjar Tikoo <shehjart@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 3057 (acl permissions don't work on nfs mount)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=3057
Diffstat (limited to 'xlators/nfs/server/src/nfs-generics.c')
-rw-r--r-- | xlators/nfs/server/src/nfs-generics.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/xlators/nfs/server/src/nfs-generics.c b/xlators/nfs/server/src/nfs-generics.c index 0ebba689a35..010fb17564c 100644 --- a/xlators/nfs/server/src/nfs-generics.c +++ b/xlators/nfs/server/src/nfs-generics.c @@ -46,6 +46,19 @@ nfs_fstat (xlator_t *nfsx, xlator_t *xl, nfs_user_t *nfu, fd_t *fd, return ret; } +int +nfs_access (xlator_t *nfsx, xlator_t *xl, nfs_user_t *nfu, loc_t *pathloc, + int32_t accesstest, fop_access_cbk_t cbk, void *local) +{ + int ret = -EFAULT; + + if ((!nfsx) || (!xl) || (!pathloc) || (!nfu)) + return ret; + + ret = nfs_fop_access (nfsx, xl, nfu, pathloc, accesstest, cbk, local); + + return ret; +} int nfs_stat (xlator_t *nfsx, xlator_t *xl, nfs_user_t *nfu, loc_t *pathloc, |