| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove the support for using non-mpsafe filesystem modules. | kib | 2012-10-22 | 1 | -3/+0 |
* | Add 32-bit compat code for AIO kevent flags introduced in revision 230857. | davidxu | 2012-02-05 | 1 | -0/+1 |
* | If multiple threads call kevent() to get AIO events on same kqueue fd, | davidxu | 2012-02-01 | 1 | -1/+7 |
* | When detaching an AIO or LIO requests grab the lock and tell knlist_remove | ambrisko | 2012-01-30 | 1 | -6/+12 |
* | Fix size check, that prevents getting negative after casting | glebius | 2012-01-27 | 1 | -1/+1 |
* | Although aio_nbytes is size_t, later is is signed to | glebius | 2012-01-26 | 1 | -0/+6 |
* | In order to maximize the re-usability of kernel code in user space this | kmacy | 2011-09-16 | 1 | -15/+15 |
* | Second-to-last commit implementing Capsicum capabilities in the FreeBSD | rwatson | 2011-08-11 | 1 | -10/+19 |
* | Create a global thread hash table to speed up thread lookup, use | davidxu | 2010-10-09 | 1 | -4/+8 |
* | Convert aio syscall registration to SYSCALL_INIT_HELPER. | kib | 2010-03-19 | 1 | -33/+59 |
* | Provide groundwork for 32-bit binary compatibility on non-x86 platforms, | nwhitehorn | 2010-03-11 | 1 | -1/+1 |
* | Use C99 initialization for struct filterops. | rwatson | 2009-09-12 | 1 | -4/+12 |
* | Adapt vfs kqfilter to the shared vnode lock used by zfs write vop. Use | kib | 2009-06-10 | 1 | -2/+2 |
* | Rework socket upcalls to close some races with setup/teardown of upcalls. | jhb | 2009-06-01 | 1 | -2/+1 |
* | Use the correct type for the timeout parameter to the 32-bit | jhb | 2009-01-23 | 1 | -1/+1 |
* | - Add 32-bit compat system calls for VFS_AIO. The system calls live in the | jhb | 2008-12-10 | 1 | -126/+755 |
* | Use minimum of max_aio_procs and target_aio_procs when spawning new | gonzo | 2008-06-21 | 1 | -1/+1 |
* | Use FEATURE() macro to advertise aio availability. | rwatson | 2008-02-01 | 1 | -0/+2 |
* | When asked to use kqueue, AIO stores its internal state in the | dumbbell | 2008-01-24 | 1 | -4/+6 |
* | VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used in | attilio | 2008-01-13 | 1 | -1/+1 |
* | vn_lock() is currently only used with the 'curthread' passed as argument. | attilio | 2008-01-10 | 1 | -1/+1 |
* | Rename the kthread_xxx (e.g. kthread_create()) calls | julian | 2007-10-20 | 1 | -2/+2 |
* | Destroy the kaio_mtx on the freeing the struct kaioinfo in the | kib | 2007-08-20 | 1 | -1/+5 |
* | Remove unused variable. | mjacob | 2007-06-10 | 1 | -1/+0 |
* | - Move rusage from being per-process in struct pstats to per-thread in | jeff | 2007-06-01 | 1 | -10/+8 |
* | Further system call comment cleanup: | rwatson | 2007-03-05 | 1 | -3/+3 |
* | Merge posix4/* into normal kernel hierarchy. | trhodes | 2006-11-11 | 1 | -1/+1 |
* | MFP4 (with some minor changes): | netchild | 2006-10-15 | 1 | -4/+4 |
* | hide kqueue_register from public view, and replace it w/ kqfd_register... | jmg | 2006-09-24 | 1 | -33/+6 |
* | Remove call to fdfree() for the AIO daemons to prevent kernel panics | mp | 2006-09-06 | 1 | -6/+0 |
* | - Change process_exec function handlers prototype to include struct | netchild | 2006-08-15 | 1 | -1/+8 |
* | Make lio ident more consistant with aio ident. | ambrisko | 2006-06-02 | 1 | -1/+1 |
* | Use a dedicated mutex to protect aio queues, the movation is to reduce | davidxu | 2006-05-09 | 1 | -51/+69 |
* | 1. Move code for scanning pending I/O from aio_fsync to aio_aqueue, | davidxu | 2006-03-24 | 1 | -77/+51 |
* | Implement aio_fsync() syscall. | davidxu | 2006-03-23 | 1 | -78/+244 |
* | 1. Remove aio entry from lists earlier in aio_free_entry, | davidxu | 2006-02-26 | 1 | -19/+17 |
* | If block size is zero, use normal file operations to do I/O, | davidxu | 2006-02-22 | 1 | -0/+3 |
* | Just like dofilewrite(), call bwillwrite before fo_write. | davidxu | 2006-01-27 | 1 | -0/+2 |
* | return final error code in aio_return rather than a hardcoded 0. | davidxu | 2006-01-27 | 1 | -1/+0 |
* | in aio_aqueue, store same return code into job->_aiocb_private.error. | davidxu | 2006-01-26 | 1 | -3/+5 |
* | Add locking annotation and comments about socket, pipe, fifo problem. | davidxu | 2006-01-24 | 1 | -125/+126 |
* | Er, rescure a deleted comment line. | davidxu | 2006-01-24 | 1 | -0/+1 |
* | More cleanup for aio code: | davidxu | 2006-01-24 | 1 | -11/+9 |
* | Add bracket. | davidxu | 2006-01-23 | 1 | -1/+1 |
* | Verify all supported notification types. | davidxu | 2006-01-23 | 1 | -3/+18 |
* | 1) Merge _aio_aqueue and aio_aqueue, check quota in aio_aqueue, | davidxu | 2006-01-23 | 1 | -45/+29 |
* | Fix a bogus panic. | davidxu | 2006-01-22 | 1 | -1/+1 |
* | Decrease kaio_active_count first, because user process may go away | davidxu | 2006-01-22 | 1 | -2/+5 |
* | Make aio code MP safe. | davidxu | 2006-01-22 | 1 | -843/+574 |
* | Initialize ki to p->p_aioinfo after we know it's going to be referencing | csjp | 2006-01-15 | 1 | -2/+2 |