Commit Graph

1711 Commits

Author SHA1 Message Date
Takanori Watanabe
f0da5f560d Document BIOS bytecode overriding.
Pointed out by: Alex Zepeda <zipzippy@sonic.net>
Reviewed by:	David Wolfskill <david@catwhisker.org>
2002-07-05 15:36:03 +00:00
Tom Rhodes
54739799f2 GXP ATA drives also supports TQ 2002-07-02 20:23:43 +00:00
Kenneth D. Merry
98cb733c67 At long last, commit the zero copy sockets code.
MAKEDEV:	Add MAKEDEV glue for the ti(4) device nodes.

ti.4:		Update the ti(4) man page to include information on the
		TI_JUMBO_HDRSPLIT and TI_PRIVATE_JUMBOS kernel options,
		and also include information about the new character
		device interface and the associated ioctls.

man9/Makefile:	Add jumbo.9 and zero_copy.9 man pages and associated
		links.

jumbo.9:	New man page describing the jumbo buffer allocator
		interface and operation.

zero_copy.9:	New man page describing the general characteristics of
		the zero copy send and receive code, and what an
		application author should do to take advantage of the
		zero copy functionality.

NOTES:		Add entries for ZERO_COPY_SOCKETS, TI_PRIVATE_JUMBOS,
		TI_JUMBO_HDRSPLIT, MSIZE, and MCLSHIFT.

conf/files:	Add uipc_jumbo.c and uipc_cow.c.

conf/options:	Add the 5 options mentioned above.

kern_subr.c:	Receive side zero copy implementation.  This takes
		"disposable" pages attached to an mbuf, gives them to
		a user process, and then recycles the user's page.
		This is only active when ZERO_COPY_SOCKETS is turned on
		and the kern.ipc.zero_copy.receive sysctl variable is
		set to 1.

uipc_cow.c:	Send side zero copy functions.  Takes a page written
		by the user and maps it copy on write and assigns it
		kernel virtual address space.  Removes copy on write
		mapping once the buffer has been freed by the network
		stack.

uipc_jumbo.c:	Jumbo disposable page allocator code.  This allocates
		(optionally) disposable pages for network drivers that
		want to give the user the option of doing zero copy
		receive.

uipc_socket.c:	Add kern.ipc.zero_copy.{send,receive} sysctls that are
		enabled if ZERO_COPY_SOCKETS is turned on.

		Add zero copy send support to sosend() -- pages get
		mapped into the kernel instead of getting copied if
		they meet size and alignment restrictions.

uipc_syscalls.c:Un-staticize some of the sf* functions so that they
		can be used elsewhere.  (uipc_cow.c)

if_media.c:	In the SIOCGIFMEDIA ioctl in ifmedia_ioctl(), avoid
		calling malloc() with M_WAITOK.  Return an error if
		the M_NOWAIT malloc fails.

		The ti(4) driver and the wi(4) driver, at least, call
		this with a mutex held.  This causes witness warnings
		for 'ifconfig -a' with a wi(4) or ti(4) board in the
		system.  (I've only verified for ti(4)).

ip_output.c:	Fragment large datagrams so that each segment contains
		a multiple of PAGE_SIZE amount of data plus headers.
		This allows the receiver to potentially do page
		flipping on receives.

if_ti.c:	Add zero copy receive support to the ti(4) driver.  If
		TI_PRIVATE_JUMBOS is not defined, it now uses the
		jumbo(9) buffer allocator for jumbo receive buffers.

		Add a new character device interface for the ti(4)
		driver for the new debugging interface.  This allows
		(a patched version of) gdb to talk to the Tigon board
		and debug the firmware.  There are also a few additional
		debugging ioctls available through this interface.

		Add header splitting support to the ti(4) driver.

		Tweak some of the default interrupt coalescing
		parameters to more useful defaults.

		Add hooks for supporting transmit flow control, but
		leave it turned off with a comment describing why it
		is turned off.

if_tireg.h:	Change the firmware rev to 12.4.11, since we're really
		at 12.4.11 plus fixes from 12.4.13.

		Add defines needed for debugging.

		Remove the ti_stats structure, it is now defined in
		sys/tiio.h.

ti_fw.h:	12.4.11 firmware.

ti_fw2.h:	12.4.11 firmware, plus selected fixes from 12.4.13,
		and my header splitting patches.  Revision 12.4.13
		doesn't handle 10/100 negotiation properly.  (This
		firmware is the same as what was in the tree previously,
		with the addition of header splitting support.)

sys/jumbo.h:	Jumbo buffer allocator interface.

sys/mbuf.h:	Add a new external mbuf type, EXT_DISPOSABLE, to
		indicate that the payload buffer can be thrown away /
		flipped to a userland process.

socketvar.h:	Add prototype for socow_setup.

tiio.h:		ioctl interface to the character portion of the ti(4)
		driver, plus associated structure/type definitions.

uio.h:		Change prototype for uiomoveco() so that we'll know
		whether the source page is disposable.

ufs_readwrite.c:Update for new prototype of uiomoveco().

vm_fault.c:	In vm_fault(), check to see whether we need to do a page
		based copy on write fault.

vm_object.c:	Add a new function, vm_object_allocate_wait().  This
		does the same thing that vm_object allocate does, except
		that it gives the caller the opportunity to specify whether
		it should wait on the uma_zalloc() of the object structre.

		This allows vm objects to be allocated while holding a
		mutex.  (Without generating WITNESS warnings.)

		vm_object_allocate() is implemented as a call to
		vm_object_allocate_wait() with the malloc flag set to
		M_WAITOK.

vm_object.h:	Add prototype for vm_object_allocate_wait().

vm_page.c:	Add page-based copy on write setup, clear and fault
		routines.

vm_page.h:	Add page based COW function prototypes and variable in
		the vm_page structure.

Many thanks to Drew Gallatin, who wrote the zero copy send and receive
code, and to all the other folks who have tested and reviewed this code
over the years.
2002-06-26 03:37:47 +00:00
Ruslan Ermilov
518e4deb99 A gross patch to tidy up the formatting.
Not objected to by:	grog
2002-06-21 06:50:16 +00:00
Julian Elischer
a835396035 A node that creates a device entry in /dev (yay devfs)
so that /dev/mumble can be the entrypoint to some networking graph,
e.g. a tunnel or a remote tape drive or whatever...

Not fully tested (by me) yet.

Submitted by:	Mark Santcroos <marks@ripe.net>
MFC after:	3 weeks
2002-06-18 21:32:33 +00:00
Giorgos Keramidas
b6fa516a8e Add missing verb. 2002-06-14 22:15:22 +00:00
Warner Losh
232ff1c787 document hw.pcic.ignore_pci 2002-06-14 06:56:35 +00:00
Warner Losh
27aa590f87 Add US Robotics Wireless Card 2410
Also add a snarky note about telling me about changes to this file so I can
keep OpenBSD and FreeBSD's copy of this man page more or less in sync.
2002-06-14 06:56:03 +00:00
Poul-Henning Kamp
56cf50ad48 Stamp out Danglish: Spelling, grammer and other nitpicking.
Submitted by:	"Steven G. Kargl" <kargl@troutmask.apl.washington.edu>
2002-06-09 10:25:51 +00:00
Greg Lehey
c4dafa223d Kludge around troff bugs to get a reasonable print format despite the
necessity to shrink quoted text to fit on the page.

