| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a_fdidx to comment prototype for fifo_open(). | rwatson | 2006-03-15 | 1 | -0/+1 |
* | If fifo_open() is called with a negative file descriptor, return EINVAL | rwatson | 2006-03-14 | 1 | -0/+2 |
* | Second attempt at a work-around for fifo-related socket panics during | rwatson | 2005-10-01 | 1 | -0/+4 |
* | Back out fifo_vnops.c:1.127, which introduced an sx lock around I/O on | rwatson | 2005-09-27 | 1 | -16/+3 |
* | Assert v_fifoinfo is non-NULL in fifo_close() in order to catch | rwatson | 2005-09-26 | 1 | -0/+1 |
* | Lock the read socket receive buffer when frobbing the sb_state flag on | rwatson | 2005-09-25 | 1 | -2/+2 |
* | For reasons of consistency (and necessity), assert an exclusive vnode | rwatson | 2005-09-23 | 1 | -0/+1 |
* | Add fi_sx, an sx lock to serialize I/O operations on the socket pair | rwatson | 2005-09-22 | 1 | -3/+16 |
* | Assert that (vp) is locked in fifo_close(), since we rely on the | rwatson | 2005-09-18 | 1 | -0/+1 |
* | The socket pointers in fifoinfo are not permitted to be NULL, so | rwatson | 2005-09-15 | 1 | -5/+2 |
* | Trim down now (believed to be) unused fifo_ioctl() and | rwatson | 2005-09-13 | 1 | -65/+75 |
* | As a result of kqueue locking work, socket buffer locks will always | rwatson | 2005-09-13 | 1 | -18/+6 |
* | Annotate two issues: | rwatson | 2005-09-13 | 1 | -0/+12 |
* | Introduce no-op nosup fifo kqueue filter and detach routine, which are | rwatson | 2005-09-12 | 1 | -1/+33 |
* | When a request is made to register a filter on a fifo that doesn't | rwatson | 2005-09-12 | 1 | -2/+2 |
* | Remove DFLAG_SEEKABLE from fifo file descriptors: fifos are not seekable | rwatson | 2005-09-12 | 1 | -1/+1 |
* | Only poll the fifo for read events if the fifo is attached to a readable | rwatson | 2005-09-12 | 1 | -2/+2 |
* | After going to some trouble to identify only the write-related events | rwatson | 2005-09-12 | 1 | -2/+2 |
* | When a writer opens a fifo, wake up the read socket for read, not the | rwatson | 2005-09-12 | 1 | -1/+1 |
* | Add an assertion that fifo_open() doesn't race against other threads | rwatson | 2005-09-12 | 1 | -0/+2 |
* | Rather than reaching into the internals of the UNIX domain socket code | rwatson | 2005-09-12 | 1 | -1/+1 |
* | - The VI_DOOMED flag now signals the end of a vnode's relationship with | jeff | 2005-03-13 | 1 | -4/+0 |
* | Whitespace in vop_vector{} initializations. | phk | 2005-01-13 | 1 | -0/+1 |
* | /* -> /*- for copyright notices, minor format tweaks as necessary | imp | 2005-01-06 | 2 | -2/+2 |
* | Don't forget to bypass vnodes in corner cases. | phk | 2004-12-13 | 1 | -8/+6 |
* | Explicitly panic vop_read/vop_write on fifos. | phk | 2004-12-13 | 1 | -0/+2 |
* | Back when VOP_* was introduced, we did not have new-style struct | phk | 2004-12-01 | 2 | -43/+25 |
* | Mechanically change prototypes for vnode operations to use the new typedefs. | phk | 2004-12-01 | 1 | -7/+7 |
* | Add dropped implementation of ioctl for fifos. | phk | 2004-11-18 | 1 | -1/+20 |
* | Make vnode bypass for fifos (read, write, poll) mandatory. | phk | 2004-11-17 | 1 | -133/+6 |
* | Add file ops to fifofs so that we can bypass vnodes (and Giant) for the | phk | 2004-11-15 | 1 | -1/+164 |
* | fifos doesn't need a vop_lookup, the default will do fine. | phk | 2004-11-13 | 1 | -19/+0 |
* | Properly implement a default version of VOP_GETWRITEMOUNT. | phk | 2004-11-06 | 1 | -1/+0 |
* | Add locking to the kqueue subsystem. This also makes the kqueue subsystem | jmg | 2004-08-15 | 1 | -5/+5 |
* | Remove unlocked read annotation for sbspace(); the read is locked. | rwatson | 2004-06-23 | 1 | -1/+0 |
* | Merge some additional leaf node socket buffer locking from | rwatson | 2004-06-18 | 1 | -6/+27 |
* | Merge additional socket buffer locking from rwatson_netperf: | rwatson | 2004-06-17 | 1 | -0/+2 |
* | Grab the socket buffer send or receive mutex when performing a | rwatson | 2004-06-15 | 1 | -0/+6 |
* | The socket field so_state is used to hold a variety of socket related | rwatson | 2004-06-14 | 1 | -5/+5 |
* | Add MSG_NBIO flag option to soreceive() and sosend() that causes | truckman | 2004-06-01 | 1 | -12/+6 |
* | Switch from using the vnode interlock to a private mutex in fifo_open() | truckman | 2004-05-17 | 1 | -24/+23 |
* | Remove advertising clause from University of California Regent's | imp | 2004-04-07 | 2 | -8/+0 |
* | Export uipc_connect2() from uipc_usrreq.c instead of unp_connect2(), | rwatson | 2004-03-31 | 1 | -1/+1 |
* | Use "fip->fi_readers == 0 && fip->fi_writers == 0" as the condition for | truckman | 2003-11-16 | 1 | -6/+3 |
* | If fifo_open() is interrupted, fifo_close() may not get called, causing | truckman | 2003-11-10 | 1 | -9/+23 |
* | Partially back out rev 1.87 by nuking fifo_inactive() and moving the | truckman | 2003-06-16 | 1 | -20/+4 |
* | Clean up the fifo_open() implementation: | truckman | 2003-06-13 | 1 | -45/+30 |
* | Fix up locking problems in fifo_open() and fifo_close(): | truckman | 2003-06-01 | 1 | -25/+73 |
* | Remove unused variable. | phk | 2003-05-31 | 1 | -2/+1 |
* | Better fix for the problem addressed by rev.1.79: don't loop in | bde | 2003-03-24 | 1 | -8/+13 |