From mboxrd@z Thu Jan 1 00:00:00 1970 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 8D424269B0D; Tue, 8 Apr 2025 12:45:29 +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=1744116329; cv=none; b=aXdf4OQMTb5AOi9nZTB+RR6zyNyzE0BbZ11USJ2rDq2fm5gIz+gMY4xM6nACrx1b8SKIFhI5MegSIrgiJHsWddntq403znoBQ9JAlZwaZ/QOuYtVY+BXEN1BwxiG1Xc+4RzkkIHsfGcivdi2hnCSvRwogfRRC3LmepEUTAVIsUM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744116329; c=relaxed/simple; bh=dgJz5Cb8sBhLblj9Su8xPu2IQfcsMBG5iAB/0Yd/d50=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=UFMu5Ib4fRzG+KRklAck/1nOkMccFrnePr/wK7Zlg81k1MrXLQhVdXRskBXgjmi7qaqY/IfSxxAQY/FAeAtgjmExBVfig+I9lGzGvqaAgT7lSTL40JdVMiW30W0qPryqrYLtnET1awfX61/wT5QOy45SS/0bA8iBFyqZ7YajSTI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ahRoCmfl; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ahRoCmfl" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1C694C4CEE5; Tue, 8 Apr 2025 12:45:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744116329; bh=dgJz5Cb8sBhLblj9Su8xPu2IQfcsMBG5iAB/0Yd/d50=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ahRoCmflSFK7GBoeg6x3ow6Gv7aTUOKRIAy5rj37cOWlvHg5MXNggY523ldiiUXq4 n0VElAFSUeQFTA9f97R+3Z+LZcWVmYQ7b3L22VyKrQYg3W8OHIvpDuKzM7XyAVzysH aXRRj7NJdRwmWPz1ZiHL6ZKkIUklyjYPphkX8C2w= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Arnd Bergmann , Vadim Fedorenko , Herbert Xu , Sasha Levin Subject: [PATCH 6.12 101/423] crypto: bpf - Add MODULE_DESCRIPTION for skcipher Date: Tue, 8 Apr 2025 12:47:07 +0200 Message-ID: <20250408104848.087401907@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104845.675475678@linuxfoundation.org> References: <20250408104845.675475678@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Arnd Bergmann [ Upstream commit f307c87ea06c64b87fcd3221a682cd713cde51e9 ] 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 Reviewed-by: Vadim Fedorenko Signed-off-by: Herbert Xu Signed-off-by: Sasha Levin --- 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 b5e657415770a..a88798d3e8c87 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"); -- 2.39.5