PR:	38760
2002-05-31 06:17:03 +00:00
Giorgos Keramidas
ea36a492fc Typo: duel -> dual 2002-05-30 23:48:00 +00:00
Ruslan Ermilov
706b6f9f2e mdoc(7) police: minor markup fixes. 2002-05-30 12:59:52 +00:00
Ruslan Ermilov
0a8b331854 mdoc(7) police: fixed markup.
This manpage is still too NetBSD-centric.
2002-05-30 12:39:38 +00:00
Ruslan Ermilov
eb98fe6489 mdoc(7) police: minor markup nits.
The SYNOPSIS should be fixed to fit the FreeBSD needs.
2002-05-30 12:34:06 +00:00
Ruslan Ermilov
36e25d6ed3 Added the missing ``and''. 2002-05-30 12:29:37 +00:00
Ruslan Ermilov
866cb5b007 mdoc(7) police: markup nits. 2002-05-30 12:26:27 +00:00
Ruslan Ermilov
d89c4e9875 mdoc(7) police: GC whitespace at EOL. 2002-05-30 12:23:21 +00:00
Ruslan Ermilov
7d1deb1f04 Record the dependency on "device miibus". 2002-05-30 11:47:19 +00:00
Ruslan Ermilov
b5544fefe9 mdoc(7) police:
Do not use raw roff requests.
Replace tbl(1)'s use with the mdoc(7)'s -column list.
Removed cross references to non-existing manpages.
Minor markup nits.
2002-05-30 10:33:19 +00:00
Ruslan Ermilov
999e589b6a mdoc(7) police: Grr, once again, re-apply many fixes from
revisions 1.2 and 1.5 that got backed out by revision 1.4.
2002-05-30 08:45:06 +00:00
Ruslan Ermilov
cc6449ea7f mdoc(7) police: tidy up the markup. 2002-05-29 17:08:58 +00:00
Ruslan Ermilov
6b58ca3e0c mdoc(7) police: nits. 2002-05-29 17:00:41 +00:00
Ruslan Ermilov
b6437e68cd mdoc(7) police: really back out rev. 1.32. 2002-05-29 16:59:10 +00:00
Ruslan Ermilov
328b06b929 mdoc(7) police: tidy up the markup. 2002-05-29 14:11:17 +00:00
Brooks Davis
2962732fac Add a simple manpage for the discard interface derived from lo(4). 2002-05-29 06:59:30 +00:00
Brooks Davis
0d35b35ab5 Document the fact that these devices are allocated at runtime using
cloning and point to two common methods of doing so.
2002-05-29 06:55:06 +00:00
David E. O'Brien
34f67e88e6 Add gx(4) to the SEE ALSO. 2002-05-20 23:39:25 +00:00
Will Andrews
465996134b Add a manual page for the spic(4) device driver and hook it in the build.
Reviewed by:	ru
2002-05-20 18:50:58 +00:00
Tom Rhodes
0e85d620bc More file system > filesystem 2002-05-16 05:21:58 +00:00
Hajimu UMEMOTO
138465e0d6 correct wording.
Pointed out by:	brian
2002-05-15 16:37:26 +00:00
Hajimu UMEMOTO
210b1d8a55 Sync with reality.
IPV6CTL_MAPPED_ADDR was obsoleted by IPV6CTL_V6ONLY.

MFC after:	2 days
		and approved by re
2002-05-14 05:32:23 +00:00
Wilko Bulte
88d564040b Explicitely note ATEN UC-232A is supported. Sort list entries
while we are here.
2002-05-11 20:10:38 +00:00
Josef Karthauser
1063e12617 Replace /kernel with /boot/kernel/kernel.
PR:		docs/37757
Submitted by:	Hiten Pandya <hiten@uk.FreeBSD.org>
2002-05-09 11:47:42 +00:00
Warner Losh
ad1e033e00 Try to de-confuse ad-hoc, demo ad-hoc and ibss:
o Don't ever refer to ad-hoc mode in the raw.  Instead, refer to it as
  demo ad-hoc mode or lucent legacy demo ad-hoc or some variation on this
  theme.
o Talk about point-to-point modes rather than ad-hoc modes.  Use ibss where
  appropriate.
o Fix type IBBS -> IBSS
2002-05-04 04:59:20 +00:00
Warner Losh
0801cb6b0e Minor tweaks:
o go ahead and document ibss-master and ibss modes, since there are
	  patches in the pipeline to support them.
	o Note that they aren't implemented yet.
	o Note that different regulatory domains have different default
	  channels.
	o Note that Lucent cards prior to firmware 6.0.4 do not support
	  ibss mode, and only support the older demo ad-hoc mode.
	o Note that PRISM2 chipsets do not support WDS mode of operation
	  (the mysterious -p 2 option).
2002-05-03 18:11:17 +00:00
Warner Losh
a4b3d9067b Remove Apple Airport card, since it seems to be mac-only.
Change date to today.
Add socket low power WLAN CF card
Add SMC 2602W which I use all the time
Comment out the create-ibss example.  FreeBSD doesn't yet have that
media option.  Also change it to master-ibss since that's what OpenBSD
really uses (and that is a change in their man page too)
2002-05-03 05:47:38 +00:00
Warner Losh
57190641c0 Additional patches from OpenBSD. Mostly grammar fixes and the like,
however I'm adding the Dlink DWL520 as supported from OpenBSD.  Also
adding Dlink DWL650 since I have one in my hot little hands and it
works great.

# I suspect that OpenBSD needs this too :-)
2002-05-03 05:39:16 +00:00
Warner Losh
07c8bcee12 Bring the wi man page into the 21st centry. This man page is based
heavily on OpenBSD's wi man page, with OpenBSDisms replaced by
FreeBSDisms.  I also added a note about where the man page came from.
I hope that I've not broken anything that ru cleaned up.  We now run
this through tbl, but that appears to be automatic.

Obtained From:  OpenBSD
2002-05-02 22:51:40 +00:00
Prafulla Deuskar
e4fe103d73 Modified the man page to reflect support for
82540EM based cards.

MFC after:	1 day
2002-04-30 17:14:51 +00:00
Semen Ustimenko
37f044d650 Implement true multicast filtering.
Inspired by:	dc(4)

