* [dpdk-test-report] |WARNING| pw102188-102194 [PATCH] [v3, 7/7] net/ena: update version to 2.5.0
@ 2021-10-19 11:29 dpdklab
0 siblings, 0 replies; only message in thread
From: dpdklab @ 2021-10-19 11:29 UTC (permalink / raw)
To: test-report; +Cc: dpdk-test-reports
[-- 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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-10-19 11:29 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-19 11:29 [dpdk-test-report] |WARNING| pw102188-102194 [PATCH] [v3, 7/7] net/ena: update version to 2.5.0 dpdklab
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).