wiz
be9025af4b
Remove a superfluous space.
2003-06-30 12:07:19 +00:00
wiz
5af4a1144e
Pa Aq -> Aq Pa.
2003-06-30 12:06:28 +00:00
wiz
23ea338b1b
Use a better width argument.
2003-06-30 12:02:08 +00:00
wiz
c2fc0b2f0f
Insert a Ns, not so trivial this time.
2003-06-30 12:00:32 +00:00
wiz
ce4e7779bb
Plural of CPU is CPUs.
2003-06-30 11:57:50 +00:00
wiz
40bce18021
Simplify macro usage.
2003-06-30 11:55:11 +00:00
wiz
a6b3a9e044
Use Pq to not confuse groff.
2003-06-30 11:53:22 +00:00
wiz
d9fb607438
Quote punctuation so it gets marked up.
2003-06-30 11:52:01 +00:00
wiz
52270a7fd9
Add Ns.
2003-06-30 11:49:54 +00:00
wiz
9f3dc3febc
Remove unnecessary space before dot.
2003-06-30 11:48:05 +00:00
wiz
96be368bd4
Be more careful about .Sm on/off usage.
2003-06-30 10:49:28 +00:00
wiz
d6967e3b9b
Quote punctuation so it gets marked up.
2003-06-30 10:46:22 +00:00
wiz
2a84f851af
Add some Ns.
2003-06-30 10:44:47 +00:00
wiz
5eaf7230fd
Quote some punctuation (XXX: take care on next import...).
2003-06-30 10:39:28 +00:00
wiz
64b68a3740
Fix rendering of the escape character.
2003-06-30 10:36:25 +00:00
itojun
7e53aaa8dd
better ip_mrouter_detach(). by ono@kame
2003-06-30 10:34:53 +00:00
itojun
2317e81b85
avoid ICMPv6 redirect if the packet filter rewrite dst addr to an address
...
on the incoming interface. cedric@openbsd
2003-06-30 08:00:59 +00:00
itojun
38d08be727
do not generate ICMP redirect when packet filter alters ip_dst to an
...
address that reside on the same link. Cedric Berger convinced me that
it is necessary.
2003-06-30 07:54:28 +00:00
bouyer
f740fc9ae3
Note ICH5 support.
2003-06-30 07:24:57 +00:00
itojun
842d3bee32
KNF
2003-06-30 03:30:50 +00:00
tacha
3bab95ce42
Add ftpd_loginx() and ftpd_logwtmpx() and use them to hold wtmpx file
...
open while a session.
Close bin/21692 by bqt@Krille.Update.UU.SE .
2003-06-30 03:06:06 +00:00
itojun
1db5330c52
freebsd code somehow crept in
2003-06-30 02:08:28 +00:00
itojun
7ded9690f4
after pfil_run_hooks, need to fix hlen as well
2003-06-30 01:22:51 +00:00
itojun
868bbd9978
fix indent
2003-06-30 01:21:11 +00:00
marcus
6aeeb40d4a
Updated to work with current rtld code.
2003-06-30 00:50:46 +00:00
marcus
5404577abf
SH also has a bogus DT_TEXTREL, it seems.
2003-06-30 00:49:25 +00:00
itojun
725c585956
remove IPv4 hook if IPv6 hook fails (seems to be cut-and-paste error).
2003-06-30 00:15:12 +00:00
bjh21
548e2c20bb
Clean up the mechanism used for opening output files. Rather than freopening
...
stdout onto each file in turn, then writing through fileno(stdout), use
open() and close() like any sensible program. This saves a lot of system
calls, removes a dependency on the particular behaviour of BSD freopen(),
and allows us to detect and report errors from close().
2003-06-29 22:57:23 +00:00
fvdl
4fdb86c883
Back out previous.
2003-06-29 22:35:35 +00:00
fvdl
d5aece61d6
Back out the lwp/ktrace changes. They contained a lot of colateral damage,
...
and need to be examined and discussed more.
2003-06-29 22:28:00 +00:00
bouyer
7a5f4f28d0
Don't use LBA48 if we don't have to (that is, if the request is inside the
...
first 128GB). Tested by Andreas Johansson.
2003-06-29 19:28:16 +00:00
ragge
679db94879
Add code to remember where in the send queue of mbufs the last packet was
...
sent from. This change avoid a linear search through all mbufs when using
large TCP windows, and therefore permit high-speed connections on long
distances.
Tested on a 1 Gigabit connection between Luleå and San Francisco, a distance
of about 15000km. With TCP windows of just over 20 Mbytes it could keep up
with 950Mbit/s.
After discussions with Matt Thomas and Jason Thorpe.
2003-06-29 18:58:26 +00:00
thorpej
d189d63466
Fix problems with the ktrace/lwp changes.
2003-06-29 18:53:52 +00:00
thorpej
a06b275edc
Undo part of the ktrace/lwp changes. In particular:
...
* Remove the "lwp *" argument that was added to vget(). Turns out
that nothing actually used it!
* Remove the "lwp *" arguments that were added to VFS_ROOT(), VFS_VGET(),
and VFS_FHTOVP(); all they did was pass it to vget() (which, as noted
above, didn't use it).
* Remove all of the "lwp *" arguments to internal functions that were added
just to appease the above.
2003-06-29 18:43:21 +00:00
aymeric
baf9a7e65c
Do not use RELOC() after the MMU is enabled.
...
Move the two assignments that were made after the MMU is on, before.
From Gunther Nikl on port-amiga@. Thanks!
2003-06-29 18:41:47 +00:00
martin
f73e5a517d
#ifdef _KERNEL_OPT police
2003-06-29 18:11:14 +00:00
martin
40ee31ef5e
Since a caddr_t is (mis-)used as the lwp-id, cast it to intptr_t and use
...
apropriate format string.
2003-06-29 18:05:06 +00:00
tshiozak
cba952da4e
u_int*_t -> uint*_t.
...
I would like to use stdint.h, but it is too modern for the host tools.
u_int*_t are more popular under UNIX-like systems, although they are
not backed up with any standards.
(src/tools/compat/stdint.h is maybe necessary.)
2003-06-29 17:30:07 +00:00
chris
e0c81274e0
Another proc->lwp change.
2003-06-29 17:18:48 +00:00
bouyer
b55e87ab48
Remove unused WAITTIME definition. Pointed out by Andreas Johansson.
2003-06-29 17:03:47 +00:00
oki
37f2deafd4
Document as PPPoE server mode.
2003-06-29 16:59:51 +00:00
thorpej
9f722af1c9
Adapt to ktrace/lwp changes.
2003-06-29 16:10:48 +00:00
thorpej
38271de3f4
Regen: adapt to linux mmap2 changes.
2003-06-29 16:08:36 +00:00
thorpej
8ab744356a
Adapt to linux mmap2 changes.
2003-06-29 16:07:58 +00:00
thorpej
f4fff81d3a
Adapt to ktrace/lwp changes.
2003-06-29 15:49:49 +00:00
thorpej
e3165e7ebd
Adapt to ktrace/lwp changes.
2003-06-29 15:27:59 +00:00
simonb
b8aadd3696
Only one function is this file wasn't ANSIfied, convert it.
2003-06-29 15:17:40 +00:00
simonb
2bda3187f5
Fix 'struct lwp *' lossage.
2003-06-29 15:14:11 +00:00
thorpej
7da140a1a2
Fix problems with Darren's ktrace/lwp changes.
2003-06-29 15:11:48 +00:00
simonb
168c4e411f
Fix 'struct lwp *' lossage.
2003-06-29 15:07:08 +00:00