• Home
  • Raw
  • Download

Lines Matching refs:probe_size

269 		if (t->pl.probe_size == SCTP_BASE_PLPMTU) { /* BASE_PLPMTU Confirmation Failed */  in sctp_transport_pl_send()
277 if (t->pl.pmtu == t->pl.probe_size) { /* Black Hole Detected */ in sctp_transport_pl_send()
279 t->pl.probe_size = SCTP_BASE_PLPMTU; in sctp_transport_pl_send()
286 t->pl.probe_high = t->pl.probe_size; in sctp_transport_pl_send()
287 t->pl.probe_size = t->pl.pmtu; in sctp_transport_pl_send()
290 if (t->pl.pmtu == t->pl.probe_size) { /* Black Hole Detected */ in sctp_transport_pl_send()
292 t->pl.probe_size = SCTP_BASE_PLPMTU; in sctp_transport_pl_send()
308 __func__, t, t->pl.state, t->pl.pmtu, t->pl.probe_size, t->pl.probe_high); in sctp_transport_pl_send()
317 __func__, t, t->pl.state, t->pl.pmtu, t->pl.probe_size, t->pl.probe_high); in sctp_transport_pl_recv()
320 t->pl.pmtu = t->pl.probe_size; in sctp_transport_pl_recv()
324 t->pl.probe_size += SCTP_PL_BIG_STEP; in sctp_transport_pl_recv()
328 t->pl.pmtu = t->pl.probe_size; in sctp_transport_pl_recv()
331 t->pl.probe_size += SCTP_PL_BIG_STEP; in sctp_transport_pl_recv()
334 if (t->pl.probe_size < SCTP_MAX_PLPMTU) { in sctp_transport_pl_recv()
335 t->pl.probe_size = min(t->pl.probe_size + SCTP_PL_BIG_STEP, in sctp_transport_pl_recv()
341 t->pl.probe_size += SCTP_PL_MIN_STEP; in sctp_transport_pl_recv()
342 if (t->pl.probe_size >= t->pl.probe_high) { in sctp_transport_pl_recv()
347 t->pl.probe_size = t->pl.pmtu; in sctp_transport_pl_recv()
354 t->pl.probe_size = min(t->pl.probe_size + SCTP_PL_MIN_STEP, SCTP_MAX_PLPMTU); in sctp_transport_pl_recv()
363 __func__, t, t->pl.state, t->pl.pmtu, t->pl.probe_size, pmtu); in sctp_transport_pl_toobig()
365 if (pmtu < SCTP_MIN_PLPMTU || pmtu >= t->pl.probe_size) in sctp_transport_pl_toobig()
379 t->pl.probe_size = SCTP_BASE_PLPMTU; in sctp_transport_pl_toobig()
386 } else if (pmtu > t->pl.pmtu && pmtu < t->pl.probe_size) { in sctp_transport_pl_toobig()
387 t->pl.probe_size = pmtu; in sctp_transport_pl_toobig()
393 t->pl.probe_size = SCTP_BASE_PLPMTU; in sctp_transport_pl_toobig()