From 862ea84e94038292d2127cd52e35c4fac99b24d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Horia=20Geant=C4=83?= Date: Wed, 26 Feb 2020 14:47:46 +0200 Subject: [PATCH] LF-804 crypto: tls - fix module autoloading MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tls module lacks an alias, thus cannot be auto-loaded. Note that all crypto modules have to be "protected" under the namespace created by the "crypto-" prefix: commit 5d26a105b5a7 ("crypto: prefix module autoloading with "crypto-"") Fixes: a61cc4776299 ("crypto: add support for TLS 1.0 record encryption") Signed-off-by: Horia Geantă Reviewed-by: Valentin Ciocoi Radulescu --- crypto/tls.c | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/tls.c b/crypto/tls.c index cb29194e9eb2..fb21bfbaf9ab 100644 --- a/crypto/tls.c +++ b/crypto/tls.c @@ -605,3 +605,4 @@ module_exit(crypto_tls_module_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("TLS 1.0 record encryption"); +MODULE_ALIAS_CRYPTO("tls10");