aboutsummaryrefslogtreecommitdiff
path: root/net/ipv4/tcp_bbr.c
AgeCommit message (Expand)AuthorFilesLines
2022-07-21bpf: Switch to new kfunc flags infrastructureGravatar Kumar Kartikeya Dwivedi 1-12/+12
2022-05-16net: allow gso_max_size to exceed 65536Gravatar Alexander Duyck 1-1/+1
2022-04-06tcp: add accessors to read/set tp->snd_cwndGravatar Eric Dumazet 1-10/+10
2022-01-18bpf: Remove check_kfunc_call callback and old kfunc BTF ID APIGravatar Kumar Kartikeya Dwivedi 1-8/+10
2021-10-05bpf: Enable TCP congestion control kfunc from modulesGravatar Kumar Kartikeya Dwivedi 1-1/+27
2021-08-11tcp_bbr: fix u32 wrap bug in round logic if bbr_init() called after 2B packetsGravatar Neal Cardwell 1-1/+1
2020-11-17tcp: only postpone PROBE_RTT if RTT is < current min_rtt estimateGravatar Ryan Sharpelletti 1-1/+1
2020-01-21tcp_bbr: improve arithmetic division in bbr_update_bw()Gravatar Wen Yang 1-2/+1
2019-12-17net: annotate lockless accesses to sk->sk_pacing_shiftGravatar Eric Dumazet 1-1/+2
2019-09-27tcp_bbr: fix quantization code to not raise cwnd if not probing bandwidthGravatar Kevin(Yudong) Yang 1-4/+4
2019-08-30tcp_bbr: clarify that bbr_bdp() rounds up in commentsGravatar Luke Hsiao 1-2/+4
2019-01-24tcp_bbr: adapt cwnd based on ack aggregation estimationGravatar Priyaranjan Jha 1-1/+121
2019-01-24tcp_bbr: refactor bbr_target_cwnd() for general inflight provisioningGravatar Priyaranjan Jha 1-21/+39
2018-11-08tcp_bbr: update comments to reflect pacing_margin_percentGravatar Neal Cardwell 1-8/+7
2018-10-17tcp_bbr: centralize code to set gainsGravatar Neal Cardwell 1-10/+30
2018-10-17tcp_bbr: adjust TCP BBR for departure time pacingGravatar Neal Cardwell 1-2/+35
2018-10-15tcp_bbr: fix typo in bbr_pacing_margin_percentGravatar Neal Cardwell 1-2/+2
2018-10-15net: extend sk_pacing_rate to unsigned longGravatar Eric Dumazet 1-3/+3
2018-09-21tcp: switch tcp and sch_fq to new earliest departure time modelGravatar Eric Dumazet 1-3/+4
2018-08-22tcp_bbr: apply PROBE_RTT cwnd cap even if acked==0Gravatar Kevin Yang 1-2/+2
2018-08-22tcp_bbr: in restart from idle, see if we should exit PROBE_RTTGravatar Kevin Yang 1-0/+4
2018-08-22tcp_bbr: add bbr_check_probe_rtt_done() helperGravatar Kevin Yang 1-16/+18
2018-08-02Merge ra.kernel.org:/pub/scm/linux/kernel/git/davem/netGravatar David S. Miller 1-0/+4
2018-07-28tcp_bbr: fix bw probing to raise in-flight data for very small BDPsGravatar Neal Cardwell 1-0/+4
2018-06-22tcp_bbr: fix bbr pacing rate for internal pacingGravatar Eric Dumazet 1-1/+5
2018-05-02tcp_bbr: fix to zero idle_restart only upon S/ACKed dataGravatar Neal Cardwell 1-1/+3
2018-03-16net-tcp_bbr: set tp->snd_ssthresh to BDP upon STARTUP exitGravatar Yousuk Seung 1-1/+4
2018-03-01tcp_bbr: remove bbr->tso_segs_goalGravatar Eric Dumazet 1-8/+4
2018-03-01tcp_bbr: better deal with suboptimal GSO (II)Gravatar Eric Dumazet 1-10/+13
2018-02-01tcp_bbr: fix pacing_gain to always be unity when using lt_bwGravatar Neal Cardwell 1-3/+3
2018-01-19tcp: avoid min RTT bloat by skipping RTT from delayed-ACK in BBRGravatar Yuchung Cheng 1-1/+2
2017-12-08tcp_bbr: reset long-term bandwidth sampling on loss recovery undoGravatar Neal Cardwell 1-0/+1
2017-12-08tcp_bbr: reset full pipe detection on loss recovery undoGravatar Neal Cardwell 1-0/+4
2017-12-08tcp_bbr: record "full bw reached" decision in new full_bw_reached bitGravatar Neal Cardwell 1-2/+5
2017-07-15tcp_bbr: init pacing rate on first RTT sampleGravatar Neal Cardwell 1-1/+9
2017-07-15tcp_bbr: remove sk_pacing_rate=0 transient during initGravatar Neal Cardwell 1-1/+0
2017-07-15tcp_bbr: introduce bbr_init_pacing_rate_from_rtt() helperGravatar Neal Cardwell 1-5/+18
2017-07-15tcp_bbr: introduce bbr_bw_to_pacing_rate() helperGravatar Neal Cardwell 1-3/+11
2017-07-15tcp_bbr: cut pacing rate only if filled pipeGravatar Neal Cardwell 1-2/+1
2017-05-17tcp: switch TCP TS option (RFC 7323) to 1ms clockGravatar Eric Dumazet 1-11/+11
2017-05-17tcp_bbr: use tcp_jiffies32 instead of tcp_time_stampGravatar Eric Dumazet 1-6/+6
2017-05-16tcp: internal implementation for pacingGravatar Eric Dumazet 1-4/+5
2016-10-29tcp_bbr: add a state transition diagram and accompanying commentGravatar Neal Cardwell 1-1/+31
2016-09-21tcp_bbr: add BBR congestion controlGravatar Neal Cardwell 1-0/+896