automatic DPDK test reports
 help / color / mirror / Atom feed
From: checkpatch@dpdk.org
To: test-report@dpdk.org
Cc: Gagandeep Singh <G.Singh@nxp.com>
Subject: [dpdk-test-report] |WARNING| pw52709 [PATCH v4 11/13] net/enetc: enable CRC offload feature
Date: Fri, 12 Apr 2019 14:30:06 +0200 (CEST)	[thread overview]
Message-ID: <20190412123006.320A01B3A0@dpdk.org> (raw)
In-Reply-To: <20190412122840.1908-12-g.singh@nxp.com>

Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/52709

_coding style issues_


ERROR:DOS_LINE_ENDINGS: DOS line endings
#37: FILE: doc/guides/nics/enetc.rst:55:
+- CRC offload^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#49: FILE: doc/guides/nics/features/enetc.ini:15:
+CRC offload          = Y^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#61: FILE: drivers/net/enetc/base/enetc_hw.h:100:
+#define ENETC_PM0_CRC^I^I^IBIT(6)^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#73: FILE: drivers/net/enetc/enetc.h:72:
+^Iuint8_t^Icrc_len; /* 0 if CRC stripped, 4 otherwise */^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#86: FILE: drivers/net/enetc/enetc_ethdev.c:165:
+^Idev_info->rx_offload_capa =^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#87: FILE: drivers/net/enetc/enetc_ethdev.c:166:
+^I^I(DEV_RX_OFFLOAD_KEEP_CRC |^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#88: FILE: drivers/net/enetc/enetc_ethdev.c:167:
+^I^I DEV_RX_OFFLOAD_JUMBO_FRAME);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#96: FILE: drivers/net/enetc/enetc_ethdev.c:383:
+^Iuint64_t rx_offloads = data->dev_conf.rxmode.offloads;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#104: FILE: drivers/net/enetc/enetc_ethdev.c:416:
+^Irx_ring->crc_len = (uint8_t)((rx_offloads & DEV_RX_OFFLOAD_KEEP_CRC) ?^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#105: FILE: drivers/net/enetc/enetc_ethdev.c:417:
+^I^I^I^I     ETHER_CRC_LEN : 0);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#106: FILE: drivers/net/enetc/enetc_ethdev.c:418:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#119: FILE: drivers/net/enetc/enetc_ethdev.c:637:
+^Istruct rte_eth_conf *eth_conf = &dev->data->dev_conf;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#120: FILE: drivers/net/enetc/enetc_ethdev.c:638:
+^Iuint64_t rx_offloads = eth_conf->rxmode.offloads;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#128: FILE: drivers/net/enetc/enetc_ethdev.c:656:
+^Iif (rx_offloads & DEV_RX_OFFLOAD_KEEP_CRC) {^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#129: FILE: drivers/net/enetc/enetc_ethdev.c:657:
+^I^Iint config;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#130: FILE: drivers/net/enetc/enetc_ethdev.c:658:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#131: FILE: drivers/net/enetc/enetc_ethdev.c:659:
+^I^Iconfig = enetc_port_rd(enetc_hw, ENETC_PM0_CMD_CFG);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#132: FILE: drivers/net/enetc/enetc_ethdev.c:660:
+^I^Iconfig |= ENETC_PM0_CRC;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#133: FILE: drivers/net/enetc/enetc_ethdev.c:661:
+^I^Ienetc_port_wr(enetc_hw, ENETC_PM0_CMD_CFG, config);^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#134: FILE: drivers/net/enetc/enetc_ethdev.c:662:
+^I}^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#135: FILE: drivers/net/enetc/enetc_ethdev.c:663:
+^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#149: FILE: drivers/net/enetc/enetc_rxtx.c:211:
+^I^Irx_swbd->buffer_addr->pkt_len = rxbd->r.buf_len -^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#150: FILE: drivers/net/enetc/enetc_rxtx.c:212:
+^I^I^I^I^I^Irx_ring->crc_len;^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#151: FILE: drivers/net/enetc/enetc_rxtx.c:213:
+^I^Irx_swbd->buffer_addr->data_len = rxbd->r.buf_len -^M$

ERROR:DOS_LINE_ENDINGS: DOS line endings
#152: FILE: drivers/net/enetc/enetc_rxtx.c:214:
+^I^I^I^I^I^I rx_ring->crc_len;^M$

total: 25 errors, 0 warnings, 0 checks, 93 lines checked

           reply	other threads:[~2019-04-12 12:30 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <20190412122840.1908-12-g.singh@nxp.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=20190412123006.320A01B3A0@dpdk.org \
    --to=checkpatch@dpdk.org \
    --cc=G.Singh@nxp.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).