tcp_congestion_ops
Regular
4.4
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, u32, s32);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
4.8
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
4.10
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*tso_segs_goal)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
4.13
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*tso_segs_goal)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
4.15
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*tso_segs_goal)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
4.18
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
5.0
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
5.3
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
5.4
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
5.8
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
5.11
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
5.13
: ✅struct tcp_congestion_ops {
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
u32 (*undo_cwnd)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
};
5.15
: ✅struct tcp_congestion_ops {
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
u32 (*undo_cwnd)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
};
5.19
: ✅struct tcp_congestion_ops {
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
u32 (*undo_cwnd)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
};
6.2
: ✅struct tcp_congestion_ops {
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
u32 (*undo_cwnd)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
};
6.5
: ✅struct tcp_congestion_ops {
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
u32 (*undo_cwnd)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
};
6.8
: ✅struct tcp_congestion_ops {
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
u32 (*undo_cwnd)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
};
arm64
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
armhf
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
ppc64el
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
riscv64
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
aws
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
azure
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
gcp
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
lowlatency
: ✅struct tcp_congestion_ops {
struct list_head list;
u32 key;
u32 flags;
void (*init)(struct sock *);
void (*release)(struct sock *);
u32 (*ssthresh)(struct sock *);
void (*cong_avoid)(struct sock *, u32, u32);
void (*set_state)(struct sock *, u8);
void (*cwnd_event)(struct sock *, enum tcp_ca_event);
void (*in_ack_event)(struct sock *, u32);
u32 (*undo_cwnd)(struct sock *);
void (*pkts_acked)(struct sock *, const struct ack_sample *);
u32 (*min_tso_segs)(struct sock *);
u32 (*sndbuf_expand)(struct sock *);
void (*cong_control)(struct sock *, const struct rate_sample *);
size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *);
char name[16];
struct module *owner;
};
Regular
4.4
and 4.8
⚠️void (*pkts_acked)(struct sock *, u32, s32)
➡️ void (*pkts_acked)(struct sock *, const struct ack_sample *)
4.8
and 4.10
⚠️u32 (*tso_segs_goal)(struct sock *)
u32 (*sndbuf_expand)(struct sock *)
void (*cong_control)(struct sock *, const struct rate_sample *)
4.10
and 4.13
✅
4.13
and 4.15
✅
4.15
and 4.18
⚠️u32 (*min_tso_segs)(struct sock *)
u32 (*tso_segs_goal)(struct sock *)
4.18
and 5.0
✅
5.0
and 5.3
✅
5.3
and 5.4
✅
5.4
and 5.8
✅
5.8
and 5.11
✅
5.11
and 5.13
✅
5.13
and 5.15
✅
5.15
and 5.19
✅
5.19
and 6.2
✅
6.2
and 6.5
✅
6.5
and 6.8
✅
amd64
and arm64
✅
amd64
and armhf
✅
amd64
and ppc64el
✅
amd64
and riscv64
✅
generic
and aws
✅
generic
and azure
✅
generic
and gcp
✅
generic
and lowlatency
✅