| /Linux-v5.4/include/trace/events/ |
| D | tcp.h | 243 __field(__u32, snd_nxt) 269 __entry->snd_nxt = tp->snd_nxt; 281 __entry->data_len, __entry->snd_nxt, __entry->snd_una,
|
| /Linux-v5.4/net/tipc/ |
| D | link.c | 165 u16 snd_nxt; member 347 rcv_l->acked = snd_l->snd_nxt - 1; in tipc_link_add_bc_peer() 356 u16 ack = snd_l->snd_nxt - 1; in tipc_link_remove_bc_peer() 383 if (more(l->snd_nxt, l->rcv_nxt)) in link_bc_rcv_gap() 384 gap = l->snd_nxt - l->rcv_nxt; in link_bc_rcv_gap() 774 u16 bc_snt = l->bc_sndlink->snd_nxt - 1; in tipc_link_timeout() 917 l->snd_nxt = 1; in tipc_link_reset() 947 u16 seqno = l->snd_nxt; in tipc_link_xmit() 1021 l->snd_nxt = seqno; in tipc_link_xmit() 1030 u16 seqno = l->snd_nxt; in tipc_link_advance_backlog() [all …]
|
| /Linux-v5.4/net/ipv4/ |
| D | tcp_cdg.c | 277 ca->rtt_seq = tp->snd_nxt; in tcp_cdg_cong_avoid() 359 ca->rtt_seq = tp->snd_nxt; in tcp_cdg_cwnd_event() 364 ca->rtt_seq = tp->snd_nxt; in tcp_cdg_cwnd_event() 382 ca->rtt_seq = tp->snd_nxt; in tcp_cdg_init()
|
| D | tcp_vegas.c | 80 vegas->beg_snd_nxt = tp->snd_nxt; in vegas_enable() 181 vegas->beg_snd_nxt = tp->snd_nxt; in tcp_vegas_cong_avoid()
|
| D | tcp_output.c | 70 WRITE_ONCE(tp->snd_nxt, TCP_SKB_CB(skb)->end_seq); in tcp_event_new_data_sent() 94 if (!before(tcp_wnd_end(tp), tp->snd_nxt) || in tcp_acceptable_seq() 96 ((tp->snd_nxt - tcp_wnd_end(tp)) < (1 << tp->rx_opt.rcv_wscale)))) in tcp_acceptable_seq() 97 return tp->snd_nxt; in tcp_acceptable_seq() 369 !before(TCP_SKB_CB(skb)->seq, tp->snd_nxt)) { in tcp_ecn_send() 1115 } else if (after(tcb->seq + 0xFFFF, tp->snd_nxt)) { in __tcp_transmit_skb() 1152 if (after(tcb->end_seq, tp->snd_nxt) || tcb->seq == tcb->end_seq) in __tcp_transmit_skb() 1373 if (!before(tp->snd_nxt, TCP_SKB_CB(buff)->end_seq)) { in tcp_fragment() 1649 tp->max_packets_seq = tp->snd_nxt; in tcp_cwnd_validate() 1685 !after(tp->snd_sml, tp->snd_nxt); in tcp_minshall_check() [all …]
|
| D | tcp_nv.c | 339 ca->nv_rtt_start_seq = tp->snd_nxt; in tcpnv_acked() 355 ca->nv_rtt_start_seq = tp->snd_nxt + in tcpnv_acked()
|
| D | tcp_rate.c | 188 tp->write_seq - tp->snd_nxt < tp->mss_cache && in tcp_rate_check_app_limited()
|
| D | tcp_input.c | 781 tp->rtt_seq = tp->snd_nxt; in tcp_rtt_estimator() 792 tp->rtt_seq = tp->snd_nxt; in tcp_rtt_estimator() 1059 if (after(end_seq, tp->snd_nxt) || !before(start_seq, end_seq)) in tcp_is_sackblock_valid() 1063 if (!before(start_seq, tp->snd_nxt)) in tcp_is_sackblock_valid() 1675 state->reord = tp->snd_nxt; in tcp_sacktag_write_queue() 2016 tp->high_seq = tp->snd_nxt; in tcp_enter_loss() 2193 const u32 loss_high = tcp_is_sack(tp) ? tp->snd_nxt : tp->high_seq; in tcp_mark_head_lost() 2464 tp->high_seq = tp->snd_nxt; in tcp_init_cwnd_reduction() 2541 tp->high_seq = tp->snd_nxt; in tcp_try_keep_open() 2629 tp->high_seq = tp->snd_nxt; in tcp_simple_retransmit() [all …]
|
| D | tcp_yeah.c | 197 yeah->vegas.beg_snd_nxt = tp->snd_nxt; in tcp_yeah_cong_avoid()
|
| D | tcp_dctcp.c | 69 ca->next_seq = tp->snd_nxt; in dctcp_reset()
|
| D | tcp_timer.c | 467 tp->snd_una, tp->snd_nxt); in tcp_retransmit_timer() 475 tp->snd_una, tp->snd_nxt); in tcp_retransmit_timer()
|
| D | tcp_illinois.c | 62 ca->end_seq = tp->snd_nxt; in rtt_reset()
|
| D | tcp_minisocks.c | 272 tcptw->tw_snd_nxt = tp->snd_nxt; in tcp_time_wait() 487 WRITE_ONCE(newtp->snd_nxt, seq); in tcp_create_openreq_child()
|
| D | tcp_cubic.c | 135 ca->end_seq = tp->snd_nxt; in bictcp_hystart_reset()
|
| /Linux-v5.4/arch/sparc/kernel/ |
| D | ldc.c | 137 u32 snd_nxt; member 475 p->seqid = ++lp->snd_nxt; in send_rdx() 499 p->seqid = lp->snd_nxt + 1; in send_data_nack() 507 lp->snd_nxt++; in send_data_nack() 680 lp->snd_nxt = p->seqid; in process_rts() 699 lp->snd_nxt = p->seqid; in process_rtr() 1496 lp->rcv_nxt, lp->snd_nxt); in __ldc_print() 1592 seq = lp->snd_nxt; in write_nonraw() 1634 lp->snd_nxt = seq; in write_nonraw() 1730 p->seqid = lp->snd_nxt + 1; in send_data_ack() [all …]
|
| /Linux-v5.4/tools/testing/selftests/bpf/progs/ |
| D | test_sock_fields_kern.c | 114 dst->snd_nxt = src->snd_nxt; in tpcpy()
|
| /Linux-v5.4/drivers/scsi/cxgbi/cxgb3i/ |
| D | cxgb3i.c | 257 req->rsvd0 = htonl(csk->snd_nxt); in send_abort_req() 263 csk, csk->state, csk->flags, csk->tid, csk->snd_nxt, in send_abort_req() 366 req->sndseq = htonl(csk->snd_nxt); in make_tx_data_wr() 447 csk->snd_nxt += len; in push_tx_frames() 631 csk, csk->state, csk->flags, csk->tid, ntohl(rpl->snd_nxt)); in do_close_con_rpl() 633 cxgbi_sock_rcv_close_conn_rpl(csk, ntohl(rpl->snd_nxt)); in do_close_con_rpl()
|
| /Linux-v5.4/drivers/net/ethernet/sun/ |
| D | sunvnet_common.c | 266 dr->snd_nxt = 1; in sunvnet_handshake_complete_common() 270 dr->snd_nxt = 1; in sunvnet_handshake_complete_common() 487 hdr.seq = dr->snd_nxt; in vnet_send_ack() 492 dr->snd_nxt++; in vnet_send_ack() 968 hdr.seq = dr->snd_nxt; in __vnet_tx_trigger() 973 dr->snd_nxt++; in __vnet_tx_trigger()
|
| /Linux-v5.4/drivers/target/iscsi/cxgbit/ |
| D | cxgbit.h | 219 u32 snd_nxt; member
|
| /Linux-v5.4/drivers/crypto/chelsio/chtls/ |
| D | chtls_cm.c | 199 req->rsvd0 = htonl(tp->snd_nxt); in chtls_send_abort() 220 if (send_tx_flowc_wr(sk, 0, tp->snd_nxt, tp->rcv_nxt) < 0) in chtls_send_reset() 1298 tp->snd_nxt = snd_isn; in make_established() 1749 tp->snd_una = ntohl(rpl->snd_nxt) - 1; /* exclude FIN */ in chtls_close_con_rpl() 1977 if (send_tx_flowc_wr(sk, 0, tp->snd_nxt, tp->rcv_nxt) < 0) in chtls_abort_req_rss() 2119 if (tp->snd_una == tp->snd_nxt && in chtls_rx_ack()
|
| D | chtls_io.c | 160 u32 snd_nxt, u32 rcv_nxt) in send_tx_flowc_wr() argument 189 FLOWC_PARAM(SNDNXT, tp->snd_nxt); in send_tx_flowc_wr() 643 flowclen16 = send_tx_flowc_wr(sk, 1, tp->snd_nxt, in chtls_push_frames() 684 tp->snd_nxt += len; in chtls_push_frames()
|
| /Linux-v5.4/include/linux/ |
| D | tcp.h | 168 u32 snd_nxt; /* Next sequence we send */ member
|
| /Linux-v5.4/include/uapi/linux/ |
| D | bpf.h | 3083 __u32 snd_nxt; /* Next sequence we send */ member 3338 __u32 snd_nxt; member
|
| /Linux-v5.4/tools/include/uapi/linux/ |
| D | bpf.h | 3083 __u32 snd_nxt; /* Next sequence we send */ member 3338 __u32 snd_nxt; member
|
| /Linux-v5.4/drivers/scsi/cxgbi/cxgb4i/ |
| D | cxgb4i.c | 493 req->rsvd0 = htonl(csk->snd_nxt); in send_abort_req() 498 csk, csk->state, csk->flags, csk->tid, csk->snd_nxt, in send_abort_req() 634 flowc->mnemval[4].val = htonl(csk->snd_nxt); in send_tx_flowc_wr() 662 csk->snd_nxt, csk->rcv_nxt, csk->snd_win, in send_tx_flowc_wr() 778 csk->snd_nxt += len; in push_tx_frames() 1047 cxgbi_sock_rcv_close_conn_rpl(csk, ntohl(rpl->snd_nxt)); in do_close_con_rpl()
|