Commit Graph

6438 Commits

Author SHA1 Message Date
rwatson
31c6261195 Moderate the recommendation that TCP keepalives always be turned on;
in some environments, this may result in the early termination of
legitimate TCP sessions during temporary network outages.  However,
maintain a strong recommendation that this be used when many network
clients are dialup.

Requested by:	fenner
2001-12-06 19:57:34 +00:00
rwatson
7cd5dbed2d o Add an additional .Pp between the send/recvbuffer comments and
the ones on ipfw.  Note to self: why does ipfw/dummynet count as
  a sysctl in tuning(7)?
2001-12-06 19:50:35 +00:00
rwatson
c2b9253de6 o When describing kern.ipc.nsfbufs, use the slightly less colloquial
"modify" rather than the slightly more colloquial "mess with".
2001-12-06 19:48:48 +00:00
rwatson
accfe66c9c The default values for net.inet.tcp.sendspace and net.inet.tcp.recvspace
have been changed to 32k and 64k respectively.
2001-12-06 19:44:31 +00:00
rwatson
9de94cbbea vmiodirenable is now on by default; reflect that change in default,
and talk more about the reasons to turn it off (restricted memory
environments), and less about why to turn it on.
2001-12-06 19:39:33 +00:00
rwatson
9785934b45 Reword parts of tuning(7) regarding loader tunables, which are refered
to in the document as "boot-time sysctls".  Instead, refer to them as
loader tunables.
2001-12-06 19:36:21 +00:00
sobomax
933dfc6762 Add missed capital GHE letter.
PR:		28571
Submitted by:	Alexey Klimov <kao@wiuu.kiev.ua>
2001-12-05 16:09:10 +00:00
jhay
13ccdfc032 Note sis(4) VLAN support.
MFC after:	7 days
2001-12-05 09:34:49 +00:00
jdp
636727a3bb Fix speling errur. 2001-12-05 02:55:23 +00:00
des
7dc3dcc549 Mention access control. 2001-12-04 14:28:38 +00:00
des
f2048e88ad Add cross-reference to pseudofs(9). 2001-12-04 14:28:26 +00:00
sheldonh
d8ebdad9de Regen. 2001-12-04 12:26:12 +00:00
bde
f77cb88b79 Unbreak "make lint" for programs and "make llib-l${LIB}.ln" for
libraries a little by not passing all of ${CFLAGS} to lint.  Pass
only options matching -[DIU]*.  The important -nostdinc option can't
be passed like I first thought because lint misinterprets as
"-n -o stdinc".  The unimportant -B* option can't be passed because
lint doesn't support it.  Otherwise, we pass the same options as
to mkdep, exept for a bug in the latter: -U* is not passed.  All
this depends on option args not being separated from option flags
by a space.
2001-12-03 22:31:09 +00:00
alfred
398478b467 More kernel vfs docco.
Xref vfs_mount(9) from vfs_mount(9)

Submitted by: Chad David <davidc@acns.ab.ca>
PR: docs/32431
2001-12-03 00:25:04 +00:00
wosch
2a7340892c Added OpenBSD 3.0. 2001-12-02 11:19:24 +00:00
wosch
1af4295e15 NetBSD 1.4 branch and NetBSD 1.5 branch are still alive.
Submitted by: jhawk@netbsd.org, itojun@iijlab.net
2001-12-02 11:16:30 +00:00
pdeuskar
124068ba6b Adding man page for the em driver.
Submitted by:Prafulla Deuskar
Reviewed by:Paul Saab
MFC after:1 week
2001-12-02 07:45:22 +00:00
jedgar
6e91b14e51 o Update copyright.
o Updates content to reflect the changes to acl.h for
  internal/external acl_t representations.

Approved by:	rwatson
Obtained from:	TrustedBSD Project
2001-12-02 04:27:13 +00:00
alfred
686c6d137f Add manpages describing various vfs and vm APIs.
Submitted by: Chad David <davidc@acns.ab.ca>
2001-12-02 02:13:35 +00:00
ache
b75f309317 Properly classify 0x80 - 0xa0 range 2001-11-30 07:19:21 +00:00
logo
821a895012 Spelling error: dependant -> dependent
PR
2001-11-30 07:18:23 +00:00
ache
04591e7260 Add 0x98 to CONTROL section 2001-11-30 07:10:08 +00:00
ache
711ce9931d Start every data line with keyword 2001-11-30 05:24:09 +00:00
ache
4d94472f05 Cleanup: cosmetique, standards conformance, BLANK/SPACE/GRAPH relation 2001-11-30 05:05:53 +00:00
ache
674e803e5c Clean DIGIT/XDIGIT sections 2001-11-30 01:22:01 +00:00
ache
0c2addad83 Back out national digits support, POSIX explicetely disallows it:
The definition of character class digit requires that only ten characters
-the ones defining digits- can be specified; alternate digits (for
example, Hindi or Kanji) cannot be specified here. However, the encoding
may vary if an implementation supports more than one encoding.

