From patchwork Fri Dec 2 09:19:43 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Herbert Xu X-Patchwork-Id: 13062460 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 489E0C47088 for ; Fri, 2 Dec 2022 09:21:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Subject:Cc:To: From:Date:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=EIFWYN3s6N5Qh5/ZJh7Od/N5HmgOzwqVhtefmtnoIZ0=; b=EGPAUdnbJA6brp UUb2QCRQr8ubtOZWfmXv+dWtHMwCr+sPJMFrR5kJJ46Ze8/zyOqJdWPr/KGY8mEmBmSsiL496LRRz hOdzK4MUX4gq6KSTuRz1RYnah5xJaJVnhYFYCyJmE2bty57/k6N1QZ9VPMix8FKrL047Znun9JPdd 8B18jimpBv6pF6gIQd88/KxXHojYCCU58jZQVeQg7pdaimfm8xFRwJ18HOyKbHAhlgULqN3Ed9Lae 315+5lwdDjlE9pa0X56FbPfY5OpgClyl08mhd4BVO2rsMTP/d5A/I5UcmoKxA9hgRLtN/4oY03pEM Kk6s2dcbV4Jn2ZJ75Dzg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1p12DV-00EsKN-0n; Fri, 02 Dec 2022 09:20:21 +0000 Received: from helcar.hmeau.com ([216.24.177.18] helo=formenos.hmeau.com) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1p12DK-00EsCO-DN for linux-arm-kernel@lists.infradead.org; Fri, 02 Dec 2022 09:20:11 +0000 Received: from loth.rohan.me.apana.org.au ([192.168.167.2]) by formenos.hmeau.com with smtp (Exim 4.94.2 #2 (Debian)) id 1p12Ct-003AjM-8X; Fri, 02 Dec 2022 17:19:44 +0800 Received: by loth.rohan.me.apana.org.au (sSMTP sendmail emulation); Fri, 02 Dec 2022 17:19:43 +0800 Date: Fri, 2 Dec 2022 17:19:43 +0800 From: Herbert Xu To: Catalin Marinas Cc: Ard Biesheuvel , Will Deacon , Marc Zyngier , Arnd Bergmann , Greg Kroah-Hartman , Andrew Morton , Linus Torvalds , Linux Memory Management List , Linux ARM , LinuxKernelMailingList@gondor.apana.org.au, linux-kernel@vger.kernel.org, "David S. Miller" , Linux Crypto Mailing List Subject: [PATCH 0/10] crypto: Driver conversions for DMA alignment Message-ID: MIME-Version: 1.0 Content-Disposition: inline X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20221202_012010_470363_5FB99FEC X-CRM114-Status: UNSURE ( 7.34 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org These are the rest of the driver conversions in order for arm64 to safely lower the kmalloc alignment below that required for DMA. My criteria for inclusion are: 1) the driver can be built on arm64. 2) the driver may perform DMA on the context structure. I have worked through all the drivers in crypto but if you think I've missed something please let me know. Thanks,