summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_aio.c
Commit message (Expand)AuthorAgeFilesLines
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-15/+15
* Second-to-last commit implementing Capsicum capabilities in the FreeBSDRobert Watson2011-08-111-10/+19
* Create a global thread hash table to speed up thread lookup, useDavid Xu2010-10-091-4/+8
* Convert aio syscall registration to SYSCALL_INIT_HELPER.Konstantin Belousov2010-03-191-33/+59
* Provide groundwork for 32-bit binary compatibility on non-x86 platforms,Nathan Whitehorn2010-03-111-1/+1
* Use C99 initialization for struct filterops.Robert Watson2009-09-121-4/+12
* Adapt vfs kqfilter to the shared vnode lock used by zfs write vop. UseKonstantin Belousov2009-06-101-2/+2
* Rework socket upcalls to close some races with setup/teardown of upcalls.John Baldwin2009-06-011-2/+1
* Use the correct type for the timeout parameter to the 32-bitJohn Baldwin2009-01-231-1/+1
* - Add 32-bit compat system calls for VFS_AIO. The system calls live in theJohn Baldwin2008-12-101-126/+755
* Use minimum of max_aio_procs and target_aio_procs when spawning newOleksandr Tymoshenko2008-06-211-1/+1
* Use FEATURE() macro to advertise aio availability.Robert Watson2008-02-011-0/+2
* When asked to use kqueue, AIO stores its internal state in theJean-Sébastien Pédron2008-01-241-4/+6
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-1/+1
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-1/+1
* Rename the kthread_xxx (e.g. kthread_create()) callsJulian Elischer2007-10-201-2/+2
* Destroy the kaio_mtx on the freeing the struct kaioinfo in theKonstantin Belousov2007-08-201-1/+5
* Remove unused variable.Matt Jacob2007-06-101-1/+0
* - Move rusage from being per-process in struct pstats to per-thread inJeff Roberson2007-06-011-10/+8
* Further system call comment cleanup:Robert Watson2007-03-051-3/+3
* Merge posix4/* into normal kernel hierarchy.Tom Rhodes2006-11-111-1/+1
* MFP4 (with some minor changes):Alexander Leidinger2006-10-151-4/+4
* hide kqueue_register from public view, and replace it w/ kqfd_register...John-Mark Gurney2006-09-241-33/+6
* Remove call to fdfree() for the AIO daemons to prevent kernel panicsMark Peek2006-09-061-6/+0
* - Change process_exec function handlers prototype to include structAlexander Leidinger2006-08-151-1/+8
* Make lio ident more consistant with aio ident.Doug Ambrisko2006-06-021-1/+1
* Use a dedicated mutex to protect aio queues, the movation is to reduceDavid Xu2006-05-091-51/+69
* 1. Move code for scanning pending I/O from aio_fsync to aio_aqueue,David Xu2006-03-241-77/+51
* Implement aio_fsync() syscall.David Xu2006-03-231-78/+244
* 1. Remove aio entry from lists earlier in aio_free_entry,David Xu2006-02-261-19/+17
* If block size is zero, use normal file operations to do I/O,David Xu2006-02-221-0/+3
* Just like dofilewrite(), call bwillwrite before fo_write.David Xu2006-01-271-0/+2
* return final error code in aio_return rather than a hardcoded 0.David Xu2006-01-271-1/+0
* in aio_aqueue, store same return code into job->_aiocb_private.error.David Xu2006-01-261-3/+5
* Add locking annotation and comments about socket, pipe, fifo problem.David Xu2006-01-241-125/+126
* Er, rescure a deleted comment line.David Xu2006-01-241-0/+1
* More cleanup for aio code:David Xu2006-01-241-11/+9
* Add bracket.David Xu2006-01-231-1/+1
* Verify all supported notification types.David Xu2006-01-231-3/+18
* 1) Merge _aio_aqueue and aio_aqueue, check quota in aio_aqueue,David Xu2006-01-231-45/+29
* Fix a bogus panic.David Xu2006-01-221-1/+1
* Decrease kaio_active_count first, because user process may go awayDavid Xu2006-01-221-2/+5
* Make aio code MP safe.David Xu2006-01-221-843/+574
* Initialize ki to p->p_aioinfo after we know it's going to be referencingChristian S.J. Peron2006-01-151-2/+2
* Return error from fget_write() rather than hardcoding EBADF now thatJohn Baldwin2006-01-061-1/+1
* In aio_waitcomplete, do not return EAGAIN if no other threadsDavid Xu2005-11-081-1/+1
* Various and sundry cleanups:John Baldwin2005-11-081-80/+84
* Fix name compatible problem with POSIX standard. the sigval_ptr andDavid Xu2005-11-041-2/+2
* Support sending realtime signal information via signal queue, realtimeDavid Xu2005-11-031-8/+40
* Push down Giant into fdfree() and remove it from two of the callers.John Baldwin2005-11-011-2/+0