vfs_acl.c (7e1d3eefd410ca0fbae5a217422821244c3eeee4) | vfs_acl.c (31d1b816fe139f46083f8609c34b7d129a6e2ee0) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1999-2006, 2016-2017 Robert N. M. Watson 5 * All rights reserved. 6 * 7 * This software was developed by Robert Watson for the TrustedBSD Project. 8 * --- 43 unchanged lines hidden (view full) --- 52#include <sys/mount.h> 53#include <sys/vnode.h> 54#include <sys/lock.h> 55#include <sys/mutex.h> 56#include <sys/namei.h> 57#include <sys/file.h> 58#include <sys/filedesc.h> 59#include <sys/proc.h> | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 1999-2006, 2016-2017 Robert N. M. Watson 5 * All rights reserved. 6 * 7 * This software was developed by Robert Watson for the TrustedBSD Project. 8 * --- 43 unchanged lines hidden (view full) --- 52#include <sys/mount.h> 53#include <sys/vnode.h> 54#include <sys/lock.h> 55#include <sys/mutex.h> 56#include <sys/namei.h> 57#include <sys/file.h> 58#include <sys/filedesc.h> 59#include <sys/proc.h> |
60#include <sys/sysent.h> | |
61#include <sys/acl.h> 62 63#include <security/audit/audit.h> 64#include <security/mac/mac_framework.h> 65 66CTASSERT(ACL_MAX_ENTRIES >= OLDACL_MAX_ENTRIES); 67 68MALLOC_DEFINE(M_ACL, "acl", "Access Control Lists"); --- 531 unchanged lines hidden --- | 60#include <sys/acl.h> 61 62#include <security/audit/audit.h> 63#include <security/mac/mac_framework.h> 64 65CTASSERT(ACL_MAX_ENTRIES >= OLDACL_MAX_ENTRIES); 66 67MALLOC_DEFINE(M_ACL, "acl", "Access Control Lists"); --- 531 unchanged lines hidden --- |