Skip to content

Commit 730f23b

Browse files
mpeherbertx
authored andcommitted
crypto: vmx - Remove overly verbose printk from AES XTS init
In p8_aes_xts_init() we do a printk(KERN_INFO ...) to report the fallback implementation we're using. However with a slow console this can significantly affect the speed of crypto operations. So remove it. Fixes: c07f5d3 ("crypto: vmx - Adding support for XTS") Cc: [email protected] # v4.8+ Signed-off-by: Michael Ellerman <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
1 parent 1411b52 commit 730f23b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

drivers/crypto/vmx/aes_xts.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ static int p8_aes_xts_init(struct crypto_tfm *tfm)
5353
alg, PTR_ERR(fallback));
5454
return PTR_ERR(fallback);
5555
}
56-
printk(KERN_INFO "Using '%s' as fallback implementation.\n",
57-
crypto_skcipher_driver_name(fallback));
5856

5957
crypto_skcipher_set_flags(
6058
fallback,

0 commit comments

Comments
 (0)