Lines Matching full:tmr

1725 	struct sctp_timer *tmr;  in sctp_timeout_handler()  local
1736 tmr = (struct sctp_timer *)t; in sctp_timeout_handler()
1737 inp = (struct sctp_inpcb *)tmr->ep; in sctp_timeout_handler()
1738 stcb = (struct sctp_tcb *)tmr->tcb; in sctp_timeout_handler()
1739 net = (struct sctp_nets *)tmr->net; in sctp_timeout_handler()
1740 CURVNET_SET((struct vnet *)tmr->vnet); in sctp_timeout_handler()
1745 sctp_audit_log(0xF0, (uint8_t)tmr->type); in sctp_timeout_handler()
1750 KASSERT(tmr->self == NULL || tmr->self == tmr, in sctp_timeout_handler()
1751 ("sctp_timeout_handler: tmr->self corrupted")); in sctp_timeout_handler()
1752 KASSERT(SCTP_IS_TIMER_TYPE_VALID(tmr->type), in sctp_timeout_handler()
1753 ("sctp_timeout_handler: invalid timer type %d", tmr->type)); in sctp_timeout_handler()
1754 type = tmr->type; in sctp_timeout_handler()
1758 tmr->stopped_from = 0xa001; in sctp_timeout_handler()
1765 tmr->stopped_from = 0xa002; in sctp_timeout_handler()
1767 if (!SCTP_OS_TIMER_ACTIVE(&tmr->timer)) { in sctp_timeout_handler()
1774 tmr->stopped_from = 0xa003; in sctp_timeout_handler()
1799 tmr->stopped_from = type; in sctp_timeout_handler()
1801 if (SCTP_OS_TIMER_PENDING(&tmr->timer)) { in sctp_timeout_handler()
1807 if (!SCTP_OS_TIMER_ACTIVE(&tmr->timer)) { in sctp_timeout_handler()
1813 SCTP_OS_TIMER_DEACTIVATE(&tmr->timer); in sctp_timeout_handler()
2159 struct sctp_timer *tmr; in sctp_timer_start() local
2166 tmr = NULL; in sctp_timer_start()
2205 tmr = &net->rxt_timer; in sctp_timer_start()
2225 tmr = &net->rxt_timer; in sctp_timer_start()
2245 tmr = &stcb->asoc.dack_timer; in sctp_timer_start()
2258 tmr = &net->rxt_timer; in sctp_timer_start()
2286 tmr = &net->hb_timer; in sctp_timer_start()
2331 tmr = &net->rxt_timer; in sctp_timer_start()
2351 tmr = &inp->sctp_ep.signature_change; in sctp_timer_start()
2373 tmr = &net->pmtu_timer; in sctp_timer_start()
2386 tmr = &net->rxt_timer; in sctp_timer_start()
2406 tmr = &stcb->asoc.asconf_timer; in sctp_timer_start()
2426 tmr = &stcb->asoc.shut_guard_timer; in sctp_timer_start()
2446 tmr = &stcb->asoc.autoclose_timer; in sctp_timer_start()
2462 tmr = &stcb->asoc.strreset_timer; in sctp_timer_start()
2483 tmr = &inp->sctp_ep.signature_change; in sctp_timer_start()
2495 tmr = &stcb->asoc.strreset_timer; in sctp_timer_start()
2508 tmr = &SCTP_BASE_INFO(addr_wq_timer); in sctp_timer_start()
2520 tmr = &stcb->asoc.delete_prim_timer; in sctp_timer_start()
2530 KASSERT(tmr != NULL, ("tmr is NULL for timer type %d", t_type)); in sctp_timer_start()
2532 if (SCTP_OS_TIMER_PENDING(&tmr->timer)) { in sctp_timer_start()
2546 tmr->stopped_from = 0; in sctp_timer_start()
2547 tmr->type = t_type; in sctp_timer_start()
2548 tmr->ep = (void *)inp; in sctp_timer_start()
2549 tmr->tcb = (void *)stcb; in sctp_timer_start()
2551 tmr->net = NULL; in sctp_timer_start()
2553 tmr->net = (void *)net; in sctp_timer_start()
2555 tmr->self = (void *)tmr; in sctp_timer_start()
2556 tmr->vnet = (void *)curvnet; in sctp_timer_start()
2557 tmr->ticks = sctp_get_tick_count(); in sctp_timer_start()
2558 if (SCTP_OS_TIMER_START(&tmr->timer, to_ticks, sctp_timeout_handler, tmr) == 0) { in sctp_timer_start()
2566 if (tmr->ep != NULL) { in sctp_timer_start()
2569 if (tmr->tcb != NULL) { in sctp_timer_start()
2572 if (tmr->net != NULL) { in sctp_timer_start()
2618 struct sctp_timer *tmr; in sctp_timer_stop() local
2630 tmr = NULL; in sctp_timer_stop()
2641 tmr = &net->rxt_timer; in sctp_timer_stop()
2652 tmr = &net->rxt_timer; in sctp_timer_stop()
2663 tmr = &stcb->asoc.dack_timer; in sctp_timer_stop()
2674 tmr = &net->rxt_timer; in sctp_timer_stop()
2685 tmr = &net->hb_timer; in sctp_timer_stop()
2696 tmr = &net->rxt_timer; in sctp_timer_stop()
2707 tmr = &inp->sctp_ep.signature_change; in sctp_timer_stop()
2718 tmr = &net->pmtu_timer; in sctp_timer_stop()
2729 tmr = &net->rxt_timer; in sctp_timer_stop()
2740 tmr = &stcb->asoc.asconf_timer; in sctp_timer_stop()
2751 tmr = &stcb->asoc.shut_guard_timer; in sctp_timer_stop()
2762 tmr = &stcb->asoc.autoclose_timer; in sctp_timer_stop()
2773 tmr = &stcb->asoc.strreset_timer; in sctp_timer_stop()
2789 tmr = &inp->sctp_ep.signature_change; in sctp_timer_stop()
2800 tmr = &stcb->asoc.strreset_timer; in sctp_timer_stop()
2811 tmr = &SCTP_BASE_INFO(addr_wq_timer); in sctp_timer_stop()
2822 tmr = &stcb->asoc.delete_prim_timer; in sctp_timer_stop()
2831 KASSERT(tmr != NULL, ("tmr is NULL for timer type %d", t_type)); in sctp_timer_stop()
2832 if ((tmr->type != SCTP_TIMER_TYPE_NONE) && in sctp_timer_stop()
2833 (tmr->type != t_type)) { in sctp_timer_stop()
2851 tmr->self = NULL; in sctp_timer_stop()
2852 tmr->stopped_from = from; in sctp_timer_stop()
2853 if (SCTP_OS_TIMER_STOP(&tmr->timer) == 1) { in sctp_timer_stop()
2854 KASSERT(tmr->ep == inp, in sctp_timer_stop()
2855 ("sctp_timer_stop of type %d: inp = %p, tmr->inp = %p", in sctp_timer_stop()
2856 t_type, inp, tmr->ep)); in sctp_timer_stop()
2857 KASSERT(tmr->tcb == stcb, in sctp_timer_stop()
2858 ("sctp_timer_stop of type %d: stcb = %p, tmr->stcb = %p", in sctp_timer_stop()
2859 t_type, stcb, tmr->tcb)); in sctp_timer_stop()
2860 KASSERT(((t_type == SCTP_TIMER_TYPE_ASCONF) && (tmr->net != NULL)) || in sctp_timer_stop()
2861 ((t_type != SCTP_TIMER_TYPE_ASCONF) && (tmr->net == net)), in sctp_timer_stop()
2862 ("sctp_timer_stop of type %d: net = %p, tmr->net = %p", in sctp_timer_stop()
2863 t_type, net, tmr->net)); in sctp_timer_stop()
2871 if (tmr->ep != NULL) { in sctp_timer_stop()
2872 tmr->ep = NULL; in sctp_timer_stop()
2875 if (tmr->tcb != NULL) { in sctp_timer_stop()
2876 tmr->tcb = NULL; in sctp_timer_stop()
2879 if (tmr->net != NULL) { in sctp_timer_stop()
2886 tmr_net = tmr->net; in sctp_timer_stop()
2887 tmr->net = NULL; in sctp_timer_stop()