From owner-svn-ports-all@freebsd.org Wed Nov 23 18:16:56 2016 Return-Path: Delivered-To: svn-ports-all@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 D8771C51830; Wed, 23 Nov 2016 18:16: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 A4E462C7; Wed, 23 Nov 2016 18:16: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 uANIGt6F072277; Wed, 23 Nov 2016 18:16:55 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANIGtqQ072275; Wed, 23 Nov 2016 18:16:55 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201611231816.uANIGtqQ072275@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 18:16:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426949 - in head/net/mpich: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 18:16:57 -0000 Author: tijl Date: Wed Nov 23 18:16:55 2016 New Revision: 426949 URL: https://svnweb.freebsd.org/changeset/ports/426949 Log: 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 MFH: 2016Q4 Added: head/net/mpich/files/patch-src-include-mpiimpl.h (contents, props changed) Modified: head/net/mpich/Makefile Modified: head/net/mpich/Makefile ============================================================================== --- head/net/mpich/Makefile Wed Nov 23 18:15:24 2016 (r426948) +++ head/net/mpich/Makefile Wed Nov 23 18:16:55 2016 (r426949) @@ -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}/ Added: head/net/mpich/files/patch-src-include-mpiimpl.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/mpich/files/patch-src-include-mpiimpl.h Wed Nov 23 18:16:55 2016 (r426949) @@ -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 */