Age | Commit message (Expand) | Author |
2013-12-11 | Fix typo; that teaches me to steal other people's diffs! | Mark Kettenis |
2013-12-10 | dead assignment; from david hill, ok claudio | Mike Belopuhov |
2013-12-10 | Add infrastructure to create un-biglocked task queues. Stolen from blambert@ | Mark Kettenis |
2013-12-09 | use a separate task queue for sensors; | Mike Belopuhov |
2013-12-09 | Don't keep removed files (B_INVAL bufs) in the buffer cache. Free buffers | Bob Beck |
2013-12-06 | Add a DVACT_WAKEUP op to the *_activate() API. This is called after the | Theo de Raadt |
2013-12-01 | Change 'mountlist' from CIRCLEQ to TAILQ. Be paranoid and | Kenneth R Westerback |
2013-11-29 | msgs can be const | Theo de Raadt |
2013-11-27 | Defer the v_type initialisation until after the vnode has been purged from | Joel Sing |
2013-11-27 | Assert that we never have destinations cached for a non-VDIR vnode. | Joel Sing |
2013-11-27 | make timeout_add and its wrappers return whether the timeout was scheduled | David Gwynne |
2013-11-27 | get rid of the goop for maintaining multiple cftables since theres | David Gwynne |
2013-11-26 | 1 << 31 cleanup. Eitan Adler pointed out that there has been a | Theo de Raadt |
2013-11-26 | compare pointers to NULL | David Gwynne |
2013-11-25 | Fix infinite loop pointed out by clang/brad. | Matthew Dempsky |
2013-11-25 | rename magicnumber to globalsleepaddr | Ted Unangst |
2013-11-25 | disable %n in printf(9); there is no need for it in the kernel besides | Damien Miller |
2013-11-21 | remove the #define b_cylinder b_resid from bufs. i hated the | David Gwynne |
2013-11-20 | now that all the direct users of disksort have been removed, we can now | David Gwynne |
2013-11-18 | hack in a global rendezvous for interprocess semaphores to use | Ted Unangst |
2013-11-18 | simplify kthread_create(). no more stdarg | Theo de Raadt |
2013-11-18 | panic expects a format string | Theo de Raadt |
2013-11-14 | Use (N * sizeof(struct klist)) instead of (N * sizeof(struct klist *)) | Charles Longeau |
2013-11-09 | Remove hibernate_get_next_rle function (unused, and we need to redo it | Mike Larkin |
2013-11-09 | Add KASSERT()s to tsleep() and msleep() to verify that bogus flags | Philip Guenther |
2013-11-09 | ticks is compared against mcl_grown to see if time has elapsed since | David Gwynne |
2013-11-09 | unbias the chunks and chunktable writing and reading. as a result, it | Theo de Raadt |
2013-11-06 | simplify a crazy expression | Theo de Raadt |
2013-11-06 | In hibernate_write_chunks(), keep track of relative block numbers instead | Theo de Raadt |
2013-11-06 | spacing | Theo de Raadt |
2013-11-06 | return the known error, instead of EIO | Theo de Raadt |
2013-11-06 | shorten dev_t in hib_info | Theo de Raadt |
2013-11-06 | shorten variable name for the hibernate info struct, throughout. Much | Theo de Raadt |
2013-11-06 | use DEV_BSIZE instead of "secsize" | Theo de Raadt |
2013-11-06 | teach the side-effect free drivers about the partition they are dealing | Theo de Raadt |
2013-11-06 | Errant assignment that snuck in long ago. Pointed out by deraadt@ | Mike Larkin |
2013-11-05 | Change an #if 0 surrounding a debug printf into a DPRINTF instead. | Mike Larkin |
2013-11-05 | new function uvm_hibswap() finds a the largest free zone in swap, which | Theo de Raadt |
2013-11-05 | remove pool constructors and destructors. theyre called for every | David Gwynne |
2013-11-05 | Replace direct references to p_size, p_offset and d_secperunit with | Kenneth R Westerback |
2013-11-04 | move kernel sensor tasks from using workqs to tasks. while here | David Gwynne |
2013-11-01 | Sprinkle (long long) casts where %lld is being used to print daddr_t | Kenneth R Westerback |
2013-10-30 | Use local variables for ap->a_p where appropriate. | Philip Guenther |
2013-10-30 | deprecate taskq_systq() and replace it with extern struct taskq | David Gwynne |
2013-10-29 | since taskq_create is only callable from autoconf or process context, it | David Gwynne |
2013-10-29 | sys/task.h includes sys/queue.h, so kern/kern_task.c doesnt need | David Gwynne |
2013-10-29 | use unsigned int instead of u_int to reduce the depend on types.h. | David Gwynne |
2013-10-29 | introduce tasks and taskqs as an alternative to workqs. | David Gwynne |
2013-10-29 | Unlock the vnode while calling a device's d_close routine, except when | Philip Guenther |
2013-10-25 | fix comment | Todd C. Miller |