aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* Change p_can{debug,see,sched,signal}()'s first argument to be a threadJohn Baldwin2002-05-198-85/+93
* Now that daddr_t has grown up, use %lld to printf it and cast it to longJohn Baldwin2002-05-181-1/+3
* Use btodb() macro.Poul-Henning Kamp2002-05-181-7/+1
* Separate "seperate" from kernel source.Eric Melville2002-05-161-1/+1
* More s/file system/filesystem/gTom Rhodes2002-05-1611-32/+32
* o Fix vfs_copyopt(), the first argument to bcopy() is the source,Maxime Henrion2002-05-161-15/+6
* p_cansignal() returns an errno value; at some point, the check forRobert Watson2002-05-141-2/+2
* Disable the shared locking namei() code for now. It breaks several stackingJeff Roberson2002-05-144-11/+11
* Remove a printf(3) argument with no corresponding format specifier.Dag-Erling Smørgrav2002-05-141-1/+1
* Make daddr_t and u_daddr_t 64bits wide.Poul-Henning Kamp2002-05-142-5/+5
* Retire the bogus uses of the disklabel field d_sbsize and begin toPoul-Henning Kamp2002-05-121-5/+1
* Fix alpha build. The alpha has dumpsys implemented.Marcel Moolenaar2002-05-121-1/+1
* Change the mbuf exhaustion warning message to match the messageMike Silbersack2002-05-091-1/+2
* Remove trace_req().Jonathan Mini2002-05-092-21/+10
* o Correct an error made in revision 1.65: In readv(), if uap->iovcnt isAlan Cox2002-05-091-9/+6
* expand_name fixes:Alfred Perlstein2002-05-081-38/+32
* Remove runq_findproc. This never worked right in the first place and canJake Burkholder2002-05-081-23/+0
* M_ZERO the temp buffer in expand_name() otherwise if an error occursAlfred Perlstein2002-05-071-1/+1
* Re-remove kern_random.c and svr4_signal.c. Somehow dillon managed to keepPeter Wemm2002-05-071-397/+0
* Do not forget to increase the number of completely connected sockets inSeigo Tanimura2002-05-072-0/+2
* Switch from just holding the interlock to holding the standard lock throughoutJeff Roberson2002-05-071-12/+17
* Make funsetown() take a 'struct sigio **' so that the locking canAlfred Perlstein2002-05-068-38/+51
* When checking to see if the init process calls exit1(), compare p to theJohn Baldwin2002-05-061-1/+1
* Style fixes in local variable declarations.John Baldwin2002-05-061-9/+10
* - Style fixes in some comments.John Baldwin2002-05-061-9/+10
* Hold the currently selected vnode's lock across the call to VOP_GETVOBJECT.Jeff Roberson2002-05-061-2/+4
* Add the lchflags(2) syscall.Maxime Henrion2002-05-054-2/+50
* Add an entry for the lchflags(2) syscall. It's useful to preventMaxime Henrion2002-05-051-0/+1
* Move a KASSERT() in open() prior to unlocking the vnode. It's not safe toJeff Roberson2002-05-052-6/+8
* o Condition the compilation of uiomoveco() and vm_uiomove()Alan Cox2002-05-051-3/+7
* Expand the one-line function pbreassignbuf() the only place it is or couldPoul-Henning Kamp2002-05-051-14/+0
* Return the correct error code (ENOSYS, not EINVAL) from nosys(). GettingBruce Evans2002-05-051-1/+1
* Fixed breakage of binary compatibility of the kern.clockrate sysctl inBruce Evans2002-05-051-0/+1
* Fix a typo.Maxime Henrion2002-05-042-2/+2
* Remove a six year old undocumented #ifdef : NO_B_MALLOC.Poul-Henning Kamp2002-05-041-12/+0
* Remove obsolete code (that was already #if 0'd out).Matthew Dillon2002-05-041-18/+0
* style(9): 'if' and 'while' need a space after them.Alfred Perlstein2002-05-041-3/+3
* Initialize time_second to 1 instead of zero to pacify slightly bogus arp code.Poul-Henning Kamp2002-05-031-6/+4
* As malloc(9) and free(9) are now Giant-free, remove the Giant lockSeigo Tanimura2002-05-034-26/+7
* Fix the lock order reversal between the sigio lock and a process/pgrp lock inSeigo Tanimura2002-05-033-2/+10
* Retire makeobjops.pl - replaced by ../tools/makeobjops.awk.Peter Wemm2002-05-021-473/+0
* As promised make the hack for sizeof(struct disklabel) on alpha annoying.Poul-Henning Kamp2002-05-021-3/+14
* Convert devfs to nmount.Maxime Henrion2002-05-021-1/+2
* - Protect randompid and nprocs with the allproc_lock.John Baldwin2002-05-021-101/+122
* - Reorder a few things so that when we lock the process at the end ofJohn Baldwin2002-05-021-107/+118
* - Reorder execve() so that it performs blocking operations before itJohn Baldwin2002-05-022-63/+74
* Hide a pointer to the malloc_type bucket at the end of the freed memory. IfJeff Roberson2002-05-021-1/+19
* malloc/free(9) no longer require Giant. Use the malloc_mtx to protect theJeff Roberson2002-05-021-1/+21
* Remove the temporary alignment check in free().Jeff Roberson2002-05-021-6/+0
* Redo the sigio locking.Alfred Perlstein2002-05-018-62/+30