Skip site navigation (1)Skip section navigation (2)
Date:      Mon,  5 Apr 1999 15:20:38 -0700 (PDT)
From:      "Jonathan M. Bresler" <jmb@hub.freebsd.org>
To:        jlemon@americantv.com
Cc:        nicole@nmhtech.com, freebsd-advocacy@freebsd.org
Subject:   Re: Very Interesting user of FreeBSD
Message-ID:  <19990405222038.F2DDD15583@hub.freebsd.org>
In-Reply-To: <199904052038.PAA11647@free.pcs> (message from Jonathan Lemon on Mon, 5 Apr 1999 15:38:52 -0500 (CDT))

next in thread | previous in thread | raw e-mail | index | archive | help
> 
> I was talking to the Polyteam at the conference, and what they would
> primarily like is for my changes to be folded into FBSD (which I should
> submit for review sometime soon).  Also, they are still using 2.2.8
> instead of 3.1, with one of the primary reasons being that the two-floppy
> boot disk is a pain in the butt.

	appendix K of the report contains the configuration changes
and one code change that they (the polyteam) made to their FreeBSD
machines.  interesting reading.

kernel config:
options "MAXDSIZ=(512*1024*1024)"
options "DFLDSIZ=(128*1024*1024)"
options "NMBCLUSTERS=40960"			!!
options TCP_ACK_HACK

/sys/conf/param.c
#define MAXFILES (16384)
int maxfilesperproc = 12288

/sys/netinet/tcp_timer.h
#define TCPTC_MSL (3*PR_SLOWHZ)

/sys/kern/uipc_socket.c:  (faked diff)
                        if (resid >= MINCLSIZE) {
                                MCLGET(m, M_WAIT);
                                if ((m->m_flags & M_EXT) == 0)
                                        goto nopages;
                                mlen = MCLBYTES;
                                len = min(min(mlen, resid), space);
                        } else {
+				atomic = 1;
nopages: 

	and there is more, take a look at
http://bakeoff.ircache.net/bakeoff-01/

jmb



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-advocacy" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990405222038.F2DDD15583>