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 0EDA6EE49B0 for ; Wed, 23 Aug 2023 10:36:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233720AbjHWKgH (ORCPT ); Wed, 23 Aug 2023 06:36:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53694 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233846AbjHWKfc (ORCPT ); Wed, 23 Aug 2023 06:35:32 -0400 Received: from sipsolutions.net (s3.sipsolutions.net [IPv6:2a01:4f8:242:246e::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2DB40CEF; Wed, 23 Aug 2023 03:35:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sipsolutions.net; s=mail; h=MIME-Version:Content-Transfer-Encoding: Content-Type:References:In-Reply-To:Date:To:From:Subject:Message-ID:Sender: Reply-To:Cc:Content-ID:Content-Description:Resent-Date:Resent-From:Resent-To: Resent-Cc:Resent-Message-ID; bh=dWTFqHYz8fPSN7BLKAD0EIV85Zk+mX8TWHKPbvtc7n0=; t=1692786917; x=1693996517; b=L+/Je8um6pZekz0R2aUMLNlw6lkXDjK8P2amNLYDPSFXQns m0ZSQiwzlvARK6wkt4XtAR1YkgzFkCCZmCG4QwqHJ5pw+tlVoZvxVvecuTaZ/vec3x3Av1Du2zZwJ 5MseqZuripf3RgxMFWaKrd2FRyu6CTcA20pBgFoT1+F0MFrZB3dmfDdCpYaOenEc9NZn1rXFlKwK3 6C8Cui7eSiEfrO+PWqxg+KB66V22f3p+JyrFO/RXudYLy8G70Dvk0lNJU0vpP1pPZnxNcolMSDKHP zzIphQQjZcJeXY2aPGM0l9WH07NEgh5o0Rxg0E2X7O13hTiTLNbqXHH5I5qrLXSQ==; Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.96) (envelope-from ) id 1qYlCD-006xpQ-1Z; Wed, 23 Aug 2023 12:34:41 +0200 Message-ID: Subject: Re: [PATCH 6/12] wifi: mac80211: Do not include crypto/algapi.h From: Johannes Berg To: Herbert Xu , Linux Crypto Mailing List , Eric Biggers , "Theodore Y.Ts'o" , Jaegeuk Kim , linux-fscrypt@vger.kernel.org, Richard Weinberger , linux-mtd@lists.infradead.org, Marcel Holtmann , Johan Hedberg , Luiz Augusto von Dentz , linux-bluetooth@vger.kernel.org, Ilya Dryomov , Xiubo Li , Jeff Layton , ceph-devel@vger.kernel.org, Steffen Klassert , "David S. Miller" , netdev@vger.kernel.org, linux-wireless@vger.kernel.org, Matthieu Baerts , Mat Martineau , Chuck Lever , Neil Brown , linux-nfs@vger.kernel.org, Mimi Zohar , linux-integrity@vger.kernel.org, "Jason A.Donenfeld" , Ayush Sawal Date: Wed, 23 Aug 2023 12:34:35 +0200 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.48.4 (3.48.4-1.fc38) MIME-Version: 1.0 X-malware-bazaar: not-scanned Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org On Wed, 2023-08-23 at 18:32 +0800, Herbert Xu wrote: > The header file crypto/algapi.h is for internal use only. Use the > header file crypto/utils.h instead. >=20 No objection, of course, but I don't think it's necessarily clear that it "is for internal use only", it literally says: * Cryptographic API for algorithms (i.e., low-level API). which really isn't the same as "don't use this file". Might want to clarify that, or even move it into crypto/ from include/crypto/ or something? johannes