From owner-svn-soc-all@FreeBSD.ORG Sun Sep 22 01:50:13 2013 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 9D1F0DA0 for ; Sun, 22 Sep 2013 01:50:13 +0000 (UTC) (envelope-from def@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8B2D9238F for ; Sun, 22 Sep 2013 01:50:13 +0000 (UTC) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8M1oD3f079749 for ; Sun, 22 Sep 2013 01:50:13 GMT (envelope-from def@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.7/8.14.6/Submit) id r8M1oDhF079735 for svn-soc-all@FreeBSD.org; Sun, 22 Sep 2013 01:50:13 GMT (envelope-from def@FreeBSD.org) Date: Sun, 22 Sep 2013 01:50:13 GMT Message-Id: <201309220150.r8M1oDhF079735@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to def@FreeBSD.org using -f From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r257597 - soc2013/def/crashdump-head/sys/crypto MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 01:50:13 -0000 Author: def Date: Sun Sep 22 01:50:13 2013 New Revision: 257597 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=257597 Log: Don't align struct xts_ctx because sysctlbyname(3) requires equal structure sizes. Modified: soc2013/def/crashdump-head/sys/crypto/xts.h Modified: soc2013/def/crashdump-head/sys/crypto/xts.h ============================================================================== --- soc2013/def/crashdump-head/sys/crypto/xts.h Sun Sep 22 01:47:48 2013 (r257596) +++ soc2013/def/crashdump-head/sys/crypto/xts.h Sun Sep 22 01:50:13 2013 (r257597) @@ -45,7 +45,7 @@ rijndael_ctx pctx_aes; struct hmac_ctx pctx_hmac; } o; -} __aligned(CACHE_LINE_SIZE); +}; typedef void algop_crypt_t(const struct xts_ctx *ctx, const uint8_t *in, uint8_t *out);