Age | Commit message (Expand) | Author |
2014-03-18 | When creating a unix socket, save the PID for pf's log(user), even when | Philip Guenther |
2014-03-18 | In prep for killing ps_mainproc, use pr->ps_pid instead of | Philip Guenther |
2014-03-13 | get rid of the assumption that the head of the alldevs list is the | David Gwynne |
2014-03-11 | lint is gone, and the 'lint' conditional was never in the implementation | Philip Guenther |
2014-03-08 | split falloc into two functions, the allocation and the publication. | Ted Unangst |
2014-02-12 | Eliminate the exit sig handling, which was only invokable via the | Philip Guenther |
2014-02-10 | arc4random_uniform() returns a value strictly less than its argument; fix | Philip Guenther |
2014-02-09 | Fix the lock order reversal problem in the code that stops traced | Mark Kettenis |
2014-02-09 | regen | Philip Guenther |
2014-02-09 | nanosleep() isn't actually NOLOCK safe yet: tsleep() still requires kernel | Philip Guenther |
2014-02-01 | Remove some of the excessive cache and TLB flushing going on during | Mike Larkin |
2014-01-30 | Simplyfy adjtime(2) by keeping track of the adjustment as a number of | Mark Kettenis |
2014-01-25 | get rid of the kernel high and low water marks for pages and replace with | Bob Beck |
2014-01-24 | When a disklabel is read from a MBR partitioned disk, don't | Kenneth R Westerback |
2014-01-24 | Copy timespecs member by member in fo_stat callback functions, to avoid | Philip Guenther |
2014-01-24 | exit1() needs to do a final aggregation of the thread's [us]ticks | Philip Guenther |
2014-01-23 | msleep() with a NULL mtx argument is a programming error. | Philip Guenther |
2014-01-23 | Waiting on a condition without a lock is an error: you need *some* lock | Philip Guenther |
2014-01-23 | Delete spurious if statement. | Kenneth R Westerback |
2014-01-22 | Write disklabel in correct spot on devices with non-512-byte sectors. | Kenneth R Westerback |
2014-01-22 | Delete casts in assignments to void* and passed void* arguments. | Philip Guenther |
2014-01-22 | timeval, timespec, and itimerval have padding on many archs. If we're | Philip Guenther |
2014-01-21 | Don't leak kernel stack in timeval padding in getsockopt(SO_{SND,RCV}TIMEO) | Philip Guenther |
2014-01-21 | Add extent_alloc_subregion_with_descr(9) which allows the caller to provide | Mark Kettenis |
2014-01-21 | Setting p->p_p to NULL when it's still running isn't safe for statclock(). | Philip Guenther |
2014-01-21 | bzero -> memset | Ted Unangst |
2014-01-20 | Threads can't be zombies, only processes, so change zombproc to zombprocess, | Philip Guenther |
2014-01-20 | Fix comment | Philip Guenther |
2014-01-20 | Move p_textvp from struct proc to struct process so that the exit code | Philip Guenther |
2014-01-19 | Refactor rnd startup so arc4random/arc4random_buf can create a chacha state | Theo de Raadt |
2014-01-19 | insane typo | Theo de Raadt |
2014-01-19 | oops, forgotten part | Theo de Raadt |
2014-01-19 | Remove max_datalen. It is only used once an can be replaced easily with | Claudio Jeker |
2014-01-19 | With the earlier initialization of the random subsystem, random_hostseed() | Theo de Raadt |
2014-01-19 | We can call random_start() immediately after cpu_startup, that is the | Theo de Raadt |
2014-01-14 | Typo in a printf, should be 'bytes' not 'blocks' | Mike Larkin |
2014-01-13 | Return the poison value in poison_check() and not the modified value. | Martin Pieuchot |
2014-01-11 | When I created UDP socket splicing, I added the goto nextpkt loop | Alexander Bluhm |
2014-01-10 | Let "ddb show mbuf" print all mbuf fields in a consistent way. Move | Alexander Bluhm |
2014-01-01 | copyright++ | Federico G. Schwindt |
2013-12-28 | oops, the fallback stack protector code must handle 64-bit guards | Theo de Raadt |
2013-12-28 | change the stack protector guard into a long word (removing the old legacy | Theo de Raadt |
2013-12-28 | We can initialize the srandom/random system earlier from arc4random, | Theo de Raadt |
2013-12-28 | We can random_start() earlier (not that it does too much) and call | Theo de Raadt |
2013-12-24 | get rid of if (timeout_pending()) timeout_del(). this is racy. any | David Gwynne |
2013-12-24 | rename local ticks to nticks to avoid aliasing global. ok krw | Ted Unangst |
2013-12-16 | Restore TIOCGSID ioctl that was removed along with the 4.3BSD tty(4) | Todd C. Miller |
2013-12-13 | Remove the 4.3BSD tty(4) compatibility shims. RIP. ok millert@ | Christian Weisgerber |
2013-12-12 | Add db_vprintf(), and then use it in ACPI's db_disprint() instead of | Philip Guenther |
2013-12-12 | printf(variable) --> printf("%s", variable) | Philip Guenther |