diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2018-06-22 21:20:35 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2018-06-22 21:20:35 +0200 | 
| commit | 7731b8bc94e599c9a79e428f3359ff2c34b7576a (patch) | |
| tree | 879f18ccbe274122f2d4f095b43cbc7f953e0ada /include/linux/tcp.h | |
| parent | 48e315618dc4dc8904182cd221e3d395d5d97005 (diff) | |
| parent | 9ffc59d57228d74809700be6f7ecb1db10292f05 (diff) | |
Merge branch 'linus' into x86/urgent
Required to queue a dependent fix.
Diffstat (limited to 'include/linux/tcp.h')
| -rw-r--r-- | include/linux/tcp.h | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 8f4c54986f97..72705eaf4b84 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h @@ -218,6 +218,7 @@ struct tcp_sock {  		   reord:1;	 /* reordering detected */  	} rack;  	u16	advmss;		/* Advertised MSS			*/ +	u8	compressed_ack;  	u32	chrono_start;	/* Start time in jiffies of a TCP chrono */  	u32	chrono_stat[3];	/* Time in jiffies for chrono_stat stats */  	u8	chrono_type:2,	/* current chronograph type */ @@ -228,7 +229,7 @@ struct tcp_sock {  		unused:2;  	u8	nonagle     : 4,/* Disable Nagle algorithm?             */  		thin_lto    : 1,/* Use linear timeouts for thin streams */ -		unused1	    : 1, +		recvmsg_inq : 1,/* Indicate # of bytes in queue upon recvmsg */  		repair      : 1,  		frto        : 1;/* F-RTO (RFC5682) activated in CA_Loss */  	u8	repair_queue; @@ -281,6 +282,7 @@ struct tcp_sock {  				 * receiver in Recovery. */  	u32	prr_out;	/* Total number of pkts sent during Recovery. */  	u32	delivered;	/* Total data packets delivered incl. rexmits */ +	u32	delivered_ce;	/* Like the above but only ECE marked packets */  	u32	lost;		/* Total data packets lost incl. rexmits */  	u32	app_limited;	/* limited until "delivered" reaches this val */  	u64	first_tx_mstamp;  /* start of window send phase */ @@ -296,6 +298,7 @@ struct tcp_sock {  	u32	sacked_out;	/* SACK'd packets			*/  	struct hrtimer	pacing_timer; +	struct hrtimer	compressed_ack_timer;  	/* from STCP, retrans queue hinting */  	struct sk_buff* lost_skb_hint;  | 
