* [dpdk-web] [PATCH] cleanup supported NICs
@ 2017-02-16 18:21 Ferruh Yigit
2017-02-26 17:36 ` [dpdk-web] [PATCH v2] " Thomas Monjalon
0 siblings, 1 reply; 4+ messages in thread
From: Ferruh Yigit @ 2017-02-16 18:21 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: web, Ferruh Yigit
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
doc/nics.html | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/doc/nics.html b/doc/nics.html
index e6d6c4e..dba4cc9 100644
--- a/doc/nics.html
+++ b/doc/nics.html
@@ -62,10 +62,6 @@
<ul>
<li><a href="/doc/guides/nics/enic.html">enic</a> (UCS Virtual Interface Card)</li>
</ul>
- <h3>Emulex</h3>
- <ul>
- <li><a href="/about#6WIND">oce</a> (OneConnect OCe14000 family)</li>
- </ul>
<h3>Intel</h3>
<ul>
<li><a href="/doc/guides/nics/e1000em.html">e1000</a> (82540, 82545, 82546)</li>
@@ -104,7 +100,6 @@
<a href="/doc/guides/nics/vmxnet3.html">vmxnet3 + uio</a>
(VMware ESXi)
</li>
- <li><a href="/doc/memnic-pmd">memnic</a></li>
</ul>
<h3>Others</h3>
<ul>
@@ -113,6 +108,11 @@
<li><a href="/doc/guides/nics/pcap_ring.html#libpcap-based-pmd">pcap</a> (file or kernel driver)</li>
<li><a href="/doc/guides/nics/pcap_ring.html#rings-based-pmd">ring</a> (memory)</li>
</ul>
+ <h3>Old</h3>
+ <ul>
+ <li>Emulex: <a href="/about#6WIND">oce</a> (OneConnect OCe14000 family)</li>
+ <li><a href="/doc/memnic-pmd">memnic</a></li>
+ </ul>
</section>
</body>
</html>
--
2.9.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dpdk-web] [PATCH v2] cleanup supported NICs
2017-02-16 18:21 [dpdk-web] [PATCH] cleanup supported NICs Ferruh Yigit
@ 2017-02-26 17:36 ` Thomas Monjalon
2017-03-07 14:57 ` Ferruh Yigit
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Monjalon @ 2017-02-26 17:36 UTC (permalink / raw)
To: Ferruh Yigit; +Cc: web, vincent.jardin
From: Ferruh Yigit <ferruh.yigit@intel.com>
Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
---
v2:
- rewording
- move vmxnet3_usermap
---
doc/nics.html | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
diff --git a/doc/nics.html b/doc/nics.html
index e6d6c4e..f3eff47 100644
--- a/doc/nics.html
+++ b/doc/nics.html
@@ -62,10 +62,6 @@
<ul>
<li><a href="/doc/guides/nics/enic.html">enic</a> (UCS Virtual Interface Card)</li>
</ul>
- <h3>Emulex</h3>
- <ul>
- <li><a href="/about#6WIND">oce</a> (OneConnect OCe14000 family)</li>
- </ul>
<h3>Intel</h3>
<ul>
<li><a href="/doc/guides/nics/e1000em.html">e1000</a> (82540, 82545, 82546)</li>
@@ -98,13 +94,8 @@
<h3>Paravirtualization</h3>
<ul>
<li><a href="/doc/guides/nics/virtio.html">virtio-net</a> (QEMU)</li>
+ <li><a href="/doc/guides/nics/vmxnet3.html">vmxnet3</a> (VMware ESXi)</li>
<li><a href="/doc/guides/xen/pkt_switch.html#xen-pmd-frontend-prerequisites">xenvirt</a> (Xen)</li>
- <li>
- <a href="/doc/vmxnet3-usermap">vmxnet3 usermap</a> or
- <a href="/doc/guides/nics/vmxnet3.html">vmxnet3 + uio</a>
- (VMware ESXi)
- </li>
- <li><a href="/doc/memnic-pmd">memnic</a></li>
</ul>
<h3>Others</h3>
<ul>
@@ -113,6 +104,12 @@
<li><a href="/doc/guides/nics/pcap_ring.html#libpcap-based-pmd">pcap</a> (file or kernel driver)</li>
<li><a href="/doc/guides/nics/pcap_ring.html#rings-based-pmd">ring</a> (memory)</li>
</ul>
+ <h3>Attic</h3>
+ <ul>
+ <li><a href="/doc/memnic-pmd">memnic</a> (Qemu IVSHMEM)</li>
+ <li><a href="/doc/vmxnet3-usermap">vmxnet3 usermap</a> (VMware ESXi without uio)</li>
+ <li><a href="/about#6WIND">oce</a> (Emulex OneConnect OCe14000)</li>
+ </ul>
</section>
</body>
</html>
--
2.7.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-web] [PATCH v2] cleanup supported NICs
2017-02-26 17:36 ` [dpdk-web] [PATCH v2] " Thomas Monjalon
@ 2017-03-07 14:57 ` Ferruh Yigit
2017-03-07 15:00 ` Thomas Monjalon
0 siblings, 1 reply; 4+ messages in thread
From: Ferruh Yigit @ 2017-03-07 14:57 UTC (permalink / raw)
To: Thomas Monjalon; +Cc: web, vincent.jardin
On 2/26/2017 5:36 PM, Thomas Monjalon wrote:
> From: Ferruh Yigit <ferruh.yigit@intel.com>
>
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
> ---
> v2:
> - rewording
> - move vmxnet3_usermap
>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-web] [PATCH v2] cleanup supported NICs
2017-03-07 14:57 ` Ferruh Yigit
@ 2017-03-07 15:00 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2017-03-07 15:00 UTC (permalink / raw)
To: Ferruh Yigit; +Cc: web, vincent.jardin
2017-03-07 14:57, Ferruh Yigit:
> On 2/26/2017 5:36 PM, Thomas Monjalon wrote:
> > From: Ferruh Yigit <ferruh.yigit@intel.com>
> >
> > Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> > Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
> > ---
> > v2:
> > - rewording
> > - move vmxnet3_usermap
> >
>
> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-03-07 15:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-16 18:21 [dpdk-web] [PATCH] cleanup supported NICs Ferruh Yigit
2017-02-26 17:36 ` [dpdk-web] [PATCH v2] " Thomas Monjalon
2017-03-07 14:57 ` Ferruh Yigit
2017-03-07 15: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).