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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 45C78C4332F for ; Tue, 31 Oct 2023 04:52:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232876AbjJaEwE (ORCPT ); Tue, 31 Oct 2023 00:52:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49492 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232626AbjJaEwD (ORCPT ); Tue, 31 Oct 2023 00:52:03 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4C9D9AB; Mon, 30 Oct 2023 21:52:00 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8693CC433C7; Tue, 31 Oct 2023 04:51:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1698727919; bh=hWmcabTW98wMgnMrYmQkrgraTflXAXmiqmyz9eu26yM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ZF9f3a7w+m+cIzd3mKBOegwYHwEeHcugsChYYKQXx1M0RwNnXABrP8dMGGLopmrRe Db6+zQh5EDPYXTQUqbF97k9miBfv1Te1Z0nDeV2HjpfWO7kTG/VTZIcqVESA1SJ9Du wbnATex3FnVht4ERBEy/rV62bS1pmpxCRDDJ6Ua3O0Gp2J+BlVXO7nKxmzjFtz/cSY PS4Eeulv+0pIX1HYYNeDTAjEhFH/hVNzuZZhsZiJTY/+oGjWu6ZtXRDkrL+QNLMjz1 4d3opdAGUo6Wah3baJkMBvJu631iajGaLjvXyfwCdZAJUGq8GsSg1gnQdqZi9/R2kp QQbkiPmQ39qyQ== Date: Mon, 30 Oct 2023 21:51:57 -0700 From: Eric Biggers To: Jakub Kicinski Cc: Herbert Xu , Stephen Rothwell , David Miller , Paolo Abeni , Networking , Linux Crypto List , Dmitry Safonov <0x7f454c46@gmail.com>, Dmitry Safonov , Francesco Ruggeri , Salam Noureddine , Linux Kernel Mailing List , Linux Next Mailing List Subject: Re: linux-next: build failure after merge of the crypto tree Message-ID: <20231031045157.GA12981@sol.localdomain> References: <20231030155809.6b47288c@canb.auug.org.au> <20231030160953.28f2df61@canb.auug.org.au> <20231030150243.0e66ba73@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231030150243.0e66ba73@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-next@vger.kernel.org On Mon, Oct 30, 2023 at 03:02:43PM -0700, Jakub Kicinski wrote: > On Mon, 30 Oct 2023 13:23:53 +0800 Herbert Xu wrote: > > If we simply apply this patch to the netdev tree then everything > > should work at the next merge window. But perhaps you could change > > the patch description to say something like remove the obsolete > > crypto_hash_alignmask. It's not important though. > > I'm happy to massage the commit message and apply the fix to net. > But is it actually 100% correct to do that? IOW is calling > crypto_ahash_alignmask() already not necessary in net-next or does > it only become unnecessary after some prep work in crypto-next? > > We can tell Linus to squash this fix into the merge of either > crypto-next or net-next, I'm pretty sure he'd be okay with that.. It's safe to fold the patch into net-next. It actually looks like a bug to be using the alignmask in the way that net/ipv4/tcp_ao.c is using it. You don't want to be erroring out just because the algorithm declared an alignmask. - Eric