From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by smtp.lore.kernel.org (Postfix) with ESMTP id CB6F4C433F5 for ; Sun, 17 Apr 2022 16:30:35 +0000 (UTC) Received: by kanga.kvack.org (Postfix) id 1F8FB6B0074; Sun, 17 Apr 2022 12:30:35 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 1859D6B0075; Sun, 17 Apr 2022 12:30:35 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 023326B0078; Sun, 17 Apr 2022 12:30:34 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from relay.hostedemail.com (relay.hostedemail.com [64.99.140.25]) by kanga.kvack.org (Postfix) with ESMTP id E4DDE6B0074 for ; Sun, 17 Apr 2022 12:30:34 -0400 (EDT) Received: from smtpin23.hostedemail.com (a10.router.float.18 [10.200.18.1]) by unirelay11.hostedemail.com (Postfix) with ESMTP id B1CC281BB9 for ; Sun, 17 Apr 2022 16:30:34 +0000 (UTC) X-FDA: 79366909188.23.DC1E76A Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by imf14.hostedemail.com (Postfix) with ESMTP id 3541710000E for ; Sun, 17 Apr 2022 16:30:34 +0000 (UTC) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 6943061236; Sun, 17 Apr 2022 16:30:33 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B171CC385A4; Sun, 17 Apr 2022 16:30:30 +0000 (UTC) Date: Sun, 17 Apr 2022 17:30:27 +0100 From: Catalin Marinas To: Herbert Xu Cc: Ard Biesheuvel , Will Deacon , Marc Zyngier , Arnd Bergmann , Greg Kroah-Hartman , Andrew Morton , Linus Torvalds , Linux Memory Management List , Linux ARM , Linux Kernel Mailing List , "David S. Miller" Subject: Re: [PATCH 07/10] crypto: Use ARCH_DMA_MINALIGN instead of ARCH_KMALLOC_MINALIGN Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Authentication-Results: imf14.hostedemail.com; dkim=none; spf=pass (imf14.hostedemail.com: domain of cmarinas@kernel.org designates 139.178.84.217 as permitted sender) smtp.mailfrom=cmarinas@kernel.org; dmarc=fail reason="SPF not aligned (relaxed), No valid DKIM" header.from=arm.com (policy=none) X-Stat-Signature: i6wzhfdcp95pux3c6tx1ocbp7jn1i3tn X-Rspamd-Queue-Id: 3541710000E X-Rspamd-Server: rspam04 X-Rspam-User: X-HE-Tag: 1650213034-711537 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: On Sun, Apr 17, 2022 at 04:58:29PM +0800, Herbert Xu wrote: > On Sun, Apr 17, 2022 at 09:50:50AM +0100, Catalin Marinas wrote: > > > > Right, if that's what you prefer. Something like: > > > > diff --git a/include/linux/crypto.h b/include/linux/crypto.h > > index 2324ab6f1846..bb645b2f2718 100644 > > --- a/include/linux/crypto.h > > +++ b/include/linux/crypto.h > > @@ -645,7 +645,7 @@ struct crypto_tfm { > > > > struct crypto_alg *__crt_alg; > > > > - void *__crt_ctx[] CRYPTO_MINALIGN_ATTR; > > + void *__crt_ctx[] __aligned(ARCH_DMA_MINALIGN); > > }; > > > > But once we do that, are there any other CRYPTO_MINALIGN left around? > > This is still implying the whole structure is aligned to the given > value, which it is not. > > Please just add the padding as needed. Do you mean as per Ard's proposal here: https://lore.kernel.org/r/CAMj1kXH0x5Va7Wgs+mU1ONDwwsazOBuN4z4ihVzO2uG-n41Kbg@mail.gmail.com struct crypto_request { union { struct { ... fields ... }; u8 __padding[ARCH_DMA_MINALIGN]; }; void __ctx[] __aligned(CRYPTO_MINALIGN); }; If CRYPTO_MINALIGN is lowered to, say, 8 (to be the same as lowest ARCH_KMALLOC_MINALIGN), the __alignof__(req->__ctx) would be 8. Functions like crypto_tfm_ctx_alignment() will return 8 when what you need is 128. We can change those functions to return ARCH_DMA_MINALIGN instead or always bump cra_alignmask to ARCH_DMA_MINALIGN-1. -- Catalin