Age | Commit message (Expand) | Author |
2018-01-10 | Mark sosplice task mp safe, do not grab kernel lock for tcp output. | Alexander Bluhm |
2018-01-09 | Change `so_state' and `so_error' to unsigned int such that they can | Martin Pieuchot |
2018-01-02 | Do not memset() the whole structure in sorflush() to keep `sb_flagsintr' | Martin Pieuchot |
2017-12-19 | Remove unnecessary unlock/lock dance when following a goto. | Martin Pieuchot |
2017-12-18 | Revert grabbing the socket lock in kqueue(2) filters. | Martin Pieuchot |
2017-12-10 | Move SB_SPLICE, SB_WAIT and SB_SEL to `sb_flags', serialized by solock(). | Martin Pieuchot |
2017-11-23 | Constify protocol tables and remove an assert now that ip_deliver() is | Martin Pieuchot |
2017-11-23 | We want `sb_flags' to be protected by the socket lock rather than the | Martin Pieuchot |
2017-11-04 | Make it possible for multiple threads to enter kqueue_scan() in parallel. | Martin Pieuchot |
2017-11-02 | Move PRU_DETACH out of pr_usrreq into per proto pr_detach | Florian Obser |
2017-09-15 | Coverity complains that top == NULL was checked and further down | Alexander Bluhm |
2017-09-11 | Coverty complains that the return value of sblock() is not checked | Alexander Bluhm |
2017-09-01 | Change sosetopt() to no longer free the mbuf it receives and change | Martin Pieuchot |
2017-08-22 | Make sogetopt(9) caller responsible for allocating an MT_SOOPTS mbuf. | Martin Pieuchot |
2017-08-10 | Move the solock()/sounlock() dance outside of sobind(). | Martin Pieuchot |
2017-08-10 | The socket field so_proto can never be NULL. Remove the checks. | Alexander Bluhm |
2017-08-09 | Move the socket lock "above" sosetopt(), sogetopt() and sosplice(). | Martin Pieuchot |
2017-07-27 | Assert that the KERNEL_LOCK() is held prior to call csignal() and | Martin Pieuchot |
2017-07-24 | Extend the scope of the socket lock to protect `so_state' in connect(2). | Martin Pieuchot |
2017-07-20 | If pool_get() sleeps while allocating additional memory for socket | Alexander Bluhm |
2017-07-20 | Prepare filt_soread() to be locked. No functionnal change. | Martin Pieuchot |
2017-07-13 | Do not unlock the netlock in the goto out error path before it has | Alexander Bluhm |
2017-07-08 | Revert grabbing the socket lock in kqueue filters. | Martin Pieuchot |
2017-07-04 | Always hold the socket lock when calling sblock(). | Martin Pieuchot |
2017-07-03 | Protect `so_state', `so_error' and `so_qlen' with the socket lock in | Martin Pieuchot |
2017-06-27 | Add missing solock()/sounlock() dances around sbreserve(). | Martin Pieuchot |
2017-06-26 | Assert that the corresponding socket is locked when manipulating socket | Martin Pieuchot |
2017-06-20 | In ddb print socket bit field so_state in hex to match SS_ defines. | Alexander Bluhm |
2017-06-20 | Convert sodidle() to timeout_set_proc(9), it needs a process context | Martin Pieuchot |
2017-05-31 | new socketoption SO_ZEROIZE: zero out all mbufs sent over socket | Markus Friedl |
2017-05-27 | Push the NET_LOCK down into PF_KEY so that it can be treated like PF_ROUTE. | Claudio Jeker |
2017-05-15 | so_splicelen needs to be protected by the socket lock. We are now | Martin Pieuchot |
2017-05-15 | Enable the NET_LOCK(), take 3. | Martin Pieuchot |
2017-04-02 | Less convoluted code in soshutdown() | Theo de Raadt |
2017-03-17 | Revert the NET_LOCK() and bring back pf's contention lock for release. | Martin Pieuchot |
2017-03-13 | Move PRU_ATTACH out of the pr_usrreq functions into pr_attach. | Claudio Jeker |
2017-03-07 | Do not grab the NET_LOCK() for routing sockets operations. | Martin Pieuchot |
2017-03-03 | Prevent a recursion in the socket layer. | Martin Pieuchot |
2017-02-14 | Wrap the NET_LOCK() into a per-socket solock() that does nothing for | Martin Pieuchot |
2017-02-01 | In sogetopt, preallocate an mbuf to avoid using sleeping mallocs with | David Hill |
2017-01-27 | In sosend() the size of the control message for file descriptor | Alexander Bluhm |
2017-01-26 | Do not hold the netlock while pool_get() may sleep. It is not | Alexander Bluhm |
2017-01-25 | As NET_LOCK() is a read/write lock, it can sleep in sotask(). So | Alexander Bluhm |
2017-01-25 | Enable the NET_LOCK(), take 2. | Martin Pieuchot |
2016-12-29 | Change NET_LOCK()/NET_UNLOCK() to be simple wrappers around | Martin Pieuchot |
2016-12-20 | Grab the NET_LOCK() in so{s,g}etopt(), pffasttimo() and pfslowtimo(). | Martin Pieuchot |
2016-12-19 | Introduce the NET_LOCK() a rwlock used to serialize accesses to the parts | Martin Pieuchot |
2016-11-29 | m_free() and m_freem() test for NULL. Simplify callers which had their own | Jonathan Gray |
2016-11-23 | Some socket splicing tests on loopback hang with large mbufs and | Alexander Bluhm |
2016-11-22 | Enforce that pr_ctloutput is called at IPL_SOFTNET. | Martin Pieuchot |