From: dpdklab@iol.unh.edu
To: test-report@dpdk.org
Cc: dpdk-test-reports@iol.unh.edu
Subject: [dpdk-test-report] |WARNING| pw102188-102194 [PATCH] [v3, 7/7] net/ena: update version to 2.5.0
Date: Tue, 19 Oct 2021 07:29:33 -0400 (EDT) [thread overview]
Message-ID: <20211019112933.049F560524@noxus.dpdklab.iol.unh.edu> (raw)
[-- Attachment #1: Type: text/plain, Size: 6570 bytes --]
Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/102188
_apply patch failure_
Submitter: Michal Krawczyk <mk@semihalf.com>
Date: Tuesday, October 19 2021 10:56:29
Applied on: CommitID:821f60c7f4337d74a0c8e4add4095be524d77600
Apply patch set 102188-102194 failed:
Checking patch drivers/net/ena/ena_ethdev.c...
Hunk #2 succeeded at 1641 (offset 12 lines).
Hunk #3 succeeded at 1806 (offset 12 lines).
error: while searching for:
ETH_LINK_SPEED_100G;
/* Set Tx & Rx features available for device */
if (adapter->offloads.tso4_supported)
tx_feat |= DEV_TX_OFFLOAD_TCP_TSO;
if (adapter->offloads.tx_csum_supported)
tx_feat |= DEV_TX_OFFLOAD_IPV4_CKSUM |
DEV_TX_OFFLOAD_UDP_CKSUM |
DEV_TX_OFFLOAD_TCP_CKSUM;
if (adapter->offloads.rx_csum_supported)
rx_feat |= DEV_RX_OFFLOAD_IPV4_CKSUM |
DEV_RX_OFFLOAD_UDP_CKSUM |
DEV_RX_OFFLOAD_TCP_CKSUM;
tx_feat |= DEV_TX_OFFLOAD_MULTI_SEGS;
/* Inform framework about available features */
dev_info->rx_offload_capa = rx_feat;
if (adapter->offloads.rss_hash_supported)
dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_RSS_HASH;
dev_info->rx_queue_offload_capa = rx_feat;
dev_info->tx_offload_capa = tx_feat;
error: patch failed: drivers/net/ena/ena_ethdev.c:1903
Hunk #5 succeeded at 2234 (offset 7 lines).
Hunk #6 succeeded at 2295 (offset 7 lines).
Checking patch drivers/net/ena/ena_ethdev.h...
Applying patch drivers/net/ena/ena_ethdev.c with 1 reject...
Hunk #1 applied cleanly.
Hunk #2 applied cleanly.
Hunk #3 applied cleanly.
Rejected hunk #4.
Hunk #5 applied cleanly.
Hunk #6 applied cleanly.
Applied patch drivers/net/ena/ena_ethdev.h cleanly.
diff a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c (rejected hunks)
@@ -1903,24 +1954,27 @@ static int ena_infos_get(struct rte_eth_dev *dev,
ETH_LINK_SPEED_100G;
/* Set Tx & Rx features available for device */
- if (adapter->offloads.tso4_supported)
+ if (adapter->offloads.tx_offloads & ENA_IPV4_TSO)
tx_feat |= DEV_TX_OFFLOAD_TCP_TSO;
- if (adapter->offloads.tx_csum_supported)
- tx_feat |= DEV_TX_OFFLOAD_IPV4_CKSUM |
- DEV_TX_OFFLOAD_UDP_CKSUM |
- DEV_TX_OFFLOAD_TCP_CKSUM;
+ if (adapter->offloads.tx_offloads & ENA_L3_IPV4_CSUM)
+ tx_feat |= DEV_TX_OFFLOAD_IPV4_CKSUM;
+ if (adapter->offloads.tx_offloads &
+ (ENA_L4_IPV4_CSUM_PARTIAL | ENA_L4_IPV4_CSUM |
+ ENA_L4_IPV6_CSUM | ENA_L4_IPV6_CSUM_PARTIAL))
+ tx_feat |= DEV_TX_OFFLOAD_UDP_CKSUM | DEV_TX_OFFLOAD_TCP_CKSUM;
- if (adapter->offloads.rx_csum_supported)
- rx_feat |= DEV_RX_OFFLOAD_IPV4_CKSUM |
- DEV_RX_OFFLOAD_UDP_CKSUM |
- DEV_RX_OFFLOAD_TCP_CKSUM;
+ if (adapter->offloads.rx_offloads & ENA_L3_IPV4_CSUM)
+ rx_feat |= DEV_RX_OFFLOAD_IPV4_CKSUM;
+ if (adapter->offloads.rx_offloads &
+ (ENA_L4_IPV4_CSUM | ENA_L4_IPV6_CSUM))
+ rx_feat |= DEV_RX_OFFLOAD_UDP_CKSUM | DEV_RX_OFFLOAD_TCP_CKSUM;
tx_feat |= DEV_TX_OFFLOAD_MULTI_SEGS;
/* Inform framework about available features */
dev_info->rx_offload_capa = rx_feat;
- if (adapter->offloads.rss_hash_supported)
+ if (adapter->offloads.rx_offloads & ENA_RX_RSS_HASH)
dev_info->rx_offload_capa |= DEV_RX_OFFLOAD_RSS_HASH;
dev_info->rx_queue_offload_capa = rx_feat;
dev_info->tx_offload_capa = tx_feat;
Checking patch doc/guides/rel_notes/release_21_11.rst...
error: while searching for:
* Disabled secondary process support.
* **Updated Broadcom bnxt PMD.**
* Added flow offload support for Thor.
error: patch failed: doc/guides/rel_notes/release_21_11.rst:102
Checking patch drivers/net/ena/ena_ethdev.c...
error: drivers/net/ena/ena_ethdev.c: does not match index
Checking patch drivers/net/ena/ena_ethdev.h...
error: drivers/net/ena/ena_ethdev.h: does not match index
Applying patch doc/guides/rel_notes/release_21_11.rst with 1 reject...
Rejected hunk #1.
diff a/doc/guides/rel_notes/release_21_11.rst b/doc/guides/rel_notes/release_21_11.rst (rejected hunks)
@@ -102,6 +102,13 @@ New Features
* Disabled secondary process support.
+* **Updated Amazon ENA PMD.**
+
+ Updated the Amazon ENA PMD. The new driver version (v2.5.0) introduced
+ bug fixes and improvements, including:
+
+ * Support for the tx_free_thresh and rx_free_thresh configuration parameters.
+
* **Updated Broadcom bnxt PMD.**
* Added flow offload support for Thor.
Checking patch drivers/net/ena/ena_ethdev.c...
error: drivers/net/ena/ena_ethdev.c: does not match index
Checking patch drivers/net/ena/ena_ethdev.c...
error: drivers/net/ena/ena_ethdev.c: does not match index
Checking patch doc/guides/rel_notes/release_21_11.rst...
error: while searching for:
bug fixes and improvements, including:
* Support for the tx_free_thresh and rx_free_thresh configuration parameters.
* **Updated Broadcom bnxt PMD.**
error: patch failed: doc/guides/rel_notes/release_21_11.rst:108
Checking patch drivers/net/ena/ena_ethdev.c...
error: drivers/net/ena/ena_ethdev.c: does not match index
Applying patch doc/guides/rel_notes/release_21_11.rst with 1 reject...
Rejected hunk #1.
diff a/doc/guides/rel_notes/release_21_11.rst b/doc/guides/rel_notes/release_21_11.rst (rejected hunks)
@@ -108,6 +108,7 @@ New Features
bug fixes and improvements, including:
* Support for the tx_free_thresh and rx_free_thresh configuration parameters.
+ * NUMA aware allocations for the queue helper structures.
* **Updated Broadcom bnxt PMD.**
Checking patch doc/guides/rel_notes/release_21_11.rst...
error: while searching for:
* Support for the tx_free_thresh and rx_free_thresh configuration parameters.
* NUMA aware allocations for the queue helper structures.
* **Updated Broadcom bnxt PMD.**
error: patch failed: doc/guides/rel_notes/release_21_11.rst:109
Checking patch drivers/net/ena/ena_ethdev.c...
error: drivers/net/ena/ena_ethdev.c: does not match index
Checking patch drivers/net/ena/ena_ethdev.h...
error: drivers/net/ena/ena_ethdev.h: does not match index
Applying patch doc/guides/rel_notes/release_21_11.rst with 1 reject...
Rejected hunk #1.
diff a/doc/guides/rel_notes/release_21_11.rst b/doc/guides/rel_notes/release_21_11.rst (rejected hunks)
@@ -109,6 +109,7 @@ New Features
* Support for the tx_free_thresh and rx_free_thresh configuration parameters.
* NUMA aware allocations for the queue helper structures.
+ * Watchdog's feature which is checking for missing Tx completions.
* **Updated Broadcom bnxt PMD.**
Checking patch drivers/net/ena/ena_ethdev.c...
error: drivers/net/ena/ena_ethdev.c: does not match index
https://lab.dpdk.org/results/dashboard/patchsets/19540/
UNH-IOL DPDK Community Lab
reply other threads:[~2021-10-19 11:29 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20211019112933.049F560524@noxus.dpdklab.iol.unh.edu \
--to=dpdklab@iol.unh.edu \
--cc=dpdk-test-reports@iol.unh.edu \
--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).