Commit c51b6c81 authored by Herbert Xu's avatar Herbert Xu

crypto: api - Export crypto_alg_lookup instead of __crypto_alg_lookup

Since the only user of __crypto_alg_lookup is doing exactly what
crypto_alg_lookup does, we can now the latter in lieu of the former.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent b6d44341
...@@ -27,9 +27,7 @@ void crypto_larval_error(const char *name, u32 type, u32 mask) ...@@ -27,9 +27,7 @@ void crypto_larval_error(const char *name, u32 type, u32 mask)
{ {
struct crypto_alg *alg; struct crypto_alg *alg;
down_read(&crypto_alg_sem); alg = crypto_alg_lookup(name, type, mask);
alg = __crypto_alg_lookup(name, type, mask);
up_read(&crypto_alg_sem);
if (alg) { if (alg) {
if (crypto_is_larval(alg)) { if (crypto_is_larval(alg)) {
......
...@@ -55,7 +55,8 @@ void crypto_mod_put(struct crypto_alg *alg) ...@@ -55,7 +55,8 @@ void crypto_mod_put(struct crypto_alg *alg)
} }
EXPORT_SYMBOL_GPL(crypto_mod_put); EXPORT_SYMBOL_GPL(crypto_mod_put);
struct crypto_alg *__crypto_alg_lookup(const char *name, u32 type, u32 mask) static struct crypto_alg *__crypto_alg_lookup(const char *name, u32 type,
u32 mask)
{ {
struct crypto_alg *q, *alg = NULL; struct crypto_alg *q, *alg = NULL;
int best = -2; int best = -2;
...@@ -92,7 +93,6 @@ struct crypto_alg *__crypto_alg_lookup(const char *name, u32 type, u32 mask) ...@@ -92,7 +93,6 @@ struct crypto_alg *__crypto_alg_lookup(const char *name, u32 type, u32 mask)
return alg; return alg;
} }
EXPORT_SYMBOL_GPL(__crypto_alg_lookup);
static void crypto_larval_destroy(struct crypto_alg *alg) static void crypto_larval_destroy(struct crypto_alg *alg)
{ {
...@@ -165,8 +165,7 @@ static struct crypto_alg *crypto_larval_wait(struct crypto_alg *alg) ...@@ -165,8 +165,7 @@ static struct crypto_alg *crypto_larval_wait(struct crypto_alg *alg)
return alg; return alg;
} }
static struct crypto_alg *crypto_alg_lookup(const char *name, u32 type, struct crypto_alg *crypto_alg_lookup(const char *name, u32 type, u32 mask)
u32 mask)
{ {
struct crypto_alg *alg; struct crypto_alg *alg;
...@@ -176,6 +175,7 @@ static struct crypto_alg *crypto_alg_lookup(const char *name, u32 type, ...@@ -176,6 +175,7 @@ static struct crypto_alg *crypto_alg_lookup(const char *name, u32 type,
return alg; return alg;
} }
EXPORT_SYMBOL_GPL(crypto_alg_lookup);
struct crypto_alg *crypto_larval_lookup(const char *name, u32 type, u32 mask) struct crypto_alg *crypto_larval_lookup(const char *name, u32 type, u32 mask)
{ {
......
...@@ -82,7 +82,7 @@ static inline unsigned int crypto_compress_ctxsize(struct crypto_alg *alg) ...@@ -82,7 +82,7 @@ static inline unsigned int crypto_compress_ctxsize(struct crypto_alg *alg)
} }
struct crypto_alg *crypto_mod_get(struct crypto_alg *alg); struct crypto_alg *crypto_mod_get(struct crypto_alg *alg);
struct crypto_alg *__crypto_alg_lookup(const char *name, u32 type, u32 mask); struct crypto_alg *crypto_alg_lookup(const char *name, u32 type, u32 mask);
struct crypto_alg *crypto_alg_mod_lookup(const char *name, u32 type, u32 mask); struct crypto_alg *crypto_alg_mod_lookup(const char *name, u32 type, u32 mask);
int crypto_init_digest_ops(struct crypto_tfm *tfm); int crypto_init_digest_ops(struct crypto_tfm *tfm);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment