Re: svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-17 Thread Julian Elischer
On 5/17/13 3:38 AM, Gleb Smirnoff wrote: Sorry, I am slowpoke. Everything had already been noticed by other reviewers. On Fri, May 17, 2013 at 11:37:21AM +0400, Gleb Smirnoff wrote: T> On Thu, May 16, 2013 at 04:20:18PM +, Julian Elischer wrote: T> J> Modified: head/sys/sys/mbuf.h T> J>

Re: svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-17 Thread Gleb Smirnoff
Sorry, I am slowpoke. Everything had already been noticed by other reviewers. On Fri, May 17, 2013 at 11:37:21AM +0400, Gleb Smirnoff wrote: T> On Thu, May 16, 2013 at 04:20:18PM +, Julian Elischer wrote: T> J> Modified: head/sys/sys/mbuf.h T> J>

Re: svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-17 Thread Gleb Smirnoff
On Thu, May 16, 2013 at 04:20:18PM +, Julian Elischer wrote: J> Modified: head/sys/sys/mbuf.h J> == J> --- head/sys/sys/mbuf.h Thu May 16 15:28:38 2013(r250699) J> +++ head/sys/sys/mbuf.h Thu May 16 1

Re: svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-17 Thread Gennady Proskurin
On Thu, May 16, 2013 at 04:20:18PM +, Julian Elischer wrote: > +#define m_fibnumm_hdr.mh_nextpkt Are you sure this is correct? Shouldn't it be something like M_dat.MH.MH_pkthdr.fibnum or m_pkthdr.fibnum ? ___ svn-src-all@freebsd.org mai

Re: svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-16 Thread Ed Schouten
2013/5/16 Julian Elischer : > see correcting commit Thanks for fixing it so quickly! -- Ed Schouten ___ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...

Re: svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-16 Thread Julian Elischer
On 5/16/13 5:16 PM, Julian Elischer wrote: On 5/16/13 3:19 PM, Ed Schouten wrote: Hey Julian, 2013/5/16 Julian Elischer : #define M_SETFIB(_m, _fib) do {\ - _m->m_flags &= ~M_FIB; \ - _m->m

Re: svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-16 Thread Julian Elischer
On 5/16/13 3:19 PM, Ed Schouten wrote: Hey Julian, 2013/5/16 Julian Elischer : #define M_SETFIB(_m, _fib) do { \ - _m->m_flags &= ~M_FIB; \ - _m->m_flags |= (((_fib) << M_FIBSHIFT) & M_FIB);

Re: svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-16 Thread Ed Schouten
Hey Julian, 2013/5/16 Julian Elischer : > #define M_SETFIB(_m, _fib) do { > \ > - _m->m_flags &= ~M_FIB; \ > - _m->m_flags |= (((_fib) << M_FIBSHIFT) & M_FIB); \ > +KASSERT((_m)->m_flags

Re: svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-16 Thread Benjamin Kaduk
On Thu, May 16, 2013 at 12:20 PM, Julian Elischer wrote: > Author: julian > Date: Thu May 16 16:20:17 2013 > New Revision: 250700 > URL: http://svnweb.freebsd.org/changeset/base/250700 > > Log: > Finally change the mbuf to have its own fib field instead of stealing > 4 flag bits. This was supp

svn commit: r250700 - in head/sys: conf net netinet6 sys

2013-05-16 Thread Julian Elischer
Author: julian Date: Thu May 16 16:20:17 2013 New Revision: 250700 URL: http://svnweb.freebsd.org/changeset/base/250700 Log: Finally change the mbuf to have its own fib field instead of stealing 4 flag bits. This was supposed to happen in 8.0, and again in 2012.. MFC after:never Modi