Age | Commit message (Expand) | Author |
2017-02-04 | Update usage for ps/w to match previous commit | Philip Guenther |
2017-02-01 | In sogetopt, preallocate an mbuf to avoid using sleeping mallocs with | David Hill |
2017-01-31 | Remove the inifioctl hack, checking for an unheld NET_LOCK() in | Martin Pieuchot |
2017-01-27 | In sosend() the size of the control message for file descriptor | Alexander Bluhm |
2017-01-26 | Allocate the mbuf before the netlock. While here, move the setting of | David Hill |
2017-01-26 | Do not hold the netlock while pool_get() may sleep. It is not | Alexander Bluhm |
2017-01-25 | Introduce a hack to remove false-positives when looking for memory | Martin Pieuchot |
2017-01-25 | As NET_LOCK() is a read/write lock, it can sleep in sotask(). So | Alexander Bluhm |
2017-01-25 | Clear the reference of the original mbuf chain after m_split()'ing | Martin Pieuchot |
2017-01-25 | Allocate and connect sockets first, then upon success create file | Theo de Raadt |
2017-01-25 | deSCARGize sys_ptrace() | Philip Guenther |
2017-01-25 | Enable the NET_LOCK(), take 2. | Martin Pieuchot |
2017-01-25 | +arm64 | Theo de Raadt |
2017-01-24 | Force a context switch for every pool_get(9) with the PR_WAITOK flag | Martin Pieuchot |
2017-01-24 | In accept(2) and accept4(2) allocate a new file descriptor before | Martin Pieuchot |
2017-01-24 | Display process group in "ps /w" since they got removed from "ps /n". | Martin Pieuchot |
2017-01-24 | Display the thread ID (TID) rather than the process group ID (PGRP) | Martin Pieuchot |
2017-01-24 | Track a per-fd flag UF_PLEDGED. This indicates the initial open was done by a | Theo de Raadt |
2017-01-24 | Rename pfind(9) into tfind(9) to reflect that it deals with threads. | Martin Pieuchot |
2017-01-23 | File descriptor passing internalizes fd's into an mbuf-stored array of | Theo de Raadt |
2017-01-23 | Allocate all memory chunks, and potentially sleeping, before freeing | Martin Pieuchot |
2017-01-23 | Avoid curproc dance in dupfdopen(), by passing a struct proc * | Theo de Raadt |
2017-01-23 | The function raw_input() has not been called since netiso has been | Alexander Bluhm |
2017-01-23 | Backwards compat for pledge "ioctl" for about a week | Theo de Raadt |
2017-01-23 | Split pledge "ioctl" into "tape" and "bpf", and allow SIOCGIFGROUP only | Theo de Raadt |
2017-01-23 | whitespace | Theo de Raadt |
2017-01-21 | p_comm is the process's command and isn't per thread, so move it from | Philip Guenther |
2017-01-15 | When traversing the mount list, the current mount point is locked | Alexander Bluhm |
2017-01-11 | Move the membar in counters_read(). It has to be between reading | Alexander Bluhm |
2017-01-10 | Fix white spaces. No binary change. | Alexander Bluhm |
2017-01-10 | Replace manual for() loops with FOREACH() macro. | Alexander Bluhm |
2017-01-10 | Remove the unused olddp parameter from function dounmount(). | Alexander Bluhm |
2017-01-09 | Revert previous, it's a documented behavior and people might rely on it. | Martin Pieuchot |
2017-01-09 | Stop and restart the watchdog timer when entering and leaving ddb(4). | Martin Pieuchot |
2017-01-01 | copyright++; | Jonathan Gray |
2016-12-29 | Change NET_LOCK()/NET_UNLOCK() to be simple wrappers around | Martin Pieuchot |
2016-12-29 | Release the NET_LOCK() before calling unp_connect(). It is not possible | Martin Pieuchot |
2016-12-22 | Release the NET_LOCK() before namei(9) as a workaround to let NFS boot | Martin Pieuchot |
2016-12-22 | Revert workaround for NFS boot, it triggers the following assert: | Martin Pieuchot |
2016-12-22 | Work around a NET_LOCK() recursion seen during NFS netboot: | Visa Hankala |
2016-12-20 | Grab the NET_LOCK() in so{s,g}etopt(), pffasttimo() and pfslowtimo(). | Martin Pieuchot |
2016-12-20 | A NET_LOCK() was is missing in tcp_sysctl() which shows up as spl | Alexander Bluhm |
2016-12-19 | Introduce the NET_LOCK() a rwlock used to serialize accesses to the parts | Martin Pieuchot |
2016-12-18 | Include sys/proc.h when compiled with SYSCALL_DEBUG to get access to | Patrick Wildt |
2016-11-29 | m_free() and m_freem() test for NULL. Simplify callers which had their own | Jonathan Gray |
2016-11-28 | Remove NULL checks before m_free{m,}(). | Martin Pieuchot |
2016-11-23 | Some socket splicing tests on loopback hang with large mbufs and | Alexander Bluhm |
2016-11-22 | Enforce that ifioctl() is called at IPL_SOFTNET. | Martin Pieuchot |
2016-11-22 | Enforce that pr_ctlinput, pr_slowtimo and pr_fasttimo are called | Martin Pieuchot |
2016-11-22 | Enforce that pr_ctloutput is called at IPL_SOFTNET. | Martin Pieuchot |