Lines Matching refs:pba
401 __u32 cwnd, ssthresh, flight_size, pba, pmtu;
412 pba = transport->partial_bytes_acked;
447 "cwnd:%d, ssthresh:%d, flight_size:%d, pba:%d\n",
449 flight_size, pba);
473 pba += bytes_acked;
474 if (pba > cwnd && flight_size < cwnd)
475 pba = cwnd;
476 if (pba >= cwnd && flight_size >= cwnd) {
477 pba = pba - cwnd;
483 "flight_size:%d, pba:%d\n", __func__,
485 flight_size, pba);
489 transport->partial_bytes_acked = pba;