Lines Matching refs:pba
559 __u32 cwnd, ssthresh, flight_size, pba, pmtu;
570 pba = transport->partial_bytes_acked;
605 "cwnd:%d, ssthresh:%d, flight_size:%d, pba:%d\n",
607 flight_size, pba);
631 pba += bytes_acked;
632 if (pba > cwnd && flight_size < cwnd)
633 pba = cwnd;
634 if (pba >= cwnd && flight_size >= cwnd) {
635 pba = pba - cwnd;
641 "flight_size:%d, pba:%d\n", __func__,
643 flight_size, pba);
647 transport->partial_bytes_acked = pba;