aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/sys_pipe.c
Commit message (Expand)AuthorAgeFilesLines
...
* Fix found places where uio_resid is truncated to int.Konstantin Belousov2012-02-211-6/+7
* Fix select/poll/kqueue for write on reverse direction before first write.Jilles Tjoelker2011-12-141-2/+4
* Most users of pipe(2) do not call fstat(2) on the returned pipe descriptors.Konstantin Belousov2011-12-061-9/+28
* If alloc_unr() call in the pipe_create() failed, then pipe->pipe_ino isKonstantin Belousov2011-12-011-2/+2
* Supply unique (st_dev, st_ino) value pair for the fstat(2) done on the pipes.Konstantin Belousov2011-10-051-2/+26
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-1/+1
* Fix a deficiency in the selinfo interface:Attilio Rao2011-08-251-0/+1
* Add the fo_chown and fo_chmod methods to struct fileops and use themKonstantin Belousov2011-08-161-0/+2
* After the r219999 is merged to stable/8, rename fallocf(9) to falloc(9)Konstantin Belousov2011-04-011-2/+2
* Update a comment. The sending process has not mapped the buffer pagesAlan Cox2011-03-201-3/+3
* Introduce and use a new VM interface for temporarily pinning pages. ThisAlan Cox2010-12-251-20/+3
* Implement and use a single optimized function for unholding a set of pages.Alan Cox2010-12-171-12/+3
* Update a comment: It no longer makes sense to talk about the page queuesAlan Cox2010-05-081-4/+1
* On Alan's advice, rather than do a wholesale conversion on a singleKip Macy2010-04-301-5/+7
* Rename st_*timespec fields to st_*tim for POSIX 2008 compliance.Ed Schouten2010-03-281-3/+3
* Use C99 initialization for struct filterops.Robert Watson2009-09-121-4/+10
* Fix poll(2) and select(2) for named pipes to return "ready for read"Konstantin Belousov2009-07-071-6/+9
* Adapt vfs kqfilter to the shared vnode lock used by zfs write vop. UseKonstantin Belousov2009-06-101-4/+2
* Prevent integer overflow in direct pipe write code from circumventingColin Percival2009-06-101-0/+2
* Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERICRobert Watson2009-06-051-2/+0
* - Make maxpipekva a signed long rather than an unsigned long as overflowJohn Baldwin2009-03-101-5/+5
* Adjust some variables (mostly related to the buffer cache) that holdJohn Baldwin2009-03-091-1/+1
* Several cleanups related to pipe(2).Ed Schouten2008-11-111-9/+22
* Another problem caused by the knlist_cleardel() potentially droppingKonstantin Belousov2008-05-231-11/+22
* Destruction of the pipe calls knlist_cleardel() to remove the knotesKonstantin Belousov2008-05-231-6/+1
* Make ftruncate a 'struct file' operation rather than a vnode operation.John Baldwin2008-01-071-0/+14
* Remove explicit locking of struct file.Jeff Roberson2007-12-301-12/+2
* Refactor select to reduce contention and hide internal implementationJeff Roberson2007-12-161-3/+6
* The kernel uses two ways to write data on a pipe:Jean-Sébastien Pédron2007-11-191-0/+4
* Merge first in a series of TrustedBSD MAC Framework KPI changesRobert Watson2007-10-241-9/+9
* Remove amountpipes counter for pipes -- this replicates the function ofRobert Watson2007-05-271-19/+2
* Further system call comment cleanup:Robert Watson2007-03-051-3/+2
* Use pipe_direct_write() optimization only if the data is in process' memory.Pawel Jakub Dawidek2006-12-191-2/+3
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+2
* Move some functions and definitions from uipc_socket2.c to uipc_socket.c:Robert Watson2006-06-101-2/+0
* - In pipe() return the error returned by pipe_create(), rather thenGleb Smirnoff2006-01-301-2/+3
* In pipe_write(): when uiomove() fails, do not spin on it forever.Xin LI2005-12-161-0/+2
* Fix the recent panics/LORs/hangs created by my kqueue commit by:Suleiman Souhlal2005-07-011-2/+4
* Rearrange the kninit calls for both directions of a pipe so thatMike Silbersack2005-01-171-1/+3
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Correct a bug introduced in sys_pipe.c:1.179: in pipe_ioctl(),Robert Watson2004-11-231-2/+5
* Add missing break.Poul-Henning Kamp2004-11-161-0/+1
* Straighten the ioctl function out to have only one exit point.Poul-Henning Kamp2004-11-151-17/+13
* Introduce fdclose() which will clean an entry in a filedesc.Poul-Henning Kamp2004-11-071-9/+1
* Major enhancements to pipe memory usage:Mike Silbersack2004-08-161-55/+136
* Add locking to the kqueue subsystem. This also makes the kqueue subsystemJohn-Mark Gurney2004-08-151-6/+11
* Standardize pipe locking, ensuring that everything is locked viaMike Silbersack2004-08-031-152/+115
* * Add a "how" argument to uma_zone constructors and initialization functionsBrian Feldman2004-08-021-6/+8
* Don't perform pipe endpoint locking during pipe_create(), as the pipeRobert Watson2004-07-231-11/+20
* Fix a minor error in pipe_stat - st_size was always reported as 0Mike Silbersack2004-07-201-1/+4