| Commit message (Expand) | Author | Age | Files | Lines |
* | MFC r271946 and r272595: | hselasky | 2014-11-03 | 1 | -0/+31 |
* | Fix kernel memory disclosure in control message and SCTP notifications. | delphij | 2014-07-08 | 1 | -0/+5 |
* | MFC r262867 | asomers | 2014-03-27 | 1 | -23/+50 |
* | - Substitute sbdrop_internal() with sbcut_internal(). The latter doesn't free | glebius | 2013-10-09 | 1 | -11/+34 |
* | Fix socket buffer timeouts precision using the new sbintime_t KPI instead | davide | 2013-09-01 | 1 | -2/+2 |
* | When a previous call to sbsndptr() leaves sb->sb_sndptroff at the start of an | lstewart | 2013-06-19 | 1 | -0/+7 |
* | Once ng_ksocket(4) is fixed, re-apply r194662. See this revision for | glebius | 2013-03-29 | 1 | -0/+3 |
* | Use m_get() and m_getcl() instead of compat macros. | glebius | 2013-03-15 | 1 | -2/+2 |
* | Mechanically substitute flags from historic mbuf allocator with | glebius | 2012-12-05 | 1 | -4/+4 |
* | Document a large number of currently undocumented sysctls. While here | eadler | 2011-12-13 | 1 | -1/+1 |
* | Increase the defaults for the maximum socket buffer limit, | bz | 2011-08-25 | 1 | -1/+1 |
* | Revert r194662, since it breaks ng_ksocket(4) and may break | glebius | 2011-04-14 | 1 | -3/+0 |
* | In sbappendstream_locked() demote all incoming packet mbufs (and | andre | 2009-06-22 | 1 | -0/+3 |
* | Rework socket upcalls to close some races with setup/teardown of upcalls. | jhb | 2009-06-01 | 1 | -4/+14 |
* | Fix sbappendrecord_locked(). | emax | 2009-04-21 | 1 | -8/+2 |
* | Rewrite sbreserve_locked()'s comment on NULL thread pointers, eliminating | rwatson | 2008-10-07 | 1 | -4/+5 |
* | Catch a possible NULL pointer deref in case the offsets got mangled | bz | 2008-09-07 | 1 | -1/+3 |
* | Update the kernel to count the number of mbufs and clusters | gnn | 2008-05-15 | 1 | -0/+2 |
* | Further clean up sorflush: | rwatson | 2008-02-04 | 1 | -2/+1 |
* | Correct two problems relating to sorflush(), which is called to flush | rwatson | 2008-01-31 | 1 | -2/+6 |
* | Add SB_NOCOALESCE flag to disable socket buffer update in place | kmacy | 2007-12-17 | 1 | -0/+1 |
* | Refactor select to reduce contention and hide internal implementation | jeff | 2007-12-16 | 1 | -1/+2 |
* | Set the NFS server sockbuf high watermarks to the system defaults | mohans | 2007-10-12 | 1 | -2/+2 |
* | Now that sx(9) locks support an interruptible lock acquire primitive, | rwatson | 2007-05-31 | 1 | -2/+5 |
* | Generally migrate to ANSI function headers, and remove 'register' use. | rwatson | 2007-05-16 | 1 | -7/+3 |
* | sblock() implements a sleep lock by interlocking SB_WANT and SB_LOCK flags | rwatson | 2007-05-03 | 1 | -19/+16 |
* | Following movement of functions from uipc_socket2.c to uipc_socket.c and | rwatson | 2007-03-26 | 1 | -6/+7 |
* | Complete removal of uipc_socket2.c by moving the last few functions to | rwatson | 2007-03-26 | 1 | -0/+52 |
* | Maintain a pointer and offset pair into the socket buffer mbuf chain to | andre | 2007-03-19 | 1 | -0/+41 |
* | Use sysctl_handle_long() instead of duplicating it's logic for | jhb | 2006-09-06 | 1 | -8/+4 |
* | Remove 'register'. | rwatson | 2006-08-02 | 1 | -196/+135 |
* | Reimplement socket buffer tear-down in sofree(): as the socket is no | rwatson | 2006-08-01 | 1 | -13/+53 |
* | Remove non-socket buffer routines from uipc_sockbuf.c, and socket buffer | rwatson | 2006-07-24 | 1 | -355/+7 |
* | Several protocol switch functions (pru_abort, pru_detach, pru_sosetlabel) | rwatson | 2006-07-11 | 1 | -22/+0 |
* | Remove now unneeded opt_mac.h and mac.h includes. | rwatson | 2006-07-06 | 1 | -2/+0 |
* | Remove sbinsertoob(), sbinsertoob_locked(). They violate (and have | rwatson | 2006-06-17 | 1 | -64/+0 |
* | Move some functions and definitions from uipc_socket2.c to uipc_socket.c: | rwatson | 2006-06-10 | 1 | -138/+0 |
* | Allow for nmbclusters and maxsockets to be increased via sysctl. | ps | 2006-04-21 | 1 | -2/+24 |
* | Chance protocol switch method pru_detach() so that it returns void | rwatson | 2006-04-01 | 1 | -2/+2 |
* | Change protocol switch pru_abort() API so that it returns void rather | rwatson | 2006-04-01 | 1 | -2/+2 |
* | Add a sysctl, regression.sonewconn_earlytest, which when options | rwatson | 2006-03-26 | 1 | -0/+10 |
* | Change soabort() from returning int to returning void, since all | rwatson | 2006-03-16 | 1 | -1/+1 |
* | Fix a bug in the loop in sonewconn that makes room on the incomplete | jdp | 2005-11-22 | 1 | -1/+1 |
* | Retire MT_HEADER mbuf type and change its users to use MT_DATA. | andre | 2005-11-02 | 1 | -4/+2 |
* | Push the assignment of a new or updated so_qlimit from solisten() | rwatson | 2005-10-30 | 1 | -1/+1 |
* | Re-comment sbcompress() to explain what it is it does; it took me | rwatson | 2005-09-18 | 1 | -7/+20 |
* | Fix the recent panics/LORs/hangs created by my kqueue commit by: | ssouhlal | 2005-07-01 | 1 | -2/+4 |
* | In the current world order, each socket has two mutexes: a mutex | rwatson | 2005-05-27 | 1 | -13/+6 |
* | Extend the coverage of the accept and socket mutexes in soisconnected() | rwatson | 2005-03-12 | 1 | -3/+3 |
* | When upcalling from a socket in soisconnected() for an accept filter, | rwatson | 2005-03-07 | 1 | -1/+1 |