Sheldon Hearn
77f6aff1a4
Minor mdoc markup fixes.
...
Reviewed by: maintainer
2000-05-10 14:50:44 +00:00
Bruce Evans
fdf7d274e8
Regenerated (to fix "created from" lines, and to fix the previous
...
regeneration which somehow used the wrong syscalls.master file,
resulting in unbuildable svr4_sysent.c).
2000-05-10 14:38:28 +00:00
Bruce Evans
43914915de
Fixed the "created from" lines generated from this file. makesyscalls.sh
...
expects the active id to be on the first line of the specification file.
Fixed some nearby gratuitous differences with kern/syscalls.master.
2000-05-10 14:32:32 +00:00
Yoshihiro Takahashi
a5b52892d8
Sync with sys/conf/Makefile.i386 revision 1.184, 1.185 and 1.186.
2000-05-10 13:57:22 +00:00
Darren Reed
40f251bc6d
bring in net/pfil.c for pfil_hooks or ipfilter
2000-05-10 13:43:49 +00:00
Alexey Zelkin
4a06bf7d45
mdoc cleanup: use .Nm macro correctly, don't non mdoc macro
2000-05-10 13:43:36 +00:00
Darren Reed
0656ae020e
options PFIL_HOOKS -> opt_pfil_hooks.h
2000-05-10 13:43:27 +00:00
Darren Reed
e9c7bebf95
Add pfil(9) subroutines and manpage from NetBSD.
2000-05-10 13:37:51 +00:00
Sheldon Hearn
9d14d898fd
(null commit)
...
The previous commit was discussed with the maintainer (des).
2000-05-10 09:51:20 +00:00
Sheldon Hearn
0f5fcaa3f1
Supply only one author name per instance of %A, as per mdoc.samples(7).
...
PR: 18465
Submitted by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
2000-05-10 09:49:04 +00:00
David E. O'Brien
1383c1a906
Fix the linking in my `sa' changes.
...
Submitted by: Christian Weisgerber <naddy@mips.inka.de>
2000-05-10 02:51:36 +00:00
Jun-ichiro itojun Hagino
fdcb8debf6
correct more out-of-bounds memory access, if cnt == 1 and optlen > 1.
...
similar to recent fix to sys/netinet/ipf.c (by darren).
2000-05-10 01:25:33 +00:00
David E. O'Brien
fc81cf82e9
1. `movl' is for use with 32-bit operands. Do NOT use it with 16-bit
...
operands. `movw' could be used, but instead let the assembler decide
the right instruction to use.
2. AT&T asm syntax requires a leading '*' in front of the operand for
indirect calls and jumps.
2000-05-10 01:24:23 +00:00
David E. O'Brien
589607c435
AT&T asm syntax requires a leading '*' in front of the operand for indirect
...
calls and jumps.
2000-05-10 01:21:15 +00:00
David E. O'Brien
1da6875a18
Note the syntax for specifying an operand's size is documented in
...
src/contrib/gcc/config/i386/i386.md.
2000-05-10 01:17:14 +00:00
David E. O'Brien
25f0103084
When using _asm{} in GCC, one must specify the operand's size if one
...
specifies the instruction's operation size. GCC will default to 32-bit
operands reguardless of the prototype (ie, formal parameters' type)
of an inline function.
2000-05-10 01:15:55 +00:00
David E. O'Brien
86e3cfcd92
Note that in rev. 1.48, a 32-bit move was specified with 16-bit operands.
...
This is incorrect.
2000-05-10 01:08:08 +00:00
David E. O'Brien
7ff3366e73
Do not specify the size to move. Allow the assembler to figure it out.
2000-05-10 01:06:39 +00:00
David E. O'Brien
a77751d7ee
Support non-i386 architectures.
2000-05-10 01:05:11 +00:00
Jun-ichiro itojun Hagino
73b30f0cdf
correct possible security issue(s) in name resolution, due to use of
...
pre-4.9.7 BIND resolver code.
ftp://ftp.kame.net/pub/mail-list/snap-users/2348 for details.
Reviewed by: ume
2000-05-10 00:47:20 +00:00
Darren Reed
68b16578ca
Fix bug in dealing with "hlen == 1 and opt > 1"
2000-05-09 23:35:24 +00:00
Paul Saab
e0ab5cb523
Tidy up the offset calculations.
...
Submitted by: bde
2000-05-09 22:20:14 +00:00
Bill Paul
2aea9e28cb
When setting up an iomem resources, remember to set the MEM_ASSIGNED bit
...
so that pccardd actually does something to set up the memory range.
2000-05-09 22:01:16 +00:00
Bruce Evans
9114579d7a
Regenerated (fixed the calculation of sy_nargs in sysent tables).
2000-05-09 21:52:02 +00:00
Bruce Evans
563ae30721
Don't forget to back up svr4_syscallnames.c. Don't depend on side effects
...
to generate it.
2000-05-09 21:40:01 +00:00
John Baldwin
065aa0a04f
Actually, overriding DISTFILES at all is just a bad idea, so remove the
...
variable all together.
PR: misc/14104
Submitted by: Don Croyle <croyle@gelemna.ft-wayne.in.us>
2000-05-09 21:21:42 +00:00
Bruce Evans
6b972e0bdd
Fixed the calculation of sy_nargs in sysent tables. We attempted to do
...
this in awk using the hack of counting args of type off_t twice and args
of all other types once. This is too simple to work. It gave benignly
wrong results on alphas (off_t shouldn't be counted twice) and for
svr4_sys_mmap64() on i386's (off64_t should be counted twice). It gave
fatally wrong results for i386's with 64-bit longs (longs should be
counted twice). The correct value for sy_nargs is easier to determine
from the size of the args struct anyway, except for complications to
make the generated code almost readable.
Improved formatting of sysent tables by lining up the comments where
possible.
2000-05-09 21:18:30 +00:00
Nick Hibma
de7a23ed98
Regen.
2000-05-09 20:45:14 +00:00
Nick Hibma
65642d59be
Add Alcor Keyboard with built-in hub and its keyboard.
2000-05-09 20:43:37 +00:00
Tim Vanderhoek
b17407bbe3
Small grammar gnit.
2000-05-09 20:35:13 +00:00
Wilko Bulte
1f2c1783b5
Add reference to new name DIGITAL Server 330x for AlphaServer 800
2000-05-09 20:30:04 +00:00
Warner Losh
3ddaf7e529
This appears to have been repo-copied to lpd a while ago and never
...
deleted here. Diff shows there is only one change to this file, which
matches the repo histories.
2000-05-09 19:41:18 +00:00
Poul-Henning Kamp
192c06ea1b
Change the "bdev-whiner" to whine when open is attempted and extend
...
the deadline a month.
2000-05-09 18:53:57 +00:00
Mike Pritchard
b68d89eb4c
Spelling fix: despatching -> dispatching. This makes the
...
spelling consistent throughout the man page.
PR: docs/18467
Submitted by: Alexander N. Kabaev <ak03@gte.com>
2000-05-09 18:52:26 +00:00
Mike Pritchard
9dca1aebb4
Correct a patch name and use the correct macro for displaying it.
...
PR: docs/18468
Submitted by: Anatoly Vorobey <mellon@pobox.com>
2000-05-09 18:44:34 +00:00
Doug White
325bde0fb7
Remove metion of the 'magic options.' Apparently PXE doesn't require the
...
special options on 0.99c (it mumbles something about 'PXE server not found'
but works anyway), and it won't work at all with PXE 2.0.
2000-05-09 18:28:07 +00:00
John Baldwin
f548daf09f
Move UKBD_DFLT_KEYMAP into the options file since USB is machine
...
independent. This allows the ukbd0 driver to compile on the Alpha.
Approved by: o`brien (in principle)
2000-05-09 18:23:38 +00:00
Bruce Evans
29270d20bc
Fixed the return type for exit() and the args struct tag several NOPROTO
...
syscalls including exit(). These entries were unused, so the bugs had no
effect, but the the args struct tag will be used to calculate sy_nargs
correctly. exit() was wrong in all emulators.
2000-05-09 18:23:16 +00:00
Matthew Hunt
0486ee6f1f
Correct "it's" to "its".
...
PR: 18469
Submitted by: Anatoly Vorobey <mellon@pobox.com>
2000-05-09 18:08:52 +00:00
Bruce Evans
8bc3445472
Fixed the return type and args struct tag for exit(). They were wrong in
...
all emulators. These entries were unused, so the bug had no effect, but
the the args struct tag will be used to calculate sy_nargs correctly.
2000-05-09 18:08:51 +00:00
Bruce Evans
c35cf93676
Fixed the return type and args struct tag for exit(). They were wrong in
...
all emulators. These entries were unused, so the bug had no effect, but
the the args struct tag will be used to calculate sy_nargs correctly.
2000-05-09 17:54:30 +00:00
Matthew Dillon
d2ba455c2c
Some ioctl routines assume that the ioctl buffer is aligned, but a
...
char[] declaration makes no such guarentee. A union is used to force
alignment of the char buffer.
2000-05-09 17:43:21 +00:00
David E. O'Brien
0cc9df7d62
Change floating point exception type to match the i386 one.
...
Submitted by: Mark Abene <phiber@radicalmedia.com>
2000-05-09 17:43:20 +00:00
Paul Saab
88c7d46bdc
Add missing include machine/in_cksum.h.
...
Submitted by: n_hibma
2000-05-09 16:56:51 +00:00
Sheldon Hearn
befd5c23b2
The printenv(1) command is now a builtin(1) in csh(1).
2000-05-09 15:02:03 +00:00
Sheldon Hearn
68acfb0617
Update the builtin(1) manpage to reflect changes since the csh(1)
...
to tcsh(1) upgrade. The following commands were added as builtins:
bindkey
builtins
complete
echotc
filetest
hup
log
ls-F
printenv
sched
settc
setty
telltc
uncomplete
where
The printf builtin was removed.
2000-05-09 14:59:06 +00:00
Sheldon Hearn
f167d7fb3e
Fix miscellaneous mdoc macro argument limit infringements.
...
PR: 18465
Reported by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
2000-05-09 14:02:06 +00:00
Yoshihiro Takahashi
f9602de6f7
Add '-DPC98' to CFLAGS if MACHINE == pc98.
2000-05-09 13:46:14 +00:00
Sheldon Hearn
19f84caa23
Work around the mdoc argument limit in the Nd name description.
...
PR: 18465
Submitted by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
2000-05-09 13:01:04 +00:00
Nick Hibma
8760f39d55
Create a separate target for the 'modules'. Without this the modules
...
are only rebuilt if the kernel has changed as well.
While there make 'all' and 'modules' a PHONY target.
2000-05-09 10:39:38 +00:00