aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
...
* Implement DIOCGFRONTSTUFF ioctl which reports how many bytes from the startPoul-Henning Kamp2002-04-091-0/+4
* Rename DIOCGKERNELDUMP to DIOCSKERNELDUMP as it strictly speakingPoul-Henning Kamp2002-04-091-1/+1
* Turn #ifdef LOOKUP_SHARED into #ifndef LOOKUP_EXCLUSIVE to enable thisJeff Roberson2002-04-094-11/+11
* The fourth parameter to copystr() is a size_t, not an int.Maxime Henrion2002-04-082-2/+4
* Move generic disk ioctls from <sys/disklabel.h> to <sys/disk.h>.Poul-Henning Kamp2002-04-081-0/+1
* Put back dumppcb, but this time we put a comment to tell what it is for.Poul-Henning Kamp2002-04-081-4/+12
* Restructure aio_return() to eliminate duplicated code and facilitate GiantAlan Cox2002-04-081-21/+15
* There's only one socket zone so we don't need to remember itJeffrey Hsu2002-04-081-2/+1
* o Change kernel_vmount() interface to be more convenient : pass twoMaxime Henrion2002-04-072-60/+68
* Remove a comment which relates to the old name cache code, whichDavid Malone2002-04-071-4/+0
* Reduce the duplication of code for error handling in _aio_aqueue().Alan Cox2002-04-071-19/+7
* Change jobref and *ijoblist from int to long in order to avoidAlan Cox2002-04-071-3/+3
* Remove a stale comment.Jake Burkholder2002-04-061-4/+0
* Include machine/ktr.h for sparc64 so we pick up KTR_CPU.Jake Burkholder2002-04-061-0/+3
* Use CTASSERT rather than a runtime check to detect kinfo_proc size changes.Jake Burkholder2002-04-061-16/+2
* Added the new kernel dumping support for pc98.Yoshihiro Takahashi2002-04-061-1/+1
* Updated a doubly stale comment about signotify(). Fixed a nearby long line.Bruce Evans2002-04-051-4/+5
* Increase the size of the register stack storage on ia64 from 32K to 2MB soPeter Wemm2002-04-051-1/+7
* Add a generic implementation of inittodr() and resettodr(), as well asThomas Moestl2002-04-043-0/+676
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-0423-38/+38
* Change mtx_init() to now take an extra argument. The third argument isJohn Baldwin2002-04-042-16/+22
* Set the lock type equal to the lock name for now as all of the currentJohn Baldwin2002-04-041-1/+1
* Add a new char * pointer lo_type to struct lock_object that is used toJohn Baldwin2002-04-041-19/+28
* Delete the bogus d_boot[01] fields from struct disklabel.Poul-Henning Kamp2002-04-041-0/+14
* Moved signal handling and rescheduling from userret() to ast() so thatBruce Evans2002-04-042-25/+71
* Optimized the check for unmasked pending signals in CURSIG() using a newBruce Evans2002-04-041-8/+2
* o aio_process needn't fhold()/fdrop() the fp now that _aio_aqueue() andAlan Cox2002-04-041-13/+6
* Avoid a lock order reversal by dropping the eventhandler_mutex earlier.Alfred Perlstein2002-04-041-2/+1
* - Axe a stale comment. We haven't allowed the ucred pointer passed toJohn Baldwin2002-04-031-9/+2
* Add two forgotten vfs_unbusy() calls, in vfs_mount() and vfs_nmount().Maxime Henrion2002-04-032-0/+4
* Dike out a highly insecure UCONSOLE option.Ruslan Ermilov2002-04-031-4/+14
* brelse() was improperly clearing B_DELWRI in the B_DELWRI|B_INVAL caseMatthew Dillon2002-04-031-5/+2
* Revert to open hashing. It makes the code simpler, and works farily wellDag-Erling Smørgrav2002-04-022-32/+20
* - Move the MI mutexes sched_lock and Giant from being declared in theJohn Baldwin2002-04-022-0/+54
* Spelling police.John Baldwin2002-04-022-2/+2
* Enforce an implicit lock order of sleepable locks before non-sleepableJohn Baldwin2002-04-021-1/+12
* - Add a mutex to lock the global securelevel value.Andrew R. Reiter2002-04-021-1/+9
* Fix leakage of p_pgrp lock.Seigo Tanimura2002-04-022-1/+5
* Explicitly document how we implicitly enforce the lock order of sleepJohn Baldwin2002-04-021-0/+5
* - Add MTX_SYSINIT and SX_SYSINIT as macro glue for allowing sx and mtxAndrew R. Reiter2002-04-023-0/+30
* Instead of get_cyclecount(9), use nanotime(9) to record acquisition andDag-Erling Smørgrav2002-04-022-38/+56
* Retire the bogus ioctl DIOCGPART in toto.Poul-Henning Kamp2002-04-021-8/+0
* Don't compile the dummy dumpsys for ia64.Marcel Moolenaar2002-04-021-1/+1
* Update comment regarding the locking of the sysctl tree.Robert Watson2002-04-021-10/+10
* Use sx locks instead of flags+tsleep locks.Alfred Perlstein2002-04-021-31/+11
* Use sx locks rather than lockmgr locks for eventhandlers.Alfred Perlstein2002-04-021-5/+6
* Mutex profiling code, conditional on the MUTEX_PROFILING option. Adds theDag-Erling Smørgrav2002-04-022-4/+318
* Stage-2 commit of the critical*() code. This re-inlines cpu_critical_enter()Matthew Dillon2002-04-013-0/+3
* Change the suser() API to take advantage of td_ucred as well as do aJohn Baldwin2002-04-0125-138/+119
* Whitespace only change: use ANSI function declarations instead of K&R.John Baldwin2002-04-011-130/+46