| Commit message (Expand) | Author | Age | Files | Lines |
* | Another problem caused by the knlist_cleardel() potentially dropping | kib | 2008-05-23 | 1 | -11/+22 |
* | Destruction of the pipe calls knlist_cleardel() to remove the knotes | kib | 2008-05-23 | 1 | -6/+1 |
* | Make ftruncate a 'struct file' operation rather than a vnode operation. | jhb | 2008-01-07 | 1 | -0/+14 |
* | Remove explicit locking of struct file. | jeff | 2007-12-30 | 1 | -12/+2 |
* | Refactor select to reduce contention and hide internal implementation | jeff | 2007-12-16 | 1 | -3/+6 |
* | The kernel uses two ways to write data on a pipe: | dumbbell | 2007-11-19 | 1 | -0/+4 |
* | Merge first in a series of TrustedBSD MAC Framework KPI changes | rwatson | 2007-10-24 | 1 | -9/+9 |
* | Remove amountpipes counter for pipes -- this replicates the function of | rwatson | 2007-05-27 | 1 | -19/+2 |
* | Further system call comment cleanup: | rwatson | 2007-03-05 | 1 | -3/+2 |
* | Use pipe_direct_write() optimization only if the data is in process' memory. | pjd | 2006-12-19 | 1 | -2/+3 |
* | Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.h | rwatson | 2006-10-22 | 1 | -1/+2 |
* | Move some functions and definitions from uipc_socket2.c to uipc_socket.c: | rwatson | 2006-06-10 | 1 | -2/+0 |
* | - In pipe() return the error returned by pipe_create(), rather then | glebius | 2006-01-30 | 1 | -2/+3 |
* | In pipe_write(): when uiomove() fails, do not spin on it forever. | delphij | 2005-12-16 | 1 | -0/+2 |
* | Fix the recent panics/LORs/hangs created by my kqueue commit by: | ssouhlal | 2005-07-01 | 1 | -2/+4 |
* | Rearrange the kninit calls for both directions of a pipe so that | silby | 2005-01-17 | 1 | -1/+3 |
* | /* -> /*- for copyright notices, minor format tweaks as necessary | imp | 2005-01-06 | 1 | -1/+1 |
* | Correct a bug introduced in sys_pipe.c:1.179: in pipe_ioctl(), | rwatson | 2004-11-23 | 1 | -2/+5 |
* | Add missing break. | phk | 2004-11-16 | 1 | -0/+1 |
* | Straighten the ioctl function out to have only one exit point. | phk | 2004-11-15 | 1 | -17/+13 |
* | Introduce fdclose() which will clean an entry in a filedesc. | phk | 2004-11-07 | 1 | -9/+1 |
* | Major enhancements to pipe memory usage: | silby | 2004-08-16 | 1 | -55/+136 |
* | Add locking to the kqueue subsystem. This also makes the kqueue subsystem | jmg | 2004-08-15 | 1 | -6/+11 |
* | Standardize pipe locking, ensuring that everything is locked via | silby | 2004-08-03 | 1 | -152/+115 |
* | * Add a "how" argument to uma_zone constructors and initialization functions | green | 2004-08-02 | 1 | -6/+8 |
* | Don't perform pipe endpoint locking during pipe_create(), as the pipe | rwatson | 2004-07-23 | 1 | -11/+20 |
* | Fix a minor error in pipe_stat - st_size was always reported as 0 | silby | 2004-07-20 | 1 | -1/+4 |
* | Revise the direct or optimized case to use uiomove_fromphys() by the reader | alc | 2004-03-27 | 1 | -60/+18 |
* | Assert pipe mutex in pipeselwakeup(), as we manipulate pipe_state | rwatson | 2004-02-26 | 1 | -0/+1 |
* | Update comment regarding MAC labels: we no longer pass endpoints | rwatson | 2004-02-25 | 1 | -7/+3 |
* | Correct some major SMP-harmful problems in the pipe implementation. First | green | 2004-02-22 | 1 | -41/+66 |
* | Don't dec/inc the amountpipes counter every time we resize a pipe -- | rwatson | 2004-02-03 | 1 | -2/+3 |
* | Catch instances of (pipe == NULL) that were obsoleted with recent | rwatson | 2004-02-03 | 1 | -6/+6 |
* | Coalesce pipe allocations and frees. Previously, the pipe code | rwatson | 2004-02-01 | 1 | -91/+150 |
* | Fix an error in a KASSERT string: it's pipe_free_kmem(), not | rwatson | 2004-01-31 | 1 | -1/+1 |
* | New file descriptor allocation code, derived from similar code introduced | des | 2004-01-15 | 1 | -0/+1 |
* | Back out 1.160, which was committed by mistake. | des | 2004-01-11 | 1 | -1/+0 |
* | Mechanical whitespace cleanup. | des | 2004-01-11 | 1 | -27/+27 |
* | Mechanical whitespace cleanup + minor style nits. | des | 2004-01-11 | 1 | -1/+3 |
* | Fix the maxpipekva warning message so that it points to the correct | silby | 2003-12-28 | 1 | -1/+1 |
* | - Implement selwakeuppri() which allows raising the priority of a | tanimura | 2003-11-09 | 1 | -1/+1 |
* | - Delay the allocation of memory for the pipe mutex until we need it. | alc | 2003-11-06 | 1 | -5/+1 |
* | - Simplify pipespace() by eliminating the explicit creation of vm objects. | alc | 2003-11-06 | 1 | -10/+2 |
* | Unlock pipe mutex when failing MAC pipe ioctl access control check. | rwatson | 2003-11-03 | 1 | -1/+3 |
* | Change all SYSCTLS which are readonly and have a related TUNABLE | silby | 2003-10-21 | 1 | -1/+1 |
* | falloc allocates a file structure and adds it to the file descriptor | dwmalone | 2003-10-19 | 1 | -1/+3 |
* | fix a problem referencing free'd memory. This is only a problem for | jmg | 2003-10-12 | 1 | -2/+7 |
* | pipe_build_write_buffer() only requires read access of the page that it | alc | 2003-09-12 | 1 | -1/+2 |
* | Use pmap_extract_and_hold() in pipe_build_write_buffer(). Consequently, | alc | 2003-09-08 | 1 | -35/+11 |
* | Giant is no longer required by pipe_destroy_write_buffer(). Reduce | alc | 2003-09-06 | 1 | -9/+7 |