From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C97632E719B; Sun, 5 Jul 2026 20:08:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783282101; cv=none; b=VbkDJssylusuR9X8WR1G/m6GAVZIoQqoxPHNmU7FJPl/6sChR6mugLdoobglanWDxKI1/JZ864PMndjL3bMbVASdRTMbQVmCQWwSPcZWO0Yg3sw1moceC37EeKJ3QQDVt78IUyA3WQozPgI88h3qGq7bsA7CwyYbMcyR/rNsPrE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783282101; c=relaxed/simple; bh=ZcpRYQMpJQ3+6XpwxEr+ScC4qW5lTO+NAfuuFR/Xi14=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=o4xMpzgoW8dOzFfj4A3EhTXQICpnD57DISopVMvdlIyjS7vYDXNrH0DIpWaQ2agdpb2IaUCDQDJRCtPFnAYs+OdGfNxMQwSjWK/dn1/FNid2Qv7aZYogxBbdVz707jIayz92+W67rCKkosdVlvdmxOB9SnJ3xJHGIfMhf31OhO4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=AGFGOhk/; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="AGFGOhk/" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 998341F000E9; Sun, 5 Jul 2026 20:08:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1783282100; bh=9CM2wVbhyHLDtHdcSbwHJ5tP/f8SZ6JkBBSxBmdPEIY=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=AGFGOhk/VoXIOfqZakNksTm9cB9kUoQy3LTGkLM0HcAPxl6/kIl3CzWgnpVmQX247 uX66+jr6L+LgeQifhoIeIf/X9WbbF4u6YO2O224FtIdR88BYvhJXgBVErqAv1qYAQG BrBPNqqepnxhkahgILgJluwb8nqXRvfTpdmd7b0PCOPPOfWJt2NqqupFD8aebiy8XU 88n644xK/cTr98yc1ql5fZt0ZouO3k+FieKZI8yxhs49BQY3tFy6EP5duynfslihcy QaJ7HPjV3Mobx0ZWqgxUl2C7b+E2QguMK5ODWC/FI2mMgzvTwY/ybiqGJcQg+fd5wc 891wd3RQZ/kUA== Date: Sun, 5 Jul 2026 13:08:17 -0700 From: Eric Biggers To: linux-fscrypt@vger.kernel.org Cc: linux-fsdevel@vger.kernel.org, linux-ext4@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, linux-block@vger.kernel.org, Christoph Hellwig , Theodore Ts'o , Andreas Dilger , Baokun Li , Jan Kara , Ojaswin Mujoo , Ritesh Harjani , Zhang Yi , Jaegeuk Kim , Chao Yu Subject: Re: [PATCH v2 02/17] blk-crypto: Fold __blk_crypto_cfg_supported() into its caller Message-ID: <20260705200817.GF41916@quark> References: <20260705194555.75030-1-ebiggers@kernel.org> <20260705194555.75030-3-ebiggers@kernel.org> Precedence: bulk X-Mailing-List: linux-ext4@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260705194555.75030-3-ebiggers@kernel.org> On Sun, Jul 05, 2026 at 12:45:39PM -0700, Eric Biggers wrote: > __blk_crypto_cfg_supported() is called only by > blk_crypto_config_supported_natively(), so fold it in. > > Reviewed-by: Christoph Hellwig > Signed-off-by: Eric Biggers > --- > block/blk-crypto-profile.c | 22 ---------------------- > block/blk-crypto.c | 23 +++++++++++++++++++++-- > 2 files changed, 21 insertions(+), 24 deletions(-) Sashiko pointed out that I forgot to remove the prototype of __blk_crypto_cfg_supported(). I'll fix that in the next version. - Eric