DPDK website maintenance
 help / color / mirror / Atom feed
* [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list
@ 2019-04-26  2:15 Xiaolong Ye
  2019-04-26  2:15 ` [dpdk-web] [PATCH 2/2] correct the doc link for af_packet Xiaolong Ye
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Xiaolong Ye @ 2019-04-26  2:15 UTC (permalink / raw)
  To: web, Ferruh Yigit; +Cc: Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 content/supported/others.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/content/supported/others.md b/content/supported/others.md
index 0f99b29..bc512a4 100644
--- a/content/supported/others.md
+++ b/content/supported/others.md
@@ -1,9 +1,10 @@
 +++
 title = "Software NICs"
-description = "af_packet, tap, pcap, ring"
+description = "af_packet, af_xdp, tap, pcap, ring"
 +++
 
 - [af_packet](http://git.dpdk.org/dpdk/tree/drivers/net/af_packet) (Linux AF_PACKET socket)
+- [af_xdp](http://doc.dpdk.org/guides/nics/af_xdp.html) (Linux AF_XDP socket)
 - [tap/tun](http://doc.dpdk.org/guides/nics/tap.html) (kernel L2/L3)
 - [pcap](http://doc.dpdk.org/guides/nics/pcap_ring.html#libpcap-based-pmd) (file or kernel driver)
 - [ring](http://doc.dpdk.org/guides/nics/pcap_ring.html#rings-based-pmd) (memory)
-- 
2.17.1


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

* [dpdk-web] [PATCH 2/2] correct the doc link for af_packet
  2019-04-26  2:15 [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list Xiaolong Ye
@ 2019-04-26  2:15 ` Xiaolong Ye
  2019-04-26  9:52   ` Ferruh Yigit
  2019-04-26 10:02 ` [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list Ferruh Yigit
  2019-04-26 15:27 ` [dpdk-web] [PATCH v2] " Xiaolong Ye
  2 siblings, 1 reply; 9+ messages in thread
From: Xiaolong Ye @ 2019-04-26  2:15 UTC (permalink / raw)
  To: web, Ferruh Yigit; +Cc: Xiaolong Ye

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---
 content/supported/others.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/supported/others.md b/content/supported/others.md
index bc512a4..7140c6f 100644
--- a/content/supported/others.md
+++ b/content/supported/others.md
@@ -3,7 +3,7 @@ title = "Software NICs"
 description = "af_packet, af_xdp, tap, pcap, ring"
 +++
 
-- [af_packet](http://git.dpdk.org/dpdk/tree/drivers/net/af_packet) (Linux AF_PACKET socket)
+- [af_packet](http://doc.dpdk.org/guides/nics/af_packet.html) (Linux AF_PACKET socket)
 - [af_xdp](http://doc.dpdk.org/guides/nics/af_xdp.html) (Linux AF_XDP socket)
 - [tap/tun](http://doc.dpdk.org/guides/nics/tap.html) (kernel L2/L3)
 - [pcap](http://doc.dpdk.org/guides/nics/pcap_ring.html#libpcap-based-pmd) (file or kernel driver)
-- 
2.17.1


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

* Re: [dpdk-web] [PATCH 2/2] correct the doc link for af_packet
  2019-04-26  2:15 ` [dpdk-web] [PATCH 2/2] correct the doc link for af_packet Xiaolong Ye
@ 2019-04-26  9:52   ` Ferruh Yigit
  2019-05-10 19:05     ` Thomas Monjalon
  0 siblings, 1 reply; 9+ messages in thread
From: Ferruh Yigit @ 2019-04-26  9:52 UTC (permalink / raw)
  To: Xiaolong Ye, web

On 4/26/2019 3:15 AM, Xiaolong Ye wrote:
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> ---
>  content/supported/others.md | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/content/supported/others.md b/content/supported/others.md
> index bc512a4..7140c6f 100644
> --- a/content/supported/others.md
> +++ b/content/supported/others.md
> @@ -3,7 +3,7 @@ title = "Software NICs"
>  description = "af_packet, af_xdp, tap, pcap, ring"
>  +++
>  
> -- [af_packet](http://git.dpdk.org/dpdk/tree/drivers/net/af_packet) (Linux AF_PACKET socket)
> +- [af_packet](http://doc.dpdk.org/guides/nics/af_packet.html) (Linux AF_PACKET socket)
>  - [af_xdp](http://doc.dpdk.org/guides/nics/af_xdp.html) (Linux AF_XDP socket)
>  - [tap/tun](http://doc.dpdk.org/guides/nics/tap.html) (kernel L2/L3)
>  - [pcap](http://doc.dpdk.org/guides/nics/pcap_ring.html#libpcap-based-pmd) (file or kernel driver)
> 

Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>

That document added recently but we forgot to update the web page, thanks for
the fix.

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

* Re: [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list
  2019-04-26  2:15 [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list Xiaolong Ye
  2019-04-26  2:15 ` [dpdk-web] [PATCH 2/2] correct the doc link for af_packet Xiaolong Ye
@ 2019-04-26 10:02 ` Ferruh Yigit
  2019-04-26 14:36   ` Ye Xiaolong
  2019-04-26 15:27 ` [dpdk-web] [PATCH v2] " Xiaolong Ye
  2 siblings, 1 reply; 9+ messages in thread
From: Ferruh Yigit @ 2019-04-26 10:02 UTC (permalink / raw)
  To: Xiaolong Ye, web

On 4/26/2019 3:15 AM, Xiaolong Ye wrote:
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> ---
>  content/supported/others.md | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/content/supported/others.md b/content/supported/others.md
> index 0f99b29..bc512a4 100644
> --- a/content/supported/others.md
> +++ b/content/supported/others.md
> @@ -1,9 +1,10 @@
>  +++
>  title = "Software NICs"
> -description = "af_packet, tap, pcap, ring"
> +description = "af_packet, af_xdp, tap, pcap, ring"
>  +++
>  
>  - [af_packet](http://git.dpdk.org/dpdk/tree/drivers/net/af_packet) (Linux AF_PACKET socket)
> +- [af_xdp](http://doc.dpdk.org/guides/nics/af_xdp.html) (Linux AF_XDP socket)
>  - [tap/tun](http://doc.dpdk.org/guides/nics/tap.html) (kernel L2/L3)
>  - [pcap](http://doc.dpdk.org/guides/nics/pcap_ring.html#libpcap-based-pmd) (file or kernel driver)
>  - [ring](http://doc.dpdk.org/guides/nics/pcap_ring.html#rings-based-pmd) (memory)
> 

Hi Xiaolong,

Can you please update commit log to include in which DPDK version the PMD is
added, also if possible commit ids that introduces the PMD?

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

* Re: [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list
  2019-04-26 10:02 ` [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list Ferruh Yigit
@ 2019-04-26 14:36   ` Ye Xiaolong
  0 siblings, 0 replies; 9+ messages in thread
From: Ye Xiaolong @ 2019-04-26 14:36 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: web

On 04/26, Ferruh Yigit wrote:
>On 4/26/2019 3:15 AM, Xiaolong Ye wrote:
>> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
>> ---
>>  content/supported/others.md | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>> 
>> diff --git a/content/supported/others.md b/content/supported/others.md
>> index 0f99b29..bc512a4 100644
>> --- a/content/supported/others.md
>> +++ b/content/supported/others.md
>> @@ -1,9 +1,10 @@
>>  +++
>>  title = "Software NICs"
>> -description = "af_packet, tap, pcap, ring"
>> +description = "af_packet, af_xdp, tap, pcap, ring"
>>  +++
>>  
>>  - [af_packet](http://git.dpdk.org/dpdk/tree/drivers/net/af_packet) (Linux AF_PACKET socket)
>> +- [af_xdp](http://doc.dpdk.org/guides/nics/af_xdp.html) (Linux AF_XDP socket)
>>  - [tap/tun](http://doc.dpdk.org/guides/nics/tap.html) (kernel L2/L3)
>>  - [pcap](http://doc.dpdk.org/guides/nics/pcap_ring.html#libpcap-based-pmd) (file or kernel driver)
>>  - [ring](http://doc.dpdk.org/guides/nics/pcap_ring.html#rings-based-pmd) (memory)
>> 
>
>Hi Xiaolong,
>
>Can you please update commit log to include in which DPDK version the PMD is
>added, also if possible commit ids that introduces the PMD?

Got it, will add these info in v2.

Thanks,
Xiaolong

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

* [dpdk-web] [PATCH v2] add af_xdp to supported software nic list
  2019-04-26  2:15 [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list Xiaolong Ye
  2019-04-26  2:15 ` [dpdk-web] [PATCH 2/2] correct the doc link for af_packet Xiaolong Ye
  2019-04-26 10:02 ` [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list Ferruh Yigit
@ 2019-04-26 15:27 ` Xiaolong Ye
  2019-05-02 10:29   ` Ferruh Yigit
  2 siblings, 1 reply; 9+ messages in thread
From: Xiaolong Ye @ 2019-04-26 15:27 UTC (permalink / raw)
  To: web, Ferruh Yigit; +Cc: Xiaolong Ye

AF_XDP PMD is introduced in DPDK 19.05, corresponding commit in upstream is
f1debd77efa ("net/af_xdp: introduce AF_XDP PMD").

Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
---

V2 change:
- refine the commit log by adding some basic info such as when AF_XDP
  PMD is introduced.

 content/supported/others.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/content/supported/others.md b/content/supported/others.md
index 0f99b29..bc512a4 100644
--- a/content/supported/others.md
+++ b/content/supported/others.md
@@ -1,9 +1,10 @@
 +++
 title = "Software NICs"
-description = "af_packet, tap, pcap, ring"
+description = "af_packet, af_xdp, tap, pcap, ring"
 +++
 
 - [af_packet](http://git.dpdk.org/dpdk/tree/drivers/net/af_packet) (Linux AF_PACKET socket)
+- [af_xdp](http://doc.dpdk.org/guides/nics/af_xdp.html) (Linux AF_XDP socket)
 - [tap/tun](http://doc.dpdk.org/guides/nics/tap.html) (kernel L2/L3)
 - [pcap](http://doc.dpdk.org/guides/nics/pcap_ring.html#libpcap-based-pmd) (file or kernel driver)
 - [ring](http://doc.dpdk.org/guides/nics/pcap_ring.html#rings-based-pmd) (memory)
-- 
2.17.1


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

* Re: [dpdk-web] [PATCH v2] add af_xdp to supported software nic list
  2019-04-26 15:27 ` [dpdk-web] [PATCH v2] " Xiaolong Ye
@ 2019-05-02 10:29   ` Ferruh Yigit
  2019-05-10 19:00     ` Thomas Monjalon
  0 siblings, 1 reply; 9+ messages in thread
From: Ferruh Yigit @ 2019-05-02 10:29 UTC (permalink / raw)
  To: Xiaolong Ye, web

On 4/26/2019 4:27 PM, Xiaolong Ye wrote:
> AF_XDP PMD is introduced in DPDK 19.05, corresponding commit in upstream is
> f1debd77efa ("net/af_xdp: introduce AF_XDP PMD").
> 
> Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>

Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>


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

* Re: [dpdk-web] [PATCH v2] add af_xdp to supported software nic list
  2019-05-02 10:29   ` Ferruh Yigit
@ 2019-05-10 19:00     ` Thomas Monjalon
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Monjalon @ 2019-05-10 19:00 UTC (permalink / raw)
  To: Xiaolong Ye; +Cc: web, Ferruh Yigit

02/05/2019 12:29, Ferruh Yigit:
> On 4/26/2019 4:27 PM, Xiaolong Ye wrote:
> > AF_XDP PMD is introduced in DPDK 19.05, corresponding commit in upstream is
> > f1debd77efa ("net/af_xdp: introduce AF_XDP PMD").
> > 
> > Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> 
> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied, thanks



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

* Re: [dpdk-web] [PATCH 2/2] correct the doc link for af_packet
  2019-04-26  9:52   ` Ferruh Yigit
@ 2019-05-10 19:05     ` Thomas Monjalon
  0 siblings, 0 replies; 9+ messages in thread
From: Thomas Monjalon @ 2019-05-10 19:05 UTC (permalink / raw)
  To: Xiaolong Ye; +Cc: web, Ferruh Yigit

26/04/2019 11:52, Ferruh Yigit:
> On 4/26/2019 3:15 AM, Xiaolong Ye wrote:
> > Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
> > ---
> >  content/supported/others.md | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/content/supported/others.md b/content/supported/others.md
> > index bc512a4..7140c6f 100644
> > --- a/content/supported/others.md
> > +++ b/content/supported/others.md
> > @@ -3,7 +3,7 @@ title = "Software NICs"
> >  description = "af_packet, af_xdp, tap, pcap, ring"
> >  +++
> >  
> > -- [af_packet](http://git.dpdk.org/dpdk/tree/drivers/net/af_packet) (Linux AF_PACKET socket)
> > +- [af_packet](http://doc.dpdk.org/guides/nics/af_packet.html) (Linux AF_PACKET socket)
> >  - [af_xdp](http://doc.dpdk.org/guides/nics/af_xdp.html) (Linux AF_XDP socket)
> >  - [tap/tun](http://doc.dpdk.org/guides/nics/tap.html) (kernel L2/L3)
> >  - [pcap](http://doc.dpdk.org/guides/nics/pcap_ring.html#libpcap-based-pmd) (file or kernel driver)
> > 
> 
> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
> 
> That document added recently but we forgot to update the web page, thanks for
> the fix.

Applied with following text, thanks.

    reference new doc for AF_PACKET
    
    The guide for AF_PACKET PMD was introduced in DPDK 19.02
    by commit 6ef75e405d5a ("doc: add af_packet PMD guide").




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

end of thread, other threads:[~2019-05-10 19:06 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-26  2:15 [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list Xiaolong Ye
2019-04-26  2:15 ` [dpdk-web] [PATCH 2/2] correct the doc link for af_packet Xiaolong Ye
2019-04-26  9:52   ` Ferruh Yigit
2019-05-10 19:05     ` Thomas Monjalon
2019-04-26 10:02 ` [dpdk-web] [PATCH 1/2] add af_xdp to supported software nic list Ferruh Yigit
2019-04-26 14:36   ` Ye Xiaolong
2019-04-26 15:27 ` [dpdk-web] [PATCH v2] " Xiaolong Ye
2019-05-02 10:29   ` Ferruh Yigit
2019-05-10 19:00     ` 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).