Commit Graph

85289 Commits

Author SHA1 Message Date
enami 36c88aab99 - Recognize new type `rng'.
- Use getprogname().
2001-09-11 05:52:37 +00:00
uwe be7ed09a36 Fix quotes for `time-of-day'. 2001-09-11 05:41:37 +00:00
enami 54d0f0cc4b Fix off-by-one error; root on sd0i shoule be rejected if maxpartition is 8. 2001-09-11 05:11:59 +00:00
eeh 93b54eb36a Implement pmap_growkernel(). 2001-09-11 04:35:43 +00:00
thorpej 16c229ea7c Optimization suggested by Bill Sommerfeld: Keep a hint as to the
"earliest" firing callout in a bucket.  This allows us to skip
the scan up the bucket if no callouts are due in the bucket.

A cheap O(1) hint update is done at callout insertion (if new callout
is earlier than hint) and removal (is bucket empty).  A thorough
refresh of the hint is done when the bucket is traversed.

This doesn't matter much on machines with small values of hz
(e.g. i386), but on systems with large values of hz (e.g. Alpha),
it has a definite positive effect.

Also, keep the callwheel stats in evcnts, so that you can view them
with "vmstat -e".
2001-09-11 04:32:19 +00:00
simonb f278adc002 The des_opts program suggests just "-DDES_UNROLL" on my 5000/260. 2001-09-11 04:10:41 +00:00
itojun 55e8bc4e8b make sup/supfilesrv IPv6 ready. supfilesrv listens to single socket,
therefore, you will need two instances running for dual stack support
(one with -4 and one with -6).
2001-09-11 03:33:52 +00:00
itojun c976c20dc0 correct 1st arg to select(). 2001-09-11 03:32:55 +00:00
wiz 0c2e5eb7eb Punctuation fixes. 2001-09-11 01:25:53 +00:00
wiz 3283c51072 Drop superfluous .Pp. 2001-09-11 01:25:39 +00:00
wiz 4577a82c45 Drop superfluous .Pp, punctuation fix. 2001-09-11 01:25:14 +00:00
wiz 63b5c68cd4 Drop superfluous .Pp's, punctuation fixes, improve citation. 2001-09-11 01:24:47 +00:00
wiz 89deca2505 Drop superfluous .Pp. 2001-09-11 01:22:51 +00:00
wiz 3d6ca24ddb Boring whitespace fixes. 2001-09-11 01:18:14 +00:00
wiz 5aa5c17625 Empty line -> .Pp. 2001-09-11 01:17:24 +00:00
wiz 2a3e3930e4 Boring whitespace fixes. 2001-09-11 01:02:18 +00:00
wiz 42704c41c9 Sort SEE ALSO correctly; trade empty lines for .Pp; drop superfluous .Pp's;
correct oder of sections; even comment in some .Xr's in one case.
2001-09-11 01:01:56 +00:00
wiz 915147e7d3 Correct section order. 2001-09-11 00:36:57 +00:00
wiz 6909a9ca7e Correct section order, and delimit cross references in SEE ALSO section by
commas.
2001-09-11 00:36:44 +00:00
wiz b060fade3a Use standard section headers. 2001-09-11 00:09:05 +00:00
wiz d4f5b1e0bf Use standard section headers; uppercase .Sh argument; remove quotes in
.Sh arguments.
2001-09-11 00:08:25 +00:00
bjh21 768c591f5d Add eco and eca. 2001-09-10 23:49:21 +00:00
bjh21 e416135347 Driver for the standard Archimedes Econet interface, based around the
Motorola 6854 ADLC.
2001-09-10 23:41:48 +00:00
chris bd81d66bb5 Update the pmap following some comments from Chuck Silvers:
Remove some overzealous locking of HEAD_TO_MAP
Remove a potential deadlock in pmap_copy_page
Change alloc and free l1pt to use kenter/kremove.
Update pmap_map to use kenter (only actually used by dumpsys, so no matching kremove)
2001-09-10 23:40:02 +00:00
wiz 1f8c01ef58 Use standard section headers. 2001-09-10 23:32:29 +00:00
bjh21 c30b958988 Add fiq_installhandler(), so the current FIQ owner can change what handler
they've got installed without relinquishing the FIQ.
2001-09-10 23:17:48 +00:00
bjh21 52b3d56b11 Add MI Econet support. This is lacking any interfaces to higher-layer
protocols, and lacking any timeouts, but it basically works, doing four-way
handshakes in both directions and incoming Machine Peek operations.

Oh, and Econet is Acorn's ancient, proprietary 500kbit/s networking
technology.
2001-09-10 23:11:05 +00:00
chris 70907ad742 Add stubs for mmap to footbridge, must implement proper mmap real soon. 2001-09-10 23:05:19 +00:00
gmcgarry d4ccc73941 - include example and list of supported chipsets (from fvdl)
- some wording fixes
2001-09-10 23:01:00 +00:00
thorpej 4745c7f252 Update copyrights. 2001-09-10 22:45:46 +00:00
wiz dff9d639a4 Fix a typo and remove some unnecessary whitespace. 2001-09-10 22:32:49 +00:00
thorpej 9c5f5108f7 tcp_dump(): Also print the address of the in6pcb. 2001-09-10 22:19:03 +00:00
augustss c6c6b61cb5 Regen. 2001-09-10 22:17:33 +00:00
thorpej 2807c29a57 Update for TCP timer changes. 2001-09-10 22:17:28 +00:00
thorpej 6d0e813f6c Use callouts for TCP timers, rather than traversing the list of
all open TCP connections in tcp_slowtimo() (which is called 2x
per second).  It's fairly rare for TCP timers to actually fire,
so saving this list traversal is good, especially if you want
to scale to thousands of open connections.
2001-09-10 22:14:26 +00:00
chris 526acc0e8f Update man page with pmap_update change. 2001-09-10 21:25:23 +00:00
augustss 504f009161 Add an entry to make wsmux devices. 2001-09-10 21:23:53 +00:00
chris 0e7661f023 Update pmap_update to now take the updated pmap as an argument.
This will allow improvements to the pmaps so that they can more easily defer expensive operations, eg tlb/cache flush, til the last possible moment.

Currently this is a no-op on most platforms, so they should see no difference.

Reviewed by Jason.
2001-09-10 21:19:08 +00:00
gmcgarry ee1ad7fcec Add agp(4). 2001-09-10 21:14:02 +00:00
gmcgarry b8588d264d Add agp(4) man page. 2001-09-10 21:12:30 +00:00
thorpej 413e5cb878 Initialize TCP timer variables in a new function, tcp_timer_init(). 2001-09-10 20:36:43 +00:00
thorpej 3d9c42775e Add explicit initialization of TCP timer state. A noop right now. 2001-09-10 20:19:54 +00:00
gmcgarry ffdd97ccd7 Add pci_find_device.9 2001-09-10 20:16:46 +00:00
thorpej 45e02f5ee8 Split tcp_timers() into multiple functions, one for each timer,
and call it directly from tcp_slowtimo() (via a table) rather
than going through tcp_userreq().

This will allow us to call TCP timers directly from callouts,
in a future revision.
2001-09-10 20:15:14 +00:00
gmcgarry f1ad946ad3 Document pci_find_device(). 2001-09-10 20:13:17 +00:00
jdolecek f9c328376b supply missing .El 2001-09-10 19:28:36 +00:00
pooka db8658a3b8 * expand device name to raw device, not block device (eg. wd0a -> /dev/rwd0a)
* #ifdef non-relevant FreeBSD slice consistency check
2001-09-10 19:25:35 +00:00
christos de3ce7e7b1 - Remove old files.
- Port to NetBSD
XXX: *untested*
2001-09-10 18:27:41 +00:00
eeh 574892a487 Get rid of spurious OF_getprop(). 2001-09-10 16:27:53 +00:00
eeh 9d636228e1 Sun Blade 100 support (and some psycho fixes from Jason Wright). 2001-09-10 16:17:06 +00:00