aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* In nmount() and vfs_donmount(), do not strcmp() the options in the iovecCraig Rodrigues2005-11-231-36/+46
* Fix a bug in the loop in sonewconn that makes room on the incompleteJohn Polstra2005-11-222-2/+2
* Fix bug introduced in revision 1.186:Marcel Moolenaar2005-11-191-3/+8
* Parse more mount options in vfs_donmount(), before vfs_domount()Craig Rodrigues2005-11-191-0/+42
* Add CLOCK_UPTIME to clock_gettime(2) reporting the currentAndre Oppermann2005-11-181-0/+2
* In vfs_nmount(), check to see if "update" mount option was passedCraig Rodrigues2005-11-181-0/+9
* Prefer NULL to 0.Pyun YongHyeon2005-11-171-25/+29
* Add a new sysctl, kern.elf[32|64].can_exec_dyn. When set to 1, one canOlivier Houchard2005-11-141-1/+7
* In ktr_getrequest(), acquire ktrace_mtx earlier -- while the raceRobert Watson2005-11-141-2/+3
* Moderate rewrite of kernel ktrace code to attempt to generally improveRobert Watson2005-11-136-92/+201
* style(9) cleanups.Craig Rodrigues2005-11-121-16/+17
* Significant refactoring of the accounting code to improve locking and VFSRobert Watson2005-11-121-108/+93
* Make sure only remove one signal by debugger.David Xu2005-11-121-1/+2
* Correct a number of serious and closely related bugs in the UNIX domainRobert Watson2005-11-101-50/+45
* Add the f_msgcount field to the set of struct file fields printed in showRobert Watson2005-11-101-4/+5
* Expanet of details printed for each file descriptor to include it'sRobert Watson2005-11-101-5/+5
* Add a DDB "show files" command to list the current open file list, someRobert Watson2005-11-101-0/+73
* This is a workaround for a complicated issue involving VFS cookies and devfs.Doug White2005-11-091-0/+4
* Fix typo in recent comment tweak.Robert Watson2005-11-091-1/+1
* In closef(), remove the assumption that there is a thread associatedRobert Watson2005-11-091-2/+6
* General consensus is that it would be even better to run this in aWarner Losh2005-11-091-1/+1
* Use intptr_t casts to convert void * <--> int to make 64-bit archs happy.John Baldwin2005-11-091-2/+2
* Use sparse initializers for "struct domain" and "struct protosw",Ruslan Ermilov2005-11-091-18/+24
* WIFxxx macros requires an int type but p_xstat is short, convert itDavid Xu2005-11-091-2/+3
* Kick off the suspend sequence from the keyboard in a SWI rather thanWarner Losh2005-11-091-2/+13
* Clarify panic message, I parsed the old one 'trying to sleep while sleeping'Warner Losh2005-11-091-1/+1
* For nmount(), allow a text string error message to be propagated backCraig Rodrigues2005-11-091-2/+37
* In aio_waitcomplete, do not return EAGAIN if no other threadsDavid Xu2005-11-081-1/+1
* Make sure pending SIGCHLD is removed from previous parent when processDavid Xu2005-11-081-1/+10
* Various and sundry cleanups:John Baldwin2005-11-081-80/+84
* Giant clean up for exit(2)Christian S.J. Peron2005-11-081-7/+7
* Add support for queueing SIGCHLD same as other UNIX systems did.David Xu2005-11-084-13/+131
* Add utility function to propagate mount errors as text string messages.Craig Rodrigues2005-11-081-0/+21
* Fix panic string in last revision.Gleb Smirnoff2005-11-061-1/+1
* Free only those mbuf+clusters back to the packet zone that were allocatedAndre Oppermann2005-11-052-2/+5
* Fix a logic error introduced with mandatory mbuf cluster refcounting andAndre Oppermann2005-11-042-6/+7
* Fix name compatible problem with POSIX standard. the sigval_ptr andDavid Xu2005-11-043-4/+4
* Add stoppcbs[] arrays on Alpha and sparc64 and have each CPU save itsJohn Baldwin2005-11-031-1/+1
* Fix 'show allpcpu' ddb command on non-x86. CPU IDs are in the range 0 ..John Baldwin2005-11-031-1/+1
* Detect memory leaks when memory type is being destroyed.Pawel Jakub Dawidek2005-11-031-0/+21
* Support sending realtime signal information via signal queue, realtimeDavid Xu2005-11-031-8/+40
* Cleanup some signal interfaces. Now the tdsignal function acceptsDavid Xu2005-11-035-76/+64
* Oops, don't change tdsignal call.David Xu2005-11-031-1/+1
* Add thread_find() function to search a thread by lwpid.David Xu2005-11-032-12/+23
* Calling setrlimit from 32bit apps could potentially increase certainPaul Saab2005-11-022-1/+8
* Mandatory mbuf cluster reference counting and groundwork for UMAAndre Oppermann2005-11-022-133/+248
* Retire MT_HEADER mbuf type and change its users to use MT_DATA.Andre Oppermann2005-11-023-9/+5
* Push down Giant into fdfree() and remove it from two of the callers.John Baldwin2005-11-013-13/+24
* Reuse ktr_unused field in ktr_header structure as ktr_tid; populateRobert Watson2005-11-011-1/+1
* Replace ktr_buffer pointer in struct ktr_header with a ktr_unusedRobert Watson2005-11-011-9/+11