Searched refs:aio_req_t (Results 1 - 7 of 7) sorted by relevance
/illumos-gate/usr/src/uts/common/sys/ |
H A D | aio_impl.h | 74 * Clustering: The aio_req_t structure is used by the PXFS module 78 typedef struct aio_req_t { struct 84 struct aio_req_t *aio_req_next; /* doneq and pollq pointers */ 85 struct aio_req_t *aio_req_prev; /* doubly linked list */ 86 struct aio_req_t *aio_hash_next; /* next in a hash bucket */ 98 } aio_req_t; typedef in typeref:struct:aio_req_t 112 aio_req_t *aio_portq; /* port queue head */ 113 aio_req_t *aio_portcleanupq; /* port cleanup queue head */ 114 aio_req_t *aio_portpending; /* list of pending requests */ 115 aio_req_t *aio_fre [all...] |
/illumos-gate/usr/src/lib/libc/inc/ |
H A D | asyncio.h | 70 typedef struct aio_req aio_req_t; typedef in typeref:struct:aio_req 122 aio_req_t *req_link; /* hash/freelist chain link */ 128 aio_req_t *req_next; /* request/done queue link */ 129 aio_req_t *req_prev; /* double linked list */ 237 aio_req_t *work_head1; /* head of work request queue 1 */ 238 aio_req_t *work_tail1; /* tail of work request queue 1 */ 239 aio_req_t *work_next1; /* work queue one's next pointer */ 240 aio_req_t *work_prev1; /* last request done from queue 1 */ 241 aio_req_t *work_req; /* active work request */ 252 aio_req_t *hash_pt [all...] |
/illumos-gate/usr/src/uts/common/os/ |
H A D | aio_subr.c | 51 void aphysio_unlock(aio_req_t *); 59 static void aio_hash_delete(aio_t *, aio_req_t *); 61 static int aio_cleanup_cleanupq(aio_t *, aio_req_t *, int); 62 static int aio_cleanup_notifyq(aio_t *, aio_req_t *, int); 63 static void aio_cleanup_pollq(aio_t *, aio_req_t *, int); 64 static void aio_cleanup_portq(aio_t *, aio_req_t *, int); 81 aio_req_t *reqp = (aio_req_t *)aio->aio_private; 135 /* b_forw points at an aio_req_t structure */ 196 aio_req_t *req [all...] |
H A D | aio.c | 80 static void lio_set_error(aio_req_t *, int portused); 82 static int aio_req_alloc(aio_req_t **, aio_result_t *); 84 static aio_req_t *aio_req_done(void *); 85 static aio_req_t *aio_req_remove(aio_req_t *); 86 static int aio_req_find(aio_result_t *, aio_req_t **); 87 static int aio_hash_insert(struct aio_req_t *, aio_t *); 88 static int aio_req_setup(aio_req_t **, aio_t *, aiocb_t *, 93 extern void aio_zerolen(aio_req_t *); 97 aio_req_t *reqlis [all...] |
/illumos-gate/usr/src/lib/libc/port/aio/ |
H A D | aio.c | 37 static int _aio_hash_insert(aio_result_t *, aio_req_t *); 38 static aio_req_t *_aio_req_get(aio_worker_t *); 39 static void _aio_req_add(aio_req_t *, aio_worker_t **, int); 40 static void _aio_req_del(aio_worker_t *, aio_req_t *, int); 42 static void _aio_enq_doneq(aio_req_t *); 50 static int _aio_fsync_del(aio_worker_t *, aio_req_t *); 51 static void _aiodone(aio_req_t *, ssize_t, int); 86 aio_req_t *_aio_done_tail; /* list of done requests */ 87 aio_req_t *_aio_done_head; 101 aio_req_t *_aio_done [all...] |
H A D | aio_alloc.c | 37 * (aio_worker_t, aio_req_t, aio_lio_t), we use mmap() to allocate 153 aio_req_t *_aio_freelist = NULL; /* free list of request structures */ 154 aio_req_t *_aio_freelast = NULL; 163 aio_req_t * 166 aio_req_t *reqp; 181 _aio_freelist = (aio_req_t *)(uintptr_t)(chp + 1); 182 nelem = (chunksize - sizeof (chunk_t)) / sizeof (aio_req_t); 210 _aio_req_free(aio_req_t *reqp)
|
H A D | posix_aio.c | 635 aio_req_t *reqp; 674 aio_req_t *reqp; 728 _lio_remove(aio_req_t *reqp) 862 aio_req_t *reqp; 942 aio_req_t *reqp; 1553 aio_req_t *reqp; 1720 aio_req_t *reqp;
|
Completed in 62 milliseconds