[dpdk-test-report] |WARNING| pw102443 [PATCH] [v6] ethdev: replace bit shifts with macros

dpdklab at iol.unh.edu dpdklab at iol.unh.edu
Wed Oct 20 17:39:11 CEST 2021


Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/102443

_apply patch failure_

Submitter: Ferruh Yigit <ferruh.yigit at intel.com>
Date: Wednesday, October 20 2021 14:55:17 
Applied on: CommitID:69a3c6319140b34fb714fa5bd6990cceb2ea2997
Apply patch set 102443 failed:

Checking patch lib/ethdev/rte_ethdev.c...
Hunk #1 succeeded at 1317 (offset 24 lines).
Hunk #2 succeeded at 1683 (offset -4 lines).
Hunk #3 succeeded at 1959 (offset -10 lines).
Hunk #4 succeeded at 3666 (offset -64 lines).
Hunk #5 succeeded at 3940 (offset -64 lines).
Hunk #6 succeeded at 4279 (offset -64 lines).
Hunk #7 succeeded at 4291 (offset -64 lines).
Checking patch lib/ethdev/rte_ethdev.h...
Hunk #7 succeeded at 1621 (offset 1 line).
Hunk #8 succeeded at 1713 (offset 1 line).
error: while searching for:
				 struct rte_eth_representor_info *info);

/** The NIC is able to deliver flag (if set) with packets to the PMD. */
#define RTE_ETH_RX_METADATA_USER_FLAG (UINT64_C(1) << 0)

/** The NIC is able to deliver mark ID with packets to the PMD. */
#define RTE_ETH_RX_METADATA_USER_MARK (UINT64_C(1) << 1)

/** The NIC is able to deliver tunnel ID with packets to the PMD. */
#define RTE_ETH_RX_METADATA_TUNNEL_ID (UINT64_C(1) << 2)

/**
 * @warning

error: patch failed: lib/ethdev/rte_ethdev.h:4870
Checking patch lib/ethdev/rte_flow.c...
Hunk #1 succeeded at 213 (offset -4 lines).
Checking patch lib/ethdev/rte_flow.h...
Hunk #1 succeeded at 4131 (offset -152 lines).
Applied patch lib/ethdev/rte_ethdev.c cleanly.
Applying patch lib/ethdev/rte_ethdev.h with 1 reject...
Hunk #1 applied cleanly.
Hunk #2 applied cleanly.
Hunk #3 applied cleanly.
Hunk #4 applied cleanly.
Hunk #5 applied cleanly.
Hunk #6 applied cleanly.
Hunk #7 applied cleanly.
Hunk #8 applied cleanly.
Rejected hunk #9.
Applied patch lib/ethdev/rte_flow.c cleanly.
Applied patch lib/ethdev/rte_flow.h cleanly.
diff a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h	(rejected hunks)
@@ -4870,13 +4871,13 @@ int rte_eth_representor_info_get(uint16_t port_id,
 				 struct rte_eth_representor_info *info);
 
 /** The NIC is able to deliver flag (if set) with packets to the PMD. */
-#define RTE_ETH_RX_METADATA_USER_FLAG (UINT64_C(1) << 0)
+#define RTE_ETH_RX_METADATA_USER_FLAG RTE_BIT64(0)
 
 /** The NIC is able to deliver mark ID with packets to the PMD. */
-#define RTE_ETH_RX_METADATA_USER_MARK (UINT64_C(1) << 1)
+#define RTE_ETH_RX_METADATA_USER_MARK RTE_BIT64(1)
 
 /** The NIC is able to deliver tunnel ID with packets to the PMD. */
-#define RTE_ETH_RX_METADATA_TUNNEL_ID (UINT64_C(1) << 2)
+#define RTE_ETH_RX_METADATA_TUNNEL_ID RTE_BIT64(2)
 
 /**
  * @warning

https://lab.dpdk.org/results/dashboard/patchsets/19588/

UNH-IOL DPDK Community Lab


More information about the test-report mailing list