diff options
| author | shishir gowda <sgowda@redhat.com> | 2013-03-14 13:02:29 +0530 | 
|---|---|---|
| committer | Vijay Bellur <vbellur@redhat.com> | 2013-03-14 03:17:09 -0700 | 
| commit | fc988b255b33b323f9d310614d501a4069219831 (patch) | |
| tree | d9ee0139fc71c466696245e448634c5ac70b41bc | |
| parent | 70df74418140e335ec56250dbce543b5faf066d5 (diff) | |
posix-acl: disable permission checks for fd based ops
Signed-off-by: shishir gowda <sgowda@redhat.com>
Change-Id: I9d49537c2c7b51d5598b80627d61f060aaec8549
BUG: 921437
Reviewed-on: http://review.gluster.org/4671
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
| -rw-r--r-- | xlators/system/posix-acl/src/posix-acl.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/xlators/system/posix-acl/src/posix-acl.c b/xlators/system/posix-acl/src/posix-acl.c index a3570c0b2bf..05d65f3d9b4 100644 --- a/xlators/system/posix-acl/src/posix-acl.c +++ b/xlators/system/posix-acl/src/posix-acl.c @@ -2088,8 +2088,11 @@ struct xlator_fops fops = {  #if FD_MODE_CHECK_IS_IMPLEMENTED          .readv            = posix_acl_readv,          .writev           = posix_acl_writev, -#endif          .ftruncate        = posix_acl_ftruncate, +        .fsetattr         = posix_acl_fsetattr, +        .fsetxattr        = posix_acl_fsetxattr, +        .fgetxattr        = posix_acl_fgetxattr, +#endif          .access           = posix_acl_access,          .truncate         = posix_acl_truncate,          .mkdir            = posix_acl_mkdir, @@ -2104,11 +2107,8 @@ struct xlator_fops fops = {          .readdir          = posix_acl_readdir,          .readdirp         = posix_acl_readdirp,          .setattr          = posix_acl_setattr, -        .fsetattr         = posix_acl_fsetattr,          .setxattr         = posix_acl_setxattr, -        .fsetxattr        = posix_acl_fsetxattr,          .getxattr         = posix_acl_getxattr, -        .fgetxattr        = posix_acl_fgetxattr,          .removexattr      = posix_acl_removexattr,  };  | 
