summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* We can get past here on a normal vnode as well, so use VOP_STRATEGY if so.phk2003-01-131-1/+4
|
* Fix interactive booting:imp2003-01-132-4/+8
| | | | | | | | | | | | | o Revision 1.38 introduced the -n flag. It conflicted with the RB_BOOTINFO flag, so was in effect always on. Change the -n flag to be bit 0x1c instead of 0x1f. This also had the consequence that a mal-formed /boot.config would render the system unbootable because the user was unable to enter anything at all on the command line. o Remove the initialization of opt to be RB_BOOTINFO since we filter that bit out and do not otherwise use it. Reviewed by: jhb MFC after: 3 days
* OK Ok, so I didn't check the NO_GEOM case for the final version...phk2003-01-131-3/+3
| | | | Stumbled on by: bde
* List the Davicom 9009 as supported.trhodes2003-01-132-2/+2
| | | | Discussed with: bmah
* really, this time for sure. Fix formatting in usage().dillon2003-01-131-2/+2
|
* Grr. I keep forgetting things. Include -C in dump's usage() .dillon2003-01-131-1/+1
|
* Add support for obsolete option form for -Cdillon2003-01-131-0/+1
|
* Add a caching option to dump. Use -C. Note that NetBSD has a caching optiondillon2003-01-136-6/+175
| | | | | | | | | | | | | | | | | | | called -r but it takes 512 byte blocks instead of megabytes, and I felt a megabytes specification would be far more useful so I did not use the same option character. This will *greatly* improve dump performance at the cost of possibly missing filesystem changes that occur between passes, and does a fairly good job making up for the loss of buffered block devices. Caching is disabled by default to retain historical behavior. In tests, dump performance improved by about 40% when dumping / or /usr. Beware that dump forks and the cache may wind up being larger then you specify, but a more complex shared memory implementation would not produce results that are all that much better so I kept it simple for now. MFC after: 3 days
* Mention the oddities and requirements for mount operations executed byjoerg2003-01-132-3/+20
| | | | | | | | non-root users. PR: docs/42651 Submitted by: Thomas Seck <tmseck@netcologne.de> MFC after: 3 days
* MFR500: Updates for GCC version number, update 4.8-RELEASE scheduledbmah2003-01-131-13/+7
| | | | | | release date, update Perl removal text. Reminded by: keramida
* Add the /boot prefix. I forgot this when updating the location.trhodes2003-01-131-2/+2
| | | | Neglected by: trhodes
* Add Realtek ALC650 id.orion2003-01-131-0/+1
| | | | | Submitted by: "Mikko S. Hyvarinen" <morphy@morphy.iki.fi> MFC after: 5 days
* Add nForce2 device id.orion2003-01-131-0/+4
| | | | | Submitted by: "Mikko S. Hyvarinen" <morphy@morphy.iki.fi> MFC after: 5 days
* Enable the new h0h0magic code which on GEOM kernels make the md(4)phk2003-01-131-3/+0
| | | | driver a _real_ GEOM driver.
* Update the kernel location in FILES.trhodes2003-01-131-2/+2
| | | | PR: 47015
* Minimal fix for DV part.simokawa2003-01-134-32/+84
| | | | | | | | | - Don't panic on contigmalloc failure. - Calculate timestamp by feedforward rather than feedback which depends on unreliable interrupt timing. - Overwrite timestamp in CIP header correctly. - Add debug code for timestamp synchronization. - Add comments.
* Merge big endian and little endian case.simokawa2003-01-131-35/+42
| | | | Fill fdf bit fields and others.
* style(9) fixes, mostly add parens around return arguments.alfred2003-01-131-63/+65
|
* Always issue ioctls as BIO_GEATTR requests. The direction of data copies onphk2003-01-131-4/+6
| | | | | | | ioctls are no reliable indication of the ioctls "set" or "get" nature or if such simplistic categories can even be applied. MFC candidate: boot0cfg issue.
* Fix NewReno.hsu2003-01-135-89/+94
| | | | Reviewed by: Tom Henderson <thomas.r.henderson@boeing.com>
* Refer to 1003.1 instead of 1003.2 in the Standards section.tjr2003-01-136-6/+6
|
* Add a mutex around the per unit bioqueue.phk2003-01-131-12/+28
| | | | | | | | Only grab giant in the per unit kthread for SWAP and VNODE backed devices. Initialize the bioq before the kthread gets a chance to study it. Don't lock Giant in mddone_swap, we shouldn't need it.
* Remove four members of struct nameidata which have been commentedphk2003-01-131-13/+0
| | | | | | | out since rev 1.1 (24 may 1994) of this file. Add a nail to the K&R coffin by removing the #ifdef'ed K&R function declaration for NDINIT.
* Remove g_silence(). It does not do anything anymore.phk2003-01-133-15/+1
|
* Fix typo.phk2003-01-131-1/+1
|
* Add prototypes for the non-standard _unlocked functions.tjr2003-01-131-0/+6
|
* Add opt_geom.h to the list.phk2003-01-131-1/+1
|
* Remove the printf which announces the creation of malloc disks: it isphk2003-01-131-1/+0
| | | | | | | | inconsistent when we do not do it for swap or vnode. We still printf for preloaded disks because of the weak debugging options people have in embedded/tiny environments where this is usually used.
* Fixed typo and style.nyan2003-01-131-2/+2
| | | | Submitted by: Toru Morimoto <too@os.gulf.or.jp>
* Add check for AIO support before starting up.njl2003-01-131-0/+27
|
* Quirk for Sony USB disk-on-key device.njl2003-01-131-0/+8
| | | | | | PR: kern/46386 Submitted by: dillon MFC after: 3 days
* Enable rl(4). It is now fully working using busdma.obrien2003-01-131-1/+1
|
* Regenerateobrien2003-01-131-1/+3
|
* - Unbreak world. I did not notice that libkvm was still used in some placesjeff2003-01-132-7/+6
| | | | | | to access the pctcpu. This will have to be sorted out more later as the new scheduler requires a procedural interface for this data. A more complete solution will follow.
* Correct an off-by-one error in the calculation of the number of interruptbenno2003-01-131-1/+1
| | | | resources we're managing.
* Lock the stream before calling __sfileno() to retrieve the file descriptor.tjr2003-01-131-2/+10
| | | | 1003.1-2001 requires that fileno() behave as if it locks the stream.
* Add missing word to "Return Values" section.tjr2003-01-131-0/+1
|
* Bow to the whining masses and change a union back into void *. Retaindillon2003-01-1351-243/+213
| | | | | removal of unnecessary casts and throw in some minor cleanups to see if anyone complains, just for the hell of it.
* Make vm_page_alloc() return PG_ZERO only if VM_ALLOC_ZERO is specified.alc2003-01-121-4/+5
| | | | | | | | | | The objective being to eliminate some cases of page queues locking. (See, for example, vm/vm_fault.c revision 1.160.) Reviewed by: tegge (Also, pointed out by tegge that I changed vm_fault.c before changing vm_page.c. Oops.)
* MFen: Add `id' attribute to <sect1>.hrs2003-01-129-27/+28
| | | | | | | | | | | | 1.9 -> 1.11 early-adopter/article.sgml 1.10 -> 1.12 errata/article.sgml 1.124 -> 1.126 hardware/common/dev.sgml 1.3 -> 1.5 hardware/common/intro.sgml 1.3 -> 1.5 hardware/i386/proc-i386.sgml 1.1 -> 1.3 hardware/ia64/proc-ia64.sgml 1.2 -> 1.4 hardware/pc98/proc-pc98.sgml 1.7 -> 1.9 hardware/sparc64/proc-sparc64.sgml 1.474 -> 1.476 relnotes/common/new.sgml
* Merge the following from the English version:hrs2003-01-123-58/+123
| | | | | | | | | | 1.1 -> 1.2 hardware/pc98/proc-pc98.sgml 1.122 -> 1.124 hardware/common/dev.sgml 1.5 -> 1.7 hardware/sparc64/proc-sparc64.sgml Submitted by: Hideyuki KURASHINA <rushani@jp.FreeBSD.org> References: [doc-jp-work 581]
* Add code to make md(4) a GEOM device driver instead of relying inphk2003-01-121-4/+134
| | | | | | the disk mini-layer. This is currently not enabled.
* Partial support for the nVidia nForce2 chipset's on-board Broadcom/Altima PHYobrien2003-01-124-0/+7
| | | | | | | and 3com MAC. Specifications for the Altima PHY are available at: http://www.altimacom.com/products/ac101L.html Submitted by: Mikko S. Hyvarinen <morphy@morphy.iki.fi>
* Merge the following from the English version:hrs2003-01-121-152/+171
| | | | | | | 1.424 -> 1.444 relnotes/common/new.sgml Submitted by: Hideyuki KURASHINA <rushani@jp.FreeBSD.org> References: [doc-jp-work 577]
* - Move ke_pctcpu and ke_cpticks into the scheduler specific datastructure.jeff2003-01-122-17/+30
| | | | | This will prevent access through mechanisms other than the published interfaces.
* Forced commit; the previous commit's message should have been:roam2003-01-120-0/+0
| | | | | | | | | Add 'id' tags to all <sect1> sections to ensure a sensible naming scheme for the generated HTML documents. Translators: no content changes. Discussed with: bmah and udo on -doc
* /tmp/msgroam2003-01-1216-31/+31
|
* Shift things around a bit in preparation for future evilness.phk2003-01-121-43/+48
|
* Fix struct iovec documentation to match reality.mike2003-01-122-2/+2
| | | | Submitted by: Craig Rodrigues <rodrigc@attbi.com>
* MFbed: translation updateue2003-01-121-3/+3
| | | | hardware/sparc64/proc-sparc64.sgml: 1.6 -> 1.7
OpenPOWER on IntegriCloud