mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
crypto: api - Move MODULE_ALIAS_CRYPTO to algapi.h
This is part of the low-level API and should not be exposed to top-level Crypto API users. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
9807e49b6a
commit
0c0edf6168
@ -34,6 +34,19 @@
|
|||||||
|
|
||||||
#define CRYPTO_DMA_PADDING ((CRYPTO_DMA_ALIGN - 1) & ~(CRYPTO_MINALIGN - 1))
|
#define CRYPTO_DMA_PADDING ((CRYPTO_DMA_ALIGN - 1) & ~(CRYPTO_MINALIGN - 1))
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Autoloaded crypto modules should only use a prefixed name to avoid allowing
|
||||||
|
* arbitrary modules to be loaded. Loading from userspace may still need the
|
||||||
|
* unprefixed names, so retains those aliases as well.
|
||||||
|
* This uses __MODULE_INFO directly instead of MODULE_ALIAS because pre-4.3
|
||||||
|
* gcc (e.g. avr32 toolchain) uses __LINE__ for uniqueness, and this macro
|
||||||
|
* expands twice on the same line. Instead, use a separate base name for the
|
||||||
|
* alias.
|
||||||
|
*/
|
||||||
|
#define MODULE_ALIAS_CRYPTO(name) \
|
||||||
|
__MODULE_INFO(alias, alias_userspace, name); \
|
||||||
|
__MODULE_INFO(alias, alias_crypto, "crypto-" name)
|
||||||
|
|
||||||
struct crypto_aead;
|
struct crypto_aead;
|
||||||
struct crypto_instance;
|
struct crypto_instance;
|
||||||
struct module;
|
struct module;
|
||||||
|
@ -20,19 +20,6 @@
|
|||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/completion.h>
|
#include <linux/completion.h>
|
||||||
|
|
||||||
/*
|
|
||||||
* Autoloaded crypto modules should only use a prefixed name to avoid allowing
|
|
||||||
* arbitrary modules to be loaded. Loading from userspace may still need the
|
|
||||||
* unprefixed names, so retains those aliases as well.
|
|
||||||
* This uses __MODULE_INFO directly instead of MODULE_ALIAS because pre-4.3
|
|
||||||
* gcc (e.g. avr32 toolchain) uses __LINE__ for uniqueness, and this macro
|
|
||||||
* expands twice on the same line. Instead, use a separate base name for the
|
|
||||||
* alias.
|
|
||||||
*/
|
|
||||||
#define MODULE_ALIAS_CRYPTO(name) \
|
|
||||||
__MODULE_INFO(alias, alias_userspace, name); \
|
|
||||||
__MODULE_INFO(alias, alias_crypto, "crypto-" name)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Algorithm masks and types.
|
* Algorithm masks and types.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user