Age | Commit message (Expand) | Author |
2021-05-01 | Implement per-socket `so_lock' rwlock(9) and use it to protect routing | mvs |
2021-04-26 | Revert per-socket `so_lock' rwlock(9) and use it to protect routing | Claudio Jeker |
2021-04-25 | Implement per-socket `so_lock' rwlock(9) and use it to protect routing | mvs |
2021-02-24 | In sorflush() use m_purge() instead of handrolling it. | Alexander Bluhm |
2021-02-18 | Release mbuf(9) chain with a simple m_freem(9) loop in sorflush(). | mvs |
2021-01-17 | Replace SB_KNOTE and sb_flagsintr with direct checking of klist. | Visa Hankala |
2021-01-09 | If the loop check in somove(9) goes to release without setting an | Alexander Bluhm |
2020-12-25 | Refactor klist insertion and removal | Visa Hankala |
2020-12-12 | Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp. | jan |
2020-11-17 | Fix handling of MSG_PEEK in soreceive() for the case where an empty | Claudio Jeker |
2020-09-29 | Move the solock() call outside of solisten(). The reason is that the | Claudio Jeker |
2020-08-07 | sosplice(9): fully validate idle timeout | cheloha |
2020-06-22 | Extend kqueue interface with EVFILT_EXCEPT filter. | Martin Pieuchot |
2020-06-18 | Compare `so' and `sosp' types just after `sosp' obtaining. We can't splice | mvs |
2020-06-15 | Set __EV_HUP when the conditions matching poll(2)'s POLLUP are found. | Martin Pieuchot |
2020-04-12 | In sosplice(), temporarily release the socket lock before calling | anton |
2020-04-07 | Abstract the head of knote lists. This allows extending the lists, | Visa Hankala |
2020-03-11 | Fix unlimited recursion caused by local outbound bcast/mcast packet | Alexandr Nedvedicky |
2020-02-20 | Replace field f_isfd with field f_flags in struct filterops to allow | Visa Hankala |
2020-02-14 | Push the KERNEL_LOCK() insidge pgsigio() and selwakeup(). | Martin Pieuchot |
2020-01-15 | Keep socket timeout intervals in nsecs and use them with tsleep_nsec(9). | Martin Pieuchot |
2019-12-31 | Use C99 designated initializers with struct filterops. In addition, | Visa Hankala |
2019-12-12 | Reintroduce socket locking inside socket event filters. | Visa Hankala |
2019-12-02 | Revert "timeout(9): switch to tickless backend" | cheloha |
2019-11-26 | timeout(9): switch to tickless backend | cheloha |
2019-07-22 | implement SO_DOMAIN and SO_PROTOCOL so that the domain and the protocol | Robert Nagy |
2019-07-11 | listen(2) should return EINVAL if the socket is connected. | Alexander Bluhm |
2019-07-04 | Remove a useless kernel lock from the TCP socket splicing path. | Alexander Bluhm |
2018-12-17 | When using MSG_WAITALL, soreceive() can sleep while processing the | Alexander Bluhm |
2018-11-30 | Trivial MH_ALIGN/M_ALIGN to m_align conversions. | Claudio Jeker |
2018-11-21 | When using MSG_PEEK to peak into packets skip control messages holding | Claudio Jeker |
2018-11-19 | Utilize sigio with sockets. | Visa Hankala |
2018-08-21 | If the control message of IP_SENDSRCADDR did not fit into the socket | Alexander Bluhm |
2018-07-30 | Use FNONBLOCK instead of SS_NBIO to check/indicate that the I/O mode | Martin Pieuchot |
2018-07-05 | Serialize the sosplice taskq allocation. This prevents an unlikely | Visa Hankala |
2018-06-14 | In soclose() and soaccept() convert the KASSERT(SS_NOFDREF) back | Alexander Bluhm |
2018-06-06 | Pass the socket to sounlock(), this prepare the terrain for per-socket | Martin Pieuchot |
2018-06-06 | Asseert that a pfkey or routing socket is referenced by a `fp' instead | Martin Pieuchot |
2018-05-08 | Socket splicing can delay operations by task or timeout. Introduce | Alexander Bluhm |
2018-04-08 | AF_LOCAL was a failed attempt (by POSIX?) to seem less UNIX-specific, but | Philip Guenther |
2018-03-27 | Use a goto to merge multiple error blocks in sosplice(). | Martin Pieuchot |
2018-03-01 | When socket splicing is involved, delay the pool_put() after the | Alexander Bluhm |
2018-02-19 | Grab solock() inside soconnect2() instead of asserting for it to be held. | Martin Pieuchot |
2018-02-19 | Remove almost unused `flags' argument of suser(). | Martin Pieuchot |
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 |