Age | Commit message (Expand) | Author |
2014-07-04 | Track whether a process is a zombie or not yet fully built via flags | Philip Guenther |
2014-07-03 | Revert back to 1.129: pool_init() is called before rwlocks can be | Philip Guenther |
2014-07-02 | this doesnt talk to uvm directly, so doesnt need uvm_extern.h | David Gwynne |
2014-07-02 | matthew@ noticed i wasnt populating npages in the kinfo_pool sent to | David Gwynne |
2014-07-02 | Use real parameter types for u{dv,vn}_attach() instead of void * | Matthew Dempsky |
2014-07-02 | inline is the new __inline | David Gwynne |
2014-07-02 | use pool_count to report the number of pools to userland rather | David Gwynne |
2014-07-02 | provide a pool_count global so we can figure out how many pools there are | David Gwynne |
2014-07-02 | take the pools mutex when copying stats out of it in the sysctl | David Gwynne |
2014-07-02 | add an explicit rwlock around the global state (the pool list and serial | David Gwynne |
2014-07-02 | info about pools is currently given to userland by copying each | David Gwynne |
2014-06-27 | Do not KASSERT an unsigned value being >= 0 after decrementing it; instead, | Miod Vallat |
2014-06-21 | If the kernel generates a deadly trap signal (SEGV, BUS, etc) for | Philip Guenther |
2014-06-21 | you've had 12+ years to update your kernel config. | Daniel Dickman |
2014-06-18 | trailing tabs arent needed. | David Gwynne |
2014-06-15 | Use sizeof(struct file *) consistently for memcpy()'ing fd_ofiles. | Matthew Dempsky |
2014-06-15 | Fix a few format string bugs with -DDEBUG | Stefan Fritsch |
2014-06-14 | Rather than truncating KERN_ARND requests silently, return EINVAL | Theo de Raadt |
2014-06-14 | temporarily (maybe 3 weeks?) crank KERN_ARND maximum buffer from 256 | Theo de Raadt |
2014-06-14 | sync | Theo de Raadt |
2014-06-14 | Change return value of getentropy() to int 0 for success. Maximum | Theo de Raadt |
2014-06-13 | sync | Theo de Raadt |
2014-06-13 | Add new getentropy() system call. Code and pressure from matthew. | Theo de Raadt |
2014-06-13 | Instead of updating all the cluster allocation water marks of all the | Martin Pieuchot |
2014-06-11 | Fix wait4 to not modify status or rusage if we return 0 because of | Matthew Dempsky |
2014-06-11 | Add bounds checks for CTL_DEBUG sysctl variable. | Matthew Dempsky |
2014-06-11 | Create system taskq ("systqmp") which runs without the kernel lock; | Bret Lambert |
2014-06-08 | Use memcpy to copy the sogetopt() SO_SPLICE off_t value, for it may not be | Miod Vallat |
2014-06-06 | Allocate the struct itty array in ttystats_init() with M_ZERO. | Matthew Dempsky |
2014-06-04 | While it may be smart to use the radix tree for exports it is not OK to | Claudio Jeker |
2014-05-31 | Fix a format specifier in a debug printf. | Mike Larkin |
2014-05-30 | explicit_bzero for clearing stack variables. | Ted Unangst |
2014-05-29 | Read MAXPHYS bytes at a time in the hibernate image read, instead of | Mike Larkin |
2014-05-29 | When vmcmd_map_readvn() maps in the page it reads into, it forces | Philip Guenther |
2014-05-25 | Handle threaded processes correctly when processing kerninfo status requests | Philip Guenther |
2014-05-25 | In access(), use the real UID/GID for the path search too. | Philip Guenther |
2014-05-21 | Change use of Z_PARTIAL_FLUSH to Z_SYNC_FLUSH in the hibernate code as per | Mike Larkin |
2014-05-19 | consistent use of uint32_t for poison values | Ted Unangst |
2014-05-17 | When looking at another process, use the data from struct process | Philip Guenther |
2014-05-15 | knote_processexit() needs the thread to pass down to FRELE(), so pass it | Philip Guenther |
2014-05-15 | Prefer prsignal() to send process signals | Philip Guenther |
2014-05-15 | Move from struct proc to process the reference-count-holding pointers | Philip Guenther |
2014-05-06 | Include <sys/vmmeter.h> directly instead of relying on it being | Martin Pieuchot |
2014-05-04 | remove some hh and h format specifiers | Stefan Fritsch |
2014-05-04 | Add PS_SYSTEM, the process-level mirror of the thread-level P_SYSTEM, | Philip Guenther |
2014-05-04 | When kern.nosuidcoredump=3, act like =2 but try to dump cores into | Theo de Raadt |
2014-05-03 | If P_ZOMBIE(pr->ps_mainproc) is true, then (pr->ps_flags & PS_EXITING) | Philip Guenther |
2014-05-03 | Move the u-area allocation and pmap-magic logic to its own function | Philip Guenther |
2014-05-01 | with some random chance, swizzle the current page for the pool to avoid | Ted Unangst |
2014-04-26 | Perform MAXPHYS-sized reads for the chunktable instead of PAGE_SIZE-sized | Mike Larkin |