Poul-Henning Kamp
fcf867e9f7
Mis-edit in last commit.
2002-05-26 09:57:59 +00:00
Poul-Henning Kamp
fde2a2e414
Be a bit smarter about rewriting data so we don't loose too much performance.
...
Sponsored by: DARPA & NAI Labs.
2002-05-26 09:38:51 +00:00
Tim J. Robbins
7d44cb6e1f
Add Standards, Diagnostics and History sections.
2002-05-26 07:07:14 +00:00
Poul-Henning Kamp
f43b2bac72
Use an umazone per unit for allocating the sectors for malloc backing.
...
Clean up things properly when we unconfigure malloc backed units.
Sponsored by: DARPA & NAI Labs.
2002-05-26 06:48:55 +00:00
Tim J. Robbins
456fc9e56f
If a file operand cannot be processed, go on to process any remaining files
...
but exit non-zero.
2002-05-26 06:15:15 +00:00
Dima Dorfman
dc6ca5b527
Remove extra word.
...
Submitted by: Andre Guibert de Bruet <andy@siliconlandmark.com>
2002-05-26 05:24:53 +00:00
Alan Cox
4b9fdc2bce
o Acquire and release Giant around pmap operations in vm_fault_unwire()
...
and vm_map_delete(). Assert GIANT_REQUIRED in vm_map_delete()
only if operating on the kernel_object or the kmem_object.
o Remove GIANT_REQUIRED from vm_map_remove().
o Remove the acquisition and release of Giant from munmap().
2002-05-26 04:54:56 +00:00
John W. De Boskey
24aaa74c83
Log invalid config entries. Make the -d option actually log to
...
the terminal(-d fix from dwmalone).
Approved by: dwmalone
MFC after: 2 weeks
2002-05-26 04:43:26 +00:00
Mark Murray
b227e8f18d
Trim out this subdir; nothing has been made in here for _ages_.
2002-05-25 21:11:13 +00:00
Poul-Henning Kamp
c6517568df
Give the "malloc" backing of md(4) an adaptive multilevel index tree to
...
remove the need for a contiguous array with pointers to all the sectors.
Try to make failure to malloc(9) memory a non-hang situation.
Eventually this will allow us to test the 64bit cleanness of the disk
I/O patch, but more work is outstanding here and elsewhere.
Sponsored by: DARPA & NAI Labs.
2002-05-25 20:44:20 +00:00
Brooks Davis
c69b7ffe7d
Make discard devices clonable and unloadable. Also, change the
...
interface name from ds# to disc#.
2002-05-25 20:20:35 +00:00
Brooks Davis
ae5a19be8e
Move all unit number management cloned interfaces into the cloning
...
code. The reverts the API change which made the <if>_clone_destory()
functions return an int instead of void bringing us into closer
alignment with NetBSD.
Reviewed by: net (a long time ago)
2002-05-25 20:17:04 +00:00
Mark Murray
ddf4e2a272
This directory (whis was supposed to do indexes etc for the printable
...
documentation) hasn't had its nappies changed since FreeBSD-2.0, and
is now starting to smell rather ripe.
Its dependant on ancient and removed tools, and the last maintainer
can't remember looking at it 1 1/2 years ago.
If we need it, its in the Attic.
Discussed with: asmodai
2002-05-25 19:36:09 +00:00
Alan Cox
a739e09c6e
o Remove some unnecessary casting from and add some necessary casting to
...
aio_suspend() and lio_listio().
Submitted by: bde
2002-05-25 18:39:42 +00:00
Ruslan Ermilov
76a254d7b6
Perl left src/.
2002-05-25 17:31:27 +00:00
Ruslan Ermilov
319f35a37c
PC98 creates different BOOTMFS configs for different floppy sizes.
...
Broken in: rev. 1.672
Spotted by: nyan
2002-05-25 16:13:52 +00:00
Dag-Erling Smørgrav
4b4c18f861
ANSIfy (significant portions were already partly ANSIfied)
2002-05-25 15:52:53 +00:00
Dag-Erling Smørgrav
b7457aabf6
Remove register.
2002-05-25 15:44:38 +00:00
Dag-Erling Smørgrav
dedf14f521
Automated whitespace cleanup.
2002-05-25 15:43:06 +00:00
Ruslan Ermilov
1c3fc710e2
Make it work for a different endianness binary.
...
(This version is still limited to ELF64.)
Reviewed by: jake
2002-05-25 13:43:16 +00:00
Ruslan Ermilov
a2acc41379
Get all the fruit from makefile.
2002-05-25 13:39:20 +00:00
Ruslan Ermilov
02c0301fa7
Move elf2aout to usr.sbin/.
...
Approved by: jake
2002-05-25 13:29:47 +00:00
Ruslan Ermilov
999ffea58a
Respect -q with "add" and "delete". Document who respects -q.
...
PR: bin/38531
2002-05-25 12:51:34 +00:00
Tim J. Robbins
fc482908be
sh appeared in Version 1, not System V.1.
2002-05-25 12:18:27 +00:00
Tim J. Robbins
d513af6a66
Implement `set +o', which displays the currently set options in a format
...
suitable for re-input into the shell.
2002-05-25 12:11:58 +00:00
Tim J. Robbins
ba545bbb61
Sync usage message with manual page synopsis.
2002-05-25 11:37:10 +00:00
Bruce Evans
e788f79698
Fixed printf format errors which apparently crept in while -Wformat was
...
disabled for gcc-3.
2002-05-25 11:18:03 +00:00
Bruce Evans
ae4c33defa
"Fixed" printf format errors (64-bit daddr_t casualties; should use %jx
...
instead of %llx when %j is available).
Changed nearby output formats from %x to %#x so that it is obvious that the
numbers are in hex (vinum mostly uses 0x%x elsewhere).
Didn't fix nearby format printf errors (long lines).
2002-05-25 11:12:30 +00:00
Bruce Evans
ff8cc2eb35
Fixed printf format errors. Most of them are 64-bit daddr_t casualties.
...
Printing daddr_t's using %d format was always an error, but gcc's
warning about it was ignored for supported 64-bit arches and not printed
for supported 32-bit arches. Hundreds if not thousands thousands of
previously "fixed" daddr_t printings are now broken on 32-bit machines
by casting daddr_t's to longs. daddr_t's should be printed using %jd
format, but this fix uses %lld since %j is not implemented in the
kernel yet.
Fixed some nearby format printf errors (style bugs).
2002-05-25 11:05:07 +00:00
Bruce Evans
5cc5b1d344
Fixed a printf format error. It was old and should have been detected by
...
gcc-2.9x, but somehow wasn't fixed already.
2002-05-25 10:48:03 +00:00
Tim J. Robbins
b8b53eef91
Bad numeric arguments or usernames should cause non-zero exit status.
2002-05-25 10:37:24 +00:00
Ruslan Ermilov
01e9310be5
Make these work with one-true-awk.
...
Spotted by: nyan
2002-05-25 10:37:00 +00:00
Tim J. Robbins
d6c762af40
Determine exit status to use before writing diagnostic message; warn()
...
may change errno.
2002-05-25 03:32:23 +00:00
Tim J. Robbins
816dde7d05
Typo: use plural now that we have more than one option.
2002-05-25 03:08:21 +00:00
Tim J. Robbins
fb2582c006
If a file cannot be processed, try to process any remaining files
...
then exit non-zero.
2002-05-25 03:04:28 +00:00
Jake Burkholder
4d574756ac
Convert the interrupt queue from an array to a linked list. Implement
...
intr_dequeue in asm so that it can easily be modified to do light weight
context switching.
2002-05-25 02:39:28 +00:00
David E. O'Brien
12b51ad055
The man page is VERY WRONG about using "-o noupdate" with -s.
...
So fix it, and add an example using -s.
2002-05-25 01:46:44 +00:00
Jake Burkholder
0679dc5f91
Try to handle "double faults" occuring at more trap levels (ie 4 :)).
2002-05-25 01:45:11 +00:00
Jake Burkholder
597e13d8c5
Minor style.
2002-05-25 01:44:08 +00:00
Jake Burkholder
d2ac231616
Make the run queue parameters machine dependent. Optimize 64 bit
...
architectures by using a 64 bit word for the bit array which keeps
track of non-empty queues.
Reviewed by: peter
2002-05-25 01:12:23 +00:00
Sheldon Hearn
76a4ef69bc
Regen:
...
* Hart: rev 230 of pcidevs.txt (2002-05-21)
* Boemler: vendors.txt (2002-05-24)
2002-05-24 22:01:18 +00:00
Alfred Perlstein
fa09b4015d
Backout 1.54 (restore definition for printf0 to actually do something).
2002-05-24 19:16:08 +00:00
Tom Rhodes
e223a77118
Add the word ``fields'' to the description, and change an instance from
...
fields to num in the SYNOPSIS
Noticed by: keramida
2002-05-24 19:12:02 +00:00
Maxime Henrion
8b1a580640
Convert mount_ext2fs(8) to nmount(2).
...
Reviewed by: iedowse
2002-05-24 17:39:37 +00:00
Maxime Henrion
ad841cb9b2
Convert ext2fs to nmount(2).
2002-05-24 17:38:01 +00:00
Ruslan Ermilov
28d2080a4b
Forgot to commit this for the includes' ->
buildincludes',
...
`incsinstall' -> `installincludes' changes.
2002-05-24 16:08:13 +00:00
Ruslan Ermilov
1737392273
Back out the ``run shell from $PATH'' change; this was an overkill
...
and is insecure.
Requested by: bde
2002-05-24 15:51:27 +00:00
Gregory Neil Shapiro
8ef44867e8
Add release notes for the changed file permissions on sendmail alias
...
and map databases as well as the statistics file.
MFC after: 1 day
pending RE approval
2002-05-24 15:50:34 +00:00
Warner Losh
51cf186eab
Correct US Robotics Wireless Card 2410 entry
2002-05-24 15:28:38 +00:00
Dag-Erling Smørgrav
c096af69cd
Add openpam_nullconv.3.
2002-05-24 13:22:15 +00:00