From: checkpatch@dpdk.org
To: test-report@dpdk.org
Cc: Jay Zhou <jianjay.zhou@huawei.com>
Subject: [dpdk-test-report] |WARNING| pw36472 [PATCH v3 3/7] cryptodev/virtio: core code of crypto devices
Date: Sun, 25 Mar 2018 10:37:25 +0200 (CEST) [thread overview]
Message-ID: <20180325083725.5FD12AAC9@dpdk.org> (raw)
In-Reply-To: <ce70a4a8a8073924f8b4545ac535940f6b2e1407.1521964379.git.jianjay.zhou@huawei.com>
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/36472
_coding style issues_
ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#44: FILE: drivers/crypto/virtio/virtio_crypto_capabilities.h:8:
+#define VIRTIO_SYM_CAPABILITIES \
+ { /* SHA1 HMAC */ \
+ .op = RTE_CRYPTO_OP_TYPE_SYMMETRIC, \
+ {.sym = { \
+ .xform_type = RTE_CRYPTO_SYM_XFORM_AUTH, \
+ {.auth = { \
+ .algo = RTE_CRYPTO_AUTH_SHA1_HMAC, \
+ .block_size = 64, \
+ .key_size = { \
+ .min = 1, \
+ .max = 64, \
+ .increment = 1 \
+ }, \
+ .digest_size = { \
+ .min = 1, \
+ .max = 20, \
+ .increment = 1 \
+ }, \
+ .iv_size = { 0 } \
+ }, } \
+ }, } \
+ }, \
+ { /* AES CBC */ \
+ .op = RTE_CRYPTO_OP_TYPE_SYMMETRIC, \
+ {.sym = { \
+ .xform_type = RTE_CRYPTO_SYM_XFORM_CIPHER, \
+ {.cipher = { \
+ .algo = RTE_CRYPTO_CIPHER_AES_CBC, \
+ .block_size = 16, \
+ .key_size = { \
+ .min = 16, \
+ .max = 32, \
+ .increment = 8 \
+ }, \
+ .iv_size = { \
+ .min = 16, \
+ .max = 16, \
+ .increment = 0 \
+ } \
+ }, } \
+ }, } \
+ }
total: 1 errors, 0 warnings, 2210 lines checked
parent reply other threads:[~2018-03-25 8:37 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <ce70a4a8a8073924f8b4545ac535940f6b2e1407.1521964379.git.jianjay.zhou@huawei.com>]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180325083725.5FD12AAC9@dpdk.org \
--to=checkpatch@dpdk.org \
--cc=jianjay.zhou@huawei.com \
--cc=test-report@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).