| Commit message (Expand) | Author | Age | Files | Lines |
* | Rewrite sigdeferstop(9) and sigallowstop(9) into more flexible | kib | 2016-06-26 | 1 | -6/+4 |
* | Ensure that when a blockable open of fifo returns success, a valid | kib | 2015-09-20 | 1 | -2/+9 |
* | Make SIGSTOP working for sleeps done while waiting for fifo readers or | kib | 2015-01-18 | 1 | -1/+7 |
* | Ignore the error from pipespace_new when creating a pipe. | mjg | 2014-05-02 | 1 | -3/+1 |
* | Do not allow O_EXEC opens for fifo, return EINVAL. | kib | 2013-12-17 | 1 | -1/+1 |
* | I am comparing current pipe code with the one in 8.3-STABLE r236165, | davidxu | 2012-07-31 | 1 | -17/+4 |
* | When a thread is blocked in direct write state, it only sets PIPE_DIRECTW | davidxu | 2012-07-31 | 1 | -2/+8 |
* | Update comment. | kib | 2012-03-11 | 1 | -1/+1 |
* | Remove fifo.h. The only used function declaration from the header is | kib | 2012-03-11 | 2 | -39/+0 |
* | The pipe_poll() performs lockless access to the vnode to test | kib | 2012-03-07 | 2 | -14/+12 |
* | merge pipe and fifo implementations | kmacy | 2012-02-23 | 2 | -403/+76 |
* | Initialize fifoinfo fi_wgen field on open. The only important is the | kib | 2011-12-04 | 1 | -1/+1 |
* | Add the fo_chown and fo_chmod methods to struct fileops and use them | kib | 2011-08-16 | 1 | -0/+2 |
* | - Improve comments about locking of the "struct fifoinfo" which is a bit | attilio | 2009-11-06 | 1 | -8/+9 |
* | Provide default implementation for VOP_ACCESS(9), so that filesystems which | trasz | 2009-10-01 | 1 | -1/+0 |
* | Use C99 initialization for struct filterops. | rwatson | 2009-09-12 | 1 | -6/+15 |
* | Fix poll() on half-closed sockets, while retaining POLLHUP for fifos. | jilles | 2009-08-25 | 1 | -0/+3 |
* | Fix poll(2) and select(2) for named pipes to return "ready for read" | kib | 2009-07-07 | 1 | -20/+14 |
* | s/a_fdidx/a_fp/ for VOP_OPEN comments that inline struct vop_open_args | kib | 2009-06-10 | 1 | -1/+1 |
* | Remove unused VOP_IOCTL and VOP_KQFILTER implementations for fifofs. | kib | 2009-06-10 | 1 | -40/+2 |
* | Remove VOP_LEASE and supporting functions. This hasn't been used since | rwatson | 2009-04-10 | 1 | -1/+0 |
* | Tweak the output of VOP_PRINT/vn_printf() some. | jhb | 2009-02-06 | 1 | -0/+1 |
* | Assert an exclusive vnode lock for fifo_cleanup() and fifo_close() since | jhb | 2009-01-28 | 1 | -2/+2 |
* | The kernel may do unbalanced calls to fifo_close() for fifo vnode, | kib | 2009-01-26 | 1 | -1/+4 |
* | Retire the MALLOC and FREE macros. They are an abomination unto style(9). | des | 2008-10-23 | 1 | -2/+2 |
* | Remove kernel support for M:N threading. | jeff | 2008-03-12 | 1 | -1/+1 |
* | Remove Giant acquisition around soreceive() and sosend() in fifofs. The | rwatson | 2008-01-26 | 1 | -10/+4 |
* | VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used in | attilio | 2008-01-13 | 1 | -2/+2 |
* | vn_lock() is currently only used with the 'curthread' passed as argument. | attilio | 2008-01-10 | 1 | -2/+2 |
* | Make ftruncate a 'struct file' operation rather than a vnode operation. | jhb | 2008-01-07 | 1 | -0/+9 |
* | Remove explicit locking of struct file. | jeff | 2007-12-30 | 1 | -4/+1 |
* | When we do open, we should lock the vnode exclusively. This fixes few races: | pjd | 2007-07-26 | 1 | -1/+1 |
* | Revert UF_OPENING workaround for CURRENT. | kib | 2007-05-31 | 1 | -4/+3 |
* | Replace custom file descriptor array sleep lock constructed using a mutex | rwatson | 2007-04-04 | 1 | -1/+3 |
* | Change fifo_printinfo to check if the vnode v_fifoinfo pointer | mpp | 2007-03-02 | 1 | -0/+4 |
* | 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 |