Lines Matching refs:u32
104 u32 start_seq;
105 u32 end_seq;
115 u32 ts_recent; /* Time stamp to echo next */
116 u32 rcv_tsval; /* Time stamp value */
117 u32 rcv_tsecr; /* Time stamp echo reply */
160 u32 txhash;
161 u32 rcv_isn;
162 u32 snt_isn;
163 u32 ts_off;
164 u32 last_oow_ack_time; /* last SYNACK */
165 u32 rcv_nxt; /* the ack # by SYNACK. For
205 u32 max_window; /* Maximal window ever seen from peer */
206 u32 rcv_ssthresh; /* Current window clamp */
207 u32 reordering; /* Packet reordering metric. */
208 u32 notsent_lowat; /* TCP_NOTSENT_LOWAT */
217 u32 tsoffset; /* timestamp offset */
218 u32 snd_wnd; /* The window we expect to receive */
219 u32 mss_cache; /* Cached effective mss, not including SACKS */
220 u32 snd_cwnd; /* Sending congestion window */
221 u32 prr_out; /* Total number of pkts sent during Recovery. */
222 u32 lost_out; /* Lost packets */
223 u32 sacked_out; /* SACK'd packets */
235 u32 copied_seq; /* Head of yet unread data */
236 u32 rcv_tstamp; /* timestamp of last received ACK (for keepalives) */
237 u32 snd_wl1; /* Sequence for window update */
238 u32 tlp_high_seq; /* snd_nxt at the time of TLP */
239 u32 rttvar_us; /* smoothed mdev_max */
240 u32 retrans_out; /* Retransmitted packets out */
243 u32 lost; /* Total data packets lost incl. rexmits */
247 u32 snd_ssthresh; /* Slow start size threshold */
253 u32 segs_out; /* RFC4898 tcpEStatsPerfSegsOut
256 u32 data_segs_out; /* RFC4898 tcpEStatsPerfDataSegsOut
262 u32 snd_sml; /* Last byte of the most recently transmitted small packet */
263 u32 chrono_start; /* Start time in jiffies of a TCP chrono */
264 u32 chrono_stat[3]; /* Time in jiffies for chrono_stat stats */
265 u32 write_seq; /* Tail(+1) of data held in tcp send buffer */
266 u32 pushed_seq; /* Last pushed seq, required to talk to windows */
267 u32 lsndtime;
268 u32 mdev_us; /* medium deviation */
269 u32 rtt_seq; /* sequence number to update rttvar */
289 u32 rcv_nxt; /* What we want to receive next */
290 u32 snd_nxt; /* Next sequence we send */
291 u32 snd_una; /* First byte we want an ack for */
292 u32 window_clamp; /* Maximal window to advertise */
293 u32 srtt_us; /* smoothed round trip time << 3 in usecs */
294 u32 packets_out; /* Packets which are "in flight" */
295 u32 snd_up; /* Urgent pointer */
296 u32 delivered; /* Total data packets delivered incl. rexmits */
297 u32 delivered_ce; /* Like the above but only ECE marked packets */
298 u32 app_limited; /* limited until "delivered" reaches this val */
299 u32 rcv_wnd; /* Current receiver window */
315 u32 segs_in; /* RFC4898 tcpEStatsPerfSegsIn
318 u32 data_segs_in; /* RFC4898 tcpEStatsPerfDataSegsIn
321 u32 rcv_wup; /* rcv_nxt on last window update sent */
322 u32 max_packets_out; /* max packets_out in last window */
323 u32 cwnd_usage_seq; /* right edge of cwnd usage tracking flight */
324 u32 rate_delivered; /* saved rate sample: packets delivered */
325 u32 rate_interval_us; /* saved rate sample: time elapsed */
326 u32 rcv_rtt_last_tsecr;
334 u32 rtt_us;
335 u32 seq;
340 u32 space;
341 u32 seq;
352 u32 dsack_dups; /* RFC4898 tcpEStatsStackDSACKDups
355 u32 compressed_ack_rcv_nxt;
361 u32 rtt_us; /* Associated RTT */
362 u32 end_seq; /* Ending TCP sequence of the skb */
363 u32 last_delivered; /* tp->delivered at last reo_wnd adj */
388 u32 tcp_tx_delay; /* delay (in usec) added to TX packets */
391 u32 mdev_max_us; /* maximal mdev for the last rtt period */
393 u32 reord_seen; /* number of data packet reordering events */
398 u32 snd_cwnd_cnt; /* Linear increase counter */
399 u32 snd_cwnd_clamp; /* Do not allow snd_cwnd to grow above this */
400 u32 snd_cwnd_used;
401 u32 snd_cwnd_stamp;
402 u32 prior_cwnd; /* cwnd right before starting loss recovery */
403 u32 prr_delivered; /* Number of newly delivered packets to
405 u32 last_oow_ack_time; /* timestamp of last out-of-window ACK */
420 u32 prior_ssthresh; /* ssthresh saved at recovery start */
421 u32 high_seq; /* snd_nxt at onset of congestion */
423 u32 retrans_stamp; /* Timestamp of the last retransmit,
426 u32 undo_marker; /* snd_una upon a new recovery episode. */
431 u32 total_retrans; /* Total retransmits for entire connection */
432 u32 rto_stamp; /* Start time (ms) of last CA_Loss recovery */
439 u32 total_rto_time; /* ms spent in (completed) RTO recoveries. */
441 u32 urg_seq; /* Seq of received urgent pointer */
466 u32 rcv_ooopack; /* Received out-of-order packets, for tcpinfo */
470 u32 probe_seq_start;
471 u32 probe_seq_end;
473 u32 plb_rehash; /* PLB-triggered rehash attempts */
474 u32 mtu_info; /* We received an ICMP_FRAG_NEEDED / ICMPV6_PKT_TOOBIG
543 u32 tw_rcv_wnd;
544 u32 tw_ts_offset;
545 u32 tw_ts_recent;
548 u32 tw_last_oow_ack_time;
551 u32 tw_tx_delay;
592 static inline u32 tcp_saved_syn_len(const struct saved_syn *saved_syn) in tcp_saved_syn_len()