Lines Matching defs:lost
110 u32 lt_last_lost; /* LT intvl start: tp->lost */
186 /* If lost/delivered ratio > 20%, interval is "lossy" and we may be policed: */
488 * in two steps. First, here we deduct the number of lost packets.
574 * small (e.g. on a LAN). We do not persist if packets are lost, since
641 bbr->lt_last_lost = tp->lost;
691 u32 lost, delivered;
730 /* End sampling interval when a packet is lost, so we estimate the
737 /* Calculate packets lost and delivered in sampling interval. */
738 lost = tp->lost - bbr->lt_last_lost;
740 /* Is loss rate (lost/delivered) >= lt_loss_thresh? If not, wait. */
741 if (!delivered || (lost << BBR_SCALE) < bbr_lt_loss_thresh * delivered)