svn commit: r243221 - in user/andre/tcp_workqueue/sys: netinet sys

Andre Oppermann andre at FreeBSD.org
Sun Nov 18 12:40:24 UTC 2012


Author: andre
Date: Sun Nov 18 12:40:23 2012
New Revision: 243221
URL: http://svnweb.freebsd.org/changeset/base/243221

Log:
  Move SCTP protocol specific mbuf flag overlay definitions from
  global mbuf.h to protocol private sctp_os_bsd.h.

Modified:
  user/andre/tcp_workqueue/sys/netinet/sctp_os_bsd.h
  user/andre/tcp_workqueue/sys/sys/mbuf.h

Modified: user/andre/tcp_workqueue/sys/netinet/sctp_os_bsd.h
==============================================================================
--- user/andre/tcp_workqueue/sys/netinet/sctp_os_bsd.h	Sun Nov 18 12:30:04 2012	(r243220)
+++ user/andre/tcp_workqueue/sys/netinet/sctp_os_bsd.h	Sun Nov 18 12:40:23 2012	(r243221)
@@ -139,6 +139,11 @@ MALLOC_DECLARE(SCTP_M_MCORE);
 #endif
 
 /*
+ * Protocol family specific mbuf flag overlays.
+ */
+#define	M_NOTIFICATION		M_PROTO5	/* SCTP notification */
+
+/*
  * Macros to expand out globals defined by various modules
  * to either a real global or a virtualized instance of one,
  * depending on whether VIMAGE is defined.

Modified: user/andre/tcp_workqueue/sys/sys/mbuf.h
==============================================================================
--- user/andre/tcp_workqueue/sys/sys/mbuf.h	Sun Nov 18 12:30:04 2012	(r243220)
+++ user/andre/tcp_workqueue/sys/sys/mbuf.h	Sun Nov 18 12:40:23 2012	(r243221)
@@ -210,8 +210,6 @@ struct mbuf {
  */
 #define	M_FIB		0xF0000000 /* steal some bits to store fib number. */
 
-#define	M_NOTIFICATION	M_PROTO5    /* SCTP notification */
-
 /*
  * Flags to purge when crossing layers.
  */


More information about the svn-src-user mailing list