svn commit: r227949 - releng/9.0/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Thu Nov 24 18:57:31 UTC 2011


Author: tuexen
Date: Thu Nov 24 18:57:31 2011
New Revision: 227949
URL: http://svn.freebsd.org/changeset/base/227949

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

Modified:
  releng/9.0/sys/netinet/sctp_uio.h
Directory Properties:
  releng/9.0/sys/   (props changed)
  releng/9.0/sys/amd64/include/xen/   (props changed)
  releng/9.0/sys/boot/   (props changed)
  releng/9.0/sys/boot/i386/efi/   (props changed)
  releng/9.0/sys/boot/ia64/efi/   (props changed)
  releng/9.0/sys/boot/ia64/ski/   (props changed)
  releng/9.0/sys/boot/powerpc/boot1.chrp/   (props changed)
  releng/9.0/sys/boot/powerpc/ofw/   (props changed)
  releng/9.0/sys/cddl/contrib/opensolaris/   (props changed)
  releng/9.0/sys/conf/   (props changed)
  releng/9.0/sys/contrib/dev/acpica/   (props changed)
  releng/9.0/sys/contrib/octeon-sdk/   (props changed)
  releng/9.0/sys/contrib/pf/   (props changed)
  releng/9.0/sys/contrib/x86emu/   (props changed)

Modified: releng/9.0/sys/netinet/sctp_uio.h
==============================================================================
--- releng/9.0/sys/netinet/sctp_uio.h	Thu Nov 24 18:51:31 2011	(r227948)
+++ releng/9.0/sys/netinet/sctp_uio.h	Thu Nov 24 18:57:31 2011	(r227949)
@@ -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-all mailing list