svn commit: r292046 - head/sys/netinet
Hiren Panchasara
hiren at FreeBSD.org
Thu Dec 10 03:20:12 UTC 2015
Author: hiren
Date: Thu Dec 10 03:20:10 2015
New Revision: 292046
URL: https://svnweb.freebsd.org/changeset/base/292046
Log:
r290122 added 4 bytes and removed 8 in struct sackhint. Add a pad entry of 4
bytes to restore the size.
Spotted by: rrs
Reviewed by: rrs
X-MFC with: r290122
Sponsored by: Limelight Networks
Modified:
head/sys/netinet/tcp_var.h
Modified: head/sys/netinet/tcp_var.h
==============================================================================
--- head/sys/netinet/tcp_var.h Thu Dec 10 02:11:42 2015 (r292045)
+++ head/sys/netinet/tcp_var.h Thu Dec 10 03:20:10 2015 (r292046)
@@ -78,6 +78,7 @@ struct sackhint {
* Total sacked bytes reported by the
* receiver via sack option
*/
+ uint32_t _pad1[1]; /* TBD */
uint64_t _pad[1]; /* TBD */
};
More information about the svn-src-head
mailing list