summaryrefslogtreecommitdiffstats
path: root/sys/security/mac/mac_inet.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2008-06-13 22:14:15 +0000
committerrwatson <rwatson@FreeBSD.org>2008-06-13 22:14:15 +0000
commitf07c38e84aa87001718dc3e4625bc30c9af3be89 (patch)
tree73b558170fb5c7801f3fea0db4e1007d0362a79d /sys/security/mac/mac_inet.c
parent0dd1763fd61cb2c8ebe8fb606c1b6ee159ffd6e3 (diff)
downloadFreeBSD-src-f07c38e84aa87001718dc3e4625bc30c9af3be89.zip
FreeBSD-src-f07c38e84aa87001718dc3e4625bc30c9af3be89.tar.gz
The TrustedBSD MAC Framework named struct ipq instances 'ipq', which is the
same as the global variable defined in ip_input.c. Instead, adopt the name 'q' as found in about 1/2 of uses in ip_input.c, preventing a collision on the name. This is non-harmful, but means that search and replace on the global works less well (as in the virtualization work), as well as indexing tools. MFC after: 1 week Reported by: julian
Diffstat (limited to 'sys/security/mac/mac_inet.c')
-rw-r--r--sys/security/mac/mac_inet.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/sys/security/mac/mac_inet.c b/sys/security/mac/mac_inet.c
index 9356cd0..76268d3 100644
--- a/sys/security/mac/mac_inet.c
+++ b/sys/security/mac/mac_inet.c
@@ -117,11 +117,11 @@ mac_ipq_label_alloc(int flag)
}
int
-mac_ipq_init(struct ipq *ipq, int flag)
+mac_ipq_init(struct ipq *q, int flag)
{
- ipq->ipq_label = mac_ipq_label_alloc(flag);
- if (ipq->ipq_label == NULL)
+ q->ipq_label = mac_ipq_label_alloc(flag);
+ if (q->ipq_label == NULL)
return (ENOMEM);
return (0);
}
@@ -151,11 +151,11 @@ mac_ipq_label_free(struct label *label)
}
void
-mac_ipq_destroy(struct ipq *ipq)
+mac_ipq_destroy(struct ipq *q)
{
- mac_ipq_label_free(ipq->ipq_label);
- ipq->ipq_label = NULL;
+ mac_ipq_label_free(q->ipq_label);
+ q->ipq_label = NULL;
}
void
@@ -166,13 +166,13 @@ mac_inpcb_create(struct socket *so, struct inpcb *inp)
}
void
-mac_ipq_reassemble(struct ipq *ipq, struct mbuf *m)
+mac_ipq_reassemble(struct ipq *q, struct mbuf *m)
{
struct label *label;
label = mac_mbuf_to_label(m);
- MAC_PERFORM(ipq_reassemble, ipq, ipq->ipq_label, m, label);
+ MAC_PERFORM(ipq_reassemble, q, q->ipq_label, m, label);
}
void
@@ -187,13 +187,13 @@ mac_netinet_fragment(struct mbuf *m, struct mbuf *frag)
}
void
-mac_ipq_create(struct mbuf *m, struct ipq *ipq)
+mac_ipq_create(struct mbuf *m, struct ipq *q)
{
struct label *label;
label = mac_mbuf_to_label(m);
- MAC_PERFORM(ipq_create, m, label, ipq, ipq->ipq_label);
+ MAC_PERFORM(ipq_create, m, label, q, q->ipq_label);
}
void
@@ -208,7 +208,7 @@ mac_inpcb_create_mbuf(struct inpcb *inp, struct mbuf *m)
}
int
-mac_ipq_match(struct mbuf *m, struct ipq *ipq)
+mac_ipq_match(struct mbuf *m, struct ipq *q)
{
struct label *label;
int result;
@@ -216,7 +216,7 @@ mac_ipq_match(struct mbuf *m, struct ipq *ipq)
label = mac_mbuf_to_label(m);
result = 1;
- MAC_BOOLEAN(ipq_match, &&, m, label, ipq, ipq->ipq_label);
+ MAC_BOOLEAN(ipq_match, &&, m, label, q, q->ipq_label);
return (result);
}
@@ -278,13 +278,13 @@ mac_netinet_tcp_reply(struct mbuf *m)
}
void
-mac_ipq_update(struct mbuf *m, struct ipq *ipq)
+mac_ipq_update(struct mbuf *m, struct ipq *q)
{
struct label *label;
label = mac_mbuf_to_label(m);
- MAC_PERFORM(ipq_update, m, label, ipq, ipq->ipq_label);
+ MAC_PERFORM(ipq_update, m, label, q, q->ipq_label);
}
int
OpenPOWER on IntegriCloud