patches for DPDK stable branches
 help / color / mirror / Atom feed
* [PATCH] mbuf: expose outer vlan in mbuf dump
@ 2022-04-04  0:56 Ben Magistro
  2022-04-04  6:15 ` Morten Brørup
  0 siblings, 1 reply; 9+ messages in thread
From: Ben Magistro @ 2022-04-04  0:56 UTC (permalink / raw)
  To: dev; +Cc: ben.magistro, stefan.baranoff, stable, Ben Magistro

Enable printing of the outer vlan if flags indicate it is present.

Signed-off-by: Ben Magistro <koncept1@gmail.com>

---

While troubleshooting some QinQ offloads with various Intel i40e firmware[1], it was
helpful to expose the outer vlan in the dump mbuf calls.  This should be straightforward
to backport and happy to do the work if accepted. I understand that this may not be a
widely supported capability at this time, so we are okay if this is not accepted and
we just maintain a local patch.

---
 lib/mbuf/rte_mbuf.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/mbuf/rte_mbuf.c b/lib/mbuf/rte_mbuf.c
index 87592faccb..a2307cebe6 100644
--- a/lib/mbuf/rte_mbuf.c
+++ b/lib/mbuf/rte_mbuf.c
@@ -674,6 +674,9 @@ rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m, unsigned dump_len)
 	fprintf(f, "  pkt_len=%u, ol_flags=%#"PRIx64", nb_segs=%u, port=%u",
 		m->pkt_len, m->ol_flags, m->nb_segs, m->port);
 
+	if (m->ol_flags & (RTE_MBUF_F_RX_QINQ | RTE_MBUF_F_TX_QINQ))
+		fprintf(f, ", vlan_tci_outer=%u", m->vlan_tci_outer);
+
 	if (m->ol_flags & (RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_TX_VLAN))
 		fprintf(f, ", vlan_tci=%u", m->vlan_tci);
 
-- 
2.27.0


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

* RE: [PATCH] mbuf: expose outer vlan in mbuf dump
  2022-04-04  0:56 [PATCH] mbuf: expose outer vlan in mbuf dump Ben Magistro
@ 2022-04-04  6:15 ` Morten Brørup
  2022-04-04 10:33   ` Kevin Traynor
  0 siblings, 1 reply; 9+ messages in thread
From: Morten Brørup @ 2022-04-04  6:15 UTC (permalink / raw)
  To: Ben Magistro, dev; +Cc: ben.magistro, stefan.baranoff, stable

> From: Ben Magistro [mailto:koncept1@gmail.com]
> Sent: Monday, 4 April 2022 02.57
> 
> Enable printing of the outer vlan if flags indicate it is present.
> 
> Signed-off-by: Ben Magistro <koncept1@gmail.com>
> 
> ---
> 
> While troubleshooting some QinQ offloads with various Intel i40e
> firmware[1], it was
> helpful to expose the outer vlan in the dump mbuf calls.  This should
> be straightforward
> to backport and happy to do the work if accepted. I understand that
> this may not be a
> widely supported capability at this time, so we are okay if this is not
> accepted and
> we just maintain a local patch.

Features are usually not backported, only bug fixes.

However, since this patch proved helpful finding a bug, and it is very simple, it could be considered by the LTS maintainers.

> 
> ---
>  lib/mbuf/rte_mbuf.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/lib/mbuf/rte_mbuf.c b/lib/mbuf/rte_mbuf.c
> index 87592faccb..a2307cebe6 100644
> --- a/lib/mbuf/rte_mbuf.c
> +++ b/lib/mbuf/rte_mbuf.c
> @@ -674,6 +674,9 @@ rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m,
> unsigned dump_len)
>  	fprintf(f, "  pkt_len=%u, ol_flags=%#"PRIx64", nb_segs=%u,
> port=%u",
>  		m->pkt_len, m->ol_flags, m->nb_segs, m->port);
> 
> +	if (m->ol_flags & (RTE_MBUF_F_RX_QINQ | RTE_MBUF_F_TX_QINQ))
> +		fprintf(f, ", vlan_tci_outer=%u", m->vlan_tci_outer);
> +
>  	if (m->ol_flags & (RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_TX_VLAN))
>  		fprintf(f, ", vlan_tci=%u", m->vlan_tci);
> 
> --
> 2.27.0
> 

Reviewed-by: Morten Brørup <mb@smartsharesystems.com>


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

* Re: [PATCH] mbuf: expose outer vlan in mbuf dump
  2022-04-04  6:15 ` Morten Brørup
@ 2022-04-04 10:33   ` Kevin Traynor
  2022-04-05 15:51     ` Thomas Monjalon
  0 siblings, 1 reply; 9+ messages in thread
From: Kevin Traynor @ 2022-04-04 10:33 UTC (permalink / raw)
  To: Morten Brørup, Ben Magistro, dev
  Cc: ben.magistro, stefan.baranoff, stable, Luca Boccassi,
	Christian Ehrhardt, Xueming(Steven) Li

On 04/04/2022 07:15, Morten Brørup wrote:
>> From: Ben Magistro [mailto:koncept1@gmail.com]
>> Sent: Monday, 4 April 2022 02.57
>>
>> Enable printing of the outer vlan if flags indicate it is present.
>>
>> Signed-off-by: Ben Magistro <koncept1@gmail.com>
>>
>> ---
>>
>> While troubleshooting some QinQ offloads with various Intel i40e
>> firmware[1], it was
>> helpful to expose the outer vlan in the dump mbuf calls.  This should
>> be straightforward
>> to backport and happy to do the work if accepted. I understand that
>> this may not be a
>> widely supported capability at this time, so we are okay if this is not
>> accepted and
>> we just maintain a local patch.
> 
> Features are usually not backported, only bug fixes.
> 
> However, since this patch proved helpful finding a bug, and it is very simple, it could be considered by the LTS maintainers.
> 


Suggest to tag the patch with 'Cc: stable@dpdk.org' to indicate it is 
requested for stable branches. It will be caught by stable maintainer 
filters when it is time for backports and can be discussed further then.

(Note, it would need small rebase for older than 21.11 LTS to account 
for the namespaces that were added)

Kevin.

>>
>> ---
>>   lib/mbuf/rte_mbuf.c | 3 +++
>>   1 file changed, 3 insertions(+)
>>
>> diff --git a/lib/mbuf/rte_mbuf.c b/lib/mbuf/rte_mbuf.c
>> index 87592faccb..a2307cebe6 100644
>> --- a/lib/mbuf/rte_mbuf.c
>> +++ b/lib/mbuf/rte_mbuf.c
>> @@ -674,6 +674,9 @@ rte_pktmbuf_dump(FILE *f, const struct rte_mbuf *m,
>> unsigned dump_len)
>>   	fprintf(f, "  pkt_len=%u, ol_flags=%#"PRIx64", nb_segs=%u,
>> port=%u",
>>   		m->pkt_len, m->ol_flags, m->nb_segs, m->port);
>>
>> +	if (m->ol_flags & (RTE_MBUF_F_RX_QINQ | RTE_MBUF_F_TX_QINQ))
>> +		fprintf(f, ", vlan_tci_outer=%u", m->vlan_tci_outer);
>> +
>>   	if (m->ol_flags & (RTE_MBUF_F_RX_VLAN | RTE_MBUF_F_TX_VLAN))
>>   		fprintf(f, ", vlan_tci=%u", m->vlan_tci);
>>
>> --
>> 2.27.0
>>
> 
> Reviewed-by: Morten Brørup <mb@smartsharesystems.com>
> 


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

