Lines Matching defs:dol
15096 struct deferred_opt_list *dol;
15098 dol = TAILQ_FIRST(&rack->r_ctl.opt_list);
15099 TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next);
15100 free(dol, M_TCPDO);
22845 struct deferred_opt_list *dol;
22847 dol = malloc(sizeof(struct deferred_opt_list),
22849 if (dol == NULL) {
22855 dol->optname = sopt_name;
22856 dol->optval = loptval;
22857 TAILQ_INSERT_TAIL(&rack->r_ctl.opt_list, dol, next);
24121 struct deferred_opt_list *dol, *sdol;
24124 TAILQ_FOREACH_SAFE(dol, &rack->r_ctl.opt_list, next, sdol) {
24125 TAILQ_REMOVE(&rack->r_ctl.opt_list, dol, next);
24127 s_optval = (uint32_t)dol->optval;
24128 (void)rack_process_option(rack->rc_tp, rack, dol->optname, s_optval, dol->optval, NULL);
24129 free(dol, M_TCPDO);