summaryrefslogtreecommitdiffstats
path: root/sys/kern/uipc_socket.c
Commit message (Expand)AuthorAgeFilesLines
* Remove an XXXRW indicating atomic operations might be used as arwatson2004-12-231-12/+4
* In soalloc(), simplify the mac_init_socket() handling to removerwatson2004-12-231-14/+3
* Remove unneeded code from the zero-copy receive path.alc2004-12-101-12/+0
* Tidy up the zero-copy receive path: Remove an unneeded argument toalc2004-12-081-3/+2
* If soreceive() is called from a socket callback, there's no reasonps2004-11-291-1/+7
* Make soreceive(MSG_DONTWAIT) nonblocking. If MSG_DONTWAIT is passed intops2004-11-291-3/+21
* Since sb_timeo type was increased to int, use INT_MAX instead of SHRT_MAX.glebius2004-11-091-3/+3
* Acquire the accept mutex in soabort() before calling sotryfree(), asrwatson2004-11-021-0/+1
* socreate() does an early abort if either the protocol cannot be found,andre2004-10-231-1/+2
* Push acquisition of the accept mutex out of sofree() into the callerrwatson2004-10-181-3/+4
* Rework sofree() logic to take into account a possible race with accept().rwatson2004-10-111-5/+19
* Expand the scope of the socket buffer locks in sopoll() to include therwatson2004-09-051-4/+4
* Conditional acquisition of socket buffer mutexes when testing socketrwatson2004-08-241-35/+16
* Back out uipc_socket.c:1.208, as it incorrectly assumes that allrwatson2004-08-201-3/+1
* make sure that the socket is either accepting connections or is connectedjmg2004-08-201-1/+3
* Add locking to the kqueue subsystem. This also makes the kqueue subsystemjmg2004-08-151-6/+10
* Replace a reference to splnet() with a reference to locking in a comment.rwatson2004-08-111-1/+1
* Do some initial locking on accept filter registration and attach. Whilerwatson2004-07-251-29/+76
* The recent changes to control message passing broke some thingsdwmalone2004-07-181-12/+16
* When entering soclose(), assert that SS_NOFDREF is not already set.rwatson2004-07-161-0/+2
* Rename Alfred's kern_setsockopt to so_setsockopt, as this seems adwmalone2004-07-121-1/+1
* Use SO_REUSEADDR and SO_REUSEPORT when reconnecting NFS mounts.alfred2004-07-121-0/+19
* Use sockbuf_pushsync() to synchronize stack and socket buffer staterwatson2004-07-111-34/+47
* Add sockbuf_pushsync(), an inline function that, following a change torwatson2004-07-111-0/+38
* Add additional annotations to soreceive(), documenting the effects ofrwatson2004-07-111-1/+35
* In the 'dontblock' section of soreceive(), assert that the mbuf on handrwatson2004-07-111-0/+1
* Break out non-inline out-of-band data receive code from soreceive()rwatson2004-07-111-38/+63
* Assign pointers values of NULL rather than 0 in soreceive().rwatson2004-07-111-2/+2
* When the MT_SONAME mbuf is popped off of a receive socket bufferrwatson2004-07-101-0/+2
* Now socket buffer locks are being asserted at higher code blocks inrwatson2004-07-101-4/+1
* Assert socket buffer lock at strategic points between sections of coderwatson2004-07-101-0/+5
* Drop the socket buffer lock around a call to m_copym() with M_TRYWAIT.rwatson2004-07-051-1/+4
* Add a new global mutex, so_global_mtx, which protects the global variablesrwatson2004-06-271-2/+26
* Replace comment on spl state when calling soabort() with a comment onrwatson2004-06-261-1/+4
* Lock socket buffers when processing setting socket options SO_SNDLOWATrwatson2004-06-241-0/+4
* Slide socket buffer lock earlier in sopoll() to cover the call intorwatson2004-06-241-2/+2
* Remove spl's from uipc_socket to ease in merging.rwatson2004-06-221-40/+8
* Merge next step in socket buffer locking:rwatson2004-06-211-7/+31
* When retrieving the SO_LINGER socket option for user space, hold therwatson2004-06-201-0/+7
* Convert an if->panic in soclose() into a call to KASSERT().rwatson2004-06-201-2/+1
* Annotate some ordering-related issues in solisten() which are not yetrwatson2004-06-201-0/+5
* Assert socket buffer lock in sb_lock() to protect socket buffer sleeprwatson2004-06-191-25/+60
* Hold SOCK_LOCK(so) while frobbing so_options. Note that while therwatson2004-06-181-1/+4
* Merge some additional leaf node socket buffer locking fromrwatson2004-06-181-13/+26
* Merge additional socket buffer locking from rwatson_netperf:rwatson2004-06-171-14/+25
* The socket field so_state is used to hold a variety of socket relatedrwatson2004-06-141-10/+10
* Extend coverage of SOCK_LOCK(so) to include so_count, the socketrwatson2004-06-121-1/+10
* Introduce a mutex into struct sockbuf, sb_mtx, which will be used torwatson2004-06-121-0/+4
* Avoid assignments to cast expressions.stefanf2004-06-081-2/+2
* Integrate accept locking from rwatson_netperf, introducing a newrwatson2004-06-021-22/+49
OpenPOWER on IntegriCloud