* Re: [PATCH] mbuf: expose outer vlan in mbuf dump
  2022-04-04 10:33   ` Kevin Traynor
@ 2022-04-05 15:51     ` Thomas Monjalon
  2022-04-06  7:33       ` Olivier Matz
  0 siblings, 1 reply; 9+ messages in thread
From: Thomas Monjalon @ 2022-04-05 15:51 UTC (permalink / raw)
  To: Ben Magistro
  Cc: Morten Brørup, dev, ben.magistro, stefan.baranoff, stable,
	Luca Boccassi, Christian Ehrhardt, Xueming(Steven) Li,
	Kevin Traynor

04/04/2022 12:33, Kevin Traynor:
> On 04/04/2022 07:15, Morten Brørup wrote:
> >> From: Ben Magistro [mailto:koncept1@gmail.com]
> >> Sent: Monday, 4 April 2022 02.57
> >>
> >> Enable printing of the outer vlan if flags indicate it is present.
> >>
> >> Signed-off-by: Ben Magistro <koncept1@gmail.com>
> >>
> >> ---
> >>
> >> While troubleshooting some QinQ offloads with various Intel i40e
> >> firmware[1], it was
> >> helpful to expose the outer vlan in the dump mbuf calls.  This should
> >> be straightforward
> >> to backport and happy to do the work if accepted. I understand that
> >> this may not be a
> >> widely supported capability at this time, so we are okay if this is not
> >> accepted and
> >> we just maintain a local patch.
> > 
> > Features are usually not backported, only bug fixes.
> > 
> > However, since this patch proved helpful finding a bug, and it is very simple, it could be considered by the LTS maintainers.
> 
> 
> Suggest to tag the patch with 'Cc: stable@dpdk.org' to indicate it is 
> requested for stable branches. It will be caught by stable maintainer 
> filters when it is time for backports and can be discussed further then.

I think it is a bug.
What was introduced first? the function or the field?
Please find the commit where it should have been done
and mark it with "Fixes:" syntax + Cc:stable.



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

* Re: [PATCH] mbuf: expose outer vlan in mbuf dump
  2022-04-05 15:51     ` Thomas Monjalon
@ 2022-04-06  7:33       ` Olivier Matz
  2022-04-12 16:11         ` Ben Magistro
  0 siblings, 1 reply; 9+ messages in thread
From: Olivier Matz @ 2022-04-06  7:33 UTC (permalink / raw)
  To: Thomas Monjalon
  Cc: Ben Magistro, Morten Brørup, dev, ben.magistro,
	stefan.baranoff, stable, Luca Boccassi, Christian Ehrhardt,
	Xueming(Steven) Li, Kevin Traynor

Hi,

On Tue, Apr 05, 2022 at 05:51:05PM +0200, Thomas Monjalon wrote:
> 04/04/2022 12:33, Kevin Traynor:
> > On 04/04/2022 07:15, Morten Brørup wrote:
> > >> From: Ben Magistro [mailto:koncept1@gmail.com]
> > >> Sent: Monday, 4 April 2022 02.57
> > >>
> > >> Enable printing of the outer vlan if flags indicate it is present.
> > >>
> > >> Signed-off-by: Ben Magistro <koncept1@gmail.com>

Acked-by: Olivier Matz <olivier.matz@6wind.com>

> > >>
> > >> ---
> > >>
> > >> While troubleshooting some QinQ offloads with various Intel i40e
> > >> firmware[1], it was
> > >> helpful to expose the outer vlan in the dump mbuf calls.  This should
> > >> be straightforward
> > >> to backport and happy to do the work if accepted. I understand that
> > >> this may not be a
> > >> widely supported capability at this time, so we are okay if this is not
> > >> accepted and
> > >> we just maintain a local patch.
> > > 
> > > Features are usually not backported, only bug fixes.
> > > 
> > > However, since this patch proved helpful finding a bug, and it is very simple, it could be considered by the LTS maintainers.
> > 
> > 
> > Suggest to tag the patch with 'Cc: stable@dpdk.org' to indicate it is 
> > requested for stable branches. It will be caught by stable maintainer 
> > filters when it is time for backports and can be discussed further then.
> 
> I think it is a bug.
> What was introduced first? the function or the field?
> Please find the commit where it should have been done
> and mark it with "Fixes:" syntax + Cc:stable.

