| Commit message (Expand) | Author | Age | Files | Lines |
* | In sorflush() use m_purge() instead of handrolling it. |  bluhm | 2021-02-24 | 1 | -3/+2 |
* | Release mbuf(9) chain with a simple m_freem(9) loop in sorflush(). |  mvs | 2021-02-18 | 1 | -6/+7 |
* | Replace SB_KNOTE and sb_flagsintr with direct checking of klist. |  visa | 2021-01-17 | 1 | -7/+1 |
* | If the loop check in somove(9) goes to release without setting an |  bluhm | 2021-01-09 | 1 | -3/+2 |
* | Refactor klist insertion and removal |  visa | 2020-12-25 | 1 | -4/+4 |
* | Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp. |  jan | 2020-12-12 | 1 | -3/+3 |
* | Fix handling of MSG_PEEK in soreceive() for the case where an empty |  claudio | 2020-11-17 | 1 | -6/+7 |
* | Move the solock() call outside of solisten(). The reason is that the |  claudio | 2020-09-29 | 1 | -7/+5 |
* | sosplice(9): fully validate idle timeout |  cheloha | 2020-08-07 | 1 | -2/+3 |
* | Extend kqueue interface with EVFILT_EXCEPT filter. |  mpi | 2020-06-22 | 1 | -3/+19 |
* | Compare `so' and `sosp' types just after `sosp' obtaining. We can't splice |  mvs | 2020-06-18 | 1 | -5/+5 |
* | Set __EV_HUP when the conditions matching poll(2)'s POLLUP are found. |  mpi | 2020-06-15 | 1 | -1/+9 |
* | In sosplice(), temporarily release the socket lock before calling |  anton | 2020-04-12 | 1 | -1/+9 |
* | Abstract the head of knote lists. This allows extending the lists, |  visa | 2020-04-07 | 1 | -6/+6 |
* | Fix unlimited recursion caused by local outbound bcast/mcast packet |  sashan | 2020-03-11 | 1 | -3/+9 |
* | Replace field f_isfd with field f_flags in struct filterops to allow |  visa | 2020-02-20 | 1 | -4/+4 |
* | Push the KERNEL_LOCK() insidge pgsigio() and selwakeup(). |  mpi | 2020-02-14 | 1 | -3/+1 |
* | Keep socket timeout intervals in nsecs and use them with tsleep_nsec(9). |  mpi | 2020-01-15 | 1 | -14/+30 |
* | Use C99 designated initializers with struct filterops. In addition, |  visa | 2019-12-31 | 1 | -7/+21 |
* | Reintroduce socket locking inside socket event filters. |  visa | 2019-12-12 | 1 | -3/+16 |
* | Revert "timeout(9): switch to tickless backend" |  cheloha | 2019-12-02 | 1 | -4/+3 |
* | timeout(9): switch to tickless backend |  cheloha | 2019-11-26 | 1 | -3/+4 |
* | implement SO_DOMAIN and SO_PROTOCOL so that the domain and the protocol |  robert | 2019-07-22 | 1 | -1/+9 |
* | listen(2) should return EINVAL if the socket is connected. |  bluhm | 2019-07-11 | 1 | -4/+3 |
* | Remove a useless kernel lock from the TCP socket splicing path. |  bluhm | 2019-07-04 | 1 | -11/+27 |
* | When using MSG_WAITALL, soreceive() can sleep while processing the |  bluhm | 2018-12-17 | 1 | -3/+11 |
* | Trivial MH_ALIGN/M_ALIGN to m_align conversions. |  claudio | 2018-11-30 | 1 | -2/+2 |
* | When using MSG_PEEK to peak into packets skip control messages holding |  claudio | 2018-11-21 | 1 | -10/+12 |
* | Utilize sigio with sockets. |  visa | 2018-11-19 | 1 | -5/+7 |
* | If the control message of IP_SENDSRCADDR did not fit into the socket |  bluhm | 2018-08-21 | 1 | -5/+9 |
* | Use FNONBLOCK instead of SS_NBIO to check/indicate that the I/O mode |  mpi | 2018-07-30 | 1 | -11/+7 |
* | Serialize the sosplice taskq allocation. This prevents an unlikely |  visa | 2018-07-05 | 1 | -4/+16 |
* | In soclose() and soaccept() convert the KASSERT(SS_NOFDREF) back |  bluhm | 2018-06-14 | 1 | -4/+6 |
* | Pass the socket to sounlock(), this prepare the terrain for per-socket |  mpi | 2018-06-06 | 1 | -23/+28 |
* | Asseert that a pfkey or routing socket is referenced by a `fp' instead |  mpi | 2018-06-06 | 1 | -5/+3 |
* | Socket splicing can delay operations by task or timeout. Introduce |  bluhm | 2018-05-08 | 1 | -8/+20 |
* | AF_LOCAL was a failed attempt (by POSIX?) to seem less UNIX-specific, but |  guenther | 2018-04-08 | 1 | -4/+4 |
* | Use a goto to merge multiple error blocks in sosplice(). |  mpi | 2018-03-27 | 1 | -5/+4 |
* | When socket splicing is involved, delay the pool_put() after the |  bluhm | 2018-03-01 | 1 | -4/+27 |
* | Grab solock() inside soconnect2() instead of asserting for it to be held. |  mpi | 2018-02-19 | 1 | -3/+4 |
* | Remove almost unused `flags' argument of suser(). |  mpi | 2018-02-19 | 1 | -3/+3 |
* | Mark sosplice task mp safe, do not grab kernel lock for tcp output. |  bluhm | 2018-01-10 | 1 | -2/+3 |
* | Change `so_state' and `so_error' to unsigned int such that they can |  mpi | 2018-01-09 | 1 | -2/+2 |
* | Do not memset() the whole structure in sorflush() to keep `sb_flagsintr' |  mpi | 2018-01-02 | 1 | -7/+3 |
* | Remove unnecessary unlock/lock dance when following a goto. |  mpi | 2017-12-19 | 1 | -5/+5 |
* | Revert grabbing the socket lock in kqueue(2) filters. |  mpi | 2017-12-18 | 1 | -16/+3 |
* | Move SB_SPLICE, SB_WAIT and SB_SEL to `sb_flags', serialized by solock(). |  mpi | 2017-12-10 | 1 | -15/+16 |
* | Constify protocol tables and remove an assert now that ip_deliver() is |  mpi | 2017-11-23 | 1 | -5/+5 |
* | We want `sb_flags' to be protected by the socket lock rather than the |  mpi | 2017-11-23 | 1 | -12/+12 |
* | Make it possible for multiple threads to enter kqueue_scan() in parallel. |  mpi | 2017-11-04 | 1 | -3/+16 |