The definition of character class xdigit requires that the characters
included in character class digit are included here also and allows for
different symbols for the hexadecimal digits 10 through 15.
2001-11-29 03:03:55 +00:00
ache
9b9bdb6ffb Add hi_IN.ISCII-DEV 2001-11-28 07:23:11 +00:00
rwatson
c6a6609a81 Mention entropy_dir="NO" in diskless.8, since /var is an md-backed
file system and as such will not preserve its contents across boot.
2001-11-27 21:35:47 +00:00
rwatson
3971137159 Update diskless.8 to refer to 'device md' instead of 'options MFS'; in
-CURRENT, md devices with FFS on top are used in the diskless boot process
instead of MFS.
2001-11-27 20:47:38 +00:00
jdp
977889cb9d The fxp driver depends on device miibus now. 2001-11-27 18:51:08 +00:00
ru
5a6e4aa9ec Fixed two typos.
PR:		docs/32327
Submitted by:	Frans Haarman <frans@haarman.com>
2001-11-27 11:33:32 +00:00
ru
bfc02ffff8 Bring the ucred(9) manpage in sync with the source.
Specifically, document the crshared() function and
fix the prototype and description of the crcopy()
function.

PR:		docs/32275
Submitted by:	Chad David <davidc@acns.ab.ca>
Reviewed by:	jhb
2001-11-26 18:37:50 +00:00
dd
5dd8a71701 Spelling police: sucessful -> successful. 2001-11-24 23:41:32 +00:00
dd
835425c345 Remove a stale list of supported filesystems. If we do need a list of
filesystems somewhere, it probably shouldn't be here, and we should
make a better effort to keep it updated.
2001-11-24 21:19:46 +00:00
dd
3604f5fad7 Spelling police: "more then" - "more than" where appropriate. 2001-11-24 19:47:12 +00:00
dd
36b17b3b71 Remove the stuff about only the superuser being able to use this (see
snp.c 1.64), and add a note to the BUGS section warning the reader
that this manual page is stale and may be inaccurate.
2001-11-24 17:06:20 +00:00
dd
50d82a971e Talk about what the user needs to do to get the snp devices, and how
watch(8) will try to help them by loading the module.

PR:		25420
2001-11-24 17:02:58 +00:00
darrenr
94889bc82b second part of the patches to complete ipf changes to rc
PR:		multiple
Submitted by:	Arjan de Vet <devet@devet.org>
2001-11-24 15:36:30 +00:00
sheldonh
700dcd9f73 Regen.
This file is now generated using src/tools/tools/pciid/mk_pci_vendors.pl,
which merges the Boemler and Heckenbach lists used for rev 1.2.

For now, mk_pci_vendors.pl is called with the -l option, which uses
the entry with the longer description where the same device or vendor
is found in both lists.

If it turns out that this causes to much "back-and-forth" in future
deltas, we can drop the use of the -l option.
2001-11-23 12:03:50 +00:00
ache
968571c9f2 Add us-ascii_to_cp437 screenmap 2001-11-23 11:15:21 +00:00
ache
066850942f Add table for iso-8859-4 vga9 fonts 2001-11-23 01:39:42 +00:00
ache
c63e0b16dd 1) Map all unused characters into 'space'.
2) iso-8859-4_to_cp437 not do what its name tells at all, remove it
2001-11-23 01:25:56 +00:00
ache
1aae1f7206 Standard conformance cleanup 2001-11-23 00:10:17 +00:00
ache
6da34a3b75 Standards conformance cleanup 2001-11-22 23:39:06 +00:00
ache
e5663d89e9 Back out part of prev. commit for CP437 case, there are lower controls
graphics defined in codepage
2001-11-22 21:41:43 +00:00
ache
0028d820ef Don't use lower controls for console ACS. It makes screen or cut copy charset
adequate.
2001-11-22 21:04:44 +00:00
ache
ffa1d8fba0 Add Greek console family (PR)
Add more ACS chars to l1/l2

PR:		32193
Submitted by:	Basileios Anastasatos <B.Anastasatos@MyRealBox.com>
2001-11-22 19:28:24 +00:00
ache
0d66b4d439 Fix Latin1/Latin2 ac= to not use non-standard 8bit characters 2001-11-22 19:06:00 +00:00
ru
ebe2ce32d2 Install pnpbios(4) manpage.
Submitted by:	Alexander Leidinger <Alexander@leidinger.net>
2001-11-22 13:05:54 +00:00
ru
49cc4a51f1 mdoc(7) police: general cleanup. 2001-11-22 11:56:54 +00:00