mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
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>
This commit is contained in:
parent
5cb29be47d
commit
1b3dce8b8a
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user