netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net v4] igb: Fix XDP with PTP enabled
@ 2021-05-03  7:28 Kurt Kanzenbach
  2021-05-04  8:28 ` Jesper Dangaard Brouer
  2021-06-03 11:30 ` Penigalapati, Sandeep
  0 siblings, 2 replies; 6+ messages in thread
From: Kurt Kanzenbach @ 2021-05-03  7:28 UTC (permalink / raw)
  To: Jesse Brandeburg, Tony Nguyen, David S. Miller, Jakub Kicinski
  Cc: Alexei Starovoitov, Daniel Borkmann, Jesper Dangaard Brouer,
	John Fastabend, Sven Auhagen, intel-wired-lan, netdev, bpf,
	Ilias Apalodimas, Lorenzo Bianconi, Sebastian Andrzej Siewior,
	Richard Cochran, Alexander Duyck, Tyler S, Maciej Fijalkowski,
	Kurt Kanzenbach

When using native XDP with the igb driver, the XDP frame data doesn't point to
the beginning of the packet. It's off by 16 bytes. Everything works as expected
with XDP skb mode.

Actually these 16 bytes are used to store the packet timestamps. Therefore, pull
the timestamp before executing any XDP operations and adjust all other code
accordingly. The igc driver does it like that as well.

Tested with Intel i210 card and AF_XDP sockets.

Fixes: 9cbc948b5a20 ("igb: add XDP support")
Signed-off-by: Kurt Kanzenbach <kurt@linutronix.de>
---

Changes since v3:

 * Get rid of timestamp check in hot path (Maciej Fijalkowski)

Changes since v2:

 * Check timestamp for validity (Nguyen, Anthony L)

Changes since v1:

 * Use xdp_prepare_buff() (Lorenzo Bianconi)

Changes since RFC:

 * Removed unused return value definitions (Alexander Duyck)

Previous versions:

 * https://lkml.kernel.org/netdev/20210422052617.17267-1-kurt@linutronix.de/
 * https://lkml.kernel.org/netdev/20210419072332.7246-1-kurt@linutronix.de/
 * https://lkml.kernel.org/netdev/20210415092145.27322-1-kurt@linutronix.de/
 * https://lkml.kernel.org/netdev/20210412101713.15161-1-kurt@linutronix.de/

 drivers/net/ethernet/intel/igb/igb.h      |  2 +-
 drivers/net/ethernet/intel/igb/igb_main.c | 45 +++++++++++++----------
 drivers/net/ethernet/intel/igb/igb_ptp.c  | 23 +++++-------
 3 files changed, 37 insertions(+), 33 deletions(-)

diff --git a/drivers/net/ethernet/intel/igb/igb.h b/drivers/net/ethernet/intel/igb/igb.h
index 7bda8c5edea5..2d3daf022651 100644
--- a/drivers/net/ethernet/intel/igb/igb.h
+++ b/drivers/net/ethernet/intel/igb/igb.h
@@ -749,7 +749,7 @@ void igb_ptp_rx_hang(struct igb_adapter *adapter);
 void igb_ptp_tx_hang(struct igb_adapter *adapter);
 void igb_ptp_rx_rgtstamp(struct igb_q_vector *q_vector, struct sk_buff *skb);
 int igb_ptp_rx_pktstamp(struct igb_q_vector *q_vector, void *va,
-			struct sk_buff *skb);
+			ktime_t *timestamp);
 int igb_ptp_set_ts_config(struct net_device *netdev, struct ifreq *ifr);
 int igb_ptp_get_ts_config(struct net_device *netdev, struct ifreq *ifr);
 void igb_set_flag_queue_pairs(struct igb_adapter *, const u32);
diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
index 038a9fd1af44..0123285029fa 100644
--- a/drivers/net/ethernet/intel/igb/igb_main.c
+++ b/drivers/net/ethernet/intel/igb/igb_main.c
@@ -8280,7 +8280,7 @@ static void igb_add_rx_frag(struct igb_ring *rx_ring,
 static struct sk_buff *igb_construct_skb(struct igb_ring *rx_ring,
 					 struct igb_rx_buffer *rx_buffer,
 					 struct xdp_buff *xdp,
-					 union e1000_adv_rx_desc *rx_desc)
+					 ktime_t timestamp)
 {
 #if (PAGE_SIZE < 8192)
 	unsigned int truesize = igb_rx_pg_size(rx_ring) / 2;
@@ -8300,12 +8300,8 @@ static struct sk_buff *igb_construct_skb(struct igb_ring *rx_ring,
 	if (unlikely(!skb))
 		return NULL;
 
-	if (unlikely(igb_test_staterr(rx_desc, E1000_RXDADV_STAT_TSIP))) {
-		if (!igb_ptp_rx_pktstamp(rx_ring->q_vector, xdp->data, skb)) {
-			xdp->data += IGB_TS_HDR_LEN;
-			size -= IGB_TS_HDR_LEN;
-		}
-	}
+	if (timestamp)
+		skb_hwtstamps(skb)->hwtstamp = timestamp;
 
 	/* Determine available headroom for copy */
 	headlen = size;
@@ -8336,7 +8332,7 @@ static struct sk_buff *igb_construct_skb(struct igb_ring *rx_ring,
 static struct sk_buff *igb_build_skb(struct igb_ring *rx_ring,
 				     struct igb_rx_buffer *rx_buffer,
 				     struct xdp_buff *xdp,
-				     union e1000_adv_rx_desc *rx_desc)
+				     ktime_t timestamp)
 {
 #if (PAGE_SIZE < 8192)
 	unsigned int truesize = igb_rx_pg_size(rx_ring) / 2;
@@ -8363,11 +8359,8 @@ static struct sk_buff *igb_build_skb(struct igb_ring *rx_ring,
 	if (metasize)
 		skb_metadata_set(skb, metasize);
 
-	/* pull timestamp out of packet data */
-	if (igb_test_staterr(rx_desc, E1000_RXDADV_STAT_TSIP)) {
-		if (!igb_ptp_rx_pktstamp(rx_ring->q_vector, skb->data, skb))
-			__skb_pull(skb, IGB_TS_HDR_LEN);
-	}
+	if (timestamp)
+		skb_hwtstamps(skb)->hwtstamp = timestamp;
 
 	/* update buffer offset */
 #if (PAGE_SIZE < 8192)
@@ -8682,7 +8675,10 @@ static int igb_clean_rx_irq(struct igb_q_vector *q_vector, const int budget)
 	while (likely(total_packets < budget)) {
 		union e1000_adv_rx_desc *rx_desc;
 		struct igb_rx_buffer *rx_buffer;
+		ktime_t timestamp = 0;
+		int pkt_offset = 0;
 		unsigned int size;
+		void *pktbuf;
 
 		/* return some buffers to hardware, one at a time is too slow */
 		if (cleaned_count >= IGB_RX_BUFFER_WRITE) {
@@ -8702,14 +8698,24 @@ static int igb_clean_rx_irq(struct igb_q_vector *q_vector, const int budget)
 		dma_rmb();
 
 		rx_buffer = igb_get_rx_buffer(rx_ring, size, &rx_buf_pgcnt);
+		pktbuf = page_address(rx_buffer->page) + rx_buffer->page_offset;
+
+		/* pull rx packet timestamp if available and valid */
+		if (igb_test_staterr(rx_desc, E1000_RXDADV_STAT_TSIP)) {
+			int ts_hdr_len;
+
+			ts_hdr_len = igb_ptp_rx_pktstamp(rx_ring->q_vector,
+							 pktbuf, &timestamp);
+
+			pkt_offset += ts_hdr_len;
+			size -= ts_hdr_len;
+		}
 
 		/* retrieve a buffer from the ring */
 		if (!skb) {
-			unsigned int offset = igb_rx_offset(rx_ring);
-			unsigned char *hard_start;
+			unsigned char *hard_start = pktbuf - igb_rx_offset(rx_ring);
+			unsigned int offset = pkt_offset + igb_rx_offset(rx_ring);
 
-			hard_start = page_address(rx_buffer->page) +
-				     rx_buffer->page_offset - offset;
 			xdp_prepare_buff(&xdp, hard_start, offset, size, true);
 #if (PAGE_SIZE > 4096)
 			/* At larger PAGE_SIZE, frame_sz depend on len size */
@@ -8732,10 +8738,11 @@ static int igb_clean_rx_irq(struct igb_q_vector *q_vector, const int budget)
 		} else if (skb)
 			igb_add_rx_frag(rx_ring, rx_buffer, skb, size);
 		else if (ring_uses_build_skb(rx_ring))
-			skb = igb_build_skb(rx_ring, rx_buffer, &xdp, rx_desc);
+			skb = igb_build_skb(rx_ring, rx_buffer, &xdp,
+					    timestamp);
 		else
 			skb = igb_construct_skb(rx_ring, rx_buffer,
-						&xdp, rx_desc);
+						&xdp, timestamp);
 
 		/* exit if we failed to retrieve a buffer */
 		if (!skb) {
diff --git a/drivers/net/ethernet/intel/igb/igb_ptp.c b/drivers/net/ethernet/intel/igb/igb_ptp.c
index ba61fe9bfaf4..d68cd4466a54 100644
--- a/drivers/net/ethernet/intel/igb/igb_ptp.c
+++ b/drivers/net/ethernet/intel/igb/igb_ptp.c
@@ -856,30 +856,28 @@ static void igb_ptp_tx_hwtstamp(struct igb_adapter *adapter)
 	dev_kfree_skb_any(skb);
 }
 
-#define IGB_RET_PTP_DISABLED 1
-#define IGB_RET_PTP_INVALID 2
-
 /**
  * igb_ptp_rx_pktstamp - retrieve Rx per packet timestamp
  * @q_vector: Pointer to interrupt specific structure
  * @va: Pointer to address containing Rx buffer
- * @skb: Buffer containing timestamp and packet
+ * @timestamp: Pointer where timestamp will be stored
  *
  * This function is meant to retrieve a timestamp from the first buffer of an
  * incoming frame.  The value is stored in little endian format starting on
  * byte 8
  *
- * Returns: 0 if success, nonzero if failure
+ * Returns: The timestamp header length or 0 if not available
  **/
 int igb_ptp_rx_pktstamp(struct igb_q_vector *q_vector, void *va,
-			struct sk_buff *skb)
+			ktime_t *timestamp)
 {
 	struct igb_adapter *adapter = q_vector->adapter;
+	struct skb_shared_hwtstamps ts;
 	__le64 *regval = (__le64 *)va;
 	int adjust = 0;
 
 	if (!(adapter->ptp_flags & IGB_PTP_ENABLED))
-		return IGB_RET_PTP_DISABLED;
+		return 0;
 
 	/* The timestamp is recorded in little endian format.
 	 * DWORD: 0        1        2        3
@@ -888,10 +886,9 @@ int igb_ptp_rx_pktstamp(struct igb_q_vector *q_vector, void *va,
 
 	/* check reserved dwords are zero, be/le doesn't matter for zero */
 	if (regval[0])
-		return IGB_RET_PTP_INVALID;
+		return 0;
 
-	igb_ptp_systim_to_hwtstamp(adapter, skb_hwtstamps(skb),
-				   le64_to_cpu(regval[1]));
+	igb_ptp_systim_to_hwtstamp(adapter, &ts, le64_to_cpu(regval[1]));
 
 	/* adjust timestamp for the RX latency based on link speed */
 	if (adapter->hw.mac.type == e1000_i210) {
@@ -907,10 +904,10 @@ int igb_ptp_rx_pktstamp(struct igb_q_vector *q_vector, void *va,
 			break;
 		}
 	}
-	skb_hwtstamps(skb)->hwtstamp =
-		ktime_sub_ns(skb_hwtstamps(skb)->hwtstamp, adjust);
 
-	return 0;
+	*timestamp = ktime_sub_ns(ts.hwtstamp, adjust);
+
+	return IGB_TS_HDR_LEN;
 }
 
 /**
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH net v4] igb: Fix XDP with PTP enabled
  2021-05-03  7:28 [PATCH net v4] igb: Fix XDP with PTP enabled Kurt Kanzenbach
@ 2021-05-04  8:28 ` Jesper Dangaard Brouer
  2021-05-19 13:34   ` Jesper Dangaard Brouer
  2021-06-03 11:30 ` Penigalapati, Sandeep
  1 sibling, 1 reply; 6+ messages in thread
From: Jesper Dangaard Brouer @ 2021-05-04  8:28 UTC (permalink / raw)
  To: Kurt Kanzenbach
  Cc: brouer, Jesse Brandeburg, Tony Nguyen, David S. Miller,
	Jakub Kicinski, Alexei Starovoitov, Daniel Borkmann,
	Jesper Dangaard Brouer, John Fastabend, Sven Auhagen,
	intel-wired-lan, netdev, bpf, Ilias Apalodimas, Lorenzo Bianconi,
	Sebastian Andrzej Siewior, Richard Cochran, Alexander Duyck,
	Tyler S, Maciej Fijalkowski

On Mon,  3 May 2021 09:28:00 +0200
Kurt Kanzenbach <kurt@linutronix.de> wrote:

> When using native XDP with the igb driver, the XDP frame data doesn't point to
> the beginning of the packet. It's off by 16 bytes. Everything works as expected
> with XDP skb mode.
> 
> Actually these 16 bytes are used to store the packet timestamps. Therefore, pull
> the timestamp before executing any XDP operations and adjust all other code
> accordingly. The igc driver does it like that as well.
> 
> Tested with Intel i210 card and AF_XDP sockets.
> 
> Fixes: 9cbc948b5a20 ("igb: add XDP support")
> Signed-off-by: Kurt Kanzenbach <kurt@linutronix.de>

Thanks for fixing this!

Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>

I expect that we/I will (soon) play with getting this area that is
stored in front of the packet (the XDP data_meta area) described via
BTF.  This way both xdp_frame and AF_XDP can get structured access (e.g.
to the PTP timestamp in this case).

I'll be adding my notes on this project here:
 https://github.com/xdp-project/xdp-project/blob/master/areas/tsn/

Looking forward to collaborate on this with you :-)
-- 
Best regards,
  Jesper Dangaard Brouer
  MSc.CS, Principal Kernel Engineer at Red Hat
  LinkedIn: http://www.linkedin.com/in/brouer


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH net v4] igb: Fix XDP with PTP enabled
  2021-05-04  8:28 ` Jesper Dangaard Brouer
@ 2021-05-19 13:34   ` Jesper Dangaard Brouer
  2021-05-19 18:46     ` Nguyen, Anthony L
  0 siblings, 1 reply; 6+ messages in thread
From: Jesper Dangaard Brouer @ 2021-05-19 13:34 UTC (permalink / raw)
  To: Kurt Kanzenbach
  Cc: Jesse Brandeburg, Tony Nguyen, David S. Miller, Jakub Kicinski,
	Alexei Starovoitov, Daniel Borkmann, Jesper Dangaard Brouer,
	John Fastabend, Sven Auhagen, intel-wired-lan, netdev, bpf,
	Ilias Apalodimas, Lorenzo Bianconi, Sebastian Andrzej Siewior,
	Richard Cochran, Alexander Duyck, Tyler S, Maciej Fijalkowski,
	brouer

Hi Maintainers,

What is the status on this patch?

I don't see this fix being applied on git-trees net or net-next.

[0] 20210503072800.79936-1-kurt@linutronix.de
[1] https://patchwork.kernel.org/project/netdevbpf/patch/20210503072800.79936-1-kurt@linutronix.de/
[2] https://lore.kernel.org/netdev/20210503072800.79936-1-kurt@linutronix.de/


On Tue, 4 May 2021 10:28:27 +0200
Jesper Dangaard Brouer <brouer@redhat.com> wrote:

> On Mon,  3 May 2021 09:28:00 +0200
> Kurt Kanzenbach <kurt@linutronix.de> wrote:
> 
> > When using native XDP with the igb driver, the XDP frame data doesn't point to
> > the beginning of the packet. It's off by 16 bytes. Everything works as expected
> > with XDP skb mode.
> > 
> > Actually these 16 bytes are used to store the packet timestamps. Therefore, pull
> > the timestamp before executing any XDP operations and adjust all other code
> > accordingly. The igc driver does it like that as well.
> > 
> > Tested with Intel i210 card and AF_XDP sockets.
> > 
> > Fixes: 9cbc948b5a20 ("igb: add XDP support")
> > Signed-off-by: Kurt Kanzenbach <kurt@linutronix.de>  
> 
> Thanks for fixing this!
> 
> Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
> 
> I expect that we/I will (soon) play with getting this area that is
> stored in front of the packet (the XDP data_meta area) described via
> BTF.  This way both xdp_frame and AF_XDP can get structured access (e.g.
> to the PTP timestamp in this case).
> 
> I'll be adding my notes on this project here:
>  https://github.com/xdp-project/xdp-project/blob/master/areas/tsn/
> 
> Looking forward to collaborate on this with you :-)



-- 
Best regards,
  Jesper Dangaard Brouer
  MSc.CS, Principal Kernel Engineer at Red Hat
  LinkedIn: http://www.linkedin.com/in/brouer


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH net v4] igb: Fix XDP with PTP enabled
  2021-05-19 13:34   ` Jesper Dangaard Brouer
@ 2021-05-19 18:46     ` Nguyen, Anthony L
  2021-05-20  6:20       ` Kurt Kanzenbach
  0 siblings, 1 reply; 6+ messages in thread
From: Nguyen, Anthony L @ 2021-05-19 18:46 UTC (permalink / raw)
  To: kurt, brouer
  Cc: bigeasy, hawk, davem, john.fastabend, Fijalkowski, Maciej,
	Brandeburg, Jesse, tylerjstachecki, ast, richardcochran,
	intel-wired-lan, alexander.duyck, bpf, ilias.apalodimas, kuba,
	daniel, netdev, sven.auhagen, lorenzo

On Wed, 2021-05-19 at 15:34 +0200, Jesper Dangaard Brouer wrote:
> Hi Maintainers,
> 
> What is the status on this patch?

I'm awaiting testing from our validation. They expect to finish by the
end of the week; I'll send out the patch as soon as they've completed.

Thanks,
Tony


> I don't see this fix being applied on git-trees net or net-next.
> 
> [0] 20210503072800.79936-1-kurt@linutronix.de
> [1] 
> https://patchwork.kernel.org/project/netdevbpf/patch/20210503072800.79936-1-kurt@linutronix.de/
> [2] 
> https://lore.kernel.org/netdev/20210503072800.79936-1-kurt@linutronix.de/
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH net v4] igb: Fix XDP with PTP enabled
  2021-05-19 18:46     ` Nguyen, Anthony L
@ 2021-05-20  6:20       ` Kurt Kanzenbach
  0 siblings, 0 replies; 6+ messages in thread
From: Kurt Kanzenbach @ 2021-05-20  6:20 UTC (permalink / raw)
  To: Nguyen, Anthony L, brouer
  Cc: bigeasy, hawk, davem, john.fastabend, Fijalkowski, Maciej,
	Brandeburg, Jesse, tylerjstachecki, ast, richardcochran,
	intel-wired-lan, alexander.duyck, bpf, ilias.apalodimas, kuba,
	daniel, netdev, sven.auhagen, lorenzo

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

On Wed May 19 2021, Nguyen, Anthony L wrote:
> On Wed, 2021-05-19 at 15:34 +0200, Jesper Dangaard Brouer wrote:
>> Hi Maintainers,
>> 
>> What is the status on this patch?
>
> I'm awaiting testing from our validation. They expect to finish by the
> end of the week; I'll send out the patch as soon as they've completed.
>

Thanks! I've got also a backport of this patch for v5.10.x, so that
people can use the latest LTS e.g., with PREEMPT_RT and working PTP and
XDP. Let me know if there's interest in it.

Thanks,
Kurt

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 861 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH net v4] igb: Fix XDP with PTP enabled
  2021-05-03  7:28 [PATCH net v4] igb: Fix XDP with PTP enabled Kurt Kanzenbach
  2021-05-04  8:28 ` Jesper Dangaard Brouer
@ 2021-06-03 11:30 ` Penigalapati, Sandeep
  1 sibling, 0 replies; 6+ messages in thread
From: Penigalapati, Sandeep @ 2021-06-03 11:30 UTC (permalink / raw)
  To: Kurt Kanzenbach, Brandeburg, Jesse, Nguyen, Anthony L,
	David S. Miller, Jakub Kicinski
  Cc: Alexei Starovoitov, Daniel Borkmann, Jesper Dangaard Brouer,
	John Fastabend, Sven Auhagen, intel-wired-lan, netdev, bpf,
	Ilias Apalodimas, Lorenzo Bianconi, Sebastian Andrzej Siewior,
	Richard Cochran, Alexander Duyck, Tyler S, Fijalkowski, Maciej

>-----Original Message-----
>From: Kurt Kanzenbach <kurt@linutronix.de>
>Sent: Monday, May 3, 2021 12:58 PM
>To: Brandeburg, Jesse <jesse.brandeburg@intel.com>; Nguyen, Anthony L
><anthony.l.nguyen@intel.com>; David S. Miller <davem@davemloft.net>;
>Jakub Kicinski <kuba@kernel.org>
>Cc: Alexei Starovoitov <ast@kernel.org>; Daniel Borkmann
><daniel@iogearbox.net>; Jesper Dangaard Brouer <hawk@kernel.org>; John
>Fastabend <john.fastabend@gmail.com>; Sven Auhagen
><sven.auhagen@voleatech.de>; intel-wired-lan@lists.osuosl.org;
>netdev@vger.kernel.org; bpf@vger.kernel.org; Ilias Apalodimas
><ilias.apalodimas@linaro.org>; Lorenzo Bianconi <lorenzo@kernel.org>;
>Sebastian Andrzej Siewior <bigeasy@linutronix.de>; Richard Cochran
><richardcochran@gmail.com>; Alexander Duyck
><alexander.duyck@gmail.com>; Tyler S <tylerjstachecki@gmail.com>;
>Fijalkowski, Maciej <maciej.fijalkowski@intel.com>; Kurt Kanzenbach
><kurt@linutronix.de>
>Subject: [PATCH net v4] igb: Fix XDP with PTP enabled
>
>When using native XDP with the igb driver, the XDP frame data doesn't point
>to the beginning of the packet. It's off by 16 bytes. Everything works as
>expected with XDP skb mode.
>
>Actually these 16 bytes are used to store the packet timestamps. Therefore,
>pull the timestamp before executing any XDP operations and adjust all other
>code accordingly. The igc driver does it like that as well.
>
>Tested with Intel i210 card and AF_XDP sockets.
>
>Fixes: 9cbc948b5a20 ("igb: add XDP support")
>Signed-off-by: Kurt Kanzenbach <kurt@linutronix.de>
>---
>
>Changes since v3:
>
> * Get rid of timestamp check in hot path (Maciej Fijalkowski)
>
>Changes since v2:
>
> * Check timestamp for validity (Nguyen, Anthony L)
>
>Changes since v1:
>
> * Use xdp_prepare_buff() (Lorenzo Bianconi)
>
>Changes since RFC:
>
> * Removed unused return value definitions (Alexander Duyck)
>
>Previous versions:
>
> * https://lkml.kernel.org/netdev/20210422052617.17267-1-
>kurt@linutronix.de/
> * https://lkml.kernel.org/netdev/20210419072332.7246-1-
>kurt@linutronix.de/
> * https://lkml.kernel.org/netdev/20210415092145.27322-1-
>kurt@linutronix.de/
> * https://lkml.kernel.org/netdev/20210412101713.15161-1-
>kurt@linutronix.de/
>
> drivers/net/ethernet/intel/igb/igb.h      |  2 +-
> drivers/net/ethernet/intel/igb/igb_main.c | 45 +++++++++++++----------
>drivers/net/ethernet/intel/igb/igb_ptp.c  | 23 +++++-------
> 3 files changed, 37 insertions(+), 33 deletions(-)
>
Tested-by: Sandeep Penigalapati <sandeep.penigalapati@intel.com>

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-06-03 11:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-03  7:28 [PATCH net v4] igb: Fix XDP with PTP enabled Kurt Kanzenbach
2021-05-04  8:28 ` Jesper Dangaard Brouer
2021-05-19 13:34   ` Jesper Dangaard Brouer
2021-05-19 18:46     ` Nguyen, Anthony L
2021-05-20  6:20       ` Kurt Kanzenbach
2021-06-03 11:30 ` Penigalapati, Sandeep

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).