[dpdk-dev] [PATCH] doc: fix helloworld build on Windows

2019-05-20 Thread adham
From: Adham Masarwah The option -Dexamples=helloworld is missing. The helloworld binary name was wrong. Forcing clang may be required in some environments. Fixes: 196c650b8b63 ("doc: add guide for Windows") Signed-off-by: Adham Masarwah --- doc/guides/windows_gsg/build_dpd

[PATCH] net/mlx5: fix destroying empty matchers list

2022-02-23 Thread Adham Masarwah
run: port close all Fixes: 1872635570be ("net/mlx5: make matcher list thread safe") Cc: sta...@dpdk.org Signed-off-by: Adham Masarwah Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/mlx5_flow_dv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/driver

[PATCH] app/testpmd: fixed using strtoull with 64-bit variables

2022-03-10 Thread Adham Masarwah
Replaced using strtoul with strtoull when converting to 64-bit mask field. In Windows strtoul returns 32-bit values which cause an issue with show RSS reta. Fixes: 66c594904ac ("ethdev: support multiple sizes of redirection table") Cc: sta...@dpdk.org Signed-off-by: Adham Masarwah ---

[PATCH] app/testpmd: fixed using strtoull with 64-bit variables

2022-03-10 Thread Adham Masarwah
Replaced using strtoul with strtoull when converting to 64-bit mask field. In Windows strtoul returns 32-bit values which cause an issue with show RSS reta. Fixes: 66c594904ac ("ethdev: support multiple sizes of redirection table") Cc: sta...@dpdk.org Signed-off-by: Adham Masarwah ---

[PATCH v2] app/testpmd: fix show RSS RETA on Windows

2022-03-13 Thread Adham Masarwah
Replaced using strtoul with strtoull when converting to 64-bit mask field. In Windows strtoul returns 32-bit values which cause an issue with show RSS RETA. Fixes: 66c594904ac ("ethdev: support multiple sizes of redirection table") Cc: sta...@dpdk.org Signed-off-by: Adham Masarwah ---

[PATCH v3] app/testpmd: fix show RSS RETA on Windows

2022-03-13 Thread Adham Masarwah
Replaced using strtoul with strtoull when converting to 64-bit mask field. In Windows strtoul returns 32-bit values which cause an issue with show RSS RETA. Fixes: 66c594904ac ("ethdev: support multiple sizes of redirection table") Cc: sta...@dpdk.org Signed-off-by: Adham Masarwah

[PATCH 0/2] net/mlx5: support missing functionality for Windows

2022-04-10 Thread Adham Masarwah
Adding support for set promiscuous modes and for MTU set/get Adham Masarwah (2): net/mlx5: add support for set promiscuous modes in Windows net/mlx5: add support for set and get MTU in Windows drivers/common/mlx5/windows/mlx5_glue.c | 86 +++ drivers/common

[PATCH 0/2] net/mlx5: support missing functionality for Windows

2022-04-10 Thread Adham Masarwah
Adding support for set promiscuous modes and for MTU set/get Adham Masarwah (2): net/mlx5: add support for set promiscuous modes in Windows net/mlx5: add support for set and get MTU in Windows drivers/common/mlx5/windows/mlx5_glue.c | 86 +++ drivers/common

[PATCH 1/2] net/mlx5: add support for set promiscuous modes in Windows

2022-04-10 Thread Adham Masarwah
Support of the set promiscuous modes by calling the new API In Mlx5DevX Lib. Added new glue API for Windows which will be used to communicate with Windows driver to enable/disable PROMISC or ALLMC. Signed-off-by: Adham Masarwah Tested-by: Idan Hackmon Acked-by: Matan Azard --- drivers/common

[PATCH 2/2] net/mlx5: add support for set and get MTU in Windows

2022-04-10 Thread Adham Masarwah
Mlx5Devx library has new API's for setting and getting MTU. Added new glue functions that wrap the new mlx5devx lib API's. Implemented the os_ethdev callbacks to use the new glue functions in Windows. Signed-off-by: Adham Masarwah Tested-by: Idan Hackmon Acked-by: Matan Azard --

[PATCH] doc: update release notes for 22.07

2022-04-14 Thread Adham Masarwah
Added new features introduced to mlx5 related to Windows support. Signed-off-by: Adham Masarwah --- doc/guides/rel_notes/release_22_07.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/release_22_07.rst b/doc/guides/rel_notes/release_22_07.rst index 42a5f2d990

[dpdk-dev] Generating Debug information in Windows using Clang (PDB files)

2019-05-20 Thread Adham Masarwah
Hi, In development we use WinDbg for debugging, so we need to create PDB files when compiling the DPDK, so we used ``-g`` in the CFLGAS and the PDB files are being created. But when running the helloworld with WinDbg, we can see only function names, we can't see code neither variables, we get t

Re: [dpdk-dev] Generating Debug information in Windows using Clang (PDB files)

2019-05-21 Thread Adham Masarwah
>From: Bruce Richardson >Sent: Tuesday, May 21, 2019 11:22 AM > >On Mon, May 20, 2019 at 07:02:22PM +0100, Menon, Ranjit wrote: >>Adham… >> >>I don’t think we debugged using clang compiled code for Hello world – >>mainly because it was only a “h

Re: [dpdk-dev] Generating Debug information in Windows using Clang (PDB files)

2019-05-21 Thread Adham Masarwah
On Tue, May 21, 2019 at 01:41:06PM +, Adham Masarwah wrote: > > > > >From: Bruce Richardson > > >Sent: Tuesday, May 21, 2019 11:22 AM > > > > > >On Mon, May 20, 2019 at 07:02:22PM +0100, Menon, Ranjit wrote: > > >>Adham… > >