summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Delay an optional amount of time after booting before starting amckusick2002-12-184-4/+27
| | | | | | | | | background fsck. The delay defaults to sixty seconds to allow large applications such as the X server to start before disk I/O bandwidth is monopolized by fsck. Submitted by: Brooks Davis <brooks@one-eyed-alien.net> Sponsored by: DARPA & NAI Labs.
* Keep comments consistent with the code. Minor optimization.mckusick2002-12-181-14/+4
| | | | Sponsored by: DARPA & NAI Labs.
* I didn't intend to delete this rm from the Makefile. It snuck in atimp2002-12-182-0/+2
| | | | | | | | | the last second before the commit. # likely we can remove this hack now that gcc generates better aligned code # in the align to word case. Noticed by: bde
* Latest snapshot of devd. This one adds re-matching and stringimp2002-12-182-17/+89
| | | | expansion.
* Document what happens when the format string contains insufficienttjr2002-12-181-0/+23
| | | | | | | | conversion specifications to completely specify the resulting struct tm. PR: 46331 Submitted by: Christian S.J. Peron MFC after: 2 weeks
* - Hold the page queues lock when performing vm_page_busy().alc2002-12-181-2/+5
| | | | | - Replace vm_page_sleep_busy() with proper page queues locking and vm_page_sleep_if_busy().
* Hold the page queues lock when performing vm_page_flag_set().alc2002-12-182-1/+9
|
* Cosmetic cleanup of unsigned buglets.mckusick2002-12-181-5/+5
| | | | | Submitted by: Bruce Evans <bde@zeta.org.au> Sponsored by: DARPA & NAI Labs.
* Back out revision 1.38. disklabel now understands vinum volumes again.grog2002-12-181-5/+1
|
* Add Web Objects.eric2002-12-171-0/+2
| | | | | Obtained from: IANA Sponsored by: Apple
* Reduce diffs with Peter's expanded diffs:imp2002-12-172-8/+8
| | | | | 1) Put back the keyboard printing printf, at the cost of 58 bytes. 2) Minor tweak to getstr at no apparent cost.
* Add a check for negative offset locations and return EINVAL for them.phk2002-12-171-0/+5
|
* Back out the previous commit, since there could be dire consequences ifgreen2002-12-172-7/+3
| | | | /etc/rc were accidentally executed (as requested by other committeers).
* Remove request for i386 boot[012] review. I didn't have time recently tojhb2002-12-171-1/+0
| | | | | work on the UFS2 stuff and people were committing patches w/o sending them my way anyways, so it seems rather pointless for me to be in here. :)
* Make both UFS1 and UFS2 fit on the same boot blocks. These are aimp2002-12-174-142/+120
| | | | | | | | | | | | | | | | | | | | | | | | | | | | subset of Peter's patchs that are believed to be safe. Makefile tweaks: o -fomit-frame-pointer o Change default to building both UFS1 and UFS2 bootblocks. Lots of boot2 tweaks: o lookup is only ever called with kname, so use it directly. o inline memsize o getstr are only ever called with cmd, so hardware that. o tweaks to the parsing code to test after the conversion rather than before since we tested after anyways. o eliminate support for %x in printf. o eliminate a few bytes in printfs. o Tweak the boot banner. o eliminate support for wd and " " devices (I might add wd back to keep bde happy). o eliminate support for a few arguments. This takes us from -162 bytes free to 67 bytes free. I've tested this only on a few systems, so be careful when updating to this change. Submitted by: peter, imp, ian
* Make /etc/rc and /etc/rc.shutdown executable, and execute them directlygreen2002-12-170-0/+0
| | | | | | | instead of via /bin/sh. They already have the proper #! lines, and there is no new failure case (if execution fails, it still attempts to execute indirectly via /bin/sh). This is necessary for SEBSD to function properly.
* /home/green/tmp/cvsSFosXggreen2002-12-172-3/+7
|
* The code uses trapsasync, however the manual page uses asynctraps. Fix thetrhodes2002-12-171-1/+1
| | | | | | | | manual page to reflect the code. PR: 45820 Submitted by: Marco Molteni <molter@tin.it> Discussed with: tjr
* Remove unused lockcnt variable.phk2002-12-171-3/+0
| | | | Approved by: mckusick
* Split files into 1.44MB chunks rather than a tiny, high-ftp overhead size.obrien2002-12-171-1/+1
| | | | Approved by: rwatson
* Strip out any .comment ELF sections from crunchgen'ed binaries.obrien2002-12-171-0/+1
|
* Hold the page queues lock when performing vm_page_flag_set().alc2002-12-172-1/+3
|
* Add IPP (Internet Printing Protocol) and remove blank lines.eric2002-12-171-6/+2
| | | | | Obtained from: IANA Sponsored by: Apple
* Straighten out a compound if() to improve readability marginally.phk2002-12-171-1/+4
|
* Indent properly.phk2002-12-171-1/+2
|
* Remove unused variable cn_devfsdev.phk2002-12-171-2/+1
|
* Remove unused and incorrectly maintained variable "in_interfaces"phk2002-12-171-4/+0
|
* A couple of stylistic improvements.phk2002-12-172-5/+6
|
* Don't cast a pointer to (intptr_t) and then on to (int) when we cannotphk2002-12-171-3/+3
| | | | | be sure that (int) is large enough. Instead cast only to (intptr_t) and cast the switch/case values to (intptr_t) as well.
* Document `trap EXIT` and `trap SIGNAME`.fanf2002-12-171-1/+4
|
* Try to fix the problem with burncd blank not seeing the end ofsos2002-12-171-14/+9
| | | | the blank operation.
* This should be the way PC98 ATA disks are seen geometry wise.sos2002-12-173-4/+10
| | | | Should go into 5_0_RELEASE as well.
* Don't mangle geometry for pc98, this will happen in the ata driver.phk2002-12-171-4/+0
|
* Unspam some experimental changes which should not have been committed.phk2002-12-171-13/+40
|
* Remember to hold topology lock when we change things.phk2002-12-171-0/+2
| | | | Spotted by: kuriyama
* Constify the dumpconf() function.phk2002-12-171-1/+1
|
* Add PERIPH and XPT debug options to camcontrol. This makes all CAM debugnjl2002-12-172-4/+22
| | | | | | | options tunable from userland. Approved by: ken MFC after: 3 days
* Back out 1.19 to rethink approachnjl2002-12-172-4/+4
| | | | Requested by: julian@
* Check the return status of chdir() when using the -C option.seanc2002-12-171-1/+2
| | | | | Reviewed by: bright && jmallet MFC after: 1 day
* Check that the dump device is large enough. Otherwise we couldmarcel2002-12-171-0/+10
| | | | | | | | | end up with a dump offset that's smaller than the start of the dump device and either clobber data in preceding partitions or try to write beyond the end of the medium (unsigned wrap). Implement legacy behaviour to never write to the first 64KB as that is where metadata (ie disklabels) may reside.
* Automatically issue a "continue" along with the "detach" command. Thisnjl2002-12-172-4/+4
| | | | | | fixes the problem of cleanly restarting a target after entering gdb mode. Reviewed by: archie@
* Fix syntax in last commit.dillon2002-12-172-6/+6
|
* Convert the xl(4) driver to the busdma API. This should makemux2002-12-172-157/+300
| | | | | | | it possible to use this driver under ia64, sparc64 (though there may be endianness issues with this one) and other archs. Tested on: i386, alpha (gallatin)
* Reformat last changejulian2002-12-162-10/+14
| | | | Requested by: nate@
* Get rid of g_slice_addslice() and use g_slice_config() instead.phk2002-12-166-130/+101
| | | | Tested with: i386 + src/tools/regression/geom
* Don't dump core into a partition that is too small for it.julian2002-12-162-0/+18
| | | | | If we do, we usually wrote backwareds into the proceeding partititon which is usually the root partition.
* Goto WARNS 5 with assorted changes.phk2002-12-169-33/+32
|
* Constification and some s/int/u_int/ changes.phk2002-12-1611-84/+85
|
* Change the name for the local unix-socket based protocolmbr2002-12-168-14/+51
| | | | | | | | | from "unix" back to "local". Add some compat stuff so both ways work for some time. Reviewed by: phk Approved by: imp (UPDATING) Requested by: iedowse, lukem@netbsd.org
* Update this one too.phk2002-12-161-1/+5
|
OpenPOWER on IntegriCloud