diff options
author | Brian Behlendorf <[email protected]> | 2020-01-02 18:08:45 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2020-01-02 18:08:45 -0800 |
commit | cc618d179e87fa13b67c98e93cf92569d995dd20 (patch) | |
tree | f4a7a85cf15de7b148b3d0bc86b8d89482712aa3 /module | |
parent | 54007c791f74c4b0bc84d3837e5c4fbec6c9cfc8 (diff) |
Static symbols exported by ICP
The crypto_cipher_init_prov and crypto_cipher_init are declared static
and should not be exported by the ICP. This resolves the following
warnings observed when building with the 5.4 kernel.
WARNING: "crypto_cipher_init" [.../icp] is a static EXPORT_SYMBOL
WARNING: "crypto_cipher_init_prov" [.../icp] is a static EXPORT_SYMBOL
Reviewed-by: Tony Hutter <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #9791
Diffstat (limited to 'module')
-rw-r--r-- | module/icp/api/kcf_cipher.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/module/icp/api/kcf_cipher.c b/module/icp/api/kcf_cipher.c index 1c9f6873e..d66c1aafb 100644 --- a/module/icp/api/kcf_cipher.c +++ b/module/icp/api/kcf_cipher.c @@ -916,8 +916,6 @@ crypto_decrypt_single(crypto_context_t context, crypto_data_t *ciphertext, } #if defined(_KERNEL) -EXPORT_SYMBOL(crypto_cipher_init_prov); -EXPORT_SYMBOL(crypto_cipher_init); EXPORT_SYMBOL(crypto_encrypt_prov); EXPORT_SYMBOL(crypto_encrypt); EXPORT_SYMBOL(crypto_encrypt_init_prov); |