The vlan dump was introduced by commit 5b6eaea8ea7c ("mbuf: display more
fields in dump"), but I don't think we can say it's a bug. To me, it is
an enhancement that could be backported, because there is a benefit with
a very low risk.

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

* Re: [PATCH] mbuf: expose outer vlan in mbuf dump
  2022-04-06  7:33       ` Olivier Matz
@ 2022-04-12 16:11         ` Ben Magistro
  2022-04-13 12:02           ` Thomas Monjalon
  0 siblings, 1 reply; 9+ messages in thread
From: Ben Magistro @ 2022-04-12 16:11 UTC (permalink / raw)
  To: Olivier Matz
  Cc: Thomas Monjalon, Morten Brørup, dev, ben.magistro,
	Stefan Baranoff, stable, Luca Boccassi, Christian Ehrhardt,
	Xueming(Steven) Li, Kevin Traynor

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

Was there a consensus on if this should be re-drafted as a bug and fixes or
left as a backportable feature/improvement?  I am good either way, just
wanted to clarify if I had an additional action at this time.

Cheers

On Wed, Apr 6, 2022 at 3:33 AM Olivier Matz <olivier.matz@6wind.com> wrote:

> Hi,
>
> On Tue, Apr 05, 2022 at 05:51:05PM +0200, Thomas Monjalon wrote:
> > 04/04/2022 12:33, Kevin Traynor:
> > > On 04/04/2022 07:15, Morten Brørup wrote:
> > > >> From: Ben Magistro [mailto:koncept1@gmail.com]
> > > >> Sent: Monday, 4 April 2022 02.57
> > > >>
> > > >> Enable printing of the outer vlan if flags indicate it is present.
> > > >>
> > > >> Signed-off-by: Ben Magistro <koncept1@gmail.com>
>
> Acked-by: Olivier Matz <olivier.matz@6wind.com>
>
> > > >>
> > > >> ---
> > > >>
> > > >> While troubleshooting some QinQ offloads with various Intel i40e
> > > >> firmware[1], it was
> > > >> helpful to expose the outer vlan in the dump mbuf calls.  This
> should
> > > >> be straightforward
> > > >> to backport and happy to do the work if accepted. I understand that
> > > >> this may not be a
> > > >> widely supported capability at this time, so we are okay if this is
> not
> > > >> accepted and
> > > >> we just maintain a local patch.
> > > >
> > > > Features are usually not backported, only bug fixes.
> > > >
> > > > However, since this patch proved helpful finding a bug, and it is
> very simple, it could be considered by the LTS maintainers.
> > >
> > >
> > > Suggest to tag the patch with 'Cc: stable@dpdk.org' to indicate it is
> > > requested for stable branches. It will be caught by stable maintainer
> > > filters when it is time for backports and can be discussed further
> then.
> >
> > I think it is a bug.
> > What was introduced first? the function or the field?
> > Please find the commit where it should have been done
> > and mark it with "Fixes:" syntax + Cc:stable.
>
> The vlan dump was introduced by commit 5b6eaea8ea7c ("mbuf: display more
> fields in dump"), but I don't think we can say it's a bug. To me, it is
> an enhancement that could be backported, because there is a benefit with
> a very low risk.
>

[-- Attachment #2: Type: text/html, Size: 3178 bytes --]

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

* Re: [PATCH] mbuf: expose outer vlan in mbuf dump
  2022-04-12 16:11         ` Ben Magistro
@ 2022-04-13 12:02           ` Thomas Monjalon
  2022-04-13 12:59             ` Morten Brørup
  0 siblings, 1 reply; 9+ messages in thread
From: Thomas Monjalon @ 2022-04-13 12:02 UTC (permalink / raw)
  To: Olivier Matz, Ben Magistro
  Cc: Morten Brørup, dev, ben.magistro, Stefan Baranoff, stable,
	Luca Boccassi, Christian Ehrhardt, Xueming(Steven) Li,
	Kevin Traynor, stable

12/04/2022 18:11, Ben Magistro:
> Was there a consensus on if this should be re-drafted as a bug and fixes or
> left as a backportable feature/improvement?  I am good either way, just
> wanted to clarify if I had an additional action at this time.

There is no consensus but that's a detail.

In any case we agree to backport it.
I'll merge it with Cc: stable@dpdk.org


> On Wed, Apr 6, 2022 at 3:33 AM Olivier Matz <olivier.matz@6wind.com> wrote:
> 
> > Hi,
> >
> > On Tue, Apr 05, 2022 at 05:51:05PM +0200, Thomas Monjalon wrote:
> > > 04/04/2022 12:33, Kevin Traynor:
> > > > On 04/04/2022 07:15, Morten Brørup wrote:
> > > > >> From: Ben Magistro [mailto:koncept1@gmail.com]
> > > > >> Sent: Monday, 4 April 2022 02.57
> > > > >>
> > > > >> Enable printing of the outer vlan if flags indicate it is present.
> > > > >>
> > > > >> Signed-off-by: Ben Magistro <koncept1@gmail.com>
> >
> > Acked-by: Olivier Matz <olivier.matz@6wind.com>
> >
> > > > >>
> > > > >> ---
> > > > >>
> > > > >> While troubleshooting some QinQ offloads with various Intel i40e
> > > > >> firmware[1], it was
> > > > >> helpful to expose the outer vlan in the dump mbuf calls.  This
> > should
> > > > >> be straightforward
> > > > >> to backport and happy to do the work if accepted. I understand that
> > > > >> this may not be a
> > > > >> widely supported capability at this time, so we are okay if this is
> > not
> > > > >> accepted and
> > > > >> we just maintain a local patch.
> > > > >
> > > > > Features are usually not backported, only bug fixes.
> > > > >
> > > > > However, since this patch proved helpful finding a bug, and it is
> > very simple, it could be considered by the LTS maintainers.
> > > >
> > > >
> > > > Suggest to tag the patch with 'Cc: stable@dpdk.org' to indicate it is
> > > > requested for stable branches. It will be caught by stable maintainer
> > > > filters when it is time for backports and can be discussed further
> > then.
> > >
> > > I think it is a bug.
> > > What was introduced first? the function or the field?
> > > Please find the commit where it should have been done
> > > and mark it with "Fixes:" syntax + Cc:stable.
> >
> > The vlan dump was introduced by commit 5b6eaea8ea7c ("mbuf: display more
> > fields in dump"), but I don't think we can say it's a bug. To me, it is
> > an enhancement that could be backported, because there is a benefit with
> > a very low risk.
> >
> 






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

* RE: [PATCH] mbuf: expose outer vlan in mbuf dump
  2022-04-13 12:02           ` Thomas Monjalon
@ 2022-04-13 12:59             ` Morten Brørup
  2022-06-01  9:18               ` Thomas Monjalon
  0 siblings, 1 reply; 9+ messages in thread
From: Morten Brørup @ 2022-04-13 12:59 UTC (permalink / raw)
  To: Thomas Monjalon, Olivier Matz, Ben Magistro
  Cc: dev, ben.magistro, Stefan Baranoff, stable, Luca Boccassi,
	Christian Ehrhardt, Xueming(Steven) Li, Kevin Traynor, stable

> From: Thomas Monjalon [mailto:thomas@monjalon.net]
> Sent: Wednesday, 13 April 2022 14.03
> 
> 12/04/2022 18:11, Ben Magistro:
> > Was there a consensus on if this should be re-drafted as a bug and
> fixes or
> > left as a backportable feature/improvement?  I am good either way,
> just
> > wanted to clarify if I had an additional action at this time.
> 
> There is no consensus but that's a detail.
> 
> In any case we agree to backport it.
> I'll merge it with Cc: stable@dpdk.org

+1 to that, Thomas!

> 
> 
> > On Wed, Apr 6, 2022 at 3:33 AM Olivier Matz <olivier.matz@6wind.com>
> wrote:
> >
> > > Hi,
> > >
> > > On Tue, Apr 05, 2022 at 05:51:05PM +0200, Thomas Monjalon wrote:
> > > > 04/04/2022 12:33, Kevin Traynor:
> > > > > On 04/04/2022 07:15, Morten Brørup wrote:
> > > > > >> From: Ben Magistro [mailto:koncept1@gmail.com]
> > > > > >> Sent: Monday, 4 April 2022 02.57
> > > > > >>
> > > > > >> Enable printing of the outer vlan if flags indicate it is
> present.
> > > > > >>
> > > > > >> Signed-off-by: Ben Magistro <koncept1@gmail.com>
> > >
> > > Acked-by: Olivier Matz <olivier.matz@6wind.com>
> > >
> > > > > >>
> > > > > >> ---
> > > > > >>
> > > > > >> While troubleshooting some QinQ offloads with various Intel
> i40e
> > > > > >> firmware[1], it was
> > > > > >> helpful to expose the outer vlan in the dump mbuf calls.
> This
> > > should
> > > > > >> be straightforward
> > > > > >> to backport and happy to do the work if accepted. I
> understand that
> > > > > >> this may not be a
> > > > > >> widely supported capability at this time, so we are okay if
> this is
> > > not
> > > > > >> accepted and
> > > > > >> we just maintain a local patch.
> > > > > >
> > > > > > Features are usually not backported, only bug fixes.
> > > > > >
> > > > > > However, since this patch proved helpful finding a bug, and
> it is
> > > very simple, it could be considered by the LTS maintainers.
> > > > >
> > > > >
> > > > > Suggest to tag the patch with 'Cc: stable@dpdk.org' to indicate
> it is
> > > > > requested for stable branches. It will be caught by stable
> maintainer
> > > > > filters when it is time for backports and can be discussed
> further
> > > then.
> > > >
> > > > I think it is a bug.
> > > > What was introduced first? the function or the field?
> > > > Please find the commit where it should have been done
> > > > and mark it with "Fixes:" syntax + Cc:stable.
> > >
> > > The vlan dump was introduced by commit 5b6eaea8ea7c ("mbuf: display
> more
> > > fields in dump"), but I don't think we can say it's a bug. To me,
> it is
> > > an enhancement that could be backported, because there is a benefit
> with
> > > a very low risk.
> > >
> >
> 

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

* Re: [PATCH] mbuf: expose outer vlan in mbuf dump
  2022-04-13 12:59             ` Morten Brørup
@ 2022-06-01  9:18               ` Thomas Monjalon
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Monjalon @ 2022-06-01  9:18 UTC (permalink / raw)
  To: Ben Magistro
  Cc: Olivier Matz, dev, ben.magistro, Stefan Baranoff, stable,
	Luca Boccassi, Christian Ehrhardt, Xueming(Steven) Li,
	Kevin Traynor, stable, Morten Brørup

13/04/2022 14:59, Morten Brørup:
> > From: Thomas Monjalon [mailto:thomas@monjalon.net]
> > Sent: Wednesday, 13 April 2022 14.03
> > 
> > 12/04/2022 18:11, Ben Magistro:
> > > Was there a consensus on if this should be re-drafted as a bug and
> > fixes or
> > > left as a backportable feature/improvement?  I am good either way,
> > just
> > > wanted to clarify if I had an additional action at this time.
> > 
> > There is no consensus but that's a detail.
> > 
> > In any case we agree to backport it.
> > I'll merge it with Cc: stable@dpdk.org
> 
> +1 to that, Thomas!
> 
> > 
> > 
> > > On Wed, Apr 6, 2022 at 3:33 AM Olivier Matz <olivier.matz@6wind.com>
> > wrote:
> > >
> > > > Hi,
> > > >
> > > > On Tue, Apr 05, 2022 at 05:51:05PM +0200, Thomas Monjalon wrote:
> > > > > 04/04/2022 12:33, Kevin Traynor:
> > > > > > On 04/04/2022 07:15, Morten Brørup wrote:
> > > > > > >> From: Ben Magistro [mailto:koncept1@gmail.com]
> > > > > > >> Sent: Monday, 4 April 2022 02.57
> > > > > > >>
> > > > > > >> Enable printing of the outer vlan if flags indicate it is
> > present.
> > > > > > >>
> > > > > > >> Signed-off-by: Ben Magistro <koncept1@gmail.com>
> > > >
> > > > Acked-by: Olivier Matz <olivier.matz@6wind.com>

Applied, thanks.






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

end of thread, other threads:[~2022-06-01  9:18 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-04  0:56 [PATCH] mbuf: expose outer vlan in mbuf dump Ben Magistro
2022-04-04  6:15 ` Morten Brørup
2022-04-04 10:33   ` Kevin Traynor
2022-04-05 15:51     ` Thomas Monjalon
2022-04-06  7:33       ` Olivier Matz
2022-04-12 16:11         ` Ben Magistro
2022-04-13 12:02           ` Thomas Monjalon
2022-04-13 12:59             ` Morten Brørup
2022-06-01  9:18               ` Thomas Monjalon

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