summaryrefslogtreecommitdiff
path: root/sys/security/mac/mac_framework.c
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2002-10-25 20:45:27 +0000
committerRobert Watson <rwatson@FreeBSD.org>2002-10-25 20:45:27 +0000
commita67fe518a11b69f1e34c0fe3ca6182c2fe5b6ef7 (patch)
treecb136841289bd522bd94f292fac6599fc185cf57 /sys/security/mac/mac_framework.c
parent4c86c028ac059eee8f4d6d069be669719d51ccbc (diff)
Notes
Diffstat (limited to 'sys/security/mac/mac_framework.c')
-rw-r--r--sys/security/mac/mac_framework.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/security/mac/mac_framework.c b/sys/security/mac/mac_framework.c
index 29e5157e43b2..78bc485c3863 100644
--- a/sys/security/mac/mac_framework.c
+++ b/sys/security/mac/mac_framework.c
@@ -108,6 +108,11 @@ static unsigned int mac_policy_offsets_free = (1 << MAC_MAX_POLICIES) - 1;
SYSCTL_UINT(_security_mac, OID_AUTO, max_policies, CTLFLAG_RD,
&mac_max_policies, 0, "");
+/*
+ * Has the kernel started generating labeled objects yet? All read/write
+ * access to this variable is serialized during the boot process. Following
+ * the end of serialization, we don't update this flag; no locking.
+ */
static int mac_late = 0;
static int mac_enforce_fs = 1;
@@ -2614,7 +2619,7 @@ mac_check_vnode_swapon(struct ucred *cred, struct vnode *vp)
ASSERT_VOP_LOCKED(vp, "mac_check_vnode_swapon");
- if (!mac_enforce_fs)
+ if (!mac_enforce_fs)
return (0);
error = vn_refreshlabel(vp, cred);