Re: CVS commit: src/sys

2013-06-05 Thread Christos Zoulas
On Jun 6, 5:01am, u...@stderr.spb.ru (Valery Ushakov) wrote: -- Subject: Re: CVS commit: src/sys | Are you building ALL? options TCP_SIGNATURE is not in GENERIC, and | this code is #ifdef'ed on it. That makes sense. I am building GENERIC. Perhaps the builds should build ALL too... christos

Re: CVS commit: src/sys

2013-06-05 Thread Valery Ushakov
On Wed, Jun 05, 2013 at 19:53:09 -0400, Christos Zoulas wrote: > On Jun 5, 4:18pm, g...@ir.bbn.com (Greg Troxel) wrote: > -- Subject: Re: CVS commit: src/sys > > | Index: src/sys/netinet/tcp_input.c > | diff -u src/sys/netinet/tcp_input.c:1.325 src/sys/netinet/tcp_input.c:1.326 > | --- src/sys/n

Re: CVS commit: src/sys

2013-06-05 Thread Christos Zoulas
On Jun 5, 4:18pm, g...@ir.bbn.com (Greg Troxel) wrote: -- Subject: Re: CVS commit: src/sys | Index: src/sys/netinet/tcp_input.c | diff -u src/sys/netinet/tcp_input.c:1.325 src/sys/netinet/tcp_input.c:1.326 | --- src/sys/netinet/tcp_input.c:1.325 Fri Jun 22 15:09:36 2012 | +++ src/sys/netinet/tcp_

Re: CVS commit: src/sys

2013-06-05 Thread Greg Troxel
"Christos Zoulas" writes: > Module Name: src > Committed By: christos > Date: Wed Jun 5 19:01:26 UTC 2013 > > Modified Files: > src/sys/kern: init_main.c > src/sys/netinet: in_pcb.c in_proto.c ip_icmp.c ip_input.c ip_mroute.c > ip_output.c raw_ip.c tcp_input.c tcp

Re: CVS commit: src/sys/netinet

2013-06-05 Thread Christos Zoulas
In article , Greg Troxel wrote: >"Christos Zoulas" writes: > >> Module Name: src >> Committed By:christos >> Date:Wed Jun 5 00:48:32 UTC 2013 >> >> Modified Files: >> src/sys/netinet: udp_usrreq.c >> >> Log Message: >> conditionalize the net traversal code on FAST_I

Re: CVS commit: src/sys/netinet

2013-06-05 Thread Greg Troxel
"Christos Zoulas" writes: > Module Name: src > Committed By: christos > Date: Wed Jun 5 00:48:32 UTC 2013 > > Modified Files: > src/sys/netinet: udp_usrreq.c > > Log Message: > conditionalize the net traversal code on FAST_IPSEC to make rump build. FAST_IPSEC does not appear in -

Re: CVS commit: src/sys

2013-06-05 Thread Jukka Ruohonen
On Wed, Jun 05, 2013 at 11:25:00AM -0400, Greg Troxel wrote: > The real decision is how many conditional options to have. Agreed. > make INET mandatory. (Of course, I don't expect you or anyone else to > fix these bugs unless you are in the mood.) I think the networking code is among the last o

Re: CVS commit: src/sys

2013-06-05 Thread Greg Troxel
Jukka Ruohonen writes: > On Wed, Jun 05, 2013 at 10:24:34AM -0400, Greg Troxel wrote: >> INET is really INET4. > > Sure; but see below. > >> >#ifdef INET >> > ... >> >#ifdef INET6 >> >> That's a bug; in theory one should be able to have INET6 without INET. >> I did try it once

Re: CVS commit: src/sys

2013-06-05 Thread Jukka Ruohonen
On Wed, Jun 05, 2013 at 10:24:34AM -0400, Greg Troxel wrote: > INET is really INET4. Sure; but see below. > > #ifdef INET > > ... > > #ifdef INET6 > > That's a bug; in theory one should be able to have INET6 without INET. > I did try it once several years ago, and had some trou

Re: CVS commit: src/sys

2013-06-05 Thread Greg Troxel
Jukka Ruohonen writes: > On Tue, Jun 04, 2013 at 07:11:02PM -0400, Christos Zoulas wrote: >> On Jun 5, 2:06am, jruoho...@iki.fi (Jukka Ruohonen) wrote: >> -- Subject: Re: CVS commit: src/sys >> >> | On Tue, Jun 04, 2013 at 06:47:37PM -0400, Christos Zoulas wrote: >> | > While here, simplify th