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

/linux-master/tools/testing/selftests/bpf/progs/
H A Dtcp_ca_write_sk_pacing.c21 return tp->sacked_out + tp->lost_out;
H A Dtest_sock_fields.c107 dst->sacked_out = src->sacked_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.c1083 tp->sacked_out,
1156 * sacked_out, retrans_out and lost_out, correspondingly.
1438 tp->sacked_out += pcount;
1861 if (!tp->sacked_out)
1936 if (!tp->sacked_out) {
2029 WARN_ON((int)tp->sacked_out < 0);
2037 /* Limits sacked_out so that sum with lost_out isn't ever larger than
2038 * packets_out. Returns false if sacked_out adjustement wasn't necessary.
2047 if ((tp->sacked_out + holes) > tp->packets_out) {
2048 tp->sacked_out
[all...]
H A Dtcp_cdg.c311 if (tp->sacked_out == 0) {
H A Dtcp_timer.c591 tp->sacked_out) {
H A Dtcp_output.c1526 tp->sacked_out -= decr;
1534 tp->sacked_out -= min_t(u32, tp->sacked_out, decr);
H A Dtcp.c3077 tp->sacked_out = 0;
3833 info->tcpi_sacked = tp->sacked_out;
4620 CACHELINE_ASSERT_GROUP_MEMBER(struct tcp_sock, tcp_sock_read_txrx, sacked_out);
/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
275 * sacked_out > 0)
/linux-master/include/uapi/linux/
H A Dbpf.h6365 __u32 sacked_out; /* SACK'd packets */ member in struct:bpf_tcp_sock
6796 __u32 sacked_out; member in struct:bpf_sock_ops
/linux-master/tools/include/uapi/linux/
H A Dbpf.h6365 __u32 sacked_out; /* SACK'd packets */ member in struct:bpf_tcp_sock
6796 __u32 sacked_out; member in struct:bpf_sock_ops
/linux-master/include/net/
H A Dtcp.h1281 return tp->sacked_out + tp->lost_out;
2111 * bit, valid only if sacked_out > 0 or when the caller has ensured
2116 if (!tp->sacked_out)
/linux-master/net/core/
H A Dfilter.c7161 case offsetof(struct bpf_tcp_sock, sacked_out):
7162 BPF_TCP_SOCK_GET_COMMON(sacked_out);
10616 case offsetof(struct bpf_sock_ops, sacked_out):
10617 SOCK_OPS_GET_TCP_SOCK_FIELD(sacked_out);

Completed in 437 milliseconds