Date: Sun, 22 Sep 2013 01:50:13 GMT From: def@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r257597 - soc2013/def/crashdump-head/sys/crypto Message-ID: <201309220150.r8M1oDhF079735@socsvn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309220150.r8M1oDhF079735>