From: Tim Chen Subject: [PATCH 3/3 v2] Added speed test in tcrypt for crc32c Date: Thu, 27 Sep 2012 15:44:24 -0700 Message-ID: <1348785864.17632.18.camel@schen9-DESK> References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: Suresh Siddha , Chaohong Guo , Austin Zhang , linux-kernel , linux-crypto@vger.kernel.org, James Guilford , Wajdi Feghali , Min Li , David Cote , Fengguang Wu To: Herbert Xu , "H. Peter Anvin" , "David S. Miller" Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-crypto.vger.kernel.org This patch adds a test case in tcrypt to perform speed test for crc32c checksum calculation. Signed-off-by: Tim Chen --- crypto/tcrypt.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index 581081d..6deb77f 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -1437,6 +1437,10 @@ static int do_test(int m) test_hash_speed("ghash-generic", sec, hash_speed_template_16); if (mode > 300 && mode < 400) break; + case 319: + test_hash_speed("crc32c", sec, generic_hash_speed_template); + if (mode > 300 && mode < 400) break; + case 399: break; -- 1.7.7.6