* |WARNING| pw156469 [PATCH v10 1/1] ethdev: add support to provide link type [not found] <20250908085256.1866407-1-skori@marvell.com> @ 2025-09-08 8:33 ` qemudev 2025-09-08 8:50 ` |SUCCESS| " checkpatch 2025-09-08 9:11 ` |WARNING| pw156469 [PATCH] [v10, " dpdklab 2 siblings, 0 replies; 3+ messages in thread From: qemudev @ 2025-09-08 8:33 UTC (permalink / raw) To: test-report; +Cc: skori, zhoumin Test-Label: loongarch-compilation Test-Status: WARNING http://dpdk.org/patch/156469 _apply patch failure_ Submitter: Sunil Kumar Kori <skori@marvell.com> Date: Mon, 8 Sep 2025 14:21:48 +0530 DPDK git baseline: Repo:dpdk-next-net Branch: main CommitID: 3fb5e8045504d89de66c20b726e41446d507c21d Apply patch set 156469 failed: Checking patch app/test/test_ethdev_link.c... error: while searching for: .link_speed = RTE_ETH_SPEED_NUM_2_5G, .link_status = RTE_ETH_LINK_UP, .link_autoneg = RTE_ETH_LINK_AUTONEG, .link_duplex = RTE_ETH_LINK_FULL_DUPLEX }; char text[RTE_ETH_LINK_MAX_STR_LEN]; ret = rte_eth_link_to_str(text, sizeof(text), &link_status); RTE_TEST_ASSERT(ret > 0, "Failed to format default string\n"); printf("Default link up #1: %s\n", text); TEST_ASSERT_BUFFERS_ARE_EQUAL("Link up at 2.5 Gbps FDX Autoneg", text, strlen(text), "Invalid default link status string"); link_status.link_duplex = RTE_ETH_LINK_HALF_DUPLEX; link_status.link_autoneg = RTE_ETH_LINK_FIXED; link_status.link_speed = RTE_ETH_SPEED_NUM_10M; ret = rte_eth_link_to_str(text, sizeof(text), &link_status); printf("Default link up #2: %s\n", text); RTE_TEST_ASSERT(ret > 0, "Failed to format default string\n"); TEST_ASSERT_BUFFERS_ARE_EQUAL("Link up at 10 Mbps HDX Fixed", text, strlen(text), "Invalid default link status " "string with HDX"); error: patch failed: app/test/test_ethdev_link.c:17 error: app/test/test_ethdev_link.c: patch does not apply Checking patch doc/guides/rel_notes/release_25_11.rst... error: while searching for: Also, make sure to start the actual text at the margin. ======================================================= Removed Items ------------- error: patch failed: doc/guides/rel_notes/release_25_11.rst:55 error: doc/guides/rel_notes/release_25_11.rst: patch does not apply Checking patch lib/ethdev/rte_ethdev.c... error: while searching for: if (eth_link->link_status == RTE_ETH_LINK_DOWN) ret = snprintf(str, len, "Link down"); else ret = snprintf(str, len, "Link up at %s %s %s", rte_eth_link_speed_to_str(eth_link->link_speed), (eth_link->link_duplex == RTE_ETH_LINK_FULL_DUPLEX) ? "FDX" : "HDX", (eth_link->link_autoneg == RTE_ETH_LINK_AUTONEG) ? "Autoneg" : "Fixed"); rte_eth_trace_link_to_str(len, eth_link, str, ret); return ret; } RTE_EXPORT_SYMBOL(rte_eth_stats_get) int rte_eth_stats_get(uint16_t port_id, struct rte_eth_stats *stats) error: patch failed: lib/ethdev/rte_ethdev.c:3285 error: lib/ethdev/rte_ethdev.c: patch does not apply Checking patch lib/ethdev/rte_ethdev.h... error: while searching for: #define RTE_ETH_SPEED_NUM_UNKNOWN UINT32_MAX /**< Unknown */ /**@}*/ /** * A structure used to retrieve link-level information of an Ethernet port. */ error: patch failed: lib/ethdev/rte_ethdev.h:329 error: lib/ethdev/rte_ethdev.h: patch does not apply ^ permalink raw reply [flat|nested] 3+ messages in thread
* |SUCCESS| pw156469 [PATCH v10 1/1] ethdev: add support to provide link type [not found] <20250908085256.1866407-1-skori@marvell.com> 2025-09-08 8:33 ` |WARNING| pw156469 [PATCH v10 1/1] ethdev: add support to provide link type qemudev @ 2025-09-08 8:50 ` checkpatch 2025-09-08 9:11 ` |WARNING| pw156469 [PATCH] [v10, " dpdklab 2 siblings, 0 replies; 3+ messages in thread From: checkpatch @ 2025-09-08 8:50 UTC (permalink / raw) To: test-report Test-Label: checkpatch Test-Status: SUCCESS http://dpdk.org/patch/156469 _coding style OK_ ^ permalink raw reply [flat|nested] 3+ messages in thread
* |WARNING| pw156469 [PATCH] [v10, 1/1] ethdev: add support to provide link type [not found] <20250908085256.1866407-1-skori@marvell.com> 2025-09-08 8:33 ` |WARNING| pw156469 [PATCH v10 1/1] ethdev: add support to provide link type qemudev 2025-09-08 8:50 ` |SUCCESS| " checkpatch @ 2025-09-08 9:11 ` dpdklab 2 siblings, 0 replies; 3+ messages in thread From: dpdklab @ 2025-09-08 9:11 UTC (permalink / raw) To: test-report; +Cc: dpdk-test-reports Test-Label: iol-testing Test-Status: WARNING http://dpdk.org/patch/156469 _apply patch failure_ Submitter: Sunil Kumar Kori <skori@marvell.com> Date: Monday, September 08 2025 08:51:48 Applied on: CommitID:80f8d21b2dc80521c832a10f695015d8cd327b66 Apply patch set 156469 failed: Cloning the DPDK mirror at: https://github.com/DPDK/dpdk.git (Attempt 1 of 3) Trying to checkout branch: origin/main Checked out to main (80f8d21b2dc80521c832a10f695015d8cd327b66) Done: main commit 80f8d21b2dc80521c832a10f695015d8cd327b66 Trying to checkout branch: origin/next-net-for-main Checked out to next-net-for-main (3fb5e8045504d89de66c20b726e41446d507c21d) Applying patch... Failed to apply patch: Applying: ethdev: add support to provide link type Using index info to reconstruct a base tree... M app/test/test_ethdev_link.c M doc/guides/rel_notes/release_25_11.rst M lib/ethdev/rte_ethdev.c M lib/ethdev/rte_ethdev.h Falling back to patching base and 3-way merge... Auto-merging lib/ethdev/rte_ethdev.h Auto-merging lib/ethdev/rte_ethdev.c Auto-merging doc/guides/rel_notes/release_25_11.rst CONFLICT (content): Merge conflict in doc/guides/rel_notes/release_25_11.rst Auto-merging app/test/test_ethdev_link.c CONFLICT (content): Merge conflict in app/test/test_ethdev_link.c error: Failed to merge in the changes. hint: Use 'git am --show-current-patch=diff' to see the failed patch Patch failed at 0001 ethdev: add support to provide link type When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". Trying to checkout branch: origin/main Checked out to main (80f8d21b2dc80521c832a10f695015d8cd327b66) Applying patch... Failed to apply patch: Applying: ethdev: add support to provide link type Using index info to reconstruct a base tree... M app/test/test_ethdev_link.c M doc/guides/rel_notes/release_25_11.rst M lib/ethdev/rte_ethdev.c M lib/ethdev/rte_ethdev.h Falling back to patching base and 3-way merge... Auto-merging lib/ethdev/rte_ethdev.h Auto-merging lib/ethdev/rte_ethdev.c Auto-merging doc/guides/rel_notes/release_25_11.rst CONFLICT (content): Merge conflict in doc/guides/rel_notes/release_25_11.rst Auto-merging app/test/test_ethdev_link.c error: Failed to merge in the changes. hint: Use 'git am --show-current-patch=diff' to see the failed patch Patch failed at 0001 ethdev: add support to provide link type When you have resolved this problem, run "git am --continue". If you prefer to skip this patch, run "git am --skip" instead. To restore the original branch and stop patching, run "git am --abort". https://lab.dpdk.org/results/dashboard/patchsets/34031/ UNH-IOL DPDK Community Lab ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-09-08 9:11 UTC | newest] Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- [not found] <20250908085256.1866407-1-skori@marvell.com> 2025-09-08 8:33 ` |WARNING| pw156469 [PATCH v10 1/1] ethdev: add support to provide link type qemudev 2025-09-08 8:50 ` |SUCCESS| " checkpatch 2025-09-08 9:11 ` |WARNING| pw156469 [PATCH] [v10, " 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).