Searched refs:timeout_period (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/sys/dev/nvme/
H A Dnvme_ctrlr.c1360 int status, timeout_period; local
1418 timeout_period = NVME_DEFAULT_TIMEOUT_PERIOD;
1419 TUNABLE_INT_FETCH("hw.nvme.timeout_period", &timeout_period);
1420 timeout_period = min(timeout_period, NVME_MAX_TIMEOUT_PERIOD);
1421 timeout_period = max(timeout_period, NVME_MIN_TIMEOUT_PERIOD);
1422 ctrlr->timeout_period = timeout_period;
[all...]
H A Dnvme_sysctl.c138 uint32_t newval = ctrlr->timeout_period;
148 ctrlr->timeout_period = newval;
315 "timeout_period", CTLTYPE_UINT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
H A Dnvme_private.h280 uint32_t timeout_period; member in struct:nvme_controller
H A Dnvme_qpair.c972 timeout = ctrlr->timeout_period * hz;

Completed in 172 milliseconds