mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
module: Convert symbol namespace to string literal
Clean up the existing export namespace code along the same lines of
commit 33def8498f ("treewide: Convert macro and uses of __section(foo)
to __section("foo")") and for the same reason, it is not desired for the
namespace argument to be a macro expansion itself.
Scripted using
git grep -l -e MODULE_IMPORT_NS -e EXPORT_SYMBOL_NS | while read file;
do
awk -i inplace '
/^#define EXPORT_SYMBOL_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/^#define MODULE_IMPORT_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/MODULE_IMPORT_NS/ {
$0 = gensub(/MODULE_IMPORT_NS\(([^)]*)\)/, "MODULE_IMPORT_NS(\"\\1\")", "g");
}
/EXPORT_SYMBOL_NS/ {
if ($0 ~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+),/) {
if ($0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/ &&
$0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(\)/ &&
$0 !~ /^my/) {
getline line;
gsub(/[[:space:]]*\\$/, "");
gsub(/[[:space:]]/, "", line);
$0 = $0 " " line;
}
$0 = gensub(/(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/,
"\\1(\\2, \"\\3\")", "g");
}
}
{ print }' $file;
done
Requested-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://mail.google.com/mail/u/2/#inbox/FMfcgzQXKWgMmjdFwwdsfgxzKpVHWPlc
Acked-by: Greg KH <gregkh@linuxfoundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
e70140ba0d
commit
cdd30ebb1b
@@ -46,7 +46,7 @@ Please note that due to macro expansion that argument needs to be a
|
|||||||
preprocessor symbol. E.g. to export the symbol ``usb_stor_suspend`` into the
|
preprocessor symbol. E.g. to export the symbol ``usb_stor_suspend`` into the
|
||||||
namespace ``USB_STORAGE``, use::
|
namespace ``USB_STORAGE``, use::
|
||||||
|
|
||||||
EXPORT_SYMBOL_NS(usb_stor_suspend, USB_STORAGE);
|
EXPORT_SYMBOL_NS(usb_stor_suspend, "USB_STORAGE");
|
||||||
|
|
||||||
The corresponding ksymtab entry struct ``kernel_symbol`` will have the member
|
The corresponding ksymtab entry struct ``kernel_symbol`` will have the member
|
||||||
``namespace`` set accordingly. A symbol that is exported without a namespace will
|
``namespace`` set accordingly. A symbol that is exported without a namespace will
|
||||||
@@ -94,7 +94,7 @@ for the namespaces it uses symbols from. E.g. a module using the
|
|||||||
usb_stor_suspend symbol from above, needs to import the namespace USB_STORAGE
|
usb_stor_suspend symbol from above, needs to import the namespace USB_STORAGE
|
||||||
using a statement like::
|
using a statement like::
|
||||||
|
|
||||||
MODULE_IMPORT_NS(USB_STORAGE);
|
MODULE_IMPORT_NS("USB_STORAGE");
|
||||||
|
|
||||||
This will create a ``modinfo`` tag in the module for each imported namespace.
|
This will create a ``modinfo`` tag in the module for each imported namespace.
|
||||||
This has the side effect, that the imported namespaces of a module can be
|
This has the side effect, that the imported namespaces of a module can be
|
||||||
@@ -106,7 +106,7 @@ inspected with modinfo::
|
|||||||
[...]
|
[...]
|
||||||
|
|
||||||
|
|
||||||
It is advisable to add the MODULE_IMPORT_NS() statement close to other module
|
It is advisable to add the MODULE_IMPORT_NS("") statement close to other module
|
||||||
metadata definitions like MODULE_AUTHOR() or MODULE_LICENSE(). Refer to section
|
metadata definitions like MODULE_AUTHOR() or MODULE_LICENSE(). Refer to section
|
||||||
5. for a way to create missing import statements automatically.
|
5. for a way to create missing import statements automatically.
|
||||||
|
|
||||||
@@ -128,7 +128,7 @@ enable loading regardless, but will emit a warning.
|
|||||||
Missing namespaces imports can easily be detected at build time. In fact,
|
Missing namespaces imports can easily be detected at build time. In fact,
|
||||||
modpost will emit a warning if a module uses a symbol from a namespace
|
modpost will emit a warning if a module uses a symbol from a namespace
|
||||||
without importing it.
|
without importing it.
|
||||||
MODULE_IMPORT_NS() statements will usually be added at a definite location
|
MODULE_IMPORT_NS("") statements will usually be added at a definite location
|
||||||
(along with other module meta data). To make the life of module authors (and
|
(along with other module meta data). To make the life of module authors (and
|
||||||
subsystem maintainers) easier, a script and make target is available to fixup
|
subsystem maintainers) easier, a script and make target is available to fixup
|
||||||
missing imports. Fixing missing imports can be done with::
|
missing imports. Fixing missing imports can be done with::
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ Tenete presente che per via dell'espansione delle macro questo argomento deve
|
|||||||
essere un simbolo di preprocessore. Per esempio per esportare il
|
essere un simbolo di preprocessore. Per esempio per esportare il
|
||||||
simbolo ``usb_stor_suspend`` nello spazio dei nomi ``USB_STORAGE`` usate::
|
simbolo ``usb_stor_suspend`` nello spazio dei nomi ``USB_STORAGE`` usate::
|
||||||
|
|
||||||
EXPORT_SYMBOL_NS(usb_stor_suspend, USB_STORAGE);
|
EXPORT_SYMBOL_NS(usb_stor_suspend, "USB_STORAGE");
|
||||||
|
|
||||||
Di conseguenza, nella tabella dei simboli del kernel ci sarà una voce
|
Di conseguenza, nella tabella dei simboli del kernel ci sarà una voce
|
||||||
rappresentata dalla struttura ``kernel_symbol`` che avrà il campo
|
rappresentata dalla struttura ``kernel_symbol`` che avrà il campo
|
||||||
@@ -94,7 +94,7 @@ dei nomi che contiene i simboli desiderati. Per esempio un modulo che
|
|||||||
usa il simbolo usb_stor_suspend deve importare lo spazio dei nomi
|
usa il simbolo usb_stor_suspend deve importare lo spazio dei nomi
|
||||||
USB_STORAGE usando la seguente dichiarazione::
|
USB_STORAGE usando la seguente dichiarazione::
|
||||||
|
|
||||||
MODULE_IMPORT_NS(USB_STORAGE);
|
MODULE_IMPORT_NS("USB_STORAGE");
|
||||||
|
|
||||||
Questo creerà un'etichetta ``modinfo`` per ogni spazio dei nomi
|
Questo creerà un'etichetta ``modinfo`` per ogni spazio dei nomi
|
||||||
importato. Un risvolto di questo fatto è che gli spazi dei
|
importato. Un risvolto di questo fatto è che gli spazi dei
|
||||||
@@ -107,7 +107,7 @@ modinfo::
|
|||||||
[...]
|
[...]
|
||||||
|
|
||||||
|
|
||||||
Si consiglia di posizionare la dichiarazione MODULE_IMPORT_NS() vicino
|
Si consiglia di posizionare la dichiarazione MODULE_IMPORT_NS("") vicino
|
||||||
ai metadati del modulo come MODULE_AUTHOR() o MODULE_LICENSE(). Fate
|
ai metadati del modulo come MODULE_AUTHOR() o MODULE_LICENSE(). Fate
|
||||||
riferimento alla sezione 5. per creare automaticamente le importazioni
|
riferimento alla sezione 5. per creare automaticamente le importazioni
|
||||||
mancanti.
|
mancanti.
|
||||||
@@ -131,7 +131,7 @@ emetterà un avviso.
|
|||||||
La mancanza di un'importazione può essere individuata facilmente al momento
|
La mancanza di un'importazione può essere individuata facilmente al momento
|
||||||
della compilazione. Infatti, modpost emetterà un avviso se il modulo usa
|
della compilazione. Infatti, modpost emetterà un avviso se il modulo usa
|
||||||
un simbolo da uno spazio dei nomi che non è stato importato.
|
un simbolo da uno spazio dei nomi che non è stato importato.
|
||||||
La dichiarazione MODULE_IMPORT_NS() viene solitamente aggiunta in un posto
|
La dichiarazione MODULE_IMPORT_NS("") viene solitamente aggiunta in un posto
|
||||||
ben definito (assieme agli altri metadati del modulo). Per facilitare
|
ben definito (assieme agli altri metadati del modulo). Per facilitare
|
||||||
la vita di chi scrive moduli (e i manutentori di sottosistemi), esistono uno
|
la vita di chi scrive moduli (e i manutentori di sottosistemi), esistono uno
|
||||||
script e un target make per correggere le importazioni mancanti. Questo può
|
script e un target make per correggere le importazioni mancanti. Questo può
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
要是一个预处理器符号。例如,要把符号 ``usb_stor_suspend`` 导出到命名空间 ``USB_STORAGE``,
|
要是一个预处理器符号。例如,要把符号 ``usb_stor_suspend`` 导出到命名空间 ``USB_STORAGE``,
|
||||||
请使用::
|
请使用::
|
||||||
|
|
||||||
EXPORT_SYMBOL_NS(usb_stor_suspend, USB_STORAGE);
|
EXPORT_SYMBOL_NS(usb_stor_suspend, "USB_STORAGE");
|
||||||
|
|
||||||
相应的 ksymtab 条目结构体 ``kernel_symbol`` 将有相应的成员 ``命名空间`` 集。
|
相应的 ksymtab 条目结构体 ``kernel_symbol`` 将有相应的成员 ``命名空间`` 集。
|
||||||
导出时未指明命名空间的符号将指向 ``NULL`` 。如果没有定义命名空间,则默认没有。
|
导出时未指明命名空间的符号将指向 ``NULL`` 。如果没有定义命名空间,则默认没有。
|
||||||
@@ -88,7 +88,7 @@
|
|||||||
表示它所使用的命名空间的符号。例如,一个使用usb_stor_suspend符号的
|
表示它所使用的命名空间的符号。例如,一个使用usb_stor_suspend符号的
|
||||||
模块,需要使用如下语句导入命名空间USB_STORAGE::
|
模块,需要使用如下语句导入命名空间USB_STORAGE::
|
||||||
|
|
||||||
MODULE_IMPORT_NS(USB_STORAGE);
|
MODULE_IMPORT_NS("USB_STORAGE");
|
||||||
|
|
||||||
这将在模块中为每个导入的命名空间创建一个 ``modinfo`` 标签。这也顺带
|
这将在模块中为每个导入的命名空间创建一个 ``modinfo`` 标签。这也顺带
|
||||||
使得可以用modinfo检查模块已导入的命名空间::
|
使得可以用modinfo检查模块已导入的命名空间::
|
||||||
@@ -99,7 +99,7 @@
|
|||||||
[...]
|
[...]
|
||||||
|
|
||||||
|
|
||||||
建议将 MODULE_IMPORT_NS() 语句添加到靠近其他模块元数据定义的地方,
|
建议将 MODULE_IMPORT_NS("") 语句添加到靠近其他模块元数据定义的地方,
|
||||||
如 MODULE_AUTHOR() 或 MODULE_LICENSE() 。关于自动创建缺失的导入
|
如 MODULE_AUTHOR() 或 MODULE_LICENSE() 。关于自动创建缺失的导入
|
||||||
语句的方法,请参考第5节。
|
语句的方法,请参考第5节。
|
||||||
|
|
||||||
@@ -118,7 +118,7 @@ EINVAL方式失败。要允许加载不满足这个前提条件的模块,可
|
|||||||
|
|
||||||
缺少命名空间的导入可以在构建时很容易被检测到。事实上,如果一个模块
|
缺少命名空间的导入可以在构建时很容易被检测到。事实上,如果一个模块
|
||||||
使用了一个命名空间的符号而没有导入它,modpost会发出警告。
|
使用了一个命名空间的符号而没有导入它,modpost会发出警告。
|
||||||
MODULE_IMPORT_NS()语句通常会被添加到一个明确的位置(和其他模块元
|
MODULE_IMPORT_NS("")语句通常会被添加到一个明确的位置(和其他模块元
|
||||||
数据一起)。为了使模块作者(和子系统维护者)的生活更加轻松,我们提
|
数据一起)。为了使模块作者(和子系统维护者)的生活更加轻松,我们提
|
||||||
供了一个脚本和make目标来修复丢失的导入。修复丢失的导入可以用::
|
供了一个脚本和make目标来修复丢失的导入。修复丢失的导入可以用::
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
#include "aes-ce-setkey.h"
|
#include "aes-ce-setkey.h"
|
||||||
|
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|
||||||
static int num_rounds(struct crypto_aes_ctx *ctx)
|
static int num_rounds(struct crypto_aes_ctx *ctx)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1048,7 +1048,7 @@ unregister_ciphers:
|
|||||||
|
|
||||||
#ifdef USE_V8_CRYPTO_EXTENSIONS
|
#ifdef USE_V8_CRYPTO_EXTENSIONS
|
||||||
module_cpu_feature_match(AES, aes_init);
|
module_cpu_feature_match(AES, aes_init);
|
||||||
EXPORT_SYMBOL_NS(ce_aes_mac_update, CRYPTO_INTERNAL);
|
EXPORT_SYMBOL_NS(ce_aes_mac_update, "CRYPTO_INTERNAL");
|
||||||
#else
|
#else
|
||||||
module_init(aes_init);
|
module_init(aes_init);
|
||||||
EXPORT_SYMBOL(neon_aes_ecb_encrypt);
|
EXPORT_SYMBOL(neon_aes_ecb_encrypt);
|
||||||
|
|||||||
@@ -74,4 +74,4 @@ MODULE_DESCRIPTION("IBM VMX cryptographic acceleration instructions "
|
|||||||
"support on Power 8");
|
"support on Power 8");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_VERSION("1.0.0");
|
MODULE_VERSION("1.0.0");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
@@ -1168,4 +1168,4 @@ MODULE_ALIAS_CRYPTO("aes-all");
|
|||||||
|
|
||||||
MODULE_DESCRIPTION("Rijndael (AES) Cipher Algorithm");
|
MODULE_DESCRIPTION("Rijndael (AES) Cipher Algorithm");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
@@ -354,7 +354,7 @@ bool cpu_cache_has_invalidate_memregion(void)
|
|||||||
{
|
{
|
||||||
return !cpu_feature_enabled(X86_FEATURE_HYPERVISOR);
|
return !cpu_feature_enabled(X86_FEATURE_HYPERVISOR);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_NS_GPL(cpu_cache_has_invalidate_memregion, DEVMEM);
|
EXPORT_SYMBOL_NS_GPL(cpu_cache_has_invalidate_memregion, "DEVMEM");
|
||||||
|
|
||||||
int cpu_cache_invalidate_memregion(int res_desc)
|
int cpu_cache_invalidate_memregion(int res_desc)
|
||||||
{
|
{
|
||||||
@@ -363,7 +363,7 @@ int cpu_cache_invalidate_memregion(int res_desc)
|
|||||||
wbinvd_on_all_cpus();
|
wbinvd_on_all_cpus();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_NS_GPL(cpu_cache_invalidate_memregion, DEVMEM);
|
EXPORT_SYMBOL_NS_GPL(cpu_cache_invalidate_memregion, "DEVMEM");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void __cpa_flush_all(void *arg)
|
static void __cpa_flush_all(void *arg)
|
||||||
|
|||||||
+1
-1
@@ -646,4 +646,4 @@ MODULE_DESCRIPTION("Adiantum length-preserving encryption mode");
|
|||||||
MODULE_LICENSE("GPL v2");
|
MODULE_LICENSE("GPL v2");
|
||||||
MODULE_AUTHOR("Eric Biggers <ebiggers@google.com>");
|
MODULE_AUTHOR("Eric Biggers <ebiggers@google.com>");
|
||||||
MODULE_ALIAS_CRYPTO("adiantum");
|
MODULE_ALIAS_CRYPTO("adiantum");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+1
-1
@@ -471,4 +471,4 @@ subsys_initcall(prng_mod_init);
|
|||||||
module_exit(prng_mod_fini);
|
module_exit(prng_mod_fini);
|
||||||
MODULE_ALIAS_CRYPTO("stdrng");
|
MODULE_ALIAS_CRYPTO("stdrng");
|
||||||
MODULE_ALIAS_CRYPTO("ansi_cprng");
|
MODULE_ALIAS_CRYPTO("ansi_cprng");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+1
-1
@@ -949,4 +949,4 @@ MODULE_ALIAS_CRYPTO("ccm_base");
|
|||||||
MODULE_ALIAS_CRYPTO("rfc4309");
|
MODULE_ALIAS_CRYPTO("rfc4309");
|
||||||
MODULE_ALIAS_CRYPTO("ccm");
|
MODULE_ALIAS_CRYPTO("ccm");
|
||||||
MODULE_ALIAS_CRYPTO("cbcmac");
|
MODULE_ALIAS_CRYPTO("cbcmac");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+3
-3
@@ -53,7 +53,7 @@ int crypto_cipher_setkey(struct crypto_cipher *tfm,
|
|||||||
|
|
||||||
return cia->cia_setkey(crypto_cipher_tfm(tfm), key, keylen);
|
return cia->cia_setkey(crypto_cipher_tfm(tfm), key, keylen);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_NS_GPL(crypto_cipher_setkey, CRYPTO_INTERNAL);
|
EXPORT_SYMBOL_NS_GPL(crypto_cipher_setkey, "CRYPTO_INTERNAL");
|
||||||
|
|
||||||
static inline void cipher_crypt_one(struct crypto_cipher *tfm,
|
static inline void cipher_crypt_one(struct crypto_cipher *tfm,
|
||||||
u8 *dst, const u8 *src, bool enc)
|
u8 *dst, const u8 *src, bool enc)
|
||||||
@@ -81,14 +81,14 @@ void crypto_cipher_encrypt_one(struct crypto_cipher *tfm,
|
|||||||
{
|
{
|
||||||
cipher_crypt_one(tfm, dst, src, true);
|
cipher_crypt_one(tfm, dst, src, true);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_NS_GPL(crypto_cipher_encrypt_one, CRYPTO_INTERNAL);
|
EXPORT_SYMBOL_NS_GPL(crypto_cipher_encrypt_one, "CRYPTO_INTERNAL");
|
||||||
|
|
||||||
void crypto_cipher_decrypt_one(struct crypto_cipher *tfm,
|
void crypto_cipher_decrypt_one(struct crypto_cipher *tfm,
|
||||||
u8 *dst, const u8 *src)
|
u8 *dst, const u8 *src)
|
||||||
{
|
{
|
||||||
cipher_crypt_one(tfm, dst, src, false);
|
cipher_crypt_one(tfm, dst, src, false);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_NS_GPL(crypto_cipher_decrypt_one, CRYPTO_INTERNAL);
|
EXPORT_SYMBOL_NS_GPL(crypto_cipher_decrypt_one, "CRYPTO_INTERNAL");
|
||||||
|
|
||||||
struct crypto_cipher *crypto_clone_cipher(struct crypto_cipher *cipher)
|
struct crypto_cipher *crypto_clone_cipher(struct crypto_cipher *cipher)
|
||||||
{
|
{
|
||||||
|
|||||||
+1
-1
@@ -313,4 +313,4 @@ module_exit(crypto_cmac_module_exit);
|
|||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_DESCRIPTION("CMAC keyed hash algorithm");
|
MODULE_DESCRIPTION("CMAC keyed hash algorithm");
|
||||||
MODULE_ALIAS_CRYPTO("cmac");
|
MODULE_ALIAS_CRYPTO("cmac");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+1
-1
@@ -357,4 +357,4 @@ MODULE_LICENSE("GPL");
|
|||||||
MODULE_DESCRIPTION("CTR block cipher mode of operation");
|
MODULE_DESCRIPTION("CTR block cipher mode of operation");
|
||||||
MODULE_ALIAS_CRYPTO("rfc3686");
|
MODULE_ALIAS_CRYPTO("rfc3686");
|
||||||
MODULE_ALIAS_CRYPTO("ctr");
|
MODULE_ALIAS_CRYPTO("ctr");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+1
-1
@@ -2151,4 +2151,4 @@ MODULE_DESCRIPTION("NIST SP800-90A Deterministic Random Bit Generator (DRBG) "
|
|||||||
CRYPTO_DRBG_HMAC_STRING
|
CRYPTO_DRBG_HMAC_STRING
|
||||||
CRYPTO_DRBG_CTR_STRING);
|
CRYPTO_DRBG_CTR_STRING);
|
||||||
MODULE_ALIAS_CRYPTO("stdrng");
|
MODULE_ALIAS_CRYPTO("stdrng");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+1
-1
@@ -225,4 +225,4 @@ module_exit(crypto_ecb_module_exit);
|
|||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_DESCRIPTION("ECB block cipher mode of operation");
|
MODULE_DESCRIPTION("ECB block cipher mode of operation");
|
||||||
MODULE_ALIAS_CRYPTO("ecb");
|
MODULE_ALIAS_CRYPTO("ecb");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+1
-1
@@ -649,4 +649,4 @@ module_exit(essiv_module_exit);
|
|||||||
MODULE_DESCRIPTION("ESSIV skcipher/aead wrapper for block encryption");
|
MODULE_DESCRIPTION("ESSIV skcipher/aead wrapper for block encryption");
|
||||||
MODULE_LICENSE("GPL v2");
|
MODULE_LICENSE("GPL v2");
|
||||||
MODULE_ALIAS_CRYPTO("essiv");
|
MODULE_ALIAS_CRYPTO("essiv");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+1
-1
@@ -576,4 +576,4 @@ module_exit(hctr2_module_exit);
|
|||||||
MODULE_DESCRIPTION("HCTR2 length-preserving encryption mode");
|
MODULE_DESCRIPTION("HCTR2 length-preserving encryption mode");
|
||||||
MODULE_LICENSE("GPL v2");
|
MODULE_LICENSE("GPL v2");
|
||||||
MODULE_ALIAS_CRYPTO("hctr2");
|
MODULE_ALIAS_CRYPTO("hctr2");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+1
-1
@@ -317,4 +317,4 @@ MODULE_LICENSE("Dual BSD/GPL");
|
|||||||
MODULE_AUTHOR("Stephan Mueller <smueller@chronox.de>");
|
MODULE_AUTHOR("Stephan Mueller <smueller@chronox.de>");
|
||||||
MODULE_DESCRIPTION("Key Wrapping (RFC3394 / NIST SP800-38F)");
|
MODULE_DESCRIPTION("Key Wrapping (RFC3394 / NIST SP800-38F)");
|
||||||
MODULE_ALIAS_CRYPTO("kw");
|
MODULE_ALIAS_CRYPTO("kw");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
+1
-1
@@ -192,4 +192,4 @@ module_exit(crypto_pcbc_module_exit);
|
|||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
MODULE_DESCRIPTION("PCBC block cipher mode of operation");
|
MODULE_DESCRIPTION("PCBC block cipher mode of operation");
|
||||||
MODULE_ALIAS_CRYPTO("pcbc");
|
MODULE_ALIAS_CRYPTO("pcbc");
|
||||||
MODULE_IMPORT_NS(CRYPTO_INTERNAL);
|
MODULE_IMPORT_NS("CRYPTO_INTERNAL");
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user