From: checkpatch@dpdk.org
To: test-report@dpdk.org
Cc: Jasvinder Singh <jasvinder.singh@intel.com>
Subject: [dpdk-test-report] |WARNING| pw41211 [v2] [PATCH 17/22] net/softnic: add cli to read pipeline port and table stats
Date: Fri, 15 Jun 2018 18:54:47 +0200 (CEST) [thread overview]
Message-ID: <20180615165447.6ADE41C10F@dpdk.org> (raw)
In-Reply-To: <20180615165224.25004-18-jasvinder.singh@intel.com>
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/41211
_coding style issues_
CHECK:CAMELCASE: Avoid CamelCase: <PRIu64>
#37: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:1495:
+ "Pkts in: %" PRIu64 "
" \
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens != 7'
#53: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:1511:
+ if ((n_tokens != 7) && (n_tokens != 8)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens != 8'
#53: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:1511:
+ if ((n_tokens != 7) && (n_tokens != 8)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens != 7'
#138: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:1685:
+ if ((n_tokens != 7) && (n_tokens != 8)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens != 8'
#138: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:1685:
+ if ((n_tokens != 7) && (n_tokens != 8)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens != 6'
#219: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:1766:
+ if ((n_tokens != 6) && (n_tokens != 7)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens != 7'
#219: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:1766:
+ if ((n_tokens != 6) && (n_tokens != 7)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens >= 6'
#309: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:3603:
+ if ((n_tokens >= 6) &&
+ (strcmp(tokens[2], "port") == 0) &&
+ (strcmp(tokens[3], "in") == 0) &&
(strcmp(tokens[5], "enable") == 0)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens >= 6'
#319: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:3621:
+ if ((n_tokens >= 6) &&
+ (strcmp(tokens[2], "port") == 0) &&
+ (strcmp(tokens[3], "out") == 0) &&
+ (strcmp(tokens[5], "stats") == 0)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens >= 5'
#328: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:3630:
+ if ((n_tokens >= 5) &&
+ (strcmp(tokens[2], "table") == 0) &&
+ (strcmp(tokens[4], "stats") == 0)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'n_tokens >= 7'
#344: FILE: drivers/net/softnic/rte_eth_softnic_cli.c:3682:
+ if ((n_tokens >= 7) &&
+ (strcmp(tokens[2], "table") == 0) &&
+ (strcmp(tokens[4], "rule") == 0) &&
+ (strcmp(tokens[5], "read") == 0) &&
+ (strcmp(tokens[6], "stats") == 0)) {
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'pipeline_name == NULL'
#532: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:661:
+ if ((pipeline_name == NULL) ||
+ (stats == NULL))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'stats == NULL'
#532: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:661:
+ if ((pipeline_name == NULL) ||
+ (stats == NULL))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'p == NULL'
#537: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:666:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (port_id >= p->n_ports_in))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'p->enabled == 0'
#537: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:666:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (port_id >= p->n_ports_in))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'port_id >= p->n_ports_in'
#537: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:666:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (port_id >= p->n_ports_in))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'pipeline_name == NULL'
#589: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:796:
+ if ((pipeline_name == NULL) ||
+ (stats == NULL))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'stats == NULL'
#589: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:796:
+ if ((pipeline_name == NULL) ||
+ (stats == NULL))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'p == NULL'
#594: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:801:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (port_id >= p->n_ports_out))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'p->enabled == 0'
#594: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:801:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (port_id >= p->n_ports_out))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'port_id >= p->n_ports_out'
#594: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:801:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (port_id >= p->n_ports_out))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'pipeline_name == NULL'
#638: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:845:
+ if ((pipeline_name == NULL) ||
+ (stats == NULL))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'stats == NULL'
#638: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:845:
+ if ((pipeline_name == NULL) ||
+ (stats == NULL))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'p == NULL'
#643: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:850:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (table_id >= p->n_tables))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'p->enabled == 0'
#643: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:850:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (table_id >= p->n_tables))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'table_id >= p->n_tables'
#643: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:850:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (table_id >= p->n_tables))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'pipeline_name == NULL'
#695: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:1319:
+ if ((pipeline_name == NULL) ||
+ (data == NULL) ||
+ (stats == NULL))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'data == NULL'
#695: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:1319:
+ if ((pipeline_name == NULL) ||
+ (data == NULL) ||
+ (stats == NULL))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'stats == NULL'
#695: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:1319:
+ if ((pipeline_name == NULL) ||
+ (data == NULL) ||
+ (stats == NULL))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'p == NULL'
#701: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:1325:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (table_id >= p->n_tables))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'p->enabled == 0'
#701: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:1325:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (table_id >= p->n_tables))
CHECK:UNNECESSARY_PARENTHESES: Unnecessary parentheses around 'table_id >= p->n_tables'
#701: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:1325:
+ if ((p == NULL) ||
+ (p->enabled == 0) ||
+ (table_id >= p->n_tables))
CHECK:SPACING: No space is necessary after a cast
#743: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:1388:
+ struct pipeline_msg_rsp *rsp = (struct pipeline_msg_rsp *) req;
CHECK:SPACING: No space is necessary after a cast
#767: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:1430:
+ struct pipeline_msg_rsp *rsp = (struct pipeline_msg_rsp *) req;
CHECK:SPACING: No space is necessary after a cast
#783: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:1446:
+ struct pipeline_msg_rsp *rsp = (struct pipeline_msg_rsp *) req;
CHECK:SPACING: No space is necessary after a cast
#806: FILE: drivers/net/softnic/rte_eth_softnic_thread.c:2166:
+ struct pipeline_msg_rsp *rsp = (struct pipeline_msg_rsp *) req;
total: 0 errors, 0 warnings, 36 checks, 802 lines checked
parent reply other threads:[~2018-06-15 16:54 UTC|newest]
Thread overview: expand[flat|nested] mbox.gz Atom feed
[parent not found: <20180615165224.25004-18-jasvinder.singh@intel.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=20180615165447.6ADE41C10F@dpdk.org \
--to=checkpatch@dpdk.org \
--cc=jasvinder.singh@intel.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).