| Commit message (Expand) | Author | Age | Files | Lines |
* | Move unlock of global UNIX domain socket lock slightly lower in | rwatson | 2008-01-18 | 1 | -1/+1 |
* | VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used in | attilio | 2008-01-13 | 1 | -1/+1 |
* | Remove "lock pushdown" todo item in comment -- I did that for 7.0. | rwatson | 2008-01-10 | 1 | -1/+0 |
* | Correct typos in comments. | rwatson | 2008-01-10 | 1 | -2/+2 |
* | - Place the fhold() in unp_internalize_fp to be more consistent with refs. | jeff | 2008-01-01 | 1 | -9/+5 |
* | - Check the correct variable against NULL in two places. | jeff | 2007-12-31 | 1 | -4/+2 |
* | Remove explicit locking of struct file. | jeff | 2007-12-30 | 1 | -237/+175 |
* | Merge first in a series of TrustedBSD MAC Framework KPI changes | rwatson | 2007-10-24 | 1 | -4/+4 |
* | When we do open, we should lock the vnode exclusively. This fixes few races: | pjd | 2007-07-26 | 1 | -1/+1 |
* | Add DDB "show unpcb" command, allowing DDB to print out many pertinent | rwatson | 2007-05-29 | 1 | -0/+121 |
* | Remove more one more stale comment regarding unpcb type-safety. | rwatson | 2007-05-11 | 1 | -4/+0 |
* | Clarify and update quite a few comments to reflect locking optimizations, | rwatson | 2007-05-11 | 1 | -38/+21 |
* | Don't acquire Giant unconditionally. | wkoszek | 2007-05-06 | 1 | -14/+20 |
* | Replace custom file descriptor array sleep lock constructed using a mutex | rwatson | 2007-04-04 | 1 | -9/+10 |
* | In uipc_close(), we no longer always free the unpcb, as the last reference | rwatson | 2007-03-12 | 1 | -1/+2 |
* | Remove two simultaneous acquisitions of multiple unpcb locks from | rwatson | 2007-03-01 | 1 | -22/+19 |
* | Lock unp2 after checking for a non-NULL unp2 pointer in uipc_send() on | rwatson | 2007-02-28 | 1 | -1/+1 |
* | Revise locking strategy used for UNIX domain sockets in order to improve | rwatson | 2007-02-26 | 1 | -223/+469 |
* | Add an additional MAC check to the UNIX domain socket connect path: | rwatson | 2007-02-22 | 1 | -0/+5 |
* | Break introductory comment into two paragraphs to separate material on the | rwatson | 2007-02-20 | 1 | -12/+9 |
* | Minor rearrangement of global variables, comments, etc, in UNIX domain | rwatson | 2007-02-14 | 1 | -37/+34 |
* | Change unp_mtx to supporting recursion, and do not drop the unp_mtx over | rwatson | 2007-02-14 | 1 | -13/+5 |
* | Set UNP_CONNECTING when committing to moving ahead in unp_connect(). | rwatson | 2007-02-13 | 1 | -0/+1 |
* | Push UNIX domain socket locking further into uipc_ctloutput() in order to | rwatson | 2007-02-06 | 1 | -2/+6 |
* | Canonicalize copyrights in some files I hold copyrights on: | rwatson | 2007-01-08 | 1 | -1/+1 |
* | - Close a race between enumerating UNIX domain socket pcb structures via | jhb | 2007-01-05 | 1 | -15/+50 |
* | Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.h | rwatson | 2006-10-22 | 1 | -1/+2 |
* | Minor white space tweaks. | rwatson | 2006-08-13 | 1 | -4/+2 |
* | Move definition of UNIX domain socket protosw and domain entries from | rwatson | 2006-08-07 | 1 | -3/+35 |
* | Don't set pru_sosend, pru_soreceive, pru_sopoll to default values, as they | rwatson | 2006-08-06 | 1 | -3/+0 |
* | Remove now unneeded ENOTCONN clause from SOCK_DGRAM side of uipc_send(): | rwatson | 2006-08-02 | 1 | -5/+0 |
* | Close a race that occurs when using sendto() to connect and send on a | rwatson | 2006-07-31 | 1 | -2/+22 |
* | Remove call to soisdisconnected() in uipc_detach(), since it will already | rwatson | 2006-07-26 | 1 | -1/+0 |
* | soreceive_generic(), and sopoll_generic(). Add new functions sosend(), | rwatson | 2006-07-24 | 1 | -3/+3 |
* | Remove duplicate 'or'. | rwatson | 2006-07-23 | 1 | -4/+4 |
* | Add additional comments to the top of the UNIX domain socket implementation | rwatson | 2006-07-23 | 1 | -0/+18 |
* | Add two new unpcb flags, UNP_BINDING and UNP_CONNECTING, which will be | rwatson | 2006-07-23 | 1 | -16/+34 |
* | Merge unp_bind() into uipc_bind(), as it is called only from uipc_bind(). | rwatson | 2006-07-23 | 1 | -94/+85 |
* | Since unp_attach() and unp_detach() are now called only from uipc_attach() | rwatson | 2006-07-23 | 1 | -89/+70 |
* | Move various UNIX socket global variables and sysctls from the middle of | rwatson | 2006-07-23 | 1 | -32/+32 |
* | In uipc_send() and uipc_rcvd(), store unp->unp_conn pointer in unp2 | rwatson | 2006-07-22 | 1 | -13/+14 |
* | Re-wrap and other minor formatting and punctuation fixes for UNIX domain | rwatson | 2006-07-22 | 1 | -84/+82 |
* | Change semantics of socket close and detach. Add a new protocol switch | rwatson | 2006-07-21 | 1 | -2/+17 |
* | Reduce periods of simultaneous acquisition of various socket buffer | rwatson | 2006-07-11 | 1 | -20/+28 |
* | 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 |