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

/freebsd-11-stable/sys/netinet/tcp_stacks/
H A Dfastpath.c267 if (SEQ_GT(tp->snd_una, tp->snd_recover) &&
279 tp->snd_una = th->th_ack;
304 if (tp->snd_una == tp->snd_max)
479 (SEQ_LEQ(th->th_ack, tp->snd_una) ||
492 * if seg contains ack then advance tp->snd_una
524 tp->snd_una++; /* SYN is acked */
942 * tp->snd_una < th->th_ack <= tp->snd_max
943 * then advance tp->snd_una to th->th_ack and drop
971 if (SEQ_LEQ(th->th_ack, tp->snd_una)) {
1015 th->th_ack != tp->snd_una)
[all...]
/freebsd-11-stable/sys/netinet/
H A Dtcp_output.c226 SEQ_GT(tp->snd_max, tp->snd_una) && /* initial SYN|ACK sent */
227 (tp->snd_nxt != tp->snd_una)) /* not a retransmit */
236 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
258 off = tp->snd_nxt - tp->snd_una;
305 off = p->rxmit - tp->snd_una;
369 * be set to snd_una, the offset will be 0, and the length may
413 if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) {
471 tp->snd_nxt = tp->snd_una;
522 (tp->snd_nxt - tp->snd_una))) {
584 if (SEQ_LT(p->rxmit + len, tp->snd_una
[all...]
H A Dtcp_seq.h70 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
H A Dtcp_debug.c219 (u_long)tp->snd_una, (u_long)tp->snd_nxt, (u_long)tp->snd_max);
H A Dtcp_sack.c538 * 0 otherwise. Note: We treat (snd_una, th_ack) as a sack block so any changes
557 if (SEQ_LT(tp->snd_una, th_ack) && !TAILQ_EMPTY(&tp->snd_holes)) {
558 sack_blocks[num_sack_blks].start = tp->snd_una;
573 SEQ_GT(sack.start, tp->snd_una) &&
576 SEQ_GT(sack.end, tp->snd_una) &&
613 tp->snd_fack = SEQ_MAX(tp->snd_una, th_ack);
805 if (SEQ_LT(p->rxmit, tp->snd_una)) {/* old SACK hole */
H A Dtcp_input.c1799 if (SEQ_GT(th->th_ack, tp->snd_una) &&
1855 if (SEQ_GT(tp->snd_una, tp->snd_recover) &&
1867 tp->snd_una = th->th_ack;
1892 if (tp->snd_una == tp->snd_max)
1902 } else if (th->th_ack == tp->snd_una &&
1988 (SEQ_LEQ(th->th_ack, tp->snd_una) ||
2023 * if seg contains ack then advance tp->snd_una
2056 tp->snd_una++; /* SYN is acked */
2488 tp->snd_una++;
2515 * tp->snd_una < t
[all...]
H A Dtcp_var.h173 tcp_seq snd_una; /* sent but unacknowledged */ member in struct:tcpcb
345 #define BYTES_THIS_ACK(tp, th) (th->th_ack - tp->snd_una)
H A Dtcp_timer.c443 * Using sequence number tp->snd_una-1
454 tp->rcv_nxt, tp->snd_una - 1, 0);
802 tp->snd_nxt = tp->snd_una;
H A Dtcp_subr.c1988 if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) &&
2136 if (SEQ_GEQ(ntohl(icmp_tcp_seq), tp->snd_una) &&
2388 tp->snd_nxt = tp->snd_una;
H A Dtcp_usrreq.c1035 tp->snd_up = tp->snd_una + sbavail(&so->so_snd);
2309 db_printf("snd_una: 0x%08x snd_max: 0x%08x snd_nxt: x0%08x\n",
2310 tp->snd_una, tp->snd_max, tp->snd_nxt);
H A Dsiftr.c796 pn->sent_inflight_bytes = tp->snd_max - tp->snd_una;
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Dtcp_common.h145 __le32 snd_una; member in struct:tcp_offload_params
292 __le32 snd_una; member in struct:tcp_upload_params
H A Decore_iscsi_api.h126 u32 snd_una; member in struct:ecore_iscsi_conn
/freebsd-11-stable/sys/dev/cxgb/ulp/tom/
H A Dcxgb_cpl_io.c1298 tp->snd_una = ntohl(rpl->snd_nxt) - 1; /* exclude FIN */
1605 tp->snd_una = iss + 1;
1698 * Process an acknowledgment of WR completion. Advance snd_una and send the
1709 u32 snd_una = ntohl(hdr->snd_una); local
1751 if (__predict_false(SEQ_LT(snd_una, tp->snd_una)))
1754 if (tp->snd_una != snd_una) {
1755 tp->snd_una
[all...]
/freebsd-11-stable/sys/dev/cxgbe/tom/
H A Dt4_cpl_io.c420 tp->snd_una = iss + 1;
1349 tp->snd_una = be32toh(cpl->snd_nxt) - 1; /* exclude FIN */
1737 tcp_seq snd_una = be32toh(cpl->snd_una); local
1740 if (__predict_false(SEQ_LT(snd_una, tp->snd_una))) {
1742 "%s: unexpected seq# %x for TID %u, snd_una %x\n",
1743 __func__, snd_una, toep->tid, tp->snd_una);
1747 if (tp->snd_una !
[all...]
/freebsd-11-stable/sys/netinet/khelp/
H A Dh_ertt.c218 acked = th->th_ack - tp->snd_una;
/freebsd-11-stable/usr.sbin/trpt/
H A Dtrpt.c419 printf("\trcv_nxt %lx rcv_wnd %lx snd_una %lx snd_nxt %lx snd_max %lx\n",
421 (u_long)tp->snd_una, (u_long)tp->snd_nxt,
/freebsd-11-stable/cddl/lib/libdtrace/
H A Dtcp.d204 tcps_suna = p == NULL ? 0 : p->snd_una;
/freebsd-11-stable/sys/fs/nfsserver/
H A Dnfs_nfsdcache.c836 nfsrc_trimcache(u_int64_t sockref, uint32_t snd_una, int final) argument
850 if (SEQ_GEQ(snd_una, rp->rc_tcpseq)) {
/freebsd-11-stable/sys/dev/cxgb/common/
H A Dcxgb_t3_cpl.h930 __be32 snd_una; member in struct:cpl_wr_ack
/freebsd-11-stable/sys/dev/cxgbe/common/
H A Dt4_msg.h1230 __be32 snd_una; member in struct:cpl_tx_data_ack
1239 __be32 snd_una; member in struct:cpl_wr_ack
2742 __be32 snd_una; member in struct:cpl_fw4_ack
/freebsd-11-stable/sys/dev/bxe/
H A Decore_hsi.h4629 uint32_t snd_una /* Last ACK sequence number sent by the Tx */; member in struct:tstorm_iscsi_tcp_ag_context_section
4807 uint32_t snd_una /* Last ACK sequence number sent by the Tx */; member in struct:tstorm_tcp_tcp_ag_context_section
4885 uint32_t snd_una /* Last ACK sequence number sent by the Tx */; member in struct:tstorm_toe_tcp_ag_context_section
5552 #define __XSTORM_FCOE_AG_CONTEXT_RESERVED_UNA_GT_NXT_EN (0x1<<7) /* BitField agg_vars1Various aggregative variables Enable decision rules based on equality between snd_una and snd_nxt */
5572 #define __XSTORM_FCOE_AG_CONTEXT_RESERVED_UNA_GT_NXT_EN (0x1<<7) /* BitField agg_vars1Various aggregative variables Enable decision rules based on equality between snd_una and snd_nxt */
5804 uint32_t snd_una /* The current Send UNA sequence number */; member in struct:xstorm_tcp_tcp_ag_context_section
5976 #define __XSTORM_ISCSI_AG_CONTEXT_UNA_GT_NXT_EN (0x1<<7) /* BitField agg_vars1Various aggregative variables Enable decision rules based on equality between snd_una and snd_nxt */
5996 #define __XSTORM_ISCSI_AG_CONTEXT_UNA_GT_NXT_EN (0x1<<7) /* BitField agg_vars1Various aggregative variables Enable decision rules based on equality between snd_una and snd_nxt */
6228 uint32_t snd_una /* The current Send UNA sequence number */; member in struct:xstorm_toe_tcp_ag_context_section
6400 #define __XSTORM_TOE_AG_CONTEXT_UNA_GT_NXT_EN (0x1<<7) /* BitField agg_vars1Various aggregative variables Enable decision rules based on equality between snd_una an
[all...]

Completed in 332 milliseconds