Mark Murray
ecca1f1c0a
Remove __P().
2002-03-20 10:32:05 +00:00
Jeff Roberson
2684b6af7a
Remove references to vm_zone.h and switch over to the new uma API.
2002-03-20 10:17:00 +00:00
Jeff Roberson
070adb7022
Remove unused include.
2002-03-20 10:12:07 +00:00
Jeff Roberson
ab426dc822
Remove references to vm_zone.h and switch over to the new uma API.
2002-03-20 10:07:52 +00:00
Doug Rabson
c526161420
Replace calls to cpu_critical_enter/exit with appropriate calls to
...
either explicitly disable interrupts or use a real critical section,
as appropriate.
2002-03-20 10:04:08 +00:00
Doug Rabson
95f7adfa1a
Recreate intr_disable/intr_enable and implement cpu_critical_enter/exit
...
in terms of that (for now).
2002-03-20 10:00:05 +00:00
Jeff Roberson
421e6a659e
Remove unused include.
2002-03-20 09:55:07 +00:00
Jeff Roberson
c186f9b280
Remove unused header.
2002-03-20 09:46:04 +00:00
Crist J. Clark
6ee2a895d6
Add a paragraph break I missed in my last update.
2002-03-20 09:39:37 +00:00
Ruslan Ermilov
7b7aae4225
Fixed the NO_PERL braino.
2002-03-20 09:39:16 +00:00
Darren Reed
266ef5ec2d
* add extra -I path to get the "matching" header files. (and split the one
...
line up into three to make it more readable)
2002-03-20 09:04:34 +00:00
Darren Reed
1bdb47d692
* add extra -I path to get the "matching" header files.
2002-03-20 09:02:48 +00:00
Darren Reed
b62a26b14e
* need to compile printnat.c now that this function is in a separate .c file
...
* add extra -I path to get the "matching" header files.
2002-03-20 09:01:48 +00:00
Mike Barcroft
d345176dc7
When invoked with no file arguments, display usage.
...
Submitted by: Tim J. Robbins <tim@robbins.dropbear.id.au>
PR: 36074
Use new ID scheme.
2002-03-20 08:59:20 +00:00
Darren Reed
99a4a5a867
* ipftest now compiles with IPFILTER_LOG and needs ip_log.c to be able to
...
do the log regression test.
* dumping state/nat entries is also possible, outputting this information is
in the print{state,nat}.c files.
2002-03-20 08:57:10 +00:00
Alfred Perlstein
15fe306743
Remove __P.
2002-03-20 08:56:31 +00:00
Poul-Henning Kamp
c7ec79b076
Various style issues from a recent brucification:
...
use uint_%dt not u_int%dt
Avoid LL suffixed intergers where we can by using explicit casts.
(The last two I don't know how to avoid.)
Add an explanation why truncation rather than rounding is used.
Inspired by: bde
2002-03-20 08:48:21 +00:00
Jeff Roberson
e2f8f8a6b6
Remove references to vm_zone.h and switch over to the new uma API.
2002-03-20 08:48:07 +00:00
Jeff Roberson
9454002711
Remove references to vm_zone.h and switch over to the new uma API.
2002-03-20 08:03:54 +00:00
Alfred Perlstein
03d1b8bc94
Remove __P.
2002-03-20 08:00:54 +00:00
Alfred Perlstein
89c9a48352
Remove __P.
2002-03-20 07:51:46 +00:00
Poul-Henning Kamp
d485631b6c
Unifdef __FreeBSD__
...
MD5 checksum of binary unchanged.
2002-03-20 07:44:09 +00:00
Poul-Henning Kamp
5dccd5c649
Swing the axe and remove some archaic features from newfs which modern
...
diskdrives do neither need nor want:
-O create a 4.3BSD format filesystem
-d rotational delay between contiguous blocks
-k sector 0 skew, per track
-l hardware sector interleave
-n number of distinguished rotational positions
-p spare sectors per track
-r revolutions/minute
-t tracks/cylinder
-x spare sectors per cylinder
No change in the produced filesystem image unless one or more of
these options were used.
Approved by: mckusick
2002-03-20 07:16:15 +00:00
Alfred Perlstein
e57574233a
Remove __P.
2002-03-20 06:48:11 +00:00
Alfred Perlstein
b63dc6ad47
Remove __P.
2002-03-20 05:48:58 +00:00
Jeff Roberson
69c2d429c1
Switch vm_zone.h with uma.h. Change over to uma interfaces.
2002-03-20 05:48:55 +00:00
Jeff Roberson
586c8b6b29
Add calls to uma_zone_set_max() to restore previously enforced limits.
2002-03-20 05:30:58 +00:00
Jeff Roberson
736ee5907f
Add uma_zone_set_max() to add enforced limits to non vm obj backed zones.
2002-03-20 05:28:34 +00:00
Benno Rice
21d7ec8915
Increment pmap_pvo_count in the right place.
2002-03-20 05:25:33 +00:00
Alfred Perlstein
14e10f9952
Remove __P.
2002-03-20 05:14:42 +00:00
Alfred Perlstein
aa075405f6
Remove __P.
2002-03-20 05:00:21 +00:00
Jeff Roberson
54d77689ed
Backout part of my previous commit; I was wrong about vm_zone's handling of
...
limits on zones w/o objects.
2002-03-20 04:39:32 +00:00
Warner Losh
582236c5b2
Kill register
2002-03-20 04:33:25 +00:00
Jeff Roberson
9e9d298a9b
Remove references to vm_zone.h and switch over to the new uma API.
2002-03-20 04:11:52 +00:00
Jeff Roberson
c897b81311
Remove references to vm_zone.h and switch over to the new uma API.
...
Also, remove maxsockets. If you look carefully you'll notice that the old
zone allocator never honored this anyway.
2002-03-20 04:09:59 +00:00
Matthew Dillon
e38eb7fbe4
Fix a bug introduced in 1.11 (and also MFCd to stable AND the security branch)
...
that causes a machine to panic when the kernel PPP / DEFLATE code is used.
1.11 moved a ZFREE to a point after the structural members were clobbered
by stores into a union'd structure.
This commit fixes the bug and adds a big whopping comment to make sure
the code isn't 'cleaned up' again :-)
Ian Dowse came up with the same patch independantly 68 seconds before I
did, talk about Karma!
I would also like to thank Eugene Grosbein for marathon work in tracking the
problem down by udpating his -stable based on date over and over again
to close in on the commit that caused his crashes.
PR: kern/35969
Reviewed by: Ian Dowse <iedowse@maths.tcd.ie>
X-MFC after: immediately
2002-03-20 04:05:26 +00:00
Jeff Roberson
670d17b5c0
Remove references to vm_zone.h and switch over to the new uma API.
2002-03-20 04:02:59 +00:00
Alfred Perlstein
96abb1618a
Remove __P.
2002-03-20 02:39:27 +00:00
Robert Watson
ec3b06a0fe
"-" now sends output to stdout.
2002-03-20 02:35:14 +00:00
Robert Watson
b819704f1b
Teach growfs's dbg_open() that a filename of "-" for output means to
...
open "/dev/stdout". This doesn't actually affect growfs, but does affect
ffsinfo, permitting ffsinfo to output to the shell's stdout rather than
requiring it be dumped to a file or explicitly pointed at a special
device.
Reviewed by: peter
2002-03-20 02:34:01 +00:00
Jeff Roberson
df66668c42
Force the boot cpu to wait for the APs to finish starting up. This eliminates
...
a race where the AP and the boot cpu were trying to printf at the same time,
which was confusing the console too much for it to continue working.
2002-03-20 02:27:55 +00:00
Alfred Perlstein
8febc6ba17
Remove __P.
2002-03-20 02:15:46 +00:00
David E. O'Brien
5461a012fd
Remove ipnat until the committer can actually test his changes.
2002-03-20 02:09:50 +00:00
Alfred Perlstein
e51a25f850
Remove __P.
2002-03-20 02:08:01 +00:00
Jun Kuriyama
c605e9e62f
MFen.
2002-03-20 02:01:26 +00:00
David E. O'Brien
a3a263e37c
Remove ipftest until the committer can actually test his changes.
2002-03-20 01:57:52 +00:00
Mike Heffner
9cc7cb5818
Fix bugs from previous commit: initialize the correct field and use
...
the correct local variable.
Caught by: Joachim Isaksson <Joachim.Isaksson@algitech.com>
Pointy hat to: mikeh
2002-03-20 01:31:15 +00:00
Peter Wemm
1a8f253b64
Cast pointers to uintptr_t rather than u_int32_t. This doesn't work too
...
well on machines with 64 bit pointers.
2002-03-19 23:28:35 +00:00
Peter Wemm
41d0e15f86
Pacify gcc-3.1.
2002-03-19 23:26:37 +00:00
Peter Wemm
0d87e7d007
Fix some gcc-3.1+ warnings:
...
warning: deprecated use of label at end of compound statement
umass.c:2626:46: multi-line string literals are deprecated
2002-03-19 23:20:21 +00:00