From e25830dcd87387a237b96f0d70deb204a5bf0a54 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 13 Aug 2012 20:03:48 +1000 Subject: s3-smbd: Remove sys_acl_*() VFS wrapper functions We no longer do struct smb_acl_t manipuations via the VFS layer, which is now reduced to handling the get/set functions. The only backend that implemented these functions (aside from audit) was the vfs_default module calling the sys_acl code. The various ACL implementation modules either worked on the fully initilaised smb_acl_t object or on NT ACLs. This not only makes the operation of the posix ACL code more efficient (as allocation and free is not put via the VFS), it makes it easier to test and removes the fantasy that a module could safely redefine this structure or the behaviour here. The smb_acls.idl now defines the structure, and it is now allocated with talloc. These operations were originally added to the VFS in commit 3bb219161a270f12c27c3bc7e1220829c6e9f284. Andrew Bartlett --- docs-xml/manpages-3/vfs_full_audit.8.xml | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'docs-xml') diff --git a/docs-xml/manpages-3/vfs_full_audit.8.xml b/docs-xml/manpages-3/vfs_full_audit.8.xml index 0f0d96d1fb..f773a086a8 100644 --- a/docs-xml/manpages-3/vfs_full_audit.8.xml +++ b/docs-xml/manpages-3/vfs_full_audit.8.xml @@ -95,28 +95,11 @@ stat statvfs symlink - sys_acl_add_perm - sys_acl_clear_perms - sys_acl_create_entry sys_acl_delete_def_file - sys_acl_free_acl - sys_acl_free_qualifier - sys_acl_free_text - sys_acl_get_entry sys_acl_get_fd sys_acl_get_file - sys_acl_get_perm - sys_acl_get_permset - sys_acl_get_qualifier - sys_acl_get_tag_type - sys_acl_init sys_acl_set_fd sys_acl_set_file - sys_acl_set_permset - sys_acl_set_qualifier - sys_acl_set_tag_type - sys_acl_to_text - sys_acl_valid telldir unlink utime -- cgit