[dpdk-dev] [RFC] Add selection between vector and scalar mode in ixgbe

2021-05-24 Thread Muhammad Ahmad
can introduce API in ehtdev, which allow user to select between latency and throughput mode. Signed-off-by: Muhammad Ahmad --- config/rte_config.h | 3 +++ drivers/net/ixgbe/ixgbe_ethdev.c | 9 - 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/config

[dpdk-dev] [RFC] An application to apply configuration from files

2020-04-09 Thread Muhammad Ahmad
addition of this script in usertools will be helpful if we have a large number of ports and we have to bind/unbind them from DPDK drivers. Please suggest. Signed-off-by: Muhammad Ahmad

[dpdk-dev] [PATCH v4] app/testpmd: add fw version in port info

2020-03-19 Thread Muhammad Ahmad
rte_eth_dev_fw_version_get() was not called in test pmd. ??Added rte_eth_dev_fw_version_get() in testpmd under show port info Bugzilla ID: 225 Cc: dev@dpdk.org Reported-by: Thomas Monjalon Signed-off-by: Muhammad Ahmad --- app/test-pmd/config.c | 10 ++ 1 file changed, 10 insertions

[dpdk-dev] [PATCH v3] testpmd: added rte_eth_dev_fw_version_get in testpmd

2020-03-19 Thread Muhammad Ahmad
rte_eth_dev_fw_version_get() was not called in test pmd. ??Added rte_eth_dev_fw_version_get() in testpmd under show port info Bugzilla ID: 225 Cc: dev@dpdk.org Reported-by: Thomas Monjalon Signed-off-by: Muhammad Ahmad --- app/test-pmd/config.c | 10 ++ 1 file changed, 10 insertions

[dpdk-dev] [PATCH v2] testpmd: added rte_eth_dev_fw_version_get in testpmd

2020-03-18 Thread Muhammad Ahmad
rte_eth_dev_fw_version_get() was not called in test pmd Added rte_eth_dev_fw_version_get() in testpmd under show port info Bugzilla ID: 225 Cc: dev@dpdk.org Reported-by: Thomas Monjalon Signed-off-by: Muhammad Ahmad --- app/test-pmd/config.c | 13 + 1 file changed, 13 insertions

Re: [dpdk-dev] [PATCH] testpmd: added rte_eth_dev_fw_version_get in testpmd rte_eth_dev_fw_version_get() was not called in test pmd. Added rte_eth_dev_fw_version_get() in testpmd under show port info

2020-03-17 Thread Muhammad Ahmad
Hi Ferruh, Thank you for the comments. On Mon, Mar 16, 2020 at 9:39 PM Ferruh Yigit wrote: > > On 3/16/2020 10:07 AM, Muhammad Ahmad wrote: > > From: Muhammad Ahmad > > > > Hi Muhammed, > > Can you please keep the patch title short, ~70 chars, and put the detail

[dpdk-dev] [PATCH] testpmd: added rte_eth_dev_fw_version_get in testpmd rte_eth_dev_fw_version_get() was not called in test pmd. Added rte_eth_dev_fw_version_get() in testpmd under show port info

2020-03-16 Thread Muhammad Ahmad
From: Muhammad Ahmad Bugzilla ID: 225 Cc: dev@dpdk.org Reported-by: Thomas Monjalon Signed-off-by: Muhammad Ahmad --- app/test-pmd/config.c | 6 ++ app/test-pmd/testpmd.h | 3 ++- app/test-pmd/util.c| 14 ++ 3 files changed, 22 insertions(+), 1 deletion(-) diff --git

Re: [dpdk-dev] [RFC] A REST API based daemon of dpdk-devbind.py

2020-03-12 Thread Muhammad Ahmad
isn't something to be accepted in DPDK upstream, we can then perhaps push it to upstream pip repo as a python module or a CLI tool as a third-party DPDK tool. Thanks -Ahmad On Wed, Mar 4, 2020 at 9:09 PM Stephen Hemminger wrote: > > On Wed, 4 Mar 2020 12:11:05 +0500 > Muhammad

[dpdk-dev] [PATCH] lib/librte_net/rte_ether.h:changed RTE_ETHER_MAX_LEN

2020-03-09 Thread Muhammad Ahmad
Change the RTE_ETHER_MAX_LEN from 1518 to 1526 Bugzilla ID: 296 Fixes: c5b2d13 (net: add rte prefix to ether defines) Cc: sta...@dpdk.org Cc: Oliver Matz Reported-by: LAVA Suggested-by: LAVA Signed-off-by: Muhammad Ahmad --- lib/librte_net/rte_ether.h | 2 +- 1 file changed, 1 insertion

[dpdk-dev] [RFC] A REST API based daemon of dpdk-devbind.py

2020-03-03 Thread Muhammad Ahmad
t;invalid id" } OR Code: 400 BAD REQUEST Content: { "code": 2, "message": "invalid driver" } OR Code: 405 METHOD NOT ALLOWED Content: { "code": 3, "message": "PCI Device active run with force=TRUE" } = Signed-off-by: Muhammad Ahmad