crypto: tcrypt - Use pr_info/pr_err
authorAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Wed, 26 Oct 2022 19:16:14 +0000 (12:16 -0700)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 4 Nov 2022 09:33:22 +0000 (17:33 +0800)
Currently, there's mixed use of printk() and pr_info()/pr_err(). The latter
prints the module name (because pr_fmt() is defined so) but the former does
not. As a result there's inconsistency in the printed output. For example:

modprobe mode=211:

[...] test 0 (160 bit key, 16 byte blocks): 1 operation in 2320 cycles (16 bytes)
[...] test 1 (160 bit key, 64 byte blocks): 1 operation in 2336 cycles (64 bytes)

modprobe mode=215:

[...] tcrypt: test 0 (160 bit key, 16 byte blocks): 1 operation in 2173 cycles (16 bytes)
[...] tcrypt: test 1 (160 bit key, 64 byte blocks): 1 operation in 2241 cycles (64 bytes)

Replace all instances of printk() with pr_info()/pr_err() so that the
module name is printed consistently.

Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/tcrypt.c

index 2822405a0d45dee132b934e67397a8ab6651f84d..78b236bc9cd81a6b4dd7bae4eae5da282cf47f15 100644 (file)
@@ -575,8 +575,8 @@ static void test_aead_speed(const char *algo, int enc, unsigned int secs,
        }
 
        crypto_init_wait(&wait);
-       printk(KERN_INFO "\ntesting speed of %s (%s) %s\n", algo,
-                       get_driver_name(crypto_aead, tfm), e);
+       pr_info("\ntesting speed of %s (%s) %s\n", algo,
+               get_driver_name(crypto_aead, tfm), e);
 
        req = aead_request_alloc(tfm, GFP_KERNEL);
        if (!req) {
@@ -624,8 +624,8 @@ static void test_aead_speed(const char *algo, int enc, unsigned int secs,
                                memset(iv, 0xff, iv_len);
 
                        crypto_aead_clear_flags(tfm, ~0);
-                       printk(KERN_INFO "test %u (%d bit key, %d byte blocks): ",
-                                       i, *keysize * 8, bs);
+                       pr_info("test %u (%d bit key, %d byte blocks): ",
+                               i, *keysize * 8, bs);
 
                        memset(tvmem[0], 0xff, PAGE_SIZE);
 
@@ -877,8 +877,8 @@ static void test_ahash_speed_common(const char *algo, unsigned int secs,
                return;
        }
 
-       printk(KERN_INFO "\ntesting speed of async %s (%s)\n", algo,
-                       get_driver_name(crypto_ahash, tfm));
+       pr_info("\ntesting speed of async %s (%s)\n", algo,
+               get_driver_name(crypto_ahash, tfm));
 
        if (crypto_ahash_digestsize(tfm) > MAX_DIGEST_SIZE) {
                pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm),
@@ -2885,7 +2885,7 @@ static int __init tcrypt_mod_init(void)
        err = do_test(alg, type, mask, mode, num_mb);
 
        if (err) {
-               printk(KERN_ERR "tcrypt: one or more tests failed!\n");
+               pr_err("one or more tests failed!\n");
                goto err_free_tv;
        } else {
                pr_debug("all tests passed\n");