* |WARNING| pw142498 [PATCH] net/gve: Update Rx/Tx functions for RTE_PROC_SECONDARY
[not found] <CA++LmPWP+fAn_uB=mGNuB_9jG16sZc4gTrEpoAm-aUYw8kF70Q@mail.gmail.com>
@ 2024-07-18 5:06 ` qemudev
2024-07-18 5:35 ` checkpatch
` (2 subsequent siblings)
3 siblings, 0 replies; 4+ messages in thread
From: qemudev @ 2024-07-18 5:06 UTC (permalink / raw)
To: test-report; +Cc: Tathagat Priyadarshi, zhoumin
Test-Label: loongarch-compilation
Test-Status: WARNING
http://dpdk.org/patch/142498
_apply patch failure_
Submitter: Tathagat Priyadarshi <tathagat.dpdk@gmail.com>
Date: Thu, 18 Jul 2024 11:04:06 +0530
DPDK git baseline: Repo:dpdk-next-net
Branch: main
CommitID: 3317515e9377c13e458e31a64f8987a9d1f2eaf6
Apply patch set 142498 failed:
Checking patch drivers/net/gve/gve_ethdev.c...
error: while searching for:
rte_be32_t *db_bar;
int err;
if (rte_eal_process_type() != RTE_PROC_PRIMARY)
return 0;
pci_dev = RTE_DEV_TO_PCI(eth_dev->device);
error: patch failed: drivers/net/gve/gve_ethdev.c:1173
error: drivers/net/gve/gve_ethdev.c: patch does not apply
^ permalink raw reply [flat|nested] 4+ messages in thread
* |WARNING| pw142498 [PATCH] net/gve: Update Rx/Tx functions for RTE_PROC_SECONDARY
[not found] <CA++LmPWP+fAn_uB=mGNuB_9jG16sZc4gTrEpoAm-aUYw8kF70Q@mail.gmail.com>
2024-07-18 5:06 ` |WARNING| pw142498 [PATCH] net/gve: Update Rx/Tx functions for RTE_PROC_SECONDARY qemudev
@ 2024-07-18 5:35 ` checkpatch
2024-07-18 6:23 ` |SUCCESS| " 0-day Robot
2024-07-18 7:07 ` |WARNING| " dpdklab
3 siblings, 0 replies; 4+ messages in thread
From: checkpatch @ 2024-07-18 5:35 UTC (permalink / raw)
To: test-report; +Cc: Tathagat Priyadarshi
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/142498
_coding style issues_
ERROR:GIT_COMMIT_ID: Please use git commit description style 'commit <12+ chars of sha1> ("<title line>")' - ie: 'commit fatal: bad o ("a3033eb06fd6b1852")'
#74:
From 9fa6f7d425d66a00c3f63c7a3033eb06fd6b1852 Mon Sep 17 00:00:00 2001
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#104: FILE: drivers/net/gve/gve_ethdev.c:1176:
+ if (rte_eal_process_type() != RTE_PROC_PRIMARY) {$
WARNING:SUSPECT_CODE_INDENT: suspect code indent for conditional statements (1, 1)
#104: FILE: drivers/net/gve/gve_ethdev.c:1176:
+ if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
+ if (gve_is_gqi(priv)) {
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#105: FILE: drivers/net/gve/gve_ethdev.c:1177:
+ if (gve_is_gqi(priv)) {$
WARNING:SUSPECT_CODE_INDENT: suspect code indent for conditional statements (1, 1)
#105: FILE: drivers/net/gve/gve_ethdev.c:1177:
+ if (gve_is_gqi(priv)) {
+ gve_set_rx_function(eth_dev);
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#106: FILE: drivers/net/gve/gve_ethdev.c:1178:
+ gve_set_rx_function(eth_dev);$
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#107: FILE: drivers/net/gve/gve_ethdev.c:1179:
+ gve_set_tx_function(eth_dev);$
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#108: FILE: drivers/net/gve/gve_ethdev.c:1180:
+ eth_dev->dev_ops = &gve_eth_dev_ops;$
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#109: FILE: drivers/net/gve/gve_ethdev.c:1181:
+ } else {$
WARNING:SUSPECT_CODE_INDENT: suspect code indent for conditional statements (1, 1)
#109: FILE: drivers/net/gve/gve_ethdev.c:1181:
+ } else {
+ gve_set_rx_function_dqo(eth_dev);
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#110: FILE: drivers/net/gve/gve_ethdev.c:1182:
+ gve_set_rx_function_dqo(eth_dev);$
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#111: FILE: drivers/net/gve/gve_ethdev.c:1183:
+ gve_set_tx_function_dqo(eth_dev);$
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#112: FILE: drivers/net/gve/gve_ethdev.c:1184:
+ eth_dev->dev_ops = &gve_eth_dev_ops_dqo;$
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#113: FILE: drivers/net/gve/gve_ethdev.c:1185:
+ }$
WARNING:LEADING_SPACE: please, no spaces at the start of a line
#115: FILE: drivers/net/gve/gve_ethdev.c:1187:
+ }$
WARNING:FROM_SIGN_OFF_MISMATCH: From:/Signed-off-by: email name mismatch: 'From: priyadarshitathagat <tathagat.dpdk@gmail.com>' != 'Signed-off-by: Tathagat Priyadarshi <tathagat.dpdk@gmail.com>'
total: 1 errors, 15 warnings, 0 checks, 19 lines checked
^ permalink raw reply [flat|nested] 4+ messages in thread
* |SUCCESS| pw142498 [PATCH] net/gve: Update Rx/Tx functions for RTE_PROC_SECONDARY
[not found] <CA++LmPWP+fAn_uB=mGNuB_9jG16sZc4gTrEpoAm-aUYw8kF70Q@mail.gmail.com>
2024-07-18 5:06 ` |WARNING| pw142498 [PATCH] net/gve: Update Rx/Tx functions for RTE_PROC_SECONDARY qemudev
2024-07-18 5:35 ` checkpatch
@ 2024-07-18 6:23 ` 0-day Robot
2024-07-18 7:07 ` |WARNING| " dpdklab
3 siblings, 0 replies; 4+ messages in thread
From: 0-day Robot @ 2024-07-18 6:23 UTC (permalink / raw)
To: test-report; +Cc: robot
From: robot@bytheb.org
Test-Label: github-robot: build
Test-Status: SUCCESS
http://patchwork.dpdk.org/patch/142498/
_github build: passed_
Build URL: https://github.com/ovsrobot/dpdk/actions/runs/9986245259
^ permalink raw reply [flat|nested] 4+ messages in thread
* |WARNING| pw142498 [PATCH] net/gve: Update Rx/Tx functions for RTE_PROC_SECONDARY
[not found] <CA++LmPWP+fAn_uB=mGNuB_9jG16sZc4gTrEpoAm-aUYw8kF70Q@mail.gmail.com>
` (2 preceding siblings ...)
2024-07-18 6:23 ` |SUCCESS| " 0-day Robot
@ 2024-07-18 7:07 ` dpdklab
3 siblings, 0 replies; 4+ messages in thread
From: dpdklab @ 2024-07-18 7:07 UTC (permalink / raw)
To: test-report; +Cc: dpdk-test-reports
Test-Label: iol-testing
Test-Status: WARNING
http://dpdk.org/patch/142498
_apply patch failure_
Submitter: Tathagat Priyadarshi <tathagat.dpdk@gmail.com>
Date: Thursday, July 18 2024 05:34:06
Applied on: CommitID:fa8d2f7f28524a6c8defa3dcd94f5aa131aae084
Apply patch set 142498 failed:
<!doctype html>
<html lang="en">
<head>
<title>Not Found</title>
</head>
<body>
<h1>Not Found</h1><p>The requested resource was not found on this server.</p>
</body>
</html>
https://lab.dpdk.org/results/dashboard/patchsets/30550/
UNH-IOL DPDK Community Lab
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-07-18 7:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <CA++LmPWP+fAn_uB=mGNuB_9jG16sZc4gTrEpoAm-aUYw8kF70Q@mail.gmail.com>
2024-07-18 5:06 ` |WARNING| pw142498 [PATCH] net/gve: Update Rx/Tx functions for RTE_PROC_SECONDARY qemudev
2024-07-18 5:35 ` checkpatch
2024-07-18 6:23 ` |SUCCESS| " 0-day Robot
2024-07-18 7:07 ` |WARNING| " 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).