Searched refs:RTO (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/sys/netinet/
H A Dsctp_timer.c407 if (net->RTO == 0) {
409 net->RTO = stcb->asoc.minrto;
411 net->RTO = stcb->asoc.initial_rto;
414 net->RTO <<= 1;
415 if (net->RTO > stcb->asoc.maxrto) {
416 net->RTO = stcb->asoc.maxrto;
525 * to account for the RTO. We just let the lower seconds be
842 /* send a immediate HB if our RTO is stale */
853 if ((ms_goneby > net->RTO) || (net->RTO
[all...]
H A Dsctputil.c2070 /* Here we use the RTO timer */
2078 if (net->RTO == 0) {
2081 rto_val = net->RTO;
2095 if (net->RTO == 0) {
2098 to_ticks = MSEC_TO_TICKS(net->RTO);
2113 /* Here we use the RTO of the destination. */
2117 if (net->RTO == 0) {
2120 to_ticks = MSEC_TO_TICKS(net->RTO);
2126 * the net is used here so that we can add in the RTO. Even
2140 if (net->RTO
[all...]
H A Dsctp_indata.c3120 * update RTO too ?
3770 * this guy had a RTO calculation pending on
4098 /* update RTO too? */
4250 net->RTO = (net->lastsa >> SCTP_RTT_SHIFT) + net->lastsv;
4251 if (net->RTO < stcb->asoc.minrto) {
4252 net->RTO = stcb->asoc.minrto;
4254 if (net->RTO > stcb->asoc.maxrto) {
4255 net->RTO = stcb->asoc.maxrto;
4719 /* update RTO too? */
5020 net->RTO
[all...]
H A Dsctp_asconf.c1056 SCTPDBG(SCTP_DEBUG_ASCONF1, "net_immediate_retrans: RTO is %d\n", net->RTO);
1419 net->RTO = 0;
2247 net->RTO = 0;
H A Dsctp_structs.h272 /* smoothed average things for RTT and RTO itself */
276 unsigned int RTO; member in struct:sctp_nets
1082 unsigned int initial_init_rto_max; /* initial RTO for INIT's */
1083 unsigned int initial_rto; /* initial send RTO */
1084 unsigned int minrto; /* per assoc RTO-MIN */
1085 unsigned int maxrto; /* per assoc RTO-MAX */
H A Dsctp_cc_functions.c1134 net->RTO <<= 1;
2323 net->RTO <<= 1;
H A Dsctp_sysctl.c501 xraddr.rto = net->RTO;
H A Dsctp_usrreq.c2582 paddri->spinfo_rto = net->RTO;
2670 sstat->sstat_primary.spinfo_rto = net->RTO;
H A Dsctp_pcb.c3903 net->RTO = 0;
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dppc-opc.c408 #define RTO RSO
4192 { "tlbsx", XRC(31,914,0), X_MASK, PPC403|BOOKE, { RTO, RA, RB } },
4193 { "tlbsx.", XRC(31,914,1), X_MASK, PPC403|BOOKE, { RTO, RA, RB } },
4194 { "tlbsxe", XRC(31,915,0), X_MASK, BOOKE64, { RTO, RA, RB } },
4195 { "tlbsxe.", XRC(31,915,1), X_MASK, BOOKE64, { RTO, RA, RB } },
406 #define RTO macro

Completed in 378 milliseconds