summaryrefslogtreecommitdiff
path: root/sys/kern
AgeCommit message (Expand)Author
2013-11-14Use (N * sizeof(struct klist)) instead of (N * sizeof(struct klist *))Charles Longeau
2013-11-09Remove hibernate_get_next_rle function (unused, and we need to redo itMike Larkin
2013-11-09Add KASSERT()s to tsleep() and msleep() to verify that bogus flagsPhilip Guenther
2013-11-09ticks is compared against mcl_grown to see if time has elapsed sinceDavid Gwynne
2013-11-09unbias the chunks and chunktable writing and reading. as a result, itTheo de Raadt
2013-11-06simplify a crazy expressionTheo de Raadt
2013-11-06In hibernate_write_chunks(), keep track of relative block numbers insteadTheo de Raadt
2013-11-06spacingTheo de Raadt
2013-11-06return the known error, instead of EIOTheo de Raadt
2013-11-06shorten dev_t in hib_infoTheo de Raadt
2013-11-06shorten variable name for the hibernate info struct, throughout. MuchTheo de Raadt
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