In the vmx AES init routines 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. Using 'cryptsetup benchmark' the removal of the
printk() leads to a ~5x speedup for aes-cbc decryption.
So remove them.
Fixes: b09e1f4d76dd ("crypto: vmx - Adding AES routines for VMX module") Fixes: bfcad189a0f3 ("crypto: vmx - Adding CBC routines for VMX module") Fixes: 9132a7d7c560 ("crypto: vmx - Adding CTR routines for VMX module") Fixes: 17be19a0f4f7 ("crypto: vmx - Adding GHASH routines for VMX module") Cc: stable@vger.kernel.org # v4.1+ Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>