dect
/
linux-2.6
Archived
13
0
Fork 0

crypto, xor: Sanitize checksumming function selection output

Currently, it says

[    1.015541] xor: automatically using best checksumming function: generic_sse
[    1.040769]    generic_sse:  6679.000 MB/sec
[    1.045377] xor: using function: generic_sse (6679.000 MB/sec)

and repeats the function name three times unnecessarily. Change it into

[    1.015115] xor: automatically using best checksumming function:
[    1.040794]    generic_sse:  6680.000 MB/sec

and save us a line in dmesg.

No functional change.

Cc: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Borislav Petkov 2012-04-04 15:06:10 +02:00 committed by Herbert Xu
parent a0ea0f6d17
commit d788fec855
1 changed files with 3 additions and 2 deletions

View File

@ -129,9 +129,9 @@ calibrate_xor_blocks(void)
if (fastest) {
printk(KERN_INFO "xor: automatically using best "
"checksumming function: %s\n",
fastest->name);
"checksumming function:\n");
xor_speed(fastest);
goto out;
} else {
printk(KERN_INFO "xor: measuring software checksum speed\n");
XOR_TRY_TEMPLATES;
@ -146,6 +146,7 @@ calibrate_xor_blocks(void)
#undef xor_speed
out:
free_pages((unsigned long)b1, 2);
active_template = fastest;