index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
kern
/
uipc_socket.c
Age
Commit message (
Expand
)
Author
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
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
[next]