| /linux-6.15/tools/testing/selftests/ublk/ |
| H A D | test_generic_02.sh | 29 fio --name=write_seq \
|
| H A D | test_generic_01.sh | 29 fio --name=write_seq \
|
| /linux-6.15/net/mptcp/ |
| H A D | protocol.c | 1024 dfrag->data_seq = msk->write_seq; in mptcp_carve_data_frag() 1243 WRITE_ONCE(tcp_sk(ssk)->write_seq, tcp_sk(ssk)->write_seq + copy); in mptcp_sendmsg_frag() 1613 msk->snd_nxt + 1 == msk->write_seq) in __mptcp_subflow_push_pending() 1707 not_sent = msk->write_seq - msk->snd_nxt; in mptcp_send_limit() 1802 WRITE_ONCE(msk->write_seq, msk->write_seq + psize); in mptcp_sendmsg() 2902 msk->snd_nxt, msk->write_seq); in mptcp_check_send_data_fin() 2911 WRITE_ONCE(msk->snd_nxt, msk->write_seq); in mptcp_check_send_data_fin() 2929 WRITE_ONCE(msk->write_seq, msk->write_seq + 1); in __mptcp_wr_shutdown() 3226 WRITE_ONCE(msk->snd_nxt, msk->write_seq); in mptcp_sk_clone_init() 3227 WRITE_ONCE(msk->snd_una, msk->write_seq); in mptcp_sk_clone_init() [all …]
|
| H A D | protocol.h | 280 u64 write_seq; member 882 READ_ONCE(msk->write_seq) == READ_ONCE(msk->snd_nxt); in mptcp_data_fin_enabled() 899 notsent_bytes = READ_ONCE(msk->write_seq) - READ_ONCE(msk->snd_nxt); in mptcp_stream_memory_free()
|
| H A D | subflow.c | 471 WRITE_ONCE(msk->write_seq, subflow->idsn + 1); in __mptcp_sync_state() 472 WRITE_ONCE(msk->snd_nxt, msk->write_seq); in __mptcp_sync_state()
|
| /linux-6.15/net/tls/ |
| H A D | tls_device.c | 288 record->end_seq = tp->write_seq + record->len; in tls_push_record() 293 tls_device_resync_tx(sk, ctx, tp->write_seq); in tls_push_record() 1124 start_marker_record->end_seq = tcp_sk(sk)->write_seq; in tls_set_device_offload() 1155 tcp_sk(sk)->write_seq); in tls_set_device_offload() 1157 tcp_sk(sk)->write_seq, rec_seq, rc); in tls_set_device_offload()
|
| /linux-6.15/net/ipv4/ |
| H A D | tcp.c | 652 answ = READ_ONCE(tp->write_seq) - tp->snd_una; in tcp_ioctl() 661 answ = READ_ONCE(tp->write_seq) - in tcp_ioctl() 676 tp->pushed_seq = tp->write_seq; in tcp_mark_push() 689 tcb->seq = tcb->end_seq = tp->write_seq; in tcp_skb_entail() 704 tp->snd_up = tp->write_seq; in tcp_mark_urg() 1296 WRITE_ONCE(tp->write_seq, tp->write_seq + copy); in tcp_sendmsg_locked() 3316 } else if (tp->snd_nxt != tp->write_seq && in tcp_disconnect() 3346 seq = tp->write_seq + tp->max_window + 2; in tcp_disconnect() 3349 WRITE_ONCE(tp->write_seq, seq); in tcp_disconnect() 3920 WRITE_ONCE(tp->write_seq, val); in do_tcp_setsockopt() [all …]
|
| H A D | tcp_rate.c | 199 tp->write_seq - tp->snd_nxt < tp->mss_cache && in tcp_rate_check_app_limited()
|
| H A D | tcp_diag.c | 31 r->idiag_wqueue = READ_ONCE(tp->write_seq) - tp->snd_una; in tcp_diag_get_info()
|
| H A D | tcp_output.c | 1511 WRITE_ONCE(tp->write_seq, TCP_SKB_CB(skb)->end_seq); in tcp_queue_skb() 2488 if (tp->write_seq - tp->snd_nxt < size_needed) in tcp_mtu_probe() 3601 tp->write_seq++; in tcp_send_fin() 3623 tcp_init_nondata_skb(skb, tp->write_seq, in tcp_send_fin() 3940 tp->snd_una = tp->write_seq; in tcp_connect_init() 3941 tp->snd_sml = tp->write_seq; in tcp_connect_init() 3942 tp->snd_up = tp->write_seq; in tcp_connect_init() 3943 WRITE_ONCE(tp->snd_nxt, tp->write_seq); in tcp_connect_init() 3966 WRITE_ONCE(tp->write_seq, tcb->end_seq); in tcp_connect_queue_skb() 4162 WRITE_ONCE(tp->snd_nxt, tp->write_seq); in tcp_connect() [all …]
|
| H A D | tcp_ipv4.c | 192 WRITE_ONCE(tp->write_seq, seq); in tcp_twsk_unique() 287 WRITE_ONCE(tp->write_seq, 0); in tcp_v4_connect() 325 if (!tp->write_seq) in tcp_v4_connect() 326 WRITE_ONCE(tp->write_seq, in tcp_v4_connect() 2951 READ_ONCE(tp->write_seq) - tp->snd_una, 3352 u32 notsent_bytes = READ_ONCE(tp->write_seq) -
|
| H A D | tcp_minisocks.c | 567 WRITE_ONCE(newtp->write_seq, newtp->pushed_seq = treq->snt_isn + 1); in tcp_create_openreq_child()
|
| /linux-6.15/tools/testing/selftests/bpf/progs/ |
| H A D | bpf_iter_tcp4.c | 127 tp->write_seq - tp->snd_una, rx_queue, in dump_tcp_sock()
|
| H A D | bpf_iter_tcp6.c | 131 tp->tcp.write_seq - tp->tcp.snd_una, rx_queue, in dump_tcp6_sock()
|
| /linux-6.15/drivers/target/iscsi/cxgbit/ |
| H A D | cxgbit.h | 223 u32 write_seq; member
|
| H A D | cxgbit_target.c | 257 (!before(csk->write_seq, in cxgbit_push_tx_frames() 327 csk->write_seq += skb->len + in cxgbit_queue_skb()
|
| /linux-6.15/Documentation/networking/net_cachelines/ |
| H A D | tcp_sock.rst | 111 u32 write_seq read_write tcp_r…
|
| /linux-6.15/include/linux/ |
| H A D | tcp.h | 268 u32 write_seq; /* Tail(+1) of data held in tcp send buffer */ member
|
| /linux-6.15/drivers/scsi/cxgbi/ |
| H A D | libcxgbi.h | 169 u32 write_seq; member
|
| H A D | libcxgbi.c | 833 csk->write_seq = csk->snd_nxt = csk->snd_una = snd_isn; in cxgbi_sock_established() 1117 cxgbi_skcb_tcp_seq(skb) = csk->write_seq; in cxgbi_sock_skb_entail() 2296 before((csk->snd_win + csk->snd_una), csk->write_seq)) { in cxgbi_sock_tx_queue_up() 2299 csk, csk->state, csk->flags, csk->tid, csk->write_seq, in cxgbi_sock_tx_queue_up() 2337 csk->write_seq += (skb->len + extra_len); in cxgbi_sock_tx_queue_up()
|
| /linux-6.15/net/ipv6/ |
| H A D | tcp_ipv6.c | 210 WRITE_ONCE(tp->write_seq, 0); in tcp_v6_connect() 318 if (!tp->write_seq) in tcp_v6_connect() 319 WRITE_ONCE(tp->write_seq, in tcp_v6_connect() 2229 READ_ONCE(tp->write_seq) - tp->snd_una,
|
| /linux-6.15/drivers/net/ethernet/chelsio/inline_crypto/chtls/ |
| H A D | chtls_io.c | 717 tp->snd_up = tp->write_seq; in mark_urg() 824 ULP_SKB_CB(skb)->seq = tp->write_seq; in skb_entail() 1196 tp->write_seq += copy; in chtls_sendmsg()
|
| /linux-6.15/net/rds/ |
| H A D | tcp.c | 96 return tcp_sk(tc->t_sock->sk)->write_seq; in rds_tcp_write_seq()
|
| /linux-6.15/drivers/block/drbd/ |
| H A D | drbd_debugfs.c | 392 answ = tp->write_seq - tp->snd_una; in in_flight_summary_show()
|
| /linux-6.15/Documentation/networking/ |
| H A D | timestamping.rst | 238 The difference is due to being based on snd_una versus write_seq. 241 write_seq is the last byte written by the process. This offset is
|