automatic DPDK test reports
 help / color / mirror / Atom feed
* |WARNING| pw117842 [PATCH] [v1, 14/35] net/ionic: replace void pointer with actual type
@ 2022-10-11  6:19 dpdklab
  0 siblings, 0 replies; only message in thread
From: dpdklab @ 2022-10-11  6:19 UTC (permalink / raw)
  To: test-report; +Cc: dpdk-test-reports

[-- Attachment #1: Type: text/plain, Size: 1997 bytes --]

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

_apply patch failure_

Submitter: Andrew Boyer <Andrew.Boyer@amd.com>
Date: Tuesday, October 11 2022 00:50:11 
Applied on: CommitID:f13604fad12a81383da7b04821a4befb3d01e2ed
Apply patch set 117842 failed:

Checking patch drivers/net/ionic/ionic_rxtx.c...
Hunk #1 succeeded at 762 (offset -3 lines).
Hunk #2 succeeded at 774 (offset -1 lines).
Hunk #3 succeeded at 786 (offset -1 lines).
Hunk #4 succeeded at 803 (offset -1 lines).
Hunk #6 succeeded at 1049 (offset -1 lines).
Hunk #7 succeeded at 1085 (offset -1 lines).
error: while searching for:
		uint16_t nb_pkts)
{
	struct ionic_rx_qcq *rxq = rx_queue;
	struct ionic_rx_service service_cb_arg;

	service_cb_arg.rx_pkts = rx_pkts;
	service_cb_arg.nb_pkts = nb_pkts;
	service_cb_arg.nb_rx = 0;

	ionic_rxq_service(rxq, nb_pkts, &service_cb_arg);

	ionic_rx_fill(rxq);

	return service_cb_arg.nb_rx;
}

error: patch failed: drivers/net/ionic/ionic_rxtx.c:1127
Applying patch drivers/net/ionic/ionic_rxtx.c 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.
Rejected hunk #8.
diff a/drivers/net/ionic/ionic_rxtx.c b/drivers/net/ionic/ionic_rxtx.c	(rejected hunks)
@@ -1127,15 +1125,15 @@ ionic_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
 		uint16_t nb_pkts)
 {
 	struct ionic_rx_qcq *rxq = rx_queue;
-	struct ionic_rx_service service_cb_arg;
+	struct ionic_rx_service rx_svc;
 
-	service_cb_arg.rx_pkts = rx_pkts;
-	service_cb_arg.nb_pkts = nb_pkts;
-	service_cb_arg.nb_rx = 0;
+	rx_svc.rx_pkts = rx_pkts;
+	rx_svc.nb_pkts = nb_pkts;
+	rx_svc.nb_rx = 0;
 
-	ionic_rxq_service(rxq, nb_pkts, &service_cb_arg);
+	ionic_rxq_service(rxq, nb_pkts, &rx_svc);
 
 	ionic_rx_fill(rxq);
 
-	return service_cb_arg.nb_rx;
+	return rx_svc.nb_rx;
 }

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

UNH-IOL DPDK Community Lab

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-10-11  6:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-11  6:19 |WARNING| pw117842 [PATCH] [v1, 14/35] net/ionic: replace void pointer with actual type 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).