X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=crypto%2Fapi.c;h=335abea14f19708b2165222ad2fb4f00fcd8f6e5;hb=de8039fccea54eb496dfb3872c8fc25c99065ad3;hp=37c4c7213de070c9fbda60db25e92f1283cdcb6e;hpb=8637c1da33ee7150c77bfd800d22a993979c4903;p=firefly-linux-kernel-4.4.55.git diff --git a/crypto/api.c b/crypto/api.c index 37c4c7213de0..335abea14f19 100644 --- a/crypto/api.c +++ b/crypto/api.c @@ -216,11 +216,11 @@ struct crypto_alg *crypto_larval_lookup(const char *name, u32 type, u32 mask) alg = crypto_alg_lookup(name, type, mask); if (!alg) { - request_module("%s", name); + request_module("crypto-%s", name); if (!((type ^ CRYPTO_ALG_NEED_FALLBACK) & mask & CRYPTO_ALG_NEED_FALLBACK)) - request_module("%s-all", name); + request_module("crypto-%s-all", name); alg = crypto_alg_lookup(name, type, mask); }