Searched refs:sacked_out (Results 1 - 15 of 15) sorted by relevance

/linux-master/tools/testing/selftests/bpf/progs/
H A Dtcp_ca_write_sk_pacing.c15 return tp->sacked_out + tp->lost_out;
H A Dtest_sock_fields.c110 dst->sacked_out = src->sacked_out;
H A Dbpf_cc_cubic.c81 __u32 pkts_in_flight = tp->packets_out - (tp->sacked_out + tp->lost_out) + tp->retrans_out;
/linux-master/net/ipv4/
H A Dtcp_recovery.c16 if (tp->sacked_out >= tp->reordering &&
222 if ((state < TCP_CA_Recovery && tp->sacked_out >= tp->reordering) ||
H A Dtcp_input.c1086 tp->sacked_out,
1159 * sacked_out, retrans_out and lost_out, correspondingly.
1441 tp->sacked_out += pcount;
1864 if (!tp->sacked_out)
1939 if (!tp->sacked_out) {
2032 WARN_ON((int)tp->sacked_out < 0);
2040 /* Limits sacked_out so that sum with lost_out isn't ever larger than
2041 * packets_out. Returns false if sacked_out adjustement wasn't necessary.
2050 if ((tp->sacked_out + holes) > tp->packets_out) {
2051 tp->sacked_out
[all...]
H A Dtcp_cdg.c311 if (tp->sacked_out == 0) {
H A Dtcp_timer.c593 tp->sacked_out) {
H A Dtcp.c3098 tp->sacked_out = 0;
3854 info->tcpi_sacked = tp->sacked_out;
4645 CACHELINE_ASSERT_GROUP_MEMBER(struct tcp_sock, tcp_sock_read_txrx, sacked_out);
H A Dtcp_output.c1534 tp->sacked_out -= decr;
1542 tp->sacked_out -= min_t(u32, tp->sacked_out, decr);
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dsock_fields.c89 "segs_out:%u data_segs_out:%u lost_out:%u sacked_out:%u "
97 tp->data_segs_out, tp->lost_out, tp->sacked_out,
/linux-master/include/linux/
H A Dtcp.h222 u32 sacked_out; /* SACK'd packets */ member in struct:tcp_sock
274 * sacked_out > 0)
/linux-master/include/uapi/linux/
H A Dbpf.h6373 __u32 sacked_out; /* SACK'd packets */ member in struct:bpf_tcp_sock
6808 __u32 sacked_out; member in struct:bpf_sock_ops
/linux-master/tools/include/uapi/linux/
H A Dbpf.h6373 __u32 sacked_out; /* SACK'd packets */ member in struct:bpf_tcp_sock
6808 __u32 sacked_out; member in struct:bpf_sock_ops
/linux-master/include/net/
H A Dtcp.h1278 return tp->sacked_out + tp->lost_out;
2107 * bit, valid only if sacked_out > 0 or when the caller has ensured
2112 if (!tp->sacked_out)
/linux-master/net/core/
H A Dfilter.c7193 case offsetof(struct bpf_tcp_sock, sacked_out):
7194 BPF_TCP_SOCK_GET_COMMON(sacked_out);
10646 case offsetof(struct bpf_sock_ops, sacked_out):
10647 SOCK_OPS_GET_TCP_SOCK_FIELD(sacked_out);

Completed in 358 milliseconds