summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Check that specified in the command line path is actually a directory,sobomax2004-04-301-0/+9
| | | | otherwise we are risking to coredump later on.
* Convert block comments into C-style that is understood by cpp(1).ru2004-04-291-204/+210
| | | | | | | Keep line comments in assembler style. A few lines that match the '^[[:space:]]+#' regexp still need to be fixed, somehow. OK'ed by: bde, jhb
* Revert previous change to this file because it breaks somebmilekic2004-04-291-9/+2
| | | | | | | | | | things which compare /etc/fstab entries to results from getfsstat(). The real way to fix this is to make 'ufs2' a recognized filesystem (for real, no beating around the bush). This should fix things like 'umount -a -t ufs' now. Appologies for the previous breakage.
* Add the commented out rue(4) entry.nyan2004-04-291-0/+1
|
* Add more .Dv markup.smkelly2004-04-291-2/+5
|
* Add missing .Dv markup and a comma.smkelly2004-04-291-2/+4
|
* MFi386: revisions from 1.15 to 1.17.nyan2004-04-291-8/+2
|
* MFi386: revisions from 1.16 to 1.18.nyan2004-04-291-8/+2
|
* Fix grammar to make it correctly wrong.cperciva2004-04-291-1/+1
|
* -U is now implemented. (It's been recognized by bsdtar for a while;kientzle2004-04-291-1/+4
| | | | now libarchive actually supports the underlying request.)
* Implement ARCHIVE_EXTRACT_UNLINK for regular files. This supports thekientzle2004-04-291-7/+49
| | | | | | | | | | | | -U flag to bsdtar. Essentially, this option breaks existing hard links. According to SUSv2, tar is supposed to overwrite existing files on extract by default which, in particular, preserves existing hard links. Note that this is yet another bug in gtar; it appears to always break existing links. (Maybe gtar's -U is broken?) I'm unsure about how to handle this for other file types; the current code always unlinks first unless the NO_OVERWRITE flag is specified. I've commented this issue liberally and will come back to it later.
* Add a new fortune from petef.smkelly2004-04-291-0/+2
| | | | Obtained from: petef
* Don't do malloc(M_WAITOK) for sound buffers while locks are held.green2004-04-291-1/+1
|
* Fix a memory leak in ng_get_string_token. A dynamically-allocatedjdp2004-04-291-0/+1
| | | | | | buffer wasn't freed if the function failed. MFC after: 3 days
* Bump manual page date for last update.simon2004-04-281-1/+1
| | | | Suggested by: ru
* Spelling: s/Unlinke/Unlike/trhodes2004-04-281-1/+1
| | | | PR: 66063
* Fix up a little language. Remove reference to sysctl(9). Fix reference tosmkelly2004-04-281-5/+4
| | | | watchdog(9) (was watchdogd(9)).
* Thanks to David's patches, we can now simplify these makefilesru2004-04-285-18/+14
| | | | | | further, and just use PROG directly (without FILES). Suggested by: bde
* Properly merge boot0sio.s and boot0.s into boot0.S.ru2004-04-281-1/+2
|
* Switch to using C99 comments in assembler preprocessed with cpp(1).ru2004-04-281-414/+414
|
* - Properly merge boot0sio.s and boot0.s into boot0.S.ru2004-04-283-666/+167
| | | | | | | | | | boot0sio.s was repo-copied to boot0.S. - Rename boot0ext.s to boot0ext.S, to stay consistent with other preprocessed asm files around here, and for better portability. Repocopied by: joe
* Keep track of threads waiting in kse_release() to avoid a racedeischen2004-04-284-33/+85
| | | | | | | | | | | condition where kse_wakeup() doesn't yet see them in (interruptible) sleep queues. Also add an upcall check to sleepqueue_catch_signals() suggested by jhb. This commit should fix recent mysql hangs. Reviewed by: jhb, davidxu Mysql'd by: Robin P. Blanchard <robin.blanchard at gactr uga edu>
* Refuse to extract entries with '..' in pathname.kientzle2004-04-281-7/+40
| | | | Pointed out by: David Schultz
* Remove code that fiddles with Giant in ndis_ticktask() that snuck inwpaul2004-04-281-4/+0
| | | | during previous commit.
* Temporary precaution measure until repocopy requests areru2004-04-281-5/+7
| | | | processed: don't forget to clean generated .s sources.
* o Add a missed description for m_free(9).maxim2004-04-281-0/+3
| | | | | Optained from: NetBSD MFC after: 1 week
* After talking to Bruce Evans and reading more standards specs,ru2004-04-286-1601/+1606
| | | | | | | | | switch to using C99-style comments everywhere in preprocessed assembler. The reason is that lines starting with the regexp '^[[:space:]]#' are treated as preprocessing directives, and while it seems to work now with GCC, it's not necessarily has to work. Use C99 comments `//' for the trailing comments to save whitespace.
* Remove the EBus stopgap of r1.248; a proper fix is in place now.tmm2004-04-281-8/+0
|
* Protect som cross-script invocations by checks to see that the targetphk2004-04-282-4/+10
| | | | | script exists. This allows pruning of rc.d scripts without getting too many ugly boottime error message
* Initdiskless must run before ipfw, or people will not be able tophk2004-04-282-0/+2
| | | | | | | | | use the conf/* stuff for their firewall configuration. Running ipfw before could seem to make sense in that it would allow one to setup access to the NFS server on a "default-deny" kernel, but it is pretty obvious to the casual observer that such a configuration never makes it far enough to mount the NFS-root in the first place.
* Fix the EBus driver to work with the new PCI code. Unlike other PCItmm2004-04-284-111/+202
| | | | | | | | | | | bridges, the EBus bridge has resource ranges it claims exclusively to map its children into in its BARs. Hence, we need to allocate these completely and manage them for the children, instead of just passing allocations through to the PCI layer as we did before. While being there, split ebus_probe(), which did also contain code normally belonging into the attach method, into ebus_probe() and ebus_attach(), and perform some minor cleanups.
* Sheesh...phk2004-04-281-7/+7
| | | | | | | Turn your back on SNMP for a decade and they go and make upper versus lowercase initial letter part of the specification. I told them ASN.1 was a bad mistake, but would they listen ? Ohhh no!
* MFi386: Use C (and CPP) style comments for assembler-with-cppru2004-04-282-290/+290
| | | | sources, for lines that start with a comment.
* Use C (and CPP) style comments for assembler-with-cpp sources,ru2004-04-282-290/+290
| | | | for lines that start with a comment.
* Use C (and CPP) style comments for assembler-with-cpp sources,ru2004-04-281-94/+96
| | | | for lines that start with a comment.
* - Use C (and CPP) style comments for assembler-with-cpp sources,ru2004-04-282-346/+347
| | | | | for lines that start with a comment. - Preserve as(1) style comments for the rest.
* Replace shell's positional parameters safely.ru2004-04-283-7/+5
|
* Update comments to reflect changes made by phk. Also no longer needsmkelly2004-04-281-5/+2
| | | | <sys/sysctl.h>.
* Remove information about specific formats; replace with akientzle2004-04-281-64/+4
| | | | reference to libarchive-formats(5).
* Add statistics: track offset in compressed and uncompressed archive,kientzle2004-04-2810-1/+43
| | | | provide an interface for the client to query this information.
* Correct spelling of "shell archive" to match /usr/share/misc/magic.kientzle2004-04-281-1/+1
|
* Add the libarchive-formats.5 manpage. This summarizes the variouskientzle2004-04-283-0/+229
| | | | | | | | | | archive formats supported by libarchive, with some information about the relative strengths and weaknesses of each format and notes about issues with libarchive's support for those formats. This page should make it unnecessary to list all of the libarchive formats in the manpage of each program that uses libarchive. Such programs can simply refer to libarchive-formats(5).
* Add read support for four more common cpio variants:kientzle2004-04-281-64/+304
| | | | | | | | | | * little-endian old-style binary cpio archives * big-endian old-style binary cpio archives * SVR4 portable archives without CRC * SVR4 portable archives with CRC Note that I don't yet verify the CRC for the last one, and I'm not quite certain I'm correctly parsing device numbers.
* Add LinkSys USB100M into list of supported devices and reformat list of thosesobomax2004-04-281-3/+12
| | | | devices to be similar to other USB ethers.
* Various quibbles:das2004-04-281-15/+28
| | | | | | | | | - Print a diagnostic if kdumpenv() fails. This can occur due to MAC restrictions or lack of memory. Catch all kenv(2) failures as well. - Just of the heck of it, DTRT if the kernel environment size changes at the wrong time. The old code could fail silently or fail to null-terminate a buffer if you got exceptionally unlucky. - Sort and GC the #includes.
* If the buffer supplied to kenv(KENV_DUMP, ...) isn't big enough,das2004-04-281-21/+18
| | | | | return the number of bytes needed instead of 0. The manpage claims that we do this anyway.
* Add jerk city commentary on C++.imp2004-04-271-0/+4
|
* - The i8254 uses IRQ 0, not IRQ 8. Correct i8254_intsrc to reference thejhb2004-04-272-8/+12
| | | | | | | | correct interrupt source. - Cache a pointer to the i8254_intsrc's pending method to avoid several pointer indirections in i8254_get_timecount(). Reported by: bde
* Removed now redundant CLEANFILES assignments.ru2004-04-275-6/+0
| | | | Not read enough of my patch by: obrien ;)
* Belatedly remove a file from the earlier apic code that is no longer used.jhb2004-04-271-59/+0
|
OpenPOWER on IntegriCloud