Searched refs:snd_una (Results 1 - 13 of 13) sorted by relevance

/net/ipv4/
H A Dtcp_westwood.c36 u32 snd_una; /* used for evaluating the number of acked bytes */ member in struct:westwood
72 w->snd_una = tcp_sk(sk)->snd_una;
120 /* Initialize w->snd_una with the first acked sequence number in order
121 * to fix mismatch between tp->snd_una and w->snd_una for the first
125 w->snd_una = tcp_sk(sk)->snd_una;
168 w->bk += tp->snd_una - w->snd_una;
[all...]
H A Dtcp_dctcp.c93 ca->prior_snd_una = tp->snd_una;
190 u32 acked_bytes = tp->snd_una - ca->prior_snd_una;
192 /* If ack did not advance snd_una, count dupack as MSS size.
199 ca->prior_snd_una = tp->snd_una;
206 if (!before(tp->snd_una, ca->next_seq)) {
H A Dtcp_diag.c30 r->idiag_wqueue = tp->write_seq - tp->snd_una;
H A Dtcp_probe.c68 u32 snd_una; member in struct:tcp_log
150 p->snd_una = tp->snd_una;
197 &p->src, &p->dst, p->length, p->snd_nxt, p->snd_una,
H A Dtcp_input.c115 #define FLAG_SACK_RENEGING 0x2000 /* snd_una advanced to a sacked seq */
729 if (after(tp->snd_una, tp->rtt_seq)) {
977 * snd_nxt wrap -> snd_una region will then become "well defined", i.e.,
982 * again, D-SACK block must not to go across snd_una (for the same reason as
1005 * start_seq == snd_una is non-sensical (see comments above)
1007 if (after(start_seq, tp->snd_una))
1013 /* ...Then it's D-SACK, and must reside below snd_una completely */
1014 if (after(end_seq, tp->snd_una))
1060 if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
1210 if (!after(end_seq, tp->snd_una))
[all...]
H A Dtcp_output.c410 return tp->snd_una != tp->snd_up;
966 /* The urg_mode check is necessary during a below snd_una win probe */
1460 if (!before(tp->snd_una, tp->max_packets_seq) ||
1485 return after(tp->snd_sml, tp->snd_una) &&
2488 if (before(TCP_SKB_CB(skb)->seq, tp->snd_una)) {
2489 if (before(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
2491 if (tcp_trim_head(sk, skb, tp->snd_una - TCP_SKB_CB(skb)->seq))
2506 TCP_SKB_CB(skb)->seq != tp->snd_una)
2640 tp->retransmit_high = tp->snd_una;
2649 last_lost = tp->snd_una;
[all...]
H A Dtcp_timer.c380 tp->snd_una, tp->snd_nxt);
387 tp->snd_una, tp->snd_nxt);
H A Dtcp_ipv4.c341 __u32 seq, snd_una; local
378 /* XXX (TFO) - tp->snd_una should be ISN (tcp_create_openreq_child() */
380 snd_una = fastopen ? tcp_rsk(fastopen)->snt_isn : tp->snd_una;
382 !between(seq, snd_una, tp->snd_nxt)) {
424 if (seq != tp->snd_una || !icsk->icsk_retransmits ||
2267 tp->write_seq - tp->snd_una,
H A Dtcp_minisocks.c424 newtp->snd_sml = newtp->snd_una =
H A Dtcp.c585 answ = tp->write_seq - tp->snd_una;
/net/rds/
H A Dtcp.c91 return tcp_sk(tc->t_sock->sk)->snd_una;
/net/ipv6/
H A Dtcp_ipv6.c349 __u32 seq, snd_una; local
380 /* XXX (TFO) - tp->snd_una should be ISN (tcp_create_openreq_child() */
382 snd_una = fastopen ? tcp_rsk(fastopen)->snt_isn : tp->snd_una;
384 !between(seq, snd_una, tp->snd_nxt)) {
1745 tp->write_seq-tp->snd_una,
/net/core/
H A Dsock.c850 sk->sk_tskey = tcp_sk(sk)->snd_una;

Completed in 354 milliseconds