From owner-svn-src-user@FreeBSD.ORG Sun Nov 18 12:40:24 2012 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FB08641; Sun, 18 Nov 2012 12:40:24 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 64F738FC13; Sun, 18 Nov 2012 12:40:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAICeOmh025541; Sun, 18 Nov 2012 12:40:24 GMT (envelope-from andre@svn.freebsd.org) Received: (from andre@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAICeOfW025539; Sun, 18 Nov 2012 12:40:24 GMT (envelope-from andre@svn.freebsd.org) Message-Id: <201211181240.qAICeOfW025539@svn.freebsd.org> From: Andre Oppermann Date: Sun, 18 Nov 2012 12:40:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r243221 - in user/andre/tcp_workqueue/sys: netinet sys X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Nov 2012 12:40:24 -0000 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. */