MFC after:	1 week
2002-04-25 18:16:15 +00:00
Ruslan Ermilov
b25a566d47 Merge bsd.obj.mk's version of the _SUBDIR target with bsd.subdir.mk.
Ensure all standard targets honor SUBDIR.  Now `make obj' descends into
SUBDIRs even if NOOBJ is set (some descendants may still need an object
directory, but we do not have such precedents).  Now `make install' in
non-bsd.subdir.mk makefiles runs `afterinstall' target _after_ `install'
in SUBDIRs, like we do in bsd.subdir.mk.  Nothing depended on the wrong
order anyway.

Fixed `distribute' targets (except for the bsd.subdir.mk version) so that
they do not depend on _SUBDIR; `distribute' calls `install' which already
depends on _SUBDIR.

De-standardize `maninstall', otherwise manpages would be installed twice.
(To be revised later.)
2002-04-23 09:03:56 +00:00
Tom Rhodes
0f30ec08f7 Remove my change to the synopsis field
Requested by:	bde
pointy hat to:	myself ;)
2002-04-22 15:18:51 +00:00
Bill Fenner
fedda4fff3 mdoc police: Use Em ("emphasis") to get italics/underlining, instead of
Sm Pa (a syntax error, and an assertion that the arguments are path
 names, which is a little far from true).
2002-04-21 18:33:57 +00:00
Luigi Rizzo
73f2cd104c Add 'rl' to the list of supported drivers. 2002-04-21 15:47:59 +00:00
Nicolas Souchu
640984ba48 Fix controller in SW mode and See also + first appeared in 4.5. 2002-04-20 09:12:09 +00:00
Boris Popov
91a2bd2558 Describe situation where manual 'ifconfig xx0 up' required.
Submitted by:	Victor Sudakov <sudakov@sibptus.tomsk.ru>
2002-04-20 05:00:48 +00:00
Tom Rhodes
bfe7ad2431 Add the previously committed usb(4) manual pages to the build.
PR:		27919
MFC after:	3 days
2002-04-19 18:24:03 +00:00
Tom Rhodes
8b97f3548e Add usb(4) manual pages.
PR:		27919
Obtained from:	NetBSD
MFC after:	3 days
2002-04-19 18:18:11 +00:00
Tom Rhodes
28395f9543 Add more information to SYNOPSIS of ed.4
PR:		36467
MFC after:	3 days
2002-04-16 22:52:01 +00:00
Yaroslav Tykhiy
60af6add19 Describe possible values for net.inet.tcp.log_in_vain
and their effects.

PR:		docs/35932
Submitted by:	Alex Semenyaka <alexs@ratmir.ru>
MFC after:	1 week
2002-04-16 13:19:33 +00:00
Jun Kuriyama
aad76ee7dd Change reference path/URL.
Submitted by:	Olivier Tharan <olivier.tharan@idealx.com>
PR:		docs/37094
MFC after:	1 week
2002-04-16 01:21:06 +00:00
Tom Rhodes
cb9c48832e Make a few content fixes/additions to tap(4) manual page.
PR:		36985
Submitted by:	Hiten Pandya <hiten@uk.FreeBSD.org>
MFC after:	4 days
2002-04-12 22:06:16 +00:00
Mike Silbersack
102b06f844 Update documentation relating to sysctls in a post-syncache
world.  Goodbye tcp.tcp_lq_overflow and tcp.strict_rfc1948,
hello tcp.syncookies.

MFC after:	3 days
2002-04-10 19:52:21 +00:00
Julian Elischer
b1f2c84336 Slight correction to ng_etf man page and add it to the list
of man pages to install.
2002-04-09 21:34:33 +00:00
Mike Silbersack
74c0361a9d Update ip(4) manpage to reflect recent ephemeral port range
change.

Noticed by:	ru
MFC after:	1 day
2002-04-09 18:03:18 +00:00
Dima Dorfman
ac03552b66 Fix braino: the example interface is fxp0, not ed0.
PR:		36471
Submitted by:	John Nielsen <zoobie@bsdconspiracy.net>
2002-03-30 23:23:41 +00:00
Dima Dorfman
5320cc6b8c Correct typo.
PR:		36544
Submitted by:	dak@klemm.delta6.net
2002-03-30 23:19:18 +00:00
Jens Schweikhardt
74c66edafa Fix grammar and capitalization bogons.
MFC after:	1 day
2002-03-28 17:03:21 +00:00
Dima Dorfman
82d0caaef1 mdoc(7) police: remove whitespace at EOL. 2002-03-28 12:57:48 +00:00
Poul-Henning Kamp
27c747876e First cut at a geom(4) manpage.
The mdoc markup and all spelling errors in this file are all legal game
for anyone with more doc-clue than me.
2002-03-27 09:58:14 +00:00
Ruslan Ermilov
9f1207d517 Install sys/security/lomac/*.h to /usr/include/security/lomac/.
Install sys/<arch>/include/pc/*.h to /usr/include/machine/pc/.

PR:		docs/29534

Install sys/netatm/*/*.h to /usr/include/netatm/*/.

Don't install compatibility symlinks for <machine/soundcard.h>
and <machine/joystick.h>.  Three years is enough to be aware of
the change, and these weren't visible in the SHARED=symlinks
case.

Back out include/Makefile,v 1.160 that was a null change anyway
due to the bug in the path, and we now don't want to install
these headers because they would otherwise be invisible in the
SHARED=symlinks case.

Don't install IPFILTER headers.  Userland utilities fetch them
directly, and they were not visible in the SHARED=symlinks case.

Resurrect SHARED=symlinks in Makefile.inc1.

PR:		bin/28002

Prodded by:	bde
MFC after:	2 weeks
2002-03-26 16:05:14 +00:00
Nicolas Souchu
d0d27909aa viapm is the driver for VIA SMBus controllers 2002-03-23 15:26:20 +00:00
Archie Cobbs
b051f61562 Document support for 56-bit keys. 2002-03-20 18:16:18 +00:00
Ruslan Ermilov
21bb400da0 mdoc(7) police: tidy up. 2002-03-18 16:40:07 +00:00
Ruslan Ermilov
f831177dbd mdoc(7) police: tidy up. 2002-03-18 16:29:26 +00:00
Ruslan Ermilov
24fb82a7ad Unobfuscate VLAN trunking description.
Reviewed by:	luigi
2002-03-18 14:41:47 +00:00
Ruslan Ermilov
90305461e1 mdoc(7) police: tidy up. 2002-03-18 14:35:22 +00:00
Ruslan Ermilov
4e765b5129 mdoc(7) police: tidy up. 2002-03-18 13:52:30 +00:00
Ruslan Ermilov
708d714ed7 mdoc(7) police: tidy up. 2002-03-18 13:02:33 +00:00
Ruslan Ermilov
907fb800fd Remove the confusing XXX that should have been deleted in revision 1.5. 2002-03-18 12:49:03 +00:00
Ruslan Ermilov
dbcc13f540 s/UNIX/FreeBSD/ 2002-03-18 12:39:32 +00:00
Ruslan Ermilov
faf1a4f751 mdoc(7) police: macroize UNIX. 2002-03-18 12:38:33 +00:00
Ruslan Ermilov
d0f16f93db mdoc(7) police: nits. 2002-03-18 12:34:41 +00:00
Ruslan Ermilov
802a4af8e8 mdoc(7) police: Re-apply fixes from revision 1.2 that got completely
backed out by revision 1.4.  Fixed some more.
2002-03-18 12:25:33 +00:00
Ruslan Ermilov
b8fdc2f91e mdoc(7) police: markup nit. 2002-03-18 12:10:45 +00:00
Jens Schweikhardt
07baa40bd0 Typo: s/happenes/happens/
MFC after:	3 days
2002-03-16 18:20:44 +00:00
Jens Schweikhardt
eae023f0a6 Typo: s/frequencly/frequency/
MFC after:	3 days
2002-03-16 18:17:55 +00:00
Jens Schweikhardt
1a6417ba86 Typo: s/avalable/available/
MFC after:	3 days
2002-03-16 18:02:30 +00:00
Jens Schweikhardt
e710ad3d0c Typo: s/acknowlegement/acknowledgement/ 2002-03-16 17:56:40 +00:00
Jens Schweikhardt
c86e69862f Typo: s/Procotol/Protocol/
MFC after:	3 days
2002-03-16 17:47:32 +00:00
Jens Schweikhardt
27bbb168b1 Typo: s/Hauppage/Hauppauge/
MFC after:	3 days
2002-03-16 17:34:29 +00:00
Jens Schweikhardt
f1a4969a04 Correctly capitalize MHz and GHz.
MFC after:	3 days
2002-03-16 17:31:46 +00:00
Robert Watson
b45deeb2a5 NAI DBA update. 2002-03-14 21:58:58 +00:00
Jens Schweikhardt
50dc00f1a2 Typo; s/lister/listener/
MFC after:	3 days
2002-03-14 18:34:46 +00:00
Giorgos Keramidas
7167868368 Fix syntax error. 2002-03-13 18:37:40 +00:00
Robert Watson
9ed55d1061 Add a bugs notice indicating that the SEESENT flag may behave incorrectly
on interfaces with hardware loopback, and point-to-point interfaces
(unclear why that is, may need to be tracked down).
2002-03-13 00:04:53 +00:00
Murray Stokely
2732c17015 This driver first appeared in FreeBSD 4.5, not 5.0. 2002-03-12 12:26:05 +00:00
Dima Dorfman
2f5f12f5a7 Link scbus(4) to scsi(4). Most of the other CAM devices have their
own manual pages, but this is better than nothing until someone writes
a real scbus(4).

PR:		35641
Submitted by:	Gary W. Swearingen <swear@blarg.net>
2002-03-10 09:21:50 +00:00
Bruce A. Mah
fe7f645981 Fix typo: s/of/or/
PR:		35291
Submitted by:	John Nielsen <zoobie@bsdconspiracy.net>
		Tom Rhodes <darklogik@pittgoth.com>
2002-03-01 17:29:51 +00:00
Brooks Davis
872f786a75 Make gif(4) nesting level and parallel tunnel support tunable at runtime
via sysctl's.  The old #defines, MAX_GIF_NEST and XBONEHACK are
currently supported for backwards compatability, but will probably be
removed at some point in the future.
2002-02-26 01:56:56 +00:00
Brian Somers
637612f07a Document NGM_PPPOE_ACNAME. 2002-02-20 15:55:02 +00:00
Luigi Rizzo
caacfd9a33 Remove a blank line. 2002-02-18 01:59:40 +00:00
Luigi Rizzo
c90e28a7a1 Manpage update: comment existing functionalities and give
more detailed examples on how to use them.
Undocument deprecated functionalities which are going to be
removed soon.
2002-02-18 01:57:56 +00:00
John Hay
9c564b6c92 Add the puc (PCI "Universal" Communications) driver. The idea and some of
the structure definitions come from NetBSD to make it easier to share card
definitions. The driver only acts as a shim between the pci bus and the
sio driver. Later pci parallel ports could also be supported through this
driver. Support for most single and multiport pci serial cards should be
as simple as adding its definition to pucdata.c

Tested with the following pci cards:
Moxa Industio CP-114, 4 port RS-232,RS-422/485
Syba Tech Ltd. PCI-4S2P-550-ECP, 4 port RS-232 + 2 parallel ports
Netmos NM9835 PCI-2S-550, 2 port RS-232
2002-02-16 15:12:14 +00:00
Luigi Rizzo
235b52974f new entry for polling manpage
(wonder why the process cannot be made automatic...)
2002-02-15 08:36:06 +00:00
Luigi Rizzo
2b930ff963 Add a manpage for DEVICE_POLLING 2002-02-15 08:34:33 +00:00
Prafulla Deuskar
a59716d2d8 - Added support for receive in multiple
descriptors. This simplifies code for jumbo frames.
- Cleaned up coding conventions to make code more unix-like.
- Cleaned up code in if_em_fxhw.c and if_em_phy.c.
  Added relevant comments.

MFC after:	1 week
2002-02-13 18:19:27 +00:00
Dima Dorfman
2f47d083f2 memrange.h is in sys/.
PR:		34460
Submitted by:	Bruce Dang <bruce@research.teamxor.org>, roam
2002-02-10 08:52:25 +00:00
Mark Murray
04e3890675 CURRENT-tyyle updates. This document was (is?) in the dark ages. 2002-02-06 21:42:58 +00:00
Greg Lehey
984d1cc755 Remove references to raw devices.
Submitted by:	mbr
Approved by:	re
2002-01-28 04:26:29 +00:00
Josef Karthauser
a07e9d4af3 Merge from NetBSD.
uhub.c:     revision 1.37
    usb.4:      revision 1.30
    usb.c:      revision 1.38
    usb.h:      revision 1.40
    usb_port.h: revision 1.21
    usb_subr.c: revision 1.65
    usbdi.h:    revision 1.40

Split the attach/detach events up into device, driver and controller
attach and detach events.

The commit message from NetBSD was:
        date: 2000/02/02 07:34:00;  author: augustss;  state: Exp;
        Change the USB event mechanism to include more information
        about devices and drivers.  Partly from FreeBSD.

Also rework usbd to take these new event types into account.
2002-01-28 01:03:19 +00:00
Josef Karthauser
a31999ca51 Sync with NetBSD's version. 2002-01-28 00:48:28 +00:00
John Polstra
586d7c2ef0 Add support for the Netgear GA302T 10/100/1000 adapter. Given that
it's a 32-bit card, it's quite nice for $75.

MFC after:	3 days
2002-01-27 01:00:16 +00:00
Jens Schweikhardt
8f2087fb45 Fix a typo and fix indenting for struct sockaddr to match other structs.
No content changes.
MFC after:	3 weeks
2002-01-22 21:26:15 +00:00
Mike Pritchard
5ecd6127b9 Ispell sweep of share/man/man4/man4.i386. 2002-01-21 12:36:12 +00:00
Mike Pritchard
f87717fa8b Ispell sweep of share/man/man4. 2002-01-21 12:09:13 +00:00
Scott Long
4496239cd9 Remove very outdated comment from the Bugs section that states that
the driver cannot do U160.

Submitted by:	ladisalv.kostal@fem.uniag.sk
MFC after:	1 day
2002-01-20 16:09:18 +00:00
Robert Watson
080c70c1b1 o Clarify that various sysctl timing values are in milliseconds. 2002-01-19 03:44:42 +00:00
Ruslan Ermilov
7b6edd044b Introduce an interface announcement message for the routing
socket so that routing daemons and other interested parties
know when an interface is attached/detached.

PR:		kern/33747
Obtained from:	NetBSD
MFC after:	2 weeks
2002-01-18 14:33:04 +00:00
Ruslan Ermilov
757f341107 mdoc(7) police: tidy up markup and spelling.
PR:		docs/33962
2002-01-17 08:42:31 +00:00
Doug Ambrisko
db40c1aef4 Add VLAN for the dc(4) driver (ie long frame). The patch is 2 parts.
One to notify the system that the MTU for VLAN can be 1500 so the vlan
will automatically be configured with a 1500 MTU the other is to ignore
the error case if the received frame is to long.

The frame size notification came from code in the SIS driver, and
the support for long frames derived from the NetBSD Tulip driver.

Tested on:	4 port D-Link adapter DFE-570TX 4 Intel 21143
		Netgear card with 82c169 PNIC 10/100BaseTX

Reviewed by:	ru (manpage), wpaul (not objected to), archie
Approved by:	imp
Obtained from:	NetBSD
2002-01-16 16:33:58 +00:00
Ruslan Ermilov
491a842962 yp(4) -> yp(8).
PR:		docs/30797
2002-01-14 16:59:03 +00:00
Ruslan Ermilov
e66767666a mdoc(7) police: tidy up the markup. 2002-01-14 16:07:10 +00:00
Bruce A. Mah
4bd2f25749 Fix pathnames.
PR:		33716
Submitted by:	Tim J. Robbins <tim@robbins.dropbear.id.au>
2002-01-12 04:06:34 +00:00
Ruslan Ermilov
cc9ca450b6 mdoc(7) police: tidy up the markup. 2002-01-10 16:51:28 +00:00
Ruslan Ermilov
2d41af99ed mdoc(7) police: markup nits. 2002-01-10 16:11:12 +00:00
Ruslan Ermilov
fb5293cf53 mdoc(7) police: tidy up previous delta. 2002-01-09 15:32:25 +00:00
Dima Dorfman
ea3d958328 Link loop(4) to lo(4). The device's name is 'loop', which is what one
(at least a new one) would expect the manual page to be called (even
if the device is lo#).

PR:		32453
Submitted by:	Gary W. Swearingen <swear@blarg.net>
2002-01-07 06:48:30 +00:00
Dima Dorfman
4057c9f019 Assorted grammar and other mechanical fixes.
PR:		32941
Submitted by:	<setantae@submonkey.net>
2002-01-07 06:26:37 +00:00
Joerg Wunsch
4e481b6c28 Document the change from 0.0.0.1 to 0.0.0.* as `any remote address is OK'.
MFC after:	1 month
2001-12-30 16:40:48 +00:00
Chris Costello
c1e7a5f1e1 Spelling/typo fix: bood' -> boot' 2001-12-28 20:12:24 +00:00
Chris Costello
1c393056e6 Move UFS and FFS docs to section 7.
Obtained from:	TrustedBSD Project
Sponsored by:	DARPA, NAI Labs
2001-12-28 17:10:13 +00:00
Bruce A. Mah
93112659d8 Fix typo in example.
PR:		33260
Submitted by:	Dan Peterson <danp@danp.net>
2001-12-28 03:59:19 +00:00
Joerg Wunsch
41a95e09c1 Document that we now implement VJ header compression. 2001-12-27 16:49:54 +00:00
Chris Costello
abd9fb4454 Document UFS and FFS options and features.
Obtained from:	TrustedBSD Project
Sponsored by:	DARPA, NAI Labs
2001-12-27 03:05:44 +00:00
Ruslan Ermilov
273d3375f0 mdoc(7) police: removed duplicate xref. 2001-12-21 08:40:52 +00:00
Bill Paul
b1b636d1da Mention that the Xircom and Conexant chips are supported in
the dc(4) man page.
2001-12-20 00:02:13 +00:00
Ruslan Ermilov
8dc4780698 mdoc(7) police: markup, spelling, and grammar fixes.
PR:		docs/32955
2001-12-18 09:40:22 +00:00
Ruslan Ermilov
0dba3dc10c Now that the driver has been MFC'ed, fix the first appearence info. 2001-12-17 11:13:51 +00:00
Joerg Wunsch
9b8f90ce35 Part #1 of the promised floppy driver documentation update. 2001-12-16 22:49:57 +00:00
Brooks Davis
601404ecef Better document gif interface cloning intrastructure.
MFC After:	2 days
2001-12-14 22:55:10 +00:00
Ruslan Ermilov
e21a315ec5 s/sysctl -w/sysctl/ 2001-12-11 08:29:10 +00:00
Ruslan Ermilov
2e3a6736b2 mdoc(7) police:
- kill empty lines
- kill whitespace at EOL
- kill hard sentence breaks
- fix document date
- fix markup
- sort xrefs
- first appeared in 5.0, not 4.4
2001-12-08 18:07:29 +00:00
Ruslan Ermilov
c5afebadb2 mdoc(7) police: bump document date, fix markup. 2001-12-08 16:40:19 +00:00
Archie Cobbs
597600ee1b Document the 'enableAlwaysAck' field in the config structure. 2001-12-07 02:50:39 +00:00
John Hay
8c992b7f0d Note sis(4) VLAN support.
MFC after:	7 days
2001-12-05 09:34:49 +00:00
Prafulla Deuskar
1ac88dc08f 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
John Polstra
dcd183a935 The fxp driver depends on device miibus now. 2001-11-27 18:51:08 +00:00
Dima Dorfman
a48060a2f7 Spelling police: sucessful -> successful. 2001-11-24 23:41:32 +00:00
Dima Dorfman
0987daa1f8 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
Dima Dorfman
d3573aab8e 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
Ruslan Ermilov
e71efe6446 Install pnpbios(4) manpage.
Submitted by:	Alexander Leidinger <Alexander@leidinger.net>
2001-11-22 13:05:54 +00:00
Ruslan Ermilov
908ca4edad mdoc(7) police: general cleanup. 2001-11-22 11:56:54 +00:00
Ruslan Ermilov
3448dac344 mdoc(7) police: minor markup and misc fixes. 2001-11-22 11:36:29 +00:00
Ruslan Ermilov
32b1096260 mdoc(7) police: minor markup and spelling fixes. 2001-11-22 11:32:27 +00:00
Ruslan Ermilov
98998e6c2c mdoc(7) police: minor markup and misc fixes. 2001-11-22 11:25:02 +00:00
Ruslan Ermilov
75595bf1eb mdoc(7) police: cleanup. 2001-11-21 17:29:00 +00:00
Ruslan Ermilov
8a29064ab7 mdoc(7) police: cleanup the markup a bit. 2001-11-21 17:14:56 +00:00
Ruslan Ermilov
99696fe900 mdoc(7) police: minor markup and content fixes. 2001-11-21 17:12:31 +00:00
Ruslan Ermilov
25c5d2c69f mdoc(7) police: general cleanup. 2001-11-21 16:56:35 +00:00
Ruslan Ermilov
362502bc90 mdoc(7) police: minor markup and misc fixes. 2001-11-21 16:29:57 +00:00
Ruslan Ermilov
9a107570d4 mdoc(7) police: mark errno as a variable. 2001-11-21 13:38:17 +00:00
Ruslan Ermilov
8af059a2d5 Put missing space. 2001-11-21 10:42:18 +00:00
Ruslan Ermilov
b392c160c5 Grammar nit. 2001-11-21 10:39:12 +00:00
Ruslan Ermilov
f61a06f510 mdoc(7) police: anchor punctuation. 2001-11-21 10:33:42 +00:00
Brian Feldman
4085c80697 Add an initial lomac(4) manpage.
Sponsored by:	DARPA, NAI Labs (CBOSS project)
2001-11-20 19:22:37 +00:00
Ruslan Ermilov
ed92f13717 mdoc(7) police:
- removed whitespace at EOL
- removed hard sentence breaks
- removed duplicate word
- spelling
2001-11-20 15:25:12 +00:00
Josef Karthauser
0a98bc0cfa Bring in the ugen manual page from NetBSD. 2001-11-20 14:13:36 +00:00
Jun Kuriyama
a5908fe02a Add support for Intel's i820/i840/i845/i850/i860 chipset.
Submitted by:	nork@cityfujisawa.ne.jp (Norikatsu Shigemura)
2001-11-19 07:15:45 +00:00
Dima Dorfman
95d555de20 NMBCLUSTERS, not NMBCLUSTER.
Submitted by:	markus ryynnen <markus.ryynanen@kolumbus_nospam.fi>
2001-11-07 14:36:50 +00:00
Peter Wemm
d16d31f42e Document the reset command. I would have thought it blatently obvious,
but here it is:  reset - Hard reset the system
2001-11-05 23:46:10 +00:00
Murray Stokely
6c412638de Add the Farallon NetLINE 10/100 PCI to the list of cards supported by
rl(4).

PR:		docs/31270
Submitted by:	Gary W. Swearingen <swear@blarg.net>
2001-11-05 09:17:23 +00:00
Jeroen Ruigrok van der Werven
d7c2057f75 Disconnect sb.4.
This is a manual page left over from the old pcm/voxware driver era.
Superceded by newpcm's sbc.4.
2001-11-04 15:00:12 +00:00
Jeroen Ruigrok van der Werven
91747e9bed We ditched controller a long while ago in favour of device. 2001-11-04 14:21:21 +00:00
Jeroen Ruigrok van der Werven
f690459da2 Document support for VIA 82C596 ATA-33 and ATA-66. 2001-11-02 12:22:17 +00:00
Jeroen Ruigrok van der Werven
5ca843861c Explicitely mention this driver supports the RealTek 8029.
This should lessen some questions.
2001-11-02 09:43:45 +00:00
Jeroen Ruigrok van der Werven
50481cf313 Fix alignment of the chipsets to the largest one described. 2001-11-02 09:37:35 +00:00
Julian Elischer
7029957242 Fix typos. 2001-10-30 08:37:45 +00:00
Julian Elischer
10d7ccab88 A node that allows ethernet type packets to be filtered to different
hooks depending on ethertype. Great for prototyping protocols.
connects to the lower and upper hooks of an ethernet type of node.

Obtained from: Monzoon Networks.
	Thanks to Andre Oppermann, May 2001.
2001-10-30 07:28:17 +00:00
Ruslan Ermilov
698267057b mdoc(7) police:
- Minor markup nits.
- Arrange for appearance in 4.5.
2001-10-26 17:11:50 +00:00
Jeroen Ruigrok van der Werven
f99d03b936 Document HPT372 support. 2001-10-26 16:46:10 +00:00
Jeroen Ruigrok van der Werven
2706451058 We support the Intel ICH3 [ATA-100] chipset as well. 2001-10-26 16:34:26 +00:00
Jonathan Lemon
cce33f59e8 Document the link0 option, which downloads the microcode to the board. 2001-10-25 05:49:23 +00:00
Ruslan Ermilov
0ef0318866 Finish the removal of the LABPC driver.
Forgotten by:	phk
2001-10-24 10:57:30 +00:00
Matt Jacob
8c7c272c5a Remove wx. 2001-10-20 18:50:31 +00:00
Jonathan Lemon
20192ed470 Add manpage for gx driver. 2001-10-19 02:49:41 +00:00
Tom Hukins
48dfd764e1 "of the of the" -> "of the"
PR:		docs/31336
Submitted by:	Sameh Ghane <sw@shaolin.profile4u.com>
MFC after:	2 days
2001-10-17 15:02:37 +00:00
Scott Long
311508cccd Remove a couple of errant tags. 2001-10-17 05:10:58 +00:00
Bill Fenner
b9d45cebf4 The interface index space may be sparsely populated (e.g. when an
interface in the middle is if_detach()'d).  Return (and handle)
 ENOENT when the ifmib(4) is accessed for a nonexistent interface.

MFC after: 14 days
2001-10-17 04:12:29 +00:00
Dima Dorfman
235a25a6d6 sysctl -w -> sysctl, remove second person pronouns, and fix some other
minor bugs.

PR:		30772
Submitted by:	Peter Avalos <pavalos@theshell.com>
2001-10-15 13:30:52 +00:00
Scott Long
987de8a0d2 Add a manual page for the Maestro3 sound driver. This documents it's
special nature under the GPL and a boot hint that can affect operation.

MFC after:	3 days
2001-10-15 04:23:38 +00:00
Kazutaka YOKOTA
547d4262b2 Update man pages in the section 4 to match the reality in -CURRENT.
- Change lines referring to kernel configuration file:
        device foo0 at isa port xxx irq yyy...
  to
        device foo
  Describe resource "hints" in /boot/device.hints.

- Try to describe resource allocation and probe/attach behavior in the
  newbus framework.
2001-10-13 09:08:37 +00:00
Yaroslav Tykhiy
3a10201f01 Fix a small style slip: Files in /dev are not
devices theirselves, but device nodes.
2001-10-12 10:09:36 +00:00
Murray Stokely
45690c91ea Remove references to non-existant pvcsif(8) and pvctxctl(8).
PR:		docs/30446
Submitted by:	Giorgos Keramidas <charon@labs.gr>
2001-10-08 05:05:31 +00:00
Murray Stokely
9564d2e740 Remove reference to non-existant crd(4) man page.
PR:		docs/30445
Submitted by:	Giorgos Keramidas <charon@labs.gr>
2001-10-08 04:46:07 +00:00
Ian Dowse
c6cd7661ed Mention that ed requires miibus.
Suggested by:	Eugene Grosbein <eugen@grosbein.pp.ru>
2001-10-07 16:39:40 +00:00
Yaroslav Tykhiy
7d662e7761 Move the agp(4) page from the i386 directory
to the machine-independent directory since
AGP is used on other architectures as well.
2001-10-05 08:12:03 +00:00
Yaroslav Tykhiy
a7ba455dc7 Show kernel config syntax, not kldload command
in the SYNOPSIS section.

Reviewed by:	ru
2001-10-05 07:17:24 +00:00
Yaroslav Tykhiy
a1eb245d32 Use the traditional "indent" offset for mdoc(7) lists. 2001-10-05 06:32:40 +00:00
Yaroslav Tykhiy
2ba5fff2bf Update the status of VLAN support in the ethernet drivers. 2001-10-05 06:30:42 +00:00
Yaroslav Tykhiy
c6f01f68ab Add the manpage for the AGP interface. 2001-10-05 06:08:22 +00:00
Søren Schmidt
a7e53031f6 Update with latest chipset supports. 2001-10-03 09:02:05 +00:00
Jeroen Ruigrok van der Werven
e90dd0a351 Fix alphabetical order of supported chipsets. 2001-10-03 08:31:16 +00:00
Bruce Evans
dbb8cf2820 Fixed missing includes in synopsis. 2001-10-03 03:05:26 +00:00
Ruslan Ermilov
32eef9aeb1 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
Ruslan Ermilov
bb0234d433 Document new cursor escape sequences. 2001-10-01 13:47:40 +00:00
Ruslan Ermilov
9ca1d73cde mdoc(7) police: removed hard sentence breaks, minor markup nits. 2001-10-01 13:20:05 +00:00
Ruslan Ermilov
0787ca52b4 mdoc(7) police: removed hard sentence break. 2001-10-01 13:06:40 +00:00
Ruslan Ermilov
3301500c80 mdoc(7) police: fixed markup of the FILES section. 2001-10-01 13:04:35 +00:00
Ruslan Ermilov
1362176b78 mdoc(7) police: add missing punctuation. 2001-10-01 13:02:32 +00:00
Dima Dorfman
4674ae32e5 mdoc(7) police: sort xrefs. 2001-09-30 12:49:21 +00:00
Jonathan Lemon
750c427849 Add support for 28800 baud to sio.
PR: 30906
Submitted by: "Daniel O'Connor" <darius@chowder.dons.net.au>
2001-09-29 04:49:11 +00:00
Brooks Davis
f823d4a671 Mention that gif interfaces are created at runtime and refer the
administrator to the ifconfig create command.

MFC after:	1 week
2001-09-28 00:22:44 +00:00
Bill Paul
95d674824f Add device driver support for the Broadcom BCM570x family of gigabit
ethernet controllers. This adds support for the 3Com 3c996-T, the
SysKonnect SK-9D21 and SK-9D41, and the built-in gigE NICs on
Dell PowerEdge 2550 servers. The latter configuration hauls ass:
preliminary measurements show TCP speeds of over 900Mbps using
only normal size frames.

TCP/IP checksum offload, jumbo frames and VLAN tag insertion/stripping
are supported, as well as interrupt moderation.

Still need to fix autonegotiation support for 1000baseSX NICs, but
beyond that, driver is pretty solid.
2001-09-27 23:55:28 +00:00
Brooks Davis
c2eed10556 Add ng_ip_input. A new netgraph node for queuing IP packets into the
main IP input processing code.
2001-09-27 21:54:27 +00:00
Scott Long
bfa939da71 Fix a manlint nit with the aac.4 manpage.
Submitted by:	Brooks Davis <brooks@one-eyed-alien.net>
2001-09-27 21:52:42 +00:00
Murray Stokely
37068be4f9 Be consistent with the way we talk about sysctl values.
PR:		docs/30343
Submitted by:	Giorgos Keramidas <charon@labs.gr>
2001-09-27 07:26:16 +00:00
Brooks Davis
94408d94c3 /home/brooks/ng_gif.message 2001-09-26 23:50:17 +00:00
Brooks Davis
efacde1bcc The number of ccd(4) devices is no longer set at compile time so stop
trying to do it in the examples and config files.
2001-09-26 22:41:02 +00:00
Scott Long
a3484cc54c Clarify how to determine the firmware version.
Submitted by:	Anders Andersson <anders@codefactory.se>
MFC after:	3 days
2001-09-25 22:33:53 +00:00
Brooks Davis
9494d5968f Make faith loadable, unloadable, and clonable. 2001-09-25 18:40:52 +00:00
Kazutaka YOKOTA
5d78522dd4 - Update pnp(4) to match the reality in -CURRENT.
- Add pnpbios(4).
2001-09-23 08:41:12 +00:00
Kazutaka YOKOTA
c14b5c4dd0 Fix a comment line which wrongly states this man page is for
the `asc' scanner device :-)

MFC after: 3 days
2001-09-23 06:56:09 +00:00
Scott Long
7fb452755c Note in the BUGS section that the driver will not work on controllers that
have version 1.x firmware.  This might also need to go into the release
documentation, as many people seem to have been bitten by this.

MFC after:	3 days
2001-09-22 04:26:35 +00:00
Maxim Sobolev
78f45204d9 Introduce new syscons(4) kernel options:
- SC_CUT_SPACES2TABS - when copying text into the cut buffer convert leading
  spaces into the tabs;
- SC_CUT_SEPCHARS="XYZ" - treat supplied characters as possible words
  separators when the driver searches for words boundaries when doing cut
  operation.

Also unify cut code a bit to decrease amount of duplicated code. This fixes
line cut mode, so that it is no longer pads line with useless spaces.

Approved by:	ru
2001-09-21 20:41:24 +00:00
Wilko Bulte
114cdae568 xref bridge(4)
MFC after:	1 week
2001-09-20 20:01:27 +00:00
Murray Stokely
06b41eeff1 Add 'device smb' to the synopsis, as this is required to do anything
useful with these devices.
2001-09-18 02:50:24 +00:00
Murray Stokely
21cdb1a3c0 Add amdpm.4 to build. 2001-09-16 22:36:25 +00:00
Murray Stokely
c896039b9b SMBus support for the AMD 756 power management unit. See smbus(4),
amdpm(4) and smb(4).

This device can be used with userland programs such as sysutils/lmmon
to retrieve sensor information from the motherboard.

PR:		   kern/23989
Obtained from:	   Matthew C. Forman <mcf@dmu.ac.uk>
Based on:	   alpm(4)
2001-09-16 22:35:07 +00:00
Ruslan Ermilov
3bd345f3e5 mdoc(7) police: removed hard sentence breaks. 2001-09-11 10:08:29 +00:00
Orion Hodson
366a302c4b Driver supports CS4280 rather than CS428x.
MFC after:	10 days
2001-09-07 16:44:13 +00:00
Bruce A. Mah
99045818e1 Document two sysctl variables used by RFC 1948 functionality.
While I'm here, fix two markup inconsistencies.

Submitted by:	silby
2001-09-06 22:50:12 +00:00
Bill Paul
55a49b004f Mention some additional NatSemi DP8382x-based cards being marketed by
Trendware and Ark PC.
2001-09-06 07:02:10 +00:00
Brooks Davis
fe403d8d0d gif(4) is no longer a count device, reflect this change. 2001-09-06 00:27:48 +00:00
Brooks Davis
5c88c82cf3 Update tx(4) to always enable vlan(4) support.
Approved by:		semenu
2001-09-05 23:04:53 +00:00
Brooks Davis
9d4fe4b2b0 Make vlan(4) loadable, unloadable, and clonable. As a side effect,
interfaces must now always enable VLAN support.

Reviewed by:	jlemon
MFC after:	3 weeks
2001-09-05 21:10:28 +00:00
David E. O'Brien
8e25dc9b10 Add a manpage for the Comtrol RocketPort Intelligent Serial Port Card
driver.

MdocNging by:	ru
Obtained from:	BSD/OS
2001-09-05 20:14:59 +00:00
Dima Dorfman
ba969fdc82 Fix typo (therefor -> therefore)
PR:		30345
Submitted by:	Giorgos Keramidas <charon@labs.gr>
2001-09-05 19:24:28 +00:00
Dima Dorfman
585f21e146 Add a SEE ALSO section like the rest of the SCSI driver man pages.
PR:		30344
Submitted by:	Giorgos Keramidas <charon@labs.gr>
2001-09-05 19:23:36 +00:00
Dima Dorfman
9e41d551b6 can not -> cannot 2001-09-05 13:33:55 +00:00
Brooks Davis
dc9b30fcc2 Add cloning support for the tap(4) device similar to that in the tun(4)
device.

Submitted by:   Maksim Yevmenkin <myevmenk@digisle.net>
2001-09-05 01:06:21 +00:00
Ruslan Ermilov
1a184c815e mdoc(7) police: fixed formatting bugs in previous revision. 2001-09-04 09:54:04 +00:00
Ruslan Ermilov
92c355d758 mdoc(7) police: removed hard sentence breaks. 2001-09-04 09:47:40 +00:00
Murray Stokely
89dfa93a03 Add more information to the 'device timeout' message in the
diagnostics section.

PR:		docs/30163
2001-09-03 10:24:43 +00:00
Murray Stokely
3b85a094fd Two characters in the devices name in the SYNOPSIS were transposed.
matcdl0c -> matcd0lc

PR:	      docs/25000
Submitted by: Rich Morin <rdm@cfcl.com>
2001-09-03 10:06:26 +00:00
Matt Jacob
7034ded953 add 2300/2312 references 2001-08-31 21:43:35 +00:00
Murray Stokely
4fd606bfba Add PCI device IDs for Kuotech dual port serial cards.
Also give example of the flags needed to use these cards.

PR:		kern/21242
Submitted by:	Shigeki Moride <moride@portside.net>
2001-08-31 20:16:00 +00:00
Scott Long
36e0bf6e9c Mega update to the aac driver.
1.  Correctly handle commands initiated by the adapter.  These commands
    are defered to a kthread responsible for their processing, then are
    properly returned to the controller.
2.  Add/remove disk devices when notified by the card that a container was
    created/deleted/offline.
3.  Implement crashdump functionality.
4.  Support all ioctls needed for the management CLI to work.  The linux
    version of this app can be found at the Dell or HP website.  A native
    version will be forthcoming.

MFC-after:	4.4-RELEASE
2001-08-29 23:34:05 +00:00
Wilko Bulte
f254e1e4b3 xref to ispfw(4) in see also
Approved by:	mjacob
MFC after:	2 days
2001-08-29 21:13:26 +00:00
Warner Losh
4323c1b50c Fix typos and abuses of the markup system.
Submitted by: ru, gshapiro
2001-08-28 02:51:15 +00:00
Maxim Sobolev
d34da93210 - Add missed closing `"';
- mention koi8-u and cp866u fonts;
- describe 1024-byte limit on amount of data that is possible to paste from
  the syscons cut buffer.

MFC after:	1 day
2001-08-27 08:05:52 +00:00
Mike Smith
d1f717d179 Update to match new debugging subsystem/level codes. Also mention
upcoming load-time module autoloading feature.
2001-08-26 22:51:52 +00:00
Warner Losh
0683508cdc Improve the documentation for the various tunables. Document how to
force ISA routing of interrupts.  Warn the user that with ISA routing
of interrupts for PCI devices with more than one slot, polling mode is
in order.  Minor markup fixes as well and some white space/sentence
break changes (I did these as one commit since this file has been in
the tree only 4 days and I doubt that translation has begun).
2001-08-26 04:43:16 +00:00
Dima Dorfman
b196d1ce5c Consistently use 'queueing' instead of 'queuing'. Both spellings are
correct, but the former seems to be preferred.  This makes all of the
section-4 manual pages consistent in this respect.
2001-08-25 21:58:58 +00:00
Dima Dorfman
a845211b87 Revert my queueing -> queuing commit. Both spellings are correct, and
some people prefer the former.

Submitted by:	ken, nectar
2001-08-25 21:57:02 +00:00
Brian Somers
1485129b09 Document that IFF_MULTICAST should be ORd with IFF_POINTOPOINT or
IFF_BROADCAST for the TUNSIFMODE ioctl.
2001-08-25 09:14:55 +00:00
Dima Dorfman
d4b0f8e25a Spelling police: queueing -> queuing
PR:		29985
Submitted by:	Joseph Mallett <jmallett@xMach.org>
2001-08-23 21:58:38 +00:00
Dima Dorfman
e0723ac957 Spelling police: relabelled -> relabeled
PR:		29985
Submitted by:	{aac,amr,mlx}.4
2001-08-23 21:52:38 +00:00
Dima Dorfman
f1b113fd86 Capitalize Linux where appropriate.
Submitted by:	Joseph Mallett <jmallett@xMach.org>
2001-08-23 21:51:16 +00:00
Dima Dorfman
d144b78a29 Spelling police: withough -> without
Submitted by:	Joseph Mallett <jmallett@xMach.org>
2001-08-23 21:36:18 +00:00