Home
last modified time | relevance | path

Searched refs:next_seq (Results 1 – 16 of 16) sorted by relevance

/linux-6.12.1/tools/testing/selftests/bpf/progs/
Dbpf_dctcp.c51 __u32 next_seq; member
61 ca->next_seq = tp->snd_nxt; in dctcp_reset()
131 if (!before(tp->snd_una, ca->next_seq)) { in BPF_PROG()
/linux-6.12.1/net/ipv4/
Dtcp_dctcp.c54 u32 next_seq; member
83 ca->next_seq = tp->snd_nxt; in dctcp_reset()
133 if (!before(tp->snd_una, ca->next_seq)) { in dctcp_update_alpha()
Dtcp_ao.c493 u32 tcp_ao_compute_sne(u32 next_sne, u32 next_seq, u32 seq) in tcp_ao_compute_sne() argument
497 if (before(seq, next_seq)) { in tcp_ao_compute_sne()
498 if (seq > next_seq) in tcp_ao_compute_sne()
501 if (seq < next_seq) in tcp_ao_compute_sne()
/linux-6.12.1/drivers/net/ethernet/fungible/funeth/
Dfuneth_ktls.h12 u32 next_seq; member
Dfuneth_ktls.c66 tx_ctx->next_seq = start_offload_tcp_sn; in fun_ktls_add()
122 tx_ctx->next_seq = seq; in fun_ktls_resync()
Dfuneth_tx.c122 if (likely(tls_ctx->next_seq == seq)) { in fun_tls_tx()
126 if (seq - tls_ctx->next_seq < U32_MAX / 4) { in fun_tls_tx()
128 tls_ctx->next_seq); in fun_tls_tx()
288 tls_ctx->next_seq += tls_len; in write_pkt_desc()
/linux-6.12.1/kernel/printk/
Dprintk.c3141 static bool console_flush_all(bool do_cond_resched, u64 *next_seq, bool *handover) in console_flush_all() argument
3149 *next_seq = 0; in console_flush_all()
3192 if (printk_seq > *next_seq) in console_flush_all()
3193 *next_seq = printk_seq; in console_flush_all()
3221 u64 next_seq; in __console_flush_and_unlock() local
3239 flushed = console_flush_all(do_cond_resched, &next_seq, &handover); in __console_flush_and_unlock()
3258 } while (prb_read_valid(prb, next_seq, NULL) && console_trylock()); in __console_flush_and_unlock()
3407 u64 next_seq; in console_flush_on_panic() local
3435 console_flush_all(false, &next_seq, &handover); in console_flush_on_panic()
4790 u64 next_seq; in kmsg_dump_get_buffer() local
[all …]
/linux-6.12.1/drivers/net/ethernet/netronome/nfp/crypto/
Dcrypto.h19 u32 next_seq; member
Dtls.c389 ntls->next_seq = start_offload_tcp_sn; in nfp_net_tls_add()
453 ntls->next_seq = seq; in nfp_net_tls_resync()
/linux-6.12.1/include/linux/
Dkmsg_dump.h39 u64 next_seq; member
/linux-6.12.1/fs/
Dnamei.c580 unsigned seq, next_seq, m_seq, r_seq; member
683 nd->seq = nd->next_seq = 0; in leave_rcu()
841 if (read_seqcount_retry(&dentry->d_seq, nd->next_seq)) in try_to_unlazy_next()
1537 nd->next_seq = read_seqcount_begin(&dentry->d_seq); in __follow_mount_rcu()
1561 unsigned int seq = nd->next_seq; in handle_mounts()
1567 nd->next_seq = seq; in handle_mounts()
1667 dentry = __d_lookup_rcu(parent, &nd->last, &nd->next_seq); in lookup_fast()
1793 bool grabbed_link = legitimize_path(nd, link, nd->next_seq); in reserve_stack()
1821 last->seq = nd->next_seq; in pick_link()
1901 if (read_seqcount_retry(&path.dentry->d_seq, nd->next_seq)) in step_into()
[all …]
/linux-6.12.1/drivers/media/usb/go7007/
Dgo7007-driver.c453 go->next_seq++; in frame_boundary()
458 vb->vb.sequence = go->next_seq++; in frame_boundary()
Dgo7007-priv.h231 u32 next_seq; member
Dgo7007-v4l2.c404 go->next_seq = 0; in go7007_start_streaming()
/linux-6.12.1/drivers/net/ethernet/netronome/nfp/
Dnfp_net_common.c610 if (unlikely(resync_pending || ntls->next_seq != seq)) { in nfp_net_tls_tx()
640 if (!resync_pending && seq - ntls->next_seq < U32_MAX / 4) in nfp_net_tls_tx()
642 ntls->next_seq); in nfp_net_tls_tx()
658 ntls->next_seq += datalen; in nfp_net_tls_tx()
678 if (ntls->next_seq == seq + datalen) in nfp_net_tls_tx_undo()
679 ntls->next_seq = seq; in nfp_net_tls_tx_undo()
/linux-6.12.1/include/net/
Dtcp_ao.h204 u32 tcp_ao_compute_sne(u32 next_sne, u32 next_seq, u32 seq);