| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix fcntl(fd, F_GETOWN) with pipes. As a regression |  visa | 2018-11-13 | 1 | -2/+2 |
* | Utilize sigio with pipes. This makes fcntl(fd, F_SETOWN, arg) correctly |  visa | 2018-11-12 | 1 | -8/+8 |
* | Reorder checks in the read/write(2) family of syscalls to prepare making |  mpi | 2018-08-20 | 1 | -5/+5 |
* | Grab the KERNEL_LOCK() in MP-unsafe fo_close routines. This prevents |  visa | 2018-08-15 | 1 | -1/+3 |
* | Make it possible to run pipe(2) and pipe2(2) mostly w/o KERNEL_LOCK(): |  mpi | 2018-08-13 | 1 | -16/+23 |
* | Move socket & pipe specific logic in their ioctl handler. |  mpi | 2018-07-10 | 1 | -1/+7 |
* | Put file descriptors on shared data structures when they are completely |  mpi | 2018-06-18 | 1 | -5/+8 |
* | Revert introduction of fdinsert(), a sanitify check triggers when |  mpi | 2018-06-05 | 1 | -8/+5 |
* | Put file descriptors on shared data structures when they are completely |  mpi | 2018-06-02 | 1 | -5/+8 |
* | Convert 'struct fileops' definitions to C99. |  mpi | 2018-04-10 | 1 | -3/+8 |
* | Stop assuming <sys/file.h> will pull in fcntl.h when _KERNEL is defined. |  guenther | 2018-01-02 | 1 | -1/+2 |
* | Add a flags argument to falloc() that lets it optionally set the |  guenther | 2017-02-11 | 1 | -9/+6 |
* | Add ktracing of the fds returned by pipe() and socketpair() |  guenther | 2016-10-08 | 1 | -1/+8 |
* | all pools have their ipl set via pool_setipl, so fold it into pool_init. |  dlg | 2016-09-15 | 1 | -4/+3 |
* | pool_setipl |  dlg | 2016-08-30 | 1 | -1/+2 |
* | Convert to uiomove(); from Martin Natano |  stefan | 2016-01-15 | 1 | -10/+9 |
* | remove unnecessary casts where the incoming type is void *. |  tedu | 2016-01-06 | 1 | -12/+11 |
* | remove stale lint annotations |  tedu | 2015-12-05 | 1 | -5/+1 |
* | First step towards making uiomove() take a size_t size argument: |  miod | 2015-02-10 | 1 | -4/+4 |
* | start retiring the nointr allocator. specify PR_WAITOK as a flag as a |  tedu | 2014-12-19 | 1 | -3/+3 |
* | Replace uvm_km_alloc(9) and uvm_km_free(9) with the equivalent km_alooc(9) |  kettenis | 2014-09-28 | 1 | -4/+4 |
* | Add additional kernel interfaces for setting close-on-exec on fds |  guenther | 2014-08-31 | 1 | -5/+31 |
* | Copy timespecs member by member in fo_stat callback functions, to avoid |  guenther | 2014-01-24 | 1 | -4/+7 |
* | bzero -> memset |  tedu | 2014-01-21 | 1 | -3/+3 |
* | take a file descriptor table lock after allocating pipe structures |  mikeb | 2012-05-06 | 1 | -9/+8 |
* | Add struct proc * argument to FRELE() and FILE_SET_MATURE() in |  guenther | 2012-04-22 | 1 | -3/+3 |
* | keep the fdplock around copyout in pipe. ok matthew |  tedu | 2011-07-08 | 1 | -5/+2 |
* | Remove the sys_opipe() kernel entry point. sys_pipe() is the future. |  matthew | 2011-07-08 | 1 | -9/+18 |
* | Fix the return values from pipe_kqfilter - kqfilters should return an |  nicm | 2011-05-27 | 1 | -5/+6 |
* | fix typos in comments, no code changes; |  schwarze | 2010-01-14 | 1 | -2/+2 |
* | Every selwakeup() should have a matching KNOTE() (even if kqueue isn't |  nicm | 2009-11-09 | 1 | -3/+3 |
* | pipeclose() calls pileseltimeout() which does the KNOTE(); therefore calling |  deraadt | 2009-10-30 | 1 | -2/+1 |
* | Switch struct stat's timespec members to the names standardized in |  guenther | 2009-01-29 | 1 | -4/+4 |
* | de-__inline a trio of functions to shave some space. |  blambert | 2008-07-11 | 1 | -7/+7 |
* | When updating the timestamps on pipes, use getnanotime() instead of more |  miod | 2007-11-28 | 1 | -4/+4 |
* | Correctly deal with EOF on pipe wrt kqueue. Based on a fix present |  millert | 2007-08-07 | 1 | -2/+3 |
* | missing punctuation in comments; from bret lambert |  jmc | 2006-11-17 | 1 | -2/+2 |
* | ansi/deregister. No binary change. |  jsg | 2005-12-13 | 1 | -47/+16 |
* | remove p arg from fdplock |  tedu | 2004-07-22 | 1 | -2/+2 |
* | In pipe_read, when the pipelock fails (most likely because we catch a |  art | 2004-07-21 | 1 | -2/+2 |
* | This moves access to wall and uptime variables in MI code, |  tholo | 2004-06-24 | 1 | -7/+7 |
* | lock filedesc before manipulating. avoids some rare races. |  tedu | 2004-01-06 | 1 | -1/+7 |
* | Bring several fixes from FreeBSD to our current pipe implementation: |  miod | 2003-10-03 | 1 | -82/+106 |
* | Replace select backends with poll backends. selscan() and pollscan() |  millert | 2003-09-23 | 1 | -36/+31 |
* | First round of __P removal in sys |  millert | 2002-03-14 | 1 | -14/+14 |
* | - Rename FILE_{,UN}USE to FREF and FRELE. USE is a bad verb and we don't have |  art | 2002-02-08 | 1 | -3/+5 |
* | Pool deals fairly well with physical memory shortage, but it doesn't deal |  art | 2002-01-23 | 1 | -3/+2 |
* | Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary. |  miod | 2001-11-06 | 1 | -2/+1 |
* | - every new fd created by falloc() is marked as larval and should not be used |  art | 2001-10-26 | 1 | -1/+3 |
* | merge vm/vm_kern.h into uvm/uvm_extern.h; art@ ok |  mickey | 2001-09-19 | 1 | -3/+1 |