Lines Matching defs:inkernelacl
227 struct acl *inkernelacl;
232 inkernelacl = acl_alloc(M_WAITOK);
233 error = acl_copyin(aclp, inkernelacl, type);
242 error = mac_vnode_check_setacl(td->td_ucred, vp, type, inkernelacl);
246 error = VOP_SETACL(vp, acl_type_unold(type), inkernelacl,
254 acl_free(inkernelacl);
265 struct acl *inkernelacl;
269 inkernelacl = acl_alloc(M_WAITOK | M_ZERO);
277 error = VOP_GETACL(vp, acl_type_unold(type), inkernelacl,
285 error = acl_copyout(inkernelacl, aclp, type);
286 acl_free(inkernelacl);
328 struct acl *inkernelacl;
331 inkernelacl = acl_alloc(M_WAITOK);
332 error = acl_copyin(aclp, inkernelacl, type);
335 error = VOP_ACLCHECK(vp, acl_type_unold(type), inkernelacl,
338 acl_free(inkernelacl);