OSDN Git Service

crypto: caam - print messages in caam_dump_sg at debug level
authorSascha Hauer <s.hauer@pengutronix.de>
Thu, 23 May 2019 08:50:30 +0000 (10:50 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 30 May 2019 07:35:45 +0000 (15:35 +0800)
caam_dump_sg() is only compiled in when DEBUG is defined, hence the
messages are debug messages. Remove the @level argument from
caam_dump_sg() and print all messages at debug level.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/caam/caamalg.c
drivers/crypto/caam/caamalg_qi.c
drivers/crypto/caam/caamalg_qi2.c
drivers/crypto/caam/error.c
drivers/crypto/caam/error.h

index 1598ce7..1efa6f5 100644 (file)
@@ -1001,7 +1001,7 @@ static void skcipher_encrypt_done(struct device *jrdev, u32 *desc, u32 err,
                                     DUMP_PREFIX_ADDRESS, 16, 4, req->iv,
                                     edesc->src_nents > 1 ? 100 : ivsize, 1);
 
-       caam_dump_sg(KERN_ERR, "dst    @" __stringify(__LINE__)": ",
+       caam_dump_sg("dst    @" __stringify(__LINE__)": ",
                     DUMP_PREFIX_ADDRESS, 16, 4, req->dst,
                     edesc->dst_nents > 1 ? 100 : req->cryptlen, 1);
 
@@ -1028,7 +1028,7 @@ static void skcipher_decrypt_done(struct device *jrdev, u32 *desc, u32 err,
 
        print_hex_dump_debug("dstiv  @"__stringify(__LINE__)": ",
                             DUMP_PREFIX_ADDRESS, 16, 4, req->iv, ivsize, 1);
-       caam_dump_sg(KERN_ERR, "dst    @" __stringify(__LINE__)": ",
+       caam_dump_sg("dst    @" __stringify(__LINE__)": ",
                     DUMP_PREFIX_ADDRESS, 16, 4, req->dst,
                     edesc->dst_nents > 1 ? 100 : req->cryptlen, 1);
 
@@ -1236,7 +1236,7 @@ static void init_skcipher_job(struct skcipher_request *req,
        dev_dbg(jrdev, "asked=%d, cryptlen%d\n",
               (int)edesc->src_nents > 1 ? 100 : req->cryptlen, req->cryptlen);
 
-       caam_dump_sg(KERN_ERR, "src    @" __stringify(__LINE__)": ",
+       caam_dump_sg("src    @" __stringify(__LINE__)": ",
                     DUMP_PREFIX_ADDRESS, 16, 4, req->src,
                     edesc->src_nents > 1 ? 100 : req->cryptlen, 1);
 
@@ -1606,7 +1606,7 @@ static int aead_decrypt(struct aead_request *req)
        u32 *desc;
        int ret = 0;
 
-       caam_dump_sg(KERN_ERR, "dec src@" __stringify(__LINE__)": ",
+       caam_dump_sg("dec src@" __stringify(__LINE__)": ",
                     DUMP_PREFIX_ADDRESS, 16, 4, req->src,
                     req->assoclen + req->cryptlen, 1);
 
index 742b111..490a2bb 100644 (file)
@@ -1200,7 +1200,7 @@ static void skcipher_done(struct caam_drv_req *drv_req, u32 status)
        print_hex_dump_debug("dstiv  @" __stringify(__LINE__)": ",
                             DUMP_PREFIX_ADDRESS, 16, 4, req->iv,
                             edesc->src_nents > 1 ? 100 : ivsize, 1);
-       caam_dump_sg(KERN_ERR, "dst    @" __stringify(__LINE__)": ",
+       caam_dump_sg("dst    @" __stringify(__LINE__)": ",
                     DUMP_PREFIX_ADDRESS, 16, 4, req->dst,
                     edesc->dst_nents > 1 ? 100 : req->cryptlen, 1);
 
index c5d869e..2621d65 100644 (file)
@@ -1366,7 +1366,7 @@ static void skcipher_encrypt_done(void *cbk_ctx, u32 status)
        print_hex_dump_debug("dstiv  @" __stringify(__LINE__)": ",
                             DUMP_PREFIX_ADDRESS, 16, 4, req->iv,
                             edesc->src_nents > 1 ? 100 : ivsize, 1);
-       caam_dump_sg(KERN_DEBUG, "dst    @" __stringify(__LINE__)": ",
+       caam_dump_sg("dst    @" __stringify(__LINE__)": ",
                     DUMP_PREFIX_ADDRESS, 16, 4, req->dst,
                     edesc->dst_nents > 1 ? 100 : req->cryptlen, 1);
 
@@ -1404,7 +1404,7 @@ static void skcipher_decrypt_done(void *cbk_ctx, u32 status)
        print_hex_dump_debug("dstiv  @" __stringify(__LINE__)": ",
                             DUMP_PREFIX_ADDRESS, 16, 4, req->iv,
                             edesc->src_nents > 1 ? 100 : ivsize, 1);
-       caam_dump_sg(KERN_DEBUG, "dst    @" __stringify(__LINE__)": ",
+       caam_dump_sg("dst    @" __stringify(__LINE__)": ",
                     DUMP_PREFIX_ADDRESS, 16, 4, req->dst,
                     edesc->dst_nents > 1 ? 100 : req->cryptlen, 1);
 
index 4da844e..4f0d458 100644 (file)
@@ -13,7 +13,7 @@
 #ifdef DEBUG
 #include <linux/highmem.h>
 
-void caam_dump_sg(const char *level, const char *prefix_str, int prefix_type,
+void caam_dump_sg(const char *prefix_str, int prefix_type,
                  int rowsize, int groupsize, struct scatterlist *sg,
                  size_t tlen, bool ascii)
 {
@@ -35,15 +35,15 @@ void caam_dump_sg(const char *level, const char *prefix_str, int prefix_type,
 
                buf = it_page + it->offset;
                len = min_t(size_t, tlen, it->length);
-               print_hex_dump(level, prefix_str, prefix_type, rowsize,
-                              groupsize, buf, len, ascii);
+               print_hex_dump_debug(prefix_str, prefix_type, rowsize,
+                                    groupsize, buf, len, ascii);
                tlen -= len;
 
                kunmap_atomic(it_page);
        }
 }
 #else
-void caam_dump_sg(const char *level, const char *prefix_str, int prefix_type,
+void caam_dump_sg(const char *prefix_str, int prefix_type,
                  int rowsize, int groupsize, struct scatterlist *sg,
                  size_t tlen, bool ascii)
 {}
index 8c6b83e..d9726e6 100644 (file)
@@ -17,7 +17,7 @@ void caam_strstatus(struct device *dev, u32 status, bool qi_v2);
 #define caam_jr_strstatus(jrdev, status) caam_strstatus(jrdev, status, false)
 #define caam_qi2_strstatus(qidev, status) caam_strstatus(qidev, status, true)
 
-void caam_dump_sg(const char *level, const char *prefix_str, int prefix_type,
+void caam_dump_sg(const char *prefix_str, int prefix_type,
                  int rowsize, int groupsize, struct scatterlist *sg,
                  size_t tlen, bool ascii);