Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Feb 2012 10:38:20 +0000 (UTC)
From:      Michael Tuexen <tuexen@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r231073 - stable/9/sys/netinet
Message-ID:  <201202061038.q16AcKqg032073@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tuexen
Date: Mon Feb  6 10:38:20 2012
New Revision: 231073
URL: http://svn.freebsd.org/changeset/base/231073

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

Modified:
  stable/9/sys/netinet/sctp_uio.h
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/netinet/sctp_uio.h
==============================================================================
--- stable/9/sys/netinet/sctp_uio.h	Mon Feb  6 10:35:21 2012	(r231072)
+++ stable/9/sys/netinet/sctp_uio.h	Mon Feb  6 10:38:20 2012	(r231073)
@@ -672,8 +672,8 @@ struct sctp_timeouts {
 };
 
 struct sctp_udpencaps {
-	sctp_assoc_t sue_assoc_id;
 	struct sockaddr_storage sue_address;
+	sctp_assoc_t sue_assoc_id;
 	uint16_t sue_port;
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201202061038.q16AcKqg032073>