Lines Matching defs:lost
108 u32 lt_last_lost; /* LT intvl start: tp->lost */
184 /* If lost/delivered ratio > 20%, interval is "lossy" and we may be policed: */
486 * in two steps. First, here we deduct the number of lost packets.
572 * small (e.g. on a LAN). We do not persist if packets are lost, since
639 bbr->lt_last_lost = tp->lost;
689 u32 lost, delivered;
728 /* End sampling interval when a packet is lost, so we estimate the
735 /* Calculate packets lost and delivered in sampling interval. */
736 lost = tp->lost - bbr->lt_last_lost;
738 /* Is loss rate (lost/delivered) >= lt_loss_thresh? If not, wait. */
739 if (!delivered || (lost << BBR_SCALE) < bbr_lt_loss_thresh * delivered)