From: Herbert Xu Date: Tue, 17 Feb 2009 12:18:34 +0000 (+0800) Subject: crypto: api - crypto_alg_mod_lookup either tested or untested X-Git-Tag: v2.6.30-rc1~677^2~17 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ff753308d2f70f210ba468492cd9a01274d9d7ce;p=karo-tx-linux.git crypto: api - crypto_alg_mod_lookup either tested or untested As it stands crypto_alg_mod_lookup will search either tested or untested algorithms, but never both at the same time. However, we need exactly that when constructing givcipher and aead so this patch adds support for that by setting the tested bit in type but clearing it in mask. This combination is currently unused. Signed-off-by: Herbert Xu --- diff --git a/crypto/api.c b/crypto/api.c index efe77df6863f..56b6e0e66311 100644 --- a/crypto/api.c +++ b/crypto/api.c @@ -244,7 +244,7 @@ struct crypto_alg *crypto_alg_mod_lookup(const char *name, u32 type, u32 mask) struct crypto_alg *larval; int ok; - if (!(mask & CRYPTO_ALG_TESTED)) { + if (!((type | mask) & CRYPTO_ALG_TESTED)) { type |= CRYPTO_ALG_TESTED; mask |= CRYPTO_ALG_TESTED; }