[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20091126004226.GA32230@youquan-linux.bj.intel.com>
Date: Wed, 25 Nov 2009 19:42:27 -0500
From: "Youquan,Song" <youquan.song@...ux.intel.com>
To: herbert@...dor.apana.org.au
Cc: linux-kernel@...r.kernel.org, ying.huang@...el.com,
kent.liu@...el.com, youquan.song@...el.com
Subject: [PATCH]crypto: Fix aesni algorithm implementation without test
when load aesni-intel driver,kernel will report no test for some algorithm
with AES-NI. The strange information as following:
alg: No test for __aes-aesni (__driver-aes-aesni)
alg: No test for __ecb-aes-aesni (__driver-ecb-aes-aesni)
alg: No test for __cbc-aes-aesni (__driver-cbc-aes-aesni)
alg: No test for __ecb-aes-aesni (cryptd(__driver-ecb-aes-aesni)
crypto_alg's cra_name is use to descript algorithm itself, do not care the
concrete implement. So this patch unify them and also can fix the algorithm
implementation without test.
Signed-off-by: Youquan, Song <youquan.song@...el.com>
---
diff --git a/arch/x86/crypto/aesni-intel_glue.c b/arch/x86/crypto/aesni-intel_glue.c
index 585edeb..455bbf3 100644
--- a/arch/x86/crypto/aesni-intel_glue.c
+++ b/arch/x86/crypto/aesni-intel_glue.c
@@ -161,7 +161,7 @@ static void __aes_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src)
}
static struct crypto_alg __aesni_alg = {
- .cra_name = "__aes-aesni",
+ .cra_name = "aes",
.cra_driver_name = "__driver-aes-aesni",
.cra_priority = 0,
.cra_flags = CRYPTO_ALG_TYPE_CIPHER,
@@ -230,7 +230,7 @@ static int ecb_decrypt(struct blkcipher_desc *desc,
}
static struct crypto_alg blk_ecb_alg = {
- .cra_name = "__ecb-aes-aesni",
+ .cra_name = "ecb(aes)",
.cra_driver_name = "__driver-ecb-aes-aesni",
.cra_priority = 0,
.cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
@@ -300,7 +300,7 @@ static int cbc_decrypt(struct blkcipher_desc *desc,
}
static struct crypto_alg blk_cbc_alg = {
- .cra_name = "__cbc-aes-aesni",
+ .cra_name = "cbc(aes)",
.cra_driver_name = "__driver-cbc-aes-aesni",
.cra_priority = 0,
.cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists