Poul-Henning Kamp
5f7351637a
Fix the asami&phk bug. This was a sign-extension bug, where a long
...
got multiplied by a constant before being upgraded to long long.
This should fix kern/104 and possibly kern/105.
Thanks to: dyson & asami.
1996-01-06 12:49:53 +00:00
Nate Williams
ea5ff881da
Don't rely on the card 'automatically' powering up when we probe it.
...
On some laptops, this doesn't work (ie; IBM 75x series), so force it
to power on.
With this modification, I am able to read the tuples off 4 different
PCMCIA cards on my ThinkPad.
Reviewed by: phk@FreeBSD.org
Obtained from: if_zp.c
1996-01-06 07:49:43 +00:00
Poul-Henning Kamp
926cb56114
Fix a fencepost error.
...
Found by: Lars Fredriksen <fredriks@mcs.com>
1996-01-05 23:30:41 +00:00
Garrett Wollman
4b29bc4f8a
Eliminate the dramatic TCP performance decrease observed for writes in
...
the range [210:260] by sweeping the problem under the rug. This change
has the following effects:
1) A new MIB variable in the kern branch is defined to allow modification
of the socket buffer layer's ``wastage factor'' (which determines how
much unused-but-allocated space in mbufs and mbuf clusters is allowed
in a socket buffer).
2) The default value of the wastage factor is changed from 2 to 8.
The original value was chosen when MINCLSIZE was 7*MLEN (!), and is not
appropriate for an environment where MINCLSIZE is much less.
The real solution to this problem is to scrap both mbufs and sockbufs
and completely redesign the buffering mechanism used at both levels.
1996-01-05 21:41:54 +00:00
Garrett Wollman
d4fb926c62
Finally demolished the last, tottering remnants of GATEWAY. If you want
...
to enable IP forwarding, use sysctl(8). Also did the same for IPX,
which involved inventing a completely new MIB from whole cloth (which
I may not quite have correct); be aware of this if you use IPX forwarding.
(The two should never have been controlled by the same option anyway.)
1996-01-05 20:47:05 +00:00
Garrett Wollman
8890984dc9
Convert BOUNCE_BUFFERS and BOUNCEPAGES to new option scheme.
1996-01-05 20:12:53 +00:00
Garrett Wollman
d90f925367
The Linux emulator depends on SYSV IPC but doesn't actually reference
...
the options.
1996-01-05 19:52:49 +00:00
Andrey A. Chernov
eb8421526c
Remove -fno-strength-reduce, gcc bug recently fixed
1996-01-05 19:28:55 +00:00
Paul Richards
3d019cce2c
Added multicast support, currently #ifdef LNC_MULTICAST.
...
Changed parameter of lnc_watchdog to match what upper levels expect, fixed
a warning.
1996-01-05 19:12:47 +00:00
Andrey A. Chernov
92f710b2bc
Remove -fno-strength-reduce, gcc bug fixed recently
1996-01-05 18:54:07 +00:00
Garrett Wollman
01733a9b6d
Convert QUOTA to new-style option.
1996-01-05 18:31:58 +00:00
Garrett Wollman
b6794438ad
Delete a couple of unnecessary dependencies on Makefile.
1996-01-05 18:30:10 +00:00
David Greenman
8ee124f577
Increased default SOMAXCONN from 32 to 128. 128 is the largest value I
...
consider "safe" for most systems. Note that this is (has been for some
time) also tunable with sysctl (via kern.somaxconn) should the operator
wish to increase this value even higher. Also note that 128 is what
the Netscape WWW server reportedly asks for.
1996-01-05 17:49:30 +00:00
Garrett Wollman
692910e615
convert FDESC, KERNFS, NULLFS, PORTAL, UMAPFS, and UNION to the new
...
style of options.
1996-01-05 17:46:14 +00:00
Bruce Evans
ff03b205c3
Fixed initialization of $local_startup. sysconfig attempted to run
...
/usr/X11R6/etc/rc.d every time it was sourced.
1996-01-05 17:00:27 +00:00
Garrett Wollman
511b67b70c
Somehow managed to miss these four files when converting the SYSV IPC
...
options over to the new style.
1996-01-05 16:38:03 +00:00
Justin T. Gibbs
661104e49c
The sequencer sets Intstat to REJECT_MSG, not MSG_REJECT.
...
Submitted by: "Daniel M. Eischen" <deischen@iworks.InterWorks.org>
1996-01-05 16:13:44 +00:00
Justin T. Gibbs
a27c063027
Bring back the more heavy-weight version of the mesgin inb routines. Davidg's
...
testing made me think that some of the checks were superfluous, but
wcarchive (and Amancio) know better.
1996-01-05 16:11:49 +00:00
Thomas Graichen
28ae0646aa
added the file /etc/newsyslog.conf (config file for
...
/usr/sbin/newsyslog - see the man-page for it for details) - i put all
the "rotations" which were in /etc/[daily,weekly,monthly] in here
1996-01-05 10:24:03 +00:00
Thomas Graichen
7c1caee10f
changed /etc/[daily,weekly,monthly] to not rotate the logfiles by
...
"hand", changed /etc/crontab to call /usr/sbin/newsyslog every hour
(the entry was there before - but we haven't had any newsyslog until
today :-) and changed /etc/inetd.conf to also contain (commentet out)
entries for rpc.rquotad and rpc.sprayd (taken from NetBSD)
1996-01-05 10:09:13 +00:00
Thomas Graichen
160ce17a34
added newsyslog and spray
1996-01-05 09:53:49 +00:00
Thomas Graichen
f1fba5f1b8
added rpc.rquotad and rpc.sprayd
1996-01-05 09:44:31 +00:00
Peter Wemm
dae83b7963
Add sup and IPXrouted to makefile
...
(IPXrouted is far more likely to be used than XNSrouted)
1996-01-05 09:41:54 +00:00
Thomas Graichen
6e2776da86
This commit was generated by cvs2svn to compensate for changes in r13244,
...
which included commits to RCS files with non-trunk default branches.
1996-01-05 09:28:11 +00:00
Thomas Graichen
abf212be33
Obtained from: NetBSD
...
imported the newsyslog command from NetBSD - it make the "rotation" of
the logfiles much simpler (it is currently done by "hand" in the
/etc/[daily,weekly,monthly] scripts) - now it will be done by invoking
newsyslog every hour which is very customizable via a
/etc/newsyslog.conf file
1996-01-05 09:28:11 +00:00
Thomas Graichen
0198af8905
This commit was generated by cvs2svn to compensate for changes in r13242,
...
which included commits to RCS files with non-trunk default branches.
1996-01-05 09:09:30 +00:00
Thomas Graichen
d021b6c07a
Obtained from: NetBSD
...
imported the spray command from NetBSD - it can be used for network
analysis (see the man-page)
1996-01-05 09:09:30 +00:00
Thomas Graichen
59d7b5792a
This commit was generated by cvs2svn to compensate for changes in r13240,
...
which included commits to RCS files with non-trunk default branches.
1996-01-05 08:53:39 +00:00
Thomas Graichen
968a1b9ae4
Obtained from: NetBSD
...
imported the rpc.sprayd from NetBSD - it is used by the new spray
command for network analysis
1996-01-05 08:53:39 +00:00
Jordan K. Hubbard
d19388076a
Argh! Typo.
1996-01-05 08:47:37 +00:00
Thomas Graichen
1a3e5dd740
Obtained from: NetBSD
...
Imported rpc.rquotad from NetBSD - currently only used by the
quota-command to display quota's over nfs
1996-01-05 08:47:12 +00:00
Thomas Graichen
e26af47a28
This commit was generated by cvs2svn to compensate for changes in r13237,
...
which included commits to RCS files with non-trunk default branches.
1996-01-05 08:47:12 +00:00
Thomas Graichen
9288f2661b
Obtained from: NetBSD
...
replaced our quota with the NetBSD one, then added all changes we made
to our - this is done to support the displaying of quota's over nfs
using the rpc.rquotad
1996-01-05 08:37:29 +00:00
Jordan K. Hubbard
cf7e4ac2cf
DTRT for @.
1996-01-05 08:36:27 +00:00
Jordan K. Hubbard
24b935d90e
Refresh before calling selection hook.
1996-01-05 04:00:51 +00:00
Justin T. Gibbs
67e73a53fc
Null terminate execl's argument list.
...
Submitted by: Ron Lenk <rlenk@widget.xmission.com>
1996-01-05 01:48:07 +00:00
Andras Olah
74b48c1de1
Reverse the modification which caused the annoying m_copydata crash: set
...
the TF_ACKNOW flag when the REXMT timer goes off to force a
retransmission. In certain situations pulling snd_nxt back to snd_una
is not sufficient.
1996-01-04 21:34:21 +00:00
Garrett Wollman
0e41ee3037
Convert DDB to new-style option.
1996-01-04 21:13:23 +00:00
Garrett Wollman
22482bab92
Automatically create an empty opt_sysvipc.h to mimic old option
...
environment.
1996-01-04 20:34:28 +00:00
Garrett Wollman
50c73f3620
Convert SYSV IPC to new-style options. (I hope I got everything...)
...
The LKMs will need an extra file, to come later.
1996-01-04 20:29:06 +00:00
Garrett Wollman
a73af3a214
convert the math emulation to use the new-style options.
1996-01-04 19:51:50 +00:00
Jordan K. Hubbard
ba897d583b
Put Terry's wish list' into the
nice to have' section of the submitter's
...
guide.
1996-01-04 18:51:51 +00:00
David Greenman
a2d5b14236
Increased vm_object_cache_max by about 50% to yield better utilization of
...
memory when lots of small files are cached.
Reviewed by: dyson
1996-01-04 18:32:31 +00:00
Peter Wemm
7ae3d55998
Restore the changes I made after my last brain hiccup...
...
Document /var/log/sup.rename instead of the old name
Couple of lib build cleanups (like, not installing the library, and clean
all files)
It should be safe now.. :-)
1996-01-04 16:10:42 +00:00
David Greenman
a5782ecc36
Fixed minor struct cred leak. Discovered while looking for the opposite
...
condition - too many frees, which has yet to be found.
Reviewed by: dyson
1996-01-04 06:09:00 +00:00
Jordan K. Hubbard
05e296019e
One more pass through this. Looking pretty reasonable now!
1996-01-04 05:25:42 +00:00
Jordan K. Hubbard
48551fe40b
Work around optimizer strength reduction bug.
...
Submitted by: Richard Henderson <richard@atheist.tamu.edu>
Obtained from: bug-gcc@prep.ai.mit.edu
1996-01-04 04:44:47 +00:00
Jean-Marc Zucconi
dc94a1c589
Fix the spelling of 'partition'.
1996-01-04 02:00:16 +00:00
Joerg Wunsch
c8e2dc5a38
Sheesh. I've added -lipx to the wrong crunch config file.
...
While i've been here, added the ``-s labels'' flag to vnconfig.
1996-01-03 23:41:03 +00:00
Garrett Wollman
76c874a143
Convert PROCFS to the new style of options by the simple expedient of
...
adding it to this file.
1996-01-03 22:05:10 +00:00