Searched refs:cur_depth (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/dev/nvd/ |
H A D | nvd.c | 86 uint32_t cur_depth; member 195 atomic_add_int(&ndisk->cur_depth, NVD_ODEPTH); in nvd_bio_submit() 197 atomic_add_int(&ndisk->cur_depth, 1); in nvd_bio_submit() 201 atomic_add_int(&ndisk->cur_depth, -NVD_ODEPTH); in nvd_bio_submit() 203 wakeup(&ndisk->cur_depth); in nvd_bio_submit() 205 if (atomic_fetchadd_int(&ndisk->cur_depth, -1) == 1 && in nvd_bio_submit() 207 wakeup(&ndisk->cur_depth); in nvd_bio_submit() 227 ndisk->cur_depth == 0 && bioq_first(&ndisk->bioq) == NULL) { in nvd_strategy() 352 atomic_add_int(&ndisk->cur_depth, -NVD_ODEPTH); in nvd_done() 354 wakeup(&ndisk->cur_depth); in nvd_done() [all …]
|
/freebsd/sys/dev/bce/ |
H A D | if_bce.c | 10086 u32 cmd, ctl, cur_depth, max_depth, valid_cnt, val; in bce_dump_ftqs() local 10126 cur_depth = (ctl & BCE_RLUP_FTQ_CTL_CUR_DEPTH) >> 22; in bce_dump_ftqs() 10130 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10135 cur_depth = (ctl & BCE_RXP_FTQ_CTL_CUR_DEPTH) >> 22; in bce_dump_ftqs() 10139 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10144 cur_depth = (ctl & BCE_RXP_CFTQ_CTL_CUR_DEPTH) >> 22; in bce_dump_ftqs() 10148 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10153 cur_depth = (ctl & BCE_RV2P_PFTQ_CTL_CUR_DEPTH) >> 22; in bce_dump_ftqs() 10157 cmd, ctl, cur_depth, max_depth, valid_cnt); in bce_dump_ftqs() 10162 cur_depth = (ctl & BCE_RV2P_MFTQ_CTL_CUR_DEPTH) >> 22; in bce_dump_ftqs() [all …]
|