Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Oct 2002 19:25:33 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 19758 for review
Message-ID:  <200210210225.g9L2PXoT008057@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=19758

Change 19758 by rwatson@rwatson_tislabs on 2002/10/20 19:25:20

	Improve approximation of alphabetization of function entry
	points.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/kern/kern_mac.c#319 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/kern/kern_mac.c#319 (text+ko) ====

@@ -1451,17 +1451,6 @@
 #endif
 }
 
-void
-mac_destroy_mbuf(struct mbuf *m)
-{
-
-	MAC_PERFORM(destroy_mbuf_label, &m->m_pkthdr.label);
-	mac_destroy_label(&m->m_pkthdr.label);
-#ifdef MAC_DEBUG
-	atomic_subtract_int(&nmacmbufs, 1);
-#endif
-}
-
 static void
 mac_destroy_ifnet_label(struct label *label)
 {
@@ -1492,6 +1481,17 @@
 }
 
 void
+mac_destroy_mbuf(struct mbuf *m)
+{
+
+	MAC_PERFORM(destroy_mbuf_label, &m->m_pkthdr.label);
+	mac_destroy_label(&m->m_pkthdr.label);
+#ifdef MAC_DEBUG
+	atomic_subtract_int(&nmacmbufs, 1);
+#endif
+}
+
+void
 mac_destroy_mount(struct mount *mp)
 {
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200210210225.g9L2PXoT008057>