svn commit: r231481 - stable/8/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Fri Feb 10 23:51:23 UTC 2012


Author: tuexen
Date: Fri Feb 10 23:51:23 2012
New Revision: 231481
URL: http://svn.freebsd.org/changeset/base/231481

Log:
  MFC r227930:
  Move up the address to the top of the sctp_paddrthlds structure
  like in all other structures. This avoids alignment problems.

Modified:
  stable/8/sys/netinet/sctp_uio.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/boot/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/e1000/   (props changed)

Modified: stable/8/sys/netinet/sctp_uio.h
==============================================================================
--- stable/8/sys/netinet/sctp_uio.h	Fri Feb 10 23:49:04 2012	(r231480)
+++ stable/8/sys/netinet/sctp_uio.h	Fri Feb 10 23:51:23 2012	(r231481)
@@ -521,8 +521,8 @@ struct sctp_paddrparams {
 #define SPP_IPV4_TOS            SPP_DSCP
 
 struct sctp_paddrthlds {
-	sctp_assoc_t spt_assoc_id;
 	struct sockaddr_storage spt_address;
+	sctp_assoc_t spt_assoc_id;
 	uint16_t spt_pathmaxrxt;
 	uint16_t spt_pathpfthld;
 };


More information about the svn-src-stable-8 mailing list