From owner-svn-ports-branches@freebsd.org Wed Nov 23 22:29:56 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6523BC5124F; Wed, 23 Nov 2016 22:29:56 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D0E6135; Wed, 23 Nov 2016 22:29:56 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uANMTt8I083580; Wed, 23 Nov 2016 22:29:55 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANMTtW3083578; Wed, 23 Nov 2016 22:29:55 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201611232229.uANMTtW3083578@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Wed, 23 Nov 2016 22:29:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r426981 - in branches/2016Q4/net/mpich: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 22:29:56 -0000 Author: tijl Date: Wed Nov 23 22:29:55 2016 New Revision: 426981 URL: https://svnweb.freebsd.org/changeset/ports/426981 Log: MFH: r426949 Add patch to apply alignment attribute to a struct instead of a typedef. This rounds the size of the struct to a multiple of the alignment such that malloc and friends allocate memory with the correct alignment. PR: 214784 Approved by: ports-secteam (feld) Added: branches/2016Q4/net/mpich/files/patch-src-include-mpiimpl.h - copied unchanged from r426949, head/net/mpich/files/patch-src-include-mpiimpl.h Modified: branches/2016Q4/net/mpich/Makefile Directory Properties: branches/2016Q4/ (props changed) Modified: branches/2016Q4/net/mpich/Makefile ============================================================================== --- branches/2016Q4/net/mpich/Makefile Wed Nov 23 22:28:16 2016 (r426980) +++ branches/2016Q4/net/mpich/Makefile Wed Nov 23 22:29:55 2016 (r426981) @@ -2,7 +2,7 @@ PORTNAME= mpich PORTVERSION= 3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net parallel MASTER_SITES= http://www.mpich.org/static/downloads/${DISTVERSION}/ Copied: branches/2016Q4/net/mpich/files/patch-src-include-mpiimpl.h (from r426949, head/net/mpich/files/patch-src-include-mpiimpl.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q4/net/mpich/files/patch-src-include-mpiimpl.h Wed Nov 23 22:29:55 2016 (r426981, copy of r426949, head/net/mpich/files/patch-src-include-mpiimpl.h) @@ -0,0 +1,11 @@ +--- src/include/mpiimpl.h.orig 2015-11-10 02:39:01 UTC ++++ src/include/mpiimpl.h +@@ -1528,7 +1528,7 @@ typedef struct MPID_Request { + #ifdef MPID_DEV_REQUEST_DECL + MPID_DEV_REQUEST_DECL + #endif +-} MPID_Request ATTRIBUTE((__aligned__(32))); ++} ATTRIBUTE((__aligned__(32))) MPID_Request; + + extern MPIU_Object_alloc_t MPID_Request_mem; + /* Preallocated request objects */