automatic DPDK test reports
 help / color / mirror / Atom feed
From: dpdklab@iol.unh.edu
To: test-report@dpdk.org
Cc: dpdk-test-reports@iol.unh.edu
Subject: |WARNING| pw121052-121053 [PATCH] [2/2] net/igc: enable Tx timestamp offload
Date: Mon, 19 Dec 2022 23:08:07 -0500 (EST)	[thread overview]
Message-ID: <20221220040807.B8293B370@noxus.dpdklab.iol.unh.edu> (raw)

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

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

_apply patch failure_

Submitter: Simei Su <simei.su@intel.com>
Date: Tuesday, December 20 2022 03:47:41 
Applied on: CommitID:c581c49cd3fcaff596fbe566e270b442e6326c79
Apply patch set 121052-121053 failed:

Checking patch drivers/net/igc/igc_ethdev.c...
error: while searching for:
#define IGC_I225_RX_LATENCY_1000	300
#define IGC_I225_RX_LATENCY_2500	1485

static const struct rte_eth_desc_lim rx_desc_lim = {
	.nb_max = IGC_MAX_RXD,
	.nb_min = IGC_MIN_RXD,

error: patch failed: drivers/net/igc/igc_ethdev.c:88
error: while searching for:
				  struct timespec *timestamp);
static int eth_igc_timesync_write_time(struct rte_eth_dev *dev,
				   const struct timespec *timestamp);

static const struct eth_dev_ops eth_igc_ops = {
	.dev_configure		= eth_igc_configure,

error: patch failed: drivers/net/igc/igc_ethdev.c:267
error: while searching for:
	.timesync_adjust_time	= eth_igc_timesync_adjust_time,
	.timesync_read_time	= eth_igc_timesync_read_time,
	.timesync_write_time	= eth_igc_timesync_write_time,
};

/*

error: patch failed: drivers/net/igc/igc_ethdev.c:327
Hunk #4 succeeded at 920 (offset -34 lines).
Hunk #5 succeeded at 985 (offset -34 lines).
Hunk #6 succeeded at 2636 (offset -227 lines).
Checking patch drivers/net/igc/igc_ethdev.h...
Hunk #1 succeeded at 85 (offset -2 lines).
Hunk #2 succeeded at 239 (offset -2 lines).
Checking patch drivers/net/igc/igc_txrx.c...
Hunk #1 succeeded at 1487 (offset 76 lines).
Hunk #2 succeeded at 1507 (offset 76 lines).
Hunk #3 succeeded at 1582 (offset 76 lines).
Hunk #4 succeeded at 1648 (offset 76 lines).
Hunk #5 succeeded at 1796 (offset 76 lines).
Hunk #6 succeeded at 2187 (offset 76 lines).
Hunk #7 succeeded at 2221 (offset 76 lines).
Checking patch drivers/net/igc/igc_txrx.h...
error: while searching for:
extern "C" {
#endif

struct igc_rx_entry {
	struct rte_mbuf *mbuf; /**< mbuf associated with RX descriptor. */
};

error: patch failed: drivers/net/igc/igc_txrx.h:11
Applying patch drivers/net/igc/igc_ethdev.c with 3 rejects...
Rejected hunk #1.
Rejected hunk #2.
Rejected hunk #3.
Hunk #4 applied cleanly.
Hunk #5 applied cleanly.
Hunk #6 applied cleanly.
Applied patch drivers/net/igc/igc_ethdev.h cleanly.
Applied patch drivers/net/igc/igc_txrx.c cleanly.
Applying patch drivers/net/igc/igc_txrx.h with 1 reject...
Rejected hunk #1.
diff a/drivers/net/igc/igc_ethdev.c b/drivers/net/igc/igc_ethdev.c	(rejected hunks)
@@ -88,6 +88,9 @@
 #define IGC_I225_RX_LATENCY_1000	300
 #define IGC_I225_RX_LATENCY_2500	1485
 
+uint64_t igc_timestamp_dynflag;
+int igc_timestamp_dynfield_offset = -1;
+
 static const struct rte_eth_desc_lim rx_desc_lim = {
 	.nb_max = IGC_MAX_RXD,
 	.nb_min = IGC_MIN_RXD,
@@ -267,6 +270,7 @@ static int eth_igc_timesync_read_time(struct rte_eth_dev *dev,
 				  struct timespec *timestamp);
 static int eth_igc_timesync_write_time(struct rte_eth_dev *dev,
 				   const struct timespec *timestamp);
+static int eth_igc_read_clock(struct rte_eth_dev *dev, uint64_t *clock);
 
 static const struct eth_dev_ops eth_igc_ops = {
 	.dev_configure		= eth_igc_configure,
@@ -327,6 +331,7 @@ static const struct eth_dev_ops eth_igc_ops = {
 	.timesync_adjust_time	= eth_igc_timesync_adjust_time,
 	.timesync_read_time	= eth_igc_timesync_read_time,
 	.timesync_write_time	= eth_igc_timesync_write_time,
+	.read_clock             = eth_igc_read_clock,
 };
 
 /*
diff a/drivers/net/igc/igc_txrx.h b/drivers/net/igc/igc_txrx.h	(rejected hunks)
@@ -11,6 +11,9 @@
 extern "C" {
 #endif
 
+extern uint64_t igc_timestamp_dynflag;
+extern int igc_timestamp_dynfield_offset;
+
 struct igc_rx_entry {
 	struct rte_mbuf *mbuf; /**< mbuf associated with RX descriptor. */
 };

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

UNH-IOL DPDK Community Lab

                 reply	other threads:[~2022-12-20  4:08 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=20221220040807.B8293B370@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).