Home
last modified time | relevance | path

Searched refs:AIO_HASHSZ (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/sys/
H A Daio_impl.h45 #define AIO_HASHSZ 8192L /* power of 2 */ macro
46 #define AIO_HASH(cookie) (((uintptr_t)(cookie) >> 3) & (AIO_HASHSZ-1))
132 aio_req_t *aio_hash[AIO_HASHSZ]; /* hash list of requests */
/illumos-gate/usr/src/uts/common/os/
H A Daio.c1907 for (index = 0; index < AIO_HASHSZ; index++) { in aio_cancel()