summaryrefslogtreecommitdiff
path: root/sys/kern
AgeCommit message (Expand)Author
2013-11-06use DEV_BSIZE instead of "secsize"Theo de Raadt
2013-11-06teach the side-effect free drivers about the partition they are dealingTheo de Raadt
2013-11-06Errant assignment that snuck in long ago. Pointed out by deraadt@Mike Larkin
2013-11-05Change an #if 0 surrounding a debug printf into a DPRINTF instead.Mike Larkin
2013-11-05new function uvm_hibswap() finds a the largest free zone in swap, whichTheo de Raadt
2013-11-05remove pool constructors and destructors. theyre called for everyDavid Gwynne
2013-11-05Replace direct references to p_size, p_offset and d_secperunit withKenneth R Westerback
2013-11-04move kernel sensor tasks from using workqs to tasks. while hereDavid Gwynne
2013-11-01Sprinkle (long long) casts where %lld is being used to print daddr_tKenneth R Westerback
2013-10-30Use local variables for ap->a_p where appropriate.Philip Guenther
2013-10-30deprecate taskq_systq() and replace it with extern struct taskqDavid Gwynne
2013-10-29since taskq_create is only callable from autoconf or process context, itDavid Gwynne
2013-10-29sys/task.h includes sys/queue.h, so kern/kern_task.c doesnt needDavid Gwynne
2013-10-29use unsigned int instead of u_int to reduce the depend on types.h.David Gwynne
2013-10-29introduce tasks and taskqs as an alternative to workqs.David Gwynne
2013-10-29Unlock the vnode while calling a device's d_close routine, except whenPhilip Guenther
2013-10-25fix commentTodd C. Miller
2013-10-25Move the declarations for dogetrusage(), itimerround(), and dowait4()Philip Guenther
2013-10-22- add UNIX-domain socket info to struct kinfo_file2Philip Guenther
2013-10-20Informational message on unpack startMike Larkin
2013-10-20KNF a long line.Kenneth R Westerback
2013-10-20Provide more debugging aids when failing to read the packed image from diskMike Larkin
2013-10-20DPRINTFs for various failure cases, disabled by default (uncommentMike Larkin
2013-10-20Flush the cache after bouncing the inflate page to the piglet.Mike Larkin
2013-10-20Use a second inflate page for stream finalize, since it is possibleMike Larkin
2013-10-19Use daddr_t * instead of int * for the partoffp parameter toKenneth R Westerback
2013-10-19When hooks are called, allow them to disestablish themselves by usingReyk Floeter
2013-10-17another lurking ecoff reference is found..Theo de Raadt
2013-10-17Remove support for a.out and ecoff. We only do elf now.Theo de Raadt
2013-10-15repair typo talking about a.outTheo de Raadt
2013-10-14Display correct values (i.e. blocks where blocks are meant) inKenneth R Westerback
2013-10-11poll(2) on a closed tty should return POLLIN|POLLHUP in reventsTodd C. Miller
2013-10-08Fix delivery of SIGPROF and SIGVTALRM to threaded processes by havingPhilip Guenther
2013-10-08If a thread sends a signal to its own process, then have that threadPhilip Guenther
2013-10-07disk sizes, partition sizes and partition offsets are u_int64_tKenneth R Westerback
2013-10-06Tweak commentPhilip Guenther
2013-10-06Replace some XXX casts with an inline function that explains what's going onPhilip Guenther
2013-10-06Add CLOCK_UPTIME, a clock which measures time-running-not-suspended, soPhilip Guenther
2013-10-06Back out POLLHUP change until a problem with xterm hanging on closeTodd C. Miller
2013-10-04poll(2) on a closed tty should return POLLIN|POLLHUP in reventsTodd C. Miller
2013-10-03Adds DPRINTF/DNPRINTF macros to hibernate, and adds invocation of saidMike Larkin
2013-10-02format string fix: b_flags is longStefan Fritsch
2013-10-02format string fix: p_*ticks are u_intStefan Fritsch
2013-10-02Format string fix: Use %td for pointer differenceStefan Fritsch
2013-10-01Format string fixes: %hu/%hd for uint16_t, %u/%d/%x for uint32_tStefan Fritsch
2013-10-01Format string fixes: Cast time_t to long longStefan Fritsch
2013-10-01format string fixStefan Fritsch
2013-09-29Print out the compressed image size during unhibernate, for diagnosticMike Larkin
2013-09-28poll(2) on a socket should set POLLHUP on EOF. This makes theTodd C. Miller
2013-09-24a bit more tmpfs scaffolding (still not active, no kernel change)Marc Espie