diff options
author | Niels de Vos <ndevos@redhat.com> | 2015-02-24 19:42:49 +0100 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2015-03-18 10:39:03 -0700 |
commit | 728fcd41eb39f66744d84b979dd8195fd47313ed (patch) | |
tree | edb89fa083b164d37a69e4107cdaeebdfb5d9c53 /heal | |
parent | 87c7fa3cfdadca4ee883daf84373302a42ad5fdc (diff) |
gfapi: add glfs_h_acl_set() and glfs_h_acl_get()
These two functions add support for POSIX ACLs through the GFAPI-handle
interface.
The initial infrastructure for POSIX ACLs based on libacl has been added
with the required changes to the POSIX xlator:
- http://review.gluster.org/9627
NetBSD does not support POSIX ACLs, so using any of the functions should
return ENOTSUP.
URL: http://www.gluster.org/community/documentation/index.php/Features/Improved_POSIX_ACLs
Change-Id: Ie74f3f963c3f9d576cb2f2a1e6d97e3cd4b01eda
BUG: 1185654
Signed-off-by: Niels de Vos <ndevos@redhat.com>
Reviewed-on: http://review.gluster.org/9736
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'heal')
-rw-r--r-- | heal/src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/heal/src/Makefile.am b/heal/src/Makefile.am index 80be3d443cf..acde4b15a88 100644 --- a/heal/src/Makefile.am +++ b/heal/src/Makefile.am @@ -6,7 +6,7 @@ glfsheal_LDADD = $(top_builddir)/libglusterfs/src/libglusterfs.la $(GF_LDADD)\ $(RLLIBS) $(top_builddir)/rpc/xdr/src/libgfxdr.la \ $(top_builddir)/rpc/rpc-lib/src/libgfrpc.la \ $(top_builddir)/api/src/libgfapi.la \ - $(GF_GLUSTERFS_LIBS) $(XML_LIBS) + $(GF_GLUSTERFS_LIBS) $(XML_LIBS) $(GFAPI_LIBS) glfsheal_LDFLAGS = $(GF_LDFLAGS) |