From: dpdklab@iol.unh.edu
To: test-report@dpdk.org
Cc: dpdk-test-reports@iol.unh.edu
Subject: [dpdk-test-report] |WARNING| pw102443 [PATCH] [v6] ethdev: replace bit shifts with macros
Date: Wed, 20 Oct 2021 11:39:11 -0400 (EDT) [thread overview]
Message-ID: <20211020153911.D5A7260524@noxus.dpdklab.iol.unh.edu> (raw)
[-- Attachment #1: Type: text/plain, Size: 2728 bytes --]
Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/102443
_apply patch failure_
Submitter: Ferruh Yigit <ferruh.yigit@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
reply other threads:[~2021-10-20 15:39 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=20211020153911.D5A7260524@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).