* [dpdk-web] [PATCH] update Windows roadmap
@ 2021-08-27 0:27 Dmitry Kozlyuk
2021-09-10 15:42 ` Thomas Monjalon
0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Kozlyuk @ 2021-08-27 0:27 UTC (permalink / raw)
To: web; +Cc: Thomas Monjalon, Harini Ramakrishnan, Dmitry Kozlyuk
Add the current status and the actual roadmap, remove completed entries.
More detailed plan in the mailing list:
https://mails.dpdk.org/archives/dev/2021-August/217463.html
Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
---
content/roadmap/windows.md | 134 +++++++++++--------------------------
1 file changed, 38 insertions(+), 96 deletions(-)
diff --git a/content/roadmap/windows.md b/content/roadmap/windows.md
index 23d0892..e037cf9 100644
--- a/content/roadmap/windows.md
+++ b/content/roadmap/windows.md
@@ -4,11 +4,19 @@ title = "Windows Plan"
## DPDK porting on Windows
-The preparation work is hosted in the
-[Windows draft repository](//git.dpdk.org/draft/dpdk-draft-windows/).
-The upstream work is being merged in two repositories,
-splitting userspace and kernel code:
+### Status
+
+Upstream supports running testpmd and examples
+with mlx5, i40e, ice, vmxnet3 HW, or with PCAP virtual device.
+It requires yet unsigned kernel-mode drivers to run (except mlx5).
+Only network some PMDs are currently enabled.
+
+Current focus is friction-less consumption by end-users and supporting more HW.
+Multi-process, and hence dpdk-pdump support is neither available nor scheduled.
+
+[Windows draft repository](//git.dpdk.org/draft/dpdk-draft-windows/)
+is suspended, all development happens in the upstream:
- [dpdk](//git.dpdk.org/dpdk/)
- [dpdk-kmods](//git.dpdk.org/dpdk-kmods/)
@@ -19,8 +27,8 @@ is updated along with upstream progress.
The PMD-specific documentation should be updated in the common
[NIC drivers guide](//doc.dpdk.org/guides/nics/index.html).
-### Roadmap for Windows Support {#roadmap}
-----
+
+### Roadmap {#roadmap}
{{% notice info %}}
Features and milestones may be noted here.
@@ -28,108 +36,42 @@ This is not a commitment but plan of work.
This list is obviously neither complete nor guaranteed.
{{% /notice %}}
-#### Background Tasks (compilers issues) {#background}
-
-✅ meson with clang + msvc linker: <https://github.com/mesonbuild/meson/pull/6483>
-
-- linking and performance of [per-core variables with shared libraries](//mails.dpdk.org/archives/dev/2020-February/157933.html)
-
-✅ structure alignment: <https://bugs.llvm.org/show_bug.cgi?id=24383>
-
-- AVX bug in gcc: <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54412>
-
-#### 2019-05-01
-
-✅ helloworld application with meson+clang
-
-#### 2020-03-01
-
-✅ MinGW integration
-
-✅ EAL common directory split
-
-#### 2020-04-01
-
-✅ virt2phys kmod
-
-#### 2020-05-01
-
-✅ EAL log option
-
-✅ EAL timer
-
-✅ EAL basic memory management
-
-✅ PCI general probing
-
-✅ PCI bifurcated model
-
-✅ cmdline
-
-✅ Mellanox DevX library linkage
-
-#### 2020-06-01
-
-- tracing
-
-✅ mempool
-
-✅ mbuf
-
-✅ netuio source code hosting
-
-- netuio binary hosting
-- netuio documentation
-
-✅ PCI netuio model
-
-✅ Mellanox glue layer
-
-#### 2020-07-01
-
-✅ ethdev
-
-- testpmd
-- ring PMD
-- pcap or other vdev PMD
-- optionnally virtio PMD
-
-#### 2020-08-01
-
-- unit tests (app/test/)
-
-✅ Intel i40e PMD Rx/Tx
-
-✅ Mellanox mlx5 PMD Rx/Tx
-
-#### 2020-09-01
-
-- Functional tests in CI
-✅ Mellanox documentation
+#### General Availability
-- doc compilation (doxygen + sphinx)
+* Ability to install and consume user-space static build
+ - [Meson 0.58+ issue](https://github.com/mesonbuild/meson/issues/8981)
+ - [pkg-config file for Npcap](https://github.com/nmap/npcap/issues/299)
+* Functional build of user-space libraries and PMDs
+* Process, pipeline, and download area for signed builds of kernel-mode drivers
+ - virt2phys security hardening
-✅ usertools/dpdk-devbind.py
-#### 2020-12-01
+#### Feature Support
-- Mellanox rte_flow features
+* Interrupt handling for netuio
+* Fix for vmxnet3 PMD with VMWare hypervisor
+* virtio PMD
+* ena PMD
+* mlx5 PMD rte_flow features
+* Unit-tests
+* Tracing
+* Documentation build (doxygen + sphinx)
-✅ buildtools/pmdinfogen/
-✅ usertools/dpdk-telemetry.py
+#### Miscellaneous
-#### 2021-02-01
+* Tracing for netuio to simplify troubleshooting for end-users
+* Improved documentation and automated scripts
+* [AVX bug in GCC](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54412)
+ (workaround available)
+* Functional tests in CI
-✅ DPDK 21.02
-#### Future {#future}
+#### Future (unscheduled) {#future}
-- advanced memory management
-- multi-process support
+- Advanced memory management: IOMMU, inbox kernel-mode driver
- Broadcom bnxt PMD
- Chelsio cxgbe PMD
- Cisco enic PMD
-- Intel ice PMD
- Marvell qede PMD
--
2.29.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-web] [PATCH] update Windows roadmap
2021-08-27 0:27 [dpdk-web] [PATCH] update Windows roadmap Dmitry Kozlyuk
@ 2021-09-10 15:42 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2021-09-10 15:42 UTC (permalink / raw)
To: Dmitry Kozlyuk; +Cc: web, Harini Ramakrishnan
27/08/2021 02:27, Dmitry Kozlyuk:
> Add the current status and the actual roadmap, remove completed entries.
> More detailed plan in the mailing list:
> https://mails.dpdk.org/archives/dev/2021-August/217463.html
>
> Signed-off-by: Dmitry Kozlyuk <dmitry.kozliuk@gmail.com>
> ---
[...]
> +Upstream supports running testpmd and examples
It's strange to talk about "Upstream" on the upstream website.
Better to give a version number.
> +with mlx5, i40e, ice, vmxnet3 HW, or with PCAP virtual device.
What is vmxnet3 HW?
> +It requires yet unsigned kernel-mode drivers to run (except mlx5).
> +Only network some PMDs are currently enabled.
Syntax typo in above syntence.
> +
> +Current focus is friction-less consumption by end-users and supporting more HW.
> +Multi-process, and hence dpdk-pdump support is neither available nor scheduled.
[...]
> +* Ability to install and consume user-space static build
> + - [Meson 0.58+ issue](https://github.com/mesonbuild/meson/issues/8981)
> + - [pkg-config file for Npcap](https://github.com/nmap/npcap/issues/299)
> +* Functional build of user-space libraries and PMDs
I don't understand what it means.
> +* Process, pipeline, and download area for signed builds of kernel-mode drivers
> + - virt2phys security hardening
> +#### Feature Support
>
> +* Interrupt handling for netuio
> +* Fix for vmxnet3 PMD with VMWare hypervisor
A fix is not a feature, why listing?
> +* virtio PMD
> +* ena PMD
> +* mlx5 PMD rte_flow features
> +* Unit-tests
> +* Tracing
> +* Documentation build (doxygen + sphinx)
>
> +#### Miscellaneous
>
> +* Tracing for netuio to simplify troubleshooting for end-users
> +* Improved documentation and automated scripts
> +* [AVX bug in GCC](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54412)
> + (workaround available)
Reference to the workaround?
> +* Functional tests in CI
>
> +#### Future (unscheduled) {#future}
>
> +- Advanced memory management: IOMMU, inbox kernel-mode driver
> - Broadcom bnxt PMD
> - Chelsio cxgbe PMD
> - Cisco enic PMD
> - Marvell qede PMD
Those PMDs are referenced here since the beginning based of promises.
I think there is nothing concrete, not even a single announcement,
so it is better to remove.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-web] [PATCH] update Windows roadmap
2020-05-13 12:24 Thomas Monjalon
@ 2020-05-24 9:25 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2020-05-24 9:25 UTC (permalink / raw)
To: web
Cc: harini.ramakrishnan, eilong, pallavi.kadam, ranjit.menon,
ocardona, jizh, talshn, navasile, dmitry.kozliuk, dmitrym,
ophirmu, tbashar, fady
13/05/2020 14:24, Thomas Monjalon:
> Add more tools and doc.
>
> Logging feature is merged.
>
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> ---
> content/roadmap/windows.md | 8 +++++++-
> 1 file changed, 7 insertions(+), 1 deletion(-)
Applied
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dpdk-web] [PATCH] update Windows roadmap
@ 2020-05-13 12:24 Thomas Monjalon
2020-05-24 9:25 ` Thomas Monjalon
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Monjalon @ 2020-05-13 12:24 UTC (permalink / raw)
To: web, harini.ramakrishnan
Cc: eilong, pallavi.kadam, ranjit.menon, ocardona, jizh, talshn,
navasile, dmitry.kozliuk, dmitrym, ophirmu, tbashar, fady
Add more tools and doc.
Logging feature is merged.
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
content/roadmap/windows.md | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/content/roadmap/windows.md b/content/roadmap/windows.md
index 0d6c987..7e65d02 100644
--- a/content/roadmap/windows.md
+++ b/content/roadmap/windows.md
@@ -52,7 +52,8 @@ This list is obviously neither complete nor guaranteed.
#### 2020-05-01
-- EAL log option
+✅ EAL log option
+
- EAL timer
- EAL basic memory management
- PCI general probing
@@ -82,6 +83,7 @@ This list is obviously neither complete nor guaranteed.
#### 2020-08-01
+- unit tests (app/test/)
- Intel i40e PMD Rx/Tx
- Mellanox mlx5 PMD Rx/Tx
@@ -89,6 +91,8 @@ This list is obviously neither complete nor guaranteed.
- Functional tests in CI
- Mellanox documentation
+- doc compilation (doxygen + sphinx)
+- usertools/dpdk-devbind.py
#### 2020-10-01
@@ -101,6 +105,8 @@ This list is obviously neither complete nor guaranteed.
#### 2020-12-01
- Mellanox rte_flow features
+- buildtools/pmdinfogen/
+- usertools/dpdk-telemetry.py
#### Future {#future}
--
2.26.0
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-09-10 15:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-27 0:27 [dpdk-web] [PATCH] update Windows roadmap Dmitry Kozlyuk
2021-09-10 15:42 ` Thomas Monjalon
-- strict thread matches above, loose matches on Subject: below --
2020-05-13 12:24 Thomas Monjalon
2020-05-24 9:25 ` 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).