aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* - Move the 'clk' spinlock below other spin locks since KTR trace eventsJohn Baldwin2001-06-251-6/+39
* - Replace the unused KTR_IDLELOOP trace class with a new KTR_WITNESS traceJohn Baldwin2001-06-251-14/+17
* - Sort includes.John Baldwin2001-06-251-9/+9
* Count the context switch when blocking on a mutex as a voluntary contextJohn Baldwin2001-06-252-0/+6
* Count the switch when an ithread goes idle as a voluntary context switch.John Baldwin2001-06-251-0/+1
* Don't dereference a NULL pointer if we fail to get a sendfilebuf.David Malone2001-06-241-1/+2
* After exhaustive discussions and some meandering and confusion, enoughMatthew Dillon2001-06-241-0/+6
* - Lock CURSIG() with the proc lock to close the signal race with psignal.John Baldwin2001-06-221-99/+67
* - Lock CURSIG with the proc lock and don't release the proc lock untilJohn Baldwin2001-06-221-4/+10
* - Grab the proc lock around CURSIG and postsig(). Don't release the procJohn Baldwin2001-06-221-3/+4
* - Change CURSIG() and postsig() to require that the proc lock is heldJohn Baldwin2001-06-221-9/+10
* int -> size_t fixMatt Jacob2001-06-221-2/+2
* Temporary fix at least- define NCPU_PRESENT which will be mp_npcus forMatt Jacob2001-06-221-2/+11
* changed hostid from long to unsigned long to be able to store values > 2GBJim Pirzyk2001-06-221-3/+2
* Introduce numerous SMP friendly changes to the mbuf allocator. Namely,Bosko Milekic2001-06-224-472/+1048
* Fix some lock order reversals where we called free() while holding a procJohn Baldwin2001-06-202-11/+14
* Change m_devget()'s outdated and unused `offset' argument to actually meanBosko Milekic2001-06-201-29/+24
* Preemption by an interrupt thread is an involuntary switch, not a voluntaryJohn Baldwin2001-06-201-1/+1
* Constify (silence warnings introduced by last commit to sys/module.h)Dag-Erling Smørgrav2001-06-201-7/+7
* After one too many PRs on the subject, bite the bullet and define IOV_MAXGarrett Wollman2001-06-181-0/+4
* Lock Giant in postsig() for the KTRACE case as ktrpsig() needs Giant whenJohn Baldwin2001-06-181-0/+4
* Add linker_reference_module().Brian Somers2001-06-181-0/+25
* Don't remove the SI_CHEAPCLONE for unsupported minorsBrian Somers2001-06-181-1/+2
* Move setugid() a little sooner to before we release tracing in casePeter Wemm2001-06-161-2/+3
* Add INTR_TYPE_AV so that we can get to the PI_AV priority in the ithreadPeter Wemm2001-06-161-1/+4
* Fix warnings:Jonathan Lemon2001-06-161-0/+1
* Correctly hook up the write kqfilter to pipes.Jonathan Lemon2001-06-151-5/+7
* Fix some warnings in kern_environment.c. Make the getenv*() familyPeter Wemm2001-06-151-3/+3
* As per comments in sys/linker_set.h:Peter Wemm2001-06-141-107/+0
* With this commit, I hereby pronounce gensetdefs past its use-by date.Peter Wemm2001-06-139-140/+302
* Patch up a blunder I made a few days ago. nmbcnt was being initializedPeter Wemm2001-06-131-6/+15
* Hints overhaul:Peter Wemm2001-06-122-465/+578
* Rename nextpid to lastpid and externalize it.Dag-Erling Smørgrav2001-06-111-7/+7
* Blah, I cut out a tad too much in the previous commit. (thanks again, Jake!)Dag-Erling Smørgrav2001-06-111-0/+1
* copyin(9) doesn't return ENAMETOOLONG. (thanks, Jake!)Dag-Erling Smørgrav2001-06-111-10/+2
* Add sbuf_copyin(). Also add 'b' variants of sbuf_{cat,copyin,cpy}() whichDag-Erling Smørgrav2001-06-111-0/+98
* Sync with recent KAME.Hajimu UMEMOTO2001-06-113-51/+130
* Try to make the setting of the SIGCHLD handler the same as setting ofDavid Malone2001-06-111-1/+4
* sbuf_new(9) now returns a struct sbuf * instead of an int. If the callerDag-Erling Smørgrav2001-06-101-8/+20
* "Fix" the previous initial attempt at fixing TUNABLE_INT(). This timePeter Wemm2001-06-087-12/+27
* Back out part of my previous commit. This was a last minute changePeter Wemm2001-06-076-12/+12
* Fix an instance of NDINIT in the extattrctl syscall: LOCKLEAF was or'edThomas Moestl2001-06-062-2/+2
* Make the TUNABLE_*() macros look and behave more consistantly like thePeter Wemm2001-06-067-38/+41
* We don't need to hold a lock just to test a flag.John Baldwin2001-06-061-5/+1
* Unbreak setregid(2).Ruslan Ermilov2001-06-061-0/+2
* Don't hold sched_lock across addupc_task().John Baldwin2001-06-061-1/+1
* Add a line discipline close routine which restores some functionalityDima Dorfman2001-06-051-5/+21
* Style and cosmetic cleanups. This driver is now reasonably stlye(9)Dima Dorfman2001-06-051-111/+127
* Use the l_nullioctl exported from tty_conf.c rather than rolling our own.Dima Dorfman2001-06-041-10/+0
* Unstaticize l_nullioctl; it is needed elsewhere (like in tty_snoop.c).Dima Dorfman2001-06-041-2/+1