aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/uipc_socket.c
Commit message (Expand)AuthorAgeFilesLines
* Somewhere along the line accept sockets stopped honoring theJulian Elischer2009-07-281-0/+1
* Normalize field naming for struct vnet, fix two debugging printfs thatRobert Watson2009-07-191-2/+2
* Fix poll(2) and select(2) for named pipes to return "ready for read"Konstantin Belousov2009-07-071-9/+10
* Add soreceive_stream(), an optimized version of soreceive() forAndre Oppermann2009-06-221-0/+196
* Get vnets from creds instead of threads where they're available, and fromJamie Gritton2009-06-151-1/+1
* Adapt vfs kqfilter to the shared vnode lock used by zfs write vop. UseKonstantin Belousov2009-06-101-8/+4
* Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERICRobert Watson2009-06-051-1/+0
* Add internal 'mac_policy_count' counter to the MAC Framework, which is aRobert Watson2009-06-021-2/+0
* Rework socket upcalls to close some races with setup/teardown of upcalls.John Baldwin2009-06-011-6/+63
* A NOP change: style / whitespace cleanup of the noise that slippedMarko Zec2009-05-081-2/+2
* Change the curvnet variable from a global const struct vnet *,Marko Zec2009-05-051-9/+35
* Permit buiding kernels with options VIMAGE, restricted to only a singleMarko Zec2009-04-301-0/+4
* Don't allow creating a socket with a protocol family that the currentJamie Gritton2009-02-051-8/+1
* Remove written-to but never read local variable 'offset' fromRobert Watson2009-02-041-2/+1
* Make sure nmbclusters are initialized before maxsocketsBjoern A. Zeeb2008-12-101-1/+2
* Style changes only. Put the return type on an extra line[1] andBjoern A. Zeeb2008-12-101-1/+3
* MFp4:Bjoern A. Zeeb2008-11-291-0/+4
* Add sv_flags field to struct sysentvec with intention to provide descriptionKonstantin Belousov2008-11-221-4/+3
* Fix a scope problem in the multiple routing table code that stopped theJulian Elischer2008-11-191-0/+3
* make sure that SO_NO_DDP and SO_NO_OFFLOAD get passed in correctlyKip Macy2008-10-171-0/+2
* In soreceive_dgram, when a 0-length buffer is passed into recv(2) andRobert Watson2008-10-071-1/+2
* Remove temporary debugging KASSERT's introduced to detect protocolsRobert Watson2008-10-071-12/+0
* Wait until after dropping the receive socket buffer lock to allocate spaceJohn Baldwin2008-10-011-23/+13
* Various cleanups for soreceive_dgram():Robert Watson2008-10-011-58/+19
* Update the function name in several assertions in soreceive_dgram().John Baldwin2008-09-301-4/+4
* Remove XXXRW in soreceive_dgram that proves unnecessary.Robert Watson2008-09-021-5/+0
* Add accessor functions for socket fields.Kip Macy2008-07-211-0/+139
* Update copyright date in light of soreceive_dgram(9).Robert Watson2008-07-031-1/+1
* Add soreceive_dgram(9), an optimized socket receive function for use byRobert Watson2008-07-021-0/+234
* Add code to allow the system to handle multiple routing tables.Julian Elischer2008-05-091-0/+20
* Add pru_flush routine so a transport canRandall Stewart2008-04-141-1/+3
* Replaced the misleading uses of a historical artefact M_TRYWAIT with M_WAIT.Ruslan Ermilov2008-03-251-14/+12
* Revert previous change - it appears that the limit I was hitting was aMaxim Sobolev2008-03-191-1/+0
* Properly set size of the file_zone to match kern.maxfiles parameter.Maxim Sobolev2008-03-161-0/+1
* Further clean up sorflush:Robert Watson2008-02-041-12/+12
* Correct two problems relating to sorflush(), which is called to flushRobert Watson2008-01-311-5/+11
* Merge first in a series of TrustedBSD MAC Framework KPI changesRobert Watson2007-10-241-4/+4
* Despite several examples in the kernel, the third argument ofDavid Malone2007-06-041-2/+2
* - Move rusage from being per-process in struct pstats to per-thread inJeff Roberson2007-06-011-3/+3
* Generally migrate to ANSI function headers, and remove 'register' use.Robert Watson2007-05-161-116/+61
* Add missing socket buffer unlock before returning to userland.Pyun YongHyeon2007-05-081-1/+1
* sblock() implements a sleep lock by interlocking SB_WANT and SB_LOCK flagsRobert Watson2007-05-031-61/+68
* Following movement of functions from uipc_socket2.c to uipc_socket.c andRobert Watson2007-03-261-34/+32
* Complete removal of uipc_socket2.c by moving the last few functions toRobert Watson2007-03-261-0/+298
* Move the dom_dispose and pru_detach calls in sofree() earlier. Only afterGleb Smirnoff2007-03-221-4/+5
* - Use m_gethdr(), m_get(), and m_clget() instead of the macros inJohn Baldwin2007-03-121-20/+5
* Don't block on the socket zone limit during the socket()Ruslan Ermilov2007-02-261-5/+5
* Rename somaxconn_sysctl() to sysctl_somaxconn() so that I will be able toRobert Watson2007-02-151-3/+3
* Diff reduction with RELENG_6, style(9):Bruce M Simpson2007-02-031-3/+2
* Generic socket buffer auto sizing support, header defines, flag inheritance.Andre Oppermann2007-02-011-0/+8