mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-07 15:01:44 +00:00
crypto: user - Add crypto_stats_init
This patch add the crypto_stats_init() function. This will permit to remove some ifdef from __crypto_register_alg(). Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
44f13133cb
commit
1f6669b971
2 changed files with 10 additions and 3 deletions
|
@ -614,6 +614,7 @@ struct crypto_alg {
|
|||
} CRYPTO_MINALIGN_ATTR;
|
||||
|
||||
#ifdef CONFIG_CRYPTO_STATS
|
||||
void crypto_stats_init(struct crypto_alg *alg);
|
||||
void crypto_stats_get(struct crypto_alg *alg);
|
||||
void crypto_stats_ablkcipher_encrypt(unsigned int nbytes, int ret, struct crypto_alg *alg);
|
||||
void crypto_stats_ablkcipher_decrypt(unsigned int nbytes, int ret, struct crypto_alg *alg);
|
||||
|
@ -635,6 +636,8 @@ void crypto_stats_rng_generate(struct crypto_alg *alg, unsigned int dlen, int re
|
|||
void crypto_stats_skcipher_encrypt(unsigned int cryptlen, int ret, struct crypto_alg *alg);
|
||||
void crypto_stats_skcipher_decrypt(unsigned int cryptlen, int ret, struct crypto_alg *alg);
|
||||
#else
|
||||
static inline void crypto_stats_init(struct crypto_alg *alg)
|
||||
{}
|
||||
static inline void crypto_stats_get(struct crypto_alg *alg)
|
||||
{}
|
||||
static inline void crypto_stats_ablkcipher_encrypt(unsigned int nbytes, int ret, struct crypto_alg *alg)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue