From owner-freebsd-current@FreeBSD.ORG Wed Aug 13 17:36:22 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 221FC37B401 for ; Wed, 13 Aug 2003 17:36:22 -0700 (PDT) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 585EE43FD7 for ; Wed, 13 Aug 2003 17:36:21 -0700 (PDT) (envelope-from sam@errno.com) Received: from melange.errno.com (melange.errno.com [66.127.85.82]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.9) with ESMTP id h7E0aB7N088803 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 13 Aug 2003 17:36:15 -0700 (PDT) (envelope-from sam@errno.com) Date: Wed, 13 Aug 2003 17:36:10 -0700 From: Sam Leffler To: Craig Rodrigues , freebsd-current@freebsd.org Message-ID: <608458837.1060796170@melange.errno.com> In-Reply-To: <20030913233905.GA3834@crodrigues.org> References: <20030913233905.GA3834@crodrigues.org> X-Mailer: Mulberry/3.0.3 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Re: M_NOTIFICATION in ? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2003 00:36:22 -0000 > While trying to port the SCTP-KAME code to CURRENT, > I noticed that M_NOTIFICATION is missing from > in CURRENT, but it is present in the KAME version of this > file. > > Any reason not to apply this patch? > > > --- sys/sys/mbuf.h.orig Sat Sep 13 19:34:07 2003 > +++ sys/sys/mbuf.h Sat Sep 13 19:34:14 2003 > @@ -164,6 +164,8 @@ > #define M_FIRSTFRAG 0x1000 /* packet is first fragment */ > #define M_LASTFRAG 0x2000 /* packet is last fragment */ > > +#define M_NOTIFICATION 0x8000 /* notification event */ > + > /* > * External buffer types: identify ext_buf type. > */ I don't know what M_NOTIFICATION is used for but if it's applied sparingly it might be better to use an m_tag instead. Sam