summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Bracey <kevin@bracey.fi>2022-01-18 12:23:50 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2022-01-31 11:21:43 +1100
commit1b3dce8b8ab30bb9f1401acefa08a47dc46f0813 (patch)
tree00bede1dd41462954f45db6f5bc8eb7e89fe12a3
parent5cb29be47d44d6090f1cdc21f439439dc43b471f (diff)
lib/crc32test: correct printed bytes count
crc32c_le self test had a stray multiply by two inherited from the crc32_le+crc32_be test loop. Signed-off-by: Kevin Bracey <kevin@bracey.fi> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--lib/crc32test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crc32test.c b/lib/crc32test.c
index 61ddce2cff77..9b4af79412c4 100644
--- a/lib/crc32test.c
+++ b/lib/crc32test.c
@@ -675,7 +675,7 @@ static int __init crc32c_test(void)
/* pre-warm the cache */
for (i = 0; i < 100; i++) {
- bytes += 2*test[i].length;
+ bytes += test[i].length;
crc ^= __crc32c_le(test[i].crc, test_buf +
test[i].start, test[i].length);