From patchwork Mon Feb 17 12:55:55 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 866265 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 CC1302F5B; Mon, 17 Feb 2025 12:56:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739796965; cv=none; b=j6fuLIszq8eBsULJ3zzkHC7i20K9dIKzEqZ2Q/QgjoiuqrajLWolDCdZi28icahHcHrJlWY/oundc3lKZKNB4gZNVDVJH1Odc3zScfS7hlM/wqYW1KDsDvWvk1AmqCsghUzeWSxauIR/7PZRkpEgpv3Z/qjvuJjOVvua2epdWT8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739796965; c=relaxed/simple; bh=UtcPCfLeZS5GfGD58kyBDLA+3TYY+n8i7oQj1TJuqBo=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=uaZHvCQXpvyxLddECzKqfuHWZcVVKCj/jXsLJU5e9b1lPugLFX9EW/Jf4wFUD65vvSR3DzKboBOOsSfIv1uylbSs7beIvLuqWuD3IuDkA0hqKtwofKlGGELVJZwUM0kl+EJa5uPJU3ekG0Nipfpylcs+syr4pEuguJ7sQxUyXSE= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=tzgUpre6; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="tzgUpre6" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B2F52C4CEE4; Mon, 17 Feb 2025 12:56:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1739796965; bh=UtcPCfLeZS5GfGD58kyBDLA+3TYY+n8i7oQj1TJuqBo=; h=From:To:Cc:Subject:Date:From; b=tzgUpre6GSbt82LcdJMAoz+ElzdZhUaNDers9AUplHZ7lpw1Urj2GozrxeFzSyfVD 2ckMnZ0VisAjUbZlvJOHJ2CkRI6SJdhrDTzG+aOH2OOH3x5T0IYZBbpfelK2fyk3// +ftWeIGQ0h5RDAPWb6bChyy0icHUq3WQNiKC1Ooy9Ibv5YGKOtAvg++EekXtm4bUZE qjyZfArqYCoJUKPwE2eHBKUI4wa+oOzNqEDcVNqA8D1zyBeReUDgHapDslMN7OV6PE yFtFpxNRF2Zk0pc/kH5UinbQBhnRBgAPTZPWWGjJy0Rf4kSpFrNC34XrAOT7WJPF9X Yeet6LQ2/tuSQ== From: Arnd Bergmann To: Vadim Fedorenko , Herbert Xu , "David S. Miller" , Martin KaFai Lau Cc: Arnd Bergmann , bpf@vger.kernel.org, linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] crypto: bpf - Add MODULE_DESCRIPTION for skcipher Date: Mon, 17 Feb 2025 13:55:55 +0100 Message-Id: <20250217125601.3408746-1-arnd@kernel.org> X-Mailer: git-send-email 2.39.5 Precedence: bulk X-Mailing-List: linux-crypto@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Arnd Bergmann All modules should have a description, building with extra warnings enabled prints this outfor the for bpf_crypto_skcipher module: WARNING: modpost: missing MODULE_DESCRIPTION() in crypto/bpf_crypto_skcipher.o Add a description line. Fixes: fda4f71282b2 ("bpf: crypto: add skcipher to bpf crypto") Signed-off-by: Arnd Bergmann --- crypto/bpf_crypto_skcipher.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/bpf_crypto_skcipher.c b/crypto/bpf_crypto_skcipher.c index b5e657415770..a88798d3e8c8 100644 --- a/crypto/bpf_crypto_skcipher.c +++ b/crypto/bpf_crypto_skcipher.c @@ -80,3 +80,4 @@ static void __exit bpf_crypto_skcipher_exit(void) module_init(bpf_crypto_skcipher_init); module_exit(bpf_crypto_skcipher_exit); MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("Symmetric key cipher support for BPF");