| Commit message (Expand) | Author | Age | Files | Lines |
* | Trim basically unused 'unp' in uipc_connect(). | rwatson | 2006-06-26 | 1 | -3/+0 |
* | Remove unused (and ifdef'd) unp_abort() and unp_drain(). | rwatson | 2006-06-16 | 1 | -18/+0 |
* | o There are two methods to get a process credentials over the unix | maxim | 2006-06-13 | 1 | -11/+25 |
* | Inherit LOCAL_CREDS option from listen socket for sockets returned | maxim | 2006-04-24 | 1 | -0/+2 |
* | Allow for nmbclusters and maxsockets to be increased via sysctl. | ps | 2006-04-21 | 1 | -1/+11 |
* | Chance protocol switch method pru_detach() so that it returns void | rwatson | 2006-04-01 | 1 | -2/+1 |
* | Change protocol switch pru_abort() API so that it returns void rather | rwatson | 2006-04-01 | 1 | -5/+1 |
* | Modify UNIX domain sockets to guarantee, and assume, that so_pcb is always | rwatson | 2006-03-17 | 1 | -97/+36 |
* | - Lock access to vrele() with VFS_LOCK_GIANT() rather than mtx_lock(&Giant). | jeff | 2006-01-30 | 1 | -2/+5 |
* | XXX a comment in uipc_usrreq.c that requires updating. | rwatson | 2006-01-13 | 1 | -0/+2 |
* | Fix a bunch of SYSCTL_INT() that should have been SYSCTL_ULONG() to | mux | 2005-12-14 | 1 | -4/+4 |
* | Correct a number of serious and closely related bugs in the UNIX domain | rwatson | 2005-11-10 | 1 | -50/+45 |
* | Normalize a significant number of kernel malloc type names: | rwatson | 2005-10-31 | 1 | -0/+1 |
* | Push the assignment of a new or updated so_qlimit from solisten() | rwatson | 2005-10-30 | 1 | -5/+7 |
* | Canonicalize the UNIX domain socket copyright layout: original holders | rwatson | 2005-09-23 | 1 | -2/+3 |
* | Fix two issues which were missed in FreeBSD-SA-05:08.kmem. | cperciva | 2005-05-07 | 1 | -1/+1 |
* | Add missing break. | mdodd | 2005-04-25 | 1 | -0/+1 |
* | Check sopt_level in uipc_ctloutput() and return early if it is non-zero. | mdodd | 2005-04-20 | 1 | -0/+3 |
* | Implement unix(4) socket options LOCAL_CREDS and LOCAL_CONNWAIT. | mdodd | 2005-04-13 | 1 | -15/+105 |
* | In the current world order, solisten() implements the state transition of | rwatson | 2005-02-21 | 1 | -9/+14 |
* | When aborting a UNIX domain socket bind() because VOP_CREATE() failed, | rwatson | 2005-02-21 | 1 | -1/+3 |
* | style(9)-ize function headers, remove use of 'register'. | rwatson | 2005-02-20 | 1 | -59/+30 |
* | In unp_attach(), allow uma_zalloc to zero the new unpcb rather than | rwatson | 2005-02-20 | 1 | -3/+2 |
* | Move assignment of UNIX domain socket pcb during unp_attach() outside | rwatson | 2005-02-20 | 1 | -1/+1 |
* | /* -> /*- for copyright notices, minor format tweaks as necessary | imp | 2005-01-06 | 1 | -1/+1 |
* | Remove temporary debugging printf that was used to detect the presence | rwatson | 2004-12-23 | 1 | -4/+0 |
* | Add send buffer locking to uipc_send(). Without this locking a race can | alc | 2004-12-22 | 1 | -0/+3 |
* | "nfiles" is a bad name for a global variable. Call it "openfiles" instead | phk | 2004-12-01 | 1 | -2/+2 |
* | Initialize struct pr_userreqs in new/sparse style and fill in common | phk | 2004-11-08 | 1 | -5/+18 |
* | Push acquisition of the accept mutex out of sofree() into the caller | rwatson | 2004-10-18 | 1 | -0/+1 |
* | Don't hold the UNIX domain socket subsystem lock over the body of the | rwatson | 2004-08-25 | 1 | -8/+15 |
* | Add UNP_UNLOCK_ASSERT() to asser that the UNIX domain socket subsystem | rwatson | 2004-08-19 | 1 | -2/+10 |
* | Always acquire the UNIX domain socket subsystem lock (UNP lock) | rwatson | 2004-08-16 | 1 | -46/+107 |
* | Annotate the current UNIX domain socket locking strategies, order, | rwatson | 2004-08-16 | 1 | -0/+21 |
* | After completing a name lookup for a target UNIX domain socket to | rwatson | 2004-08-14 | 1 | -5/+18 |
* | In uipc_connect(), assert that the passed thread is curthread, and pass | rwatson | 2004-07-25 | 1 | -1/+3 |
* | Drop Giant and acquire the UNIX domain socket subsystem lock a bit | rwatson | 2004-07-18 | 1 | -4/+4 |
* | We allocate an array of pointers to the global file table while | alfred | 2004-07-02 | 1 | -1/+12 |
* | Acquire the socket buffer lock when calling unp_scan() on | rwatson | 2004-06-27 | 1 | -0/+2 |
* | Reduce the number of unnecessary unlock-relocks on socket buffer mutexes | rwatson | 2004-06-26 | 1 | -6/+3 |
* | Release UNIX domain socket subsystem lock earlier -- don't need to | rwatson | 2004-06-25 | 1 | -1/+1 |
* | Merge next step in socket buffer locking: | rwatson | 2004-06-21 | 1 | -3/+8 |
* | In uipc_rcvd(), lock the socket buffers at either end of the UNIX | rwatson | 2004-06-20 | 1 | -0/+4 |
* | Hold SOCK_LOCK(so) when frobbing so_state when disconnecting a | rwatson | 2004-06-20 | 1 | -1/+5 |
* | Second half of the dev_t cleanup. | phk | 2004-06-17 | 1 | -1/+1 |
* | The socket field so_state is used to hold a variety of socket related | rwatson | 2004-06-14 | 1 | -1/+1 |
* | Socket MAC labels so_label and so_peerlabel are now protected by | rwatson | 2004-06-13 | 1 | -0/+2 |
* | Extend coverage of SOCK_LOCK(so) to include so_count, the socket | rwatson | 2004-06-12 | 1 | -0/+1 |
* | Introduce a subsystem lock around UNIX domain sockets in order to protect | rwatson | 2004-06-10 | 1 | -58/+193 |
* | Mark sun_noname as const since it's immutable. Update definitions | rwatson | 2004-06-04 | 1 | -5/+5 |