Searched refs:aio_max_requests (Results 1 - 3 of 3) sorted by relevance

/xnu-2422.115.4/bsd/conf/
H A Dparam.c110 int aio_max_requests = CONFIG_AIO_MAX; variable
/xnu-2422.115.4/bsd/kern/
H A Dkern_aio.c251 extern int aio_max_requests; /* AIO_MAX - configurable */
1577 if ( old_count >= aio_max_requests ||
1934 if (old_count >= aio_max_requests) {
2590 aio_workq_zonep = zinit( i, i * aio_max_requests, i * aio_max_requests, "aiowq" );
H A Dkern_sysctl.c157 extern int aio_max_requests;
2122 int error = sysctl_io_number(req, aio_max_requests, sizeof(int), &new_value, &changed);
2126 aio_max_requests = new_value;
2145 if (new_value <= aio_max_requests && new_value >= AIO_LISTIO_MAX)

Completed in 30 milliseconds