[PATCH 1/1] net/mana: enable 32 bit build for mana driver

2023-09-09 Thread Wei Hu
Enable 32 bit build on x86 Linux. Fixed build warnings and errors when building in 32 bit. Cc: sta...@dpdk.org Signed-off-by: Wei Hu --- drivers/net/mana/mana.c | 2 +- drivers/net/mana/meson.build | 4 ++-- drivers/net/mana/mr.c| 18 +- 3 files changed, 12

[PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-09 Thread Wei Hu
Add 32 bit short doorbell support. Ring short doorbell when running in 32 bit applicactions. Cc: sta...@dpdk.org Signed-off-by: Wei Hu --- drivers/net/mana/gdma.c | 95 + drivers/net/mana/mana.h | 25 +++ drivers/net/mana/rx.c | 52

RE: [PATCH 1/1] net/mana: enable 32 bit build for mana driver

2023-09-12 Thread Wei Hu
> From: Stephen Hemminger > Sent: Saturday, September 9, 2023 10:52 PM > > diff --git a/drivers/net/mana/mana.c b/drivers/net/mana/mana.c index > > 7630118d4f..a20ca1a988 100644 > > --- a/drivers/net/mana/mana.c > > +++ b/drivers/net/mana/mana.c > > @@ -1260,7 +1260,7 @@ mana_probe_port(struct ibv

[PATCH v2 1/1] net/mana: enable 32 bit build for mana driver

2023-09-13 Thread Wei Hu
Enable 32 bit build on x86 Linux. Fixed build warnings and errors when building in 32 bit. Cc: sta...@dpdk.org Signed-off-by: Wei Hu --- v2: change port casting from size_t to uintptr_t. --- drivers/net/mana/mana.c | 2 +- drivers/net/mana/meson.build | 4 ++-- drivers/net/mana/mr.c

RE: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-13 Thread Wei Hu
> -Original Message- > From: Long Li > Sent: Thursday, September 14, 2023 5:11 AM > To: Wei Hu ; dev@dpdk.org; Ferruh Yigit > ; Andrew Rybchenko > > Cc: sta...@dpdk.org > Subject: RE: [PATCH 1/1] net/mana: add 32 bit short doorbell > > > + > > +/

RE: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-18 Thread Wei Hu
> -Original Message- > From: Long Li > Sent: Tuesday, September 19, 2023 4:02 AM > To: Wei Hu ; dev@dpdk.org > Cc: sta...@dpdk.org; Ferruh Yigit ; Luca Boccassi > ; Kevin Traynor > Subject: RE: [PATCH 1/1] net/mana: add 32 bit short doorbell > > > Subject

RE: [PATCH v2 1/1] net/mana: enable 32 bit build for mana driver

2023-09-18 Thread Wei Hu
> -Original Message- > From: Ferruh Yigit > Sent: Tuesday, September 19, 2023 1:41 AM > To: Wei Hu ; dev@dpdk.org; Long Li > > Cc: sta...@dpdk.org; Kevin Traynor ; Luca Boccassi > > Subject: Re: [PATCH v2 1/1] net/mana: enable 32 bit build for mana driver >

RE: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-18 Thread Wei Hu
> -Original Message- > From: Ferruh Yigit > Sent: Tuesday, September 19, 2023 2:03 AM > To: Wei Hu ; dev@dpdk.org; Long Li > > Cc: sta...@dpdk.org; Kevin Traynor ; Luca Boccassi > > Subject: Re: [PATCH 1/1] net/mana: add 32 bit short doorbell > > On

RE: [PATCH v2 1/1] net/mana: enable 32 bit build for mana driver

2023-09-19 Thread Wei Hu
> -Original Message- > From: Ferruh Yigit > Sent: Tuesday, September 19, 2023 7:05 PM > To: Wei Hu ; dev@dpdk.org; Long Li > > Cc: sta...@dpdk.org; Kevin Traynor ; Luca Boccassi > > Subject: Re: [PATCH v2 1/1] net/mana: enable 32 bit build for mana driver >

RE: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-19 Thread Wei Hu
> -Original Message- > From: Ferruh Yigit > > > > 32bit applications cannot use 64bit doorbells. 64bit applications can > > use 32bit doorbells, however the performance would suffer and it definitely > not recommended. > > > > OK, can you please add this detail to the commit log? > Wil

RE: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-20 Thread Wei Hu
> -Original Message- > From: Long Li > Sent: Wednesday, September 20, 2023 3:24 AM > To: Wei Hu ; dev@dpdk.org > Cc: sta...@dpdk.org; Ferruh Yigit ; Luca Boccassi > ; Kevin Traynor > Subject: RE: [PATCH 1/1] net/mana: add 32 bit short doorbell > >

[PATCH 0/2] net/mana: 32 bit support

2023-09-21 Thread Wei Hu
not supported - add a couple missing ifdefs - fix the short doorbell threshold counting in wqes Need to backport these to 22.11.x Cc: sta...@dpdk.org Wei Hu (2): net/mana: enable 32 bit build for mana driver net/mana: add 32 bit short doorbell drivers/net/mana/gdma.c | 92

[PATCH 1/2] net/mana: enable 32 bit build for mana driver

2023-09-21 Thread Wei Hu
-off-by: Wei Hu --- drivers/net/mana/mana.c | 2 +- drivers/net/mana/meson.build | 4 ++-- drivers/net/mana/mr.c| 18 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/drivers/net/mana/mana.c b/drivers/net/mana/mana.c index 7630118d4f..896b53ed35

[PATCH 2/2] net/mana: add 32 bit short doorbell

2023-09-21 Thread Wei Hu
would greatly suffer and it is not recommended. Cc: sta...@dpdk.org Signed-off-by: Wei Hu --- drivers/net/mana/gdma.c | 92 + drivers/net/mana/mana.h | 26 drivers/net/mana/rx.c | 45 drivers/net/mana/tx.c | 25

RE: [PATCH] net/netvsc: use rte_eth_dev_set_mtu to set VF MTU

2024-07-18 Thread Wei Hu
> Signed-off-by: Stephen Hemminger > > Fixes: 45c83603087e ("net/netvsc: support MTU set") > Cc: sta...@dpdk.org > Signed-off-by: Long Li Reviewed-by: Wei Hu > --- > drivers/net/netvsc/hn_vf.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > &

[PATCH 1/1] net/mana: add vlan tagging support

2024-02-09 Thread Wei Hu
For tx path, use LONG_PACKET_FORMAT if vlan tag is present. For rx, extract vlan id from oob, put into mbuf and set the vlan flags in mbuf. Also add myself to the maintainers list for vmbus, mana and netvsc. Signed-off-by: Wei Hu --- MAINTAINERS | 3 +++ drivers/net/mana/mana.h

RE: [PATCH 1/1] net/mana: add vlan tagging support

2024-02-19 Thread Wei Hu
> -Original Message- > From: Ferruh Yigit > Sent: Saturday, February 10, 2024 12:06 AM > To: Wei Hu ; andrew.rybche...@oktetlabs.ru; Thomas > Monjalon ; Long Li > Cc: dev@dpdk.org > Subject: Re: [PATCH 1/1] net/mana: add vlan tagging support > > On 2/9

RE: [PATCH 1/1] net/mana: add vlan tagging support

2024-02-19 Thread Wei Hu
> -Original Message- > From: Long Li > Sent: Saturday, February 10, 2024 2:48 AM > To: Wei Hu ; ferruh.yi...@amd.com; > andrew.rybche...@oktetlabs.ru; Thomas Monjalon > ; Alan Elder > Cc: dev@dpdk.org > Subject: RE: [PATCH 1/1] net/mana: add vlan tagging suppo

[PATCH 1/1] maintainers: update for vmbus/mana/netvsc drivers

2024-06-27 Thread Wei Hu
Add myself as maintainer for vmbus, mana and netvsc. Signed-off-by: Wei Hu --- MAINTAINERS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index c9adff9846..58947b57ce 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -624,6 +624,7 @@ F: app/test/test_vdev.c

[PATCH v2 1/1] net/mana: add vlan tagging support

2024-03-12 Thread Wei Hu
For tx path, use LONG_PACKET_FORMAT if vlan tag is present. For rx, extract vlan id from oob, put into mbuf and set the vlan flags in mbuf. Signed-off-by: Wei Hu --- v2: - Use existing vlan tag processing macros. - Add vlan header back if vlan_strip flag is not set on the receiving path

[PATCH v3 1/1] net/mana: add vlan tagging support

2024-03-13 Thread Wei Hu
For tx path, use LONG_PACKET_FORMAT if vlan tag is present. For rx, extract vlan id from oob, put into mbuf and set the vlan flags in mbuf. Signed-off-by: Wei Hu --- v3: - Adjust the pkt_idx position in the code so it will be executed even when adding vlan header fails. v2: - Use existing vlan

RE: [PATCH] bus/vmbus: remove unnecessary packed attribute

2024-10-21 Thread Wei Hu
> -Original Message- > From: Stephen Hemminger > Sent: Tuesday, October 22, 2024 10:37 AM > To: dev@dpdk.org > Cc: Stephen Hemminger ; Long Li > ; Wei Hu > Subject: [PATCH] bus/vmbus: remove unnecessary packed attribute > > The VMBus ring structure was mar

[PATCH 1/1] net/mana: do not ring short doorbell for every mbuf allocation

2025-02-06 Thread Wei Hu
.@dpdk.org Signed-off-by: Wei Hu --- drivers/net/mana/rx.c | 30 -- 1 file changed, 4 insertions(+), 26 deletions(-) diff --git a/drivers/net/mana/rx.c b/drivers/net/mana/rx.c index 0c26702b73..f196d43aee 100644 --- a/drivers/net/mana/rx.c +++ b/drivers/net/mana/rx.c

RE: [EXTERNAL] [PATCH] net/netvsc: add stats counters from VF

2025-02-18 Thread Wei Hu
> -Original Message- > From: lon...@linuxonhyperv.com > Sent: Wednesday, February 19, 2025 5:13 AM > To: Stephen Hemminger ; Wei Hu > > Cc: dev@dpdk.org; Long Li ; sta...@dpdk.org > Subject: [EXTERNAL] [PATCH] net/netvsc: add stats counters from VF > > Fro

RE: [EXTERNAL] [Patch v2] net/mana: use mana_local_data for tracking usage data for primary process

2025-02-19 Thread Wei Hu
> -Original Message- > From: lon...@linuxonhyperv.com > Sent: Wednesday, February 19, 2025 4:59 AM > To: Stephen Hemminger ; Wei Hu > > Cc: dev@dpdk.org; sta...@dpdk.org; Long Li > Subject: [EXTERNAL] [Patch v2] net/mana: use mana_local_data for tracking >

Re: [dpdk-dev] [PATCH 2/9] net/hns3: get link state change through mailbox

2019-12-14 Thread Wei Hu (Xavier)
Hi, Ferruh Yigit On 2019/12/3 21:19, Ferruh Yigit wrote: On 12/3/2019 1:16 PM, Ferruh Yigit wrote: On 12/2/2019 2:51 AM, Wei Hu (Xavier) wrote: From: Hongbo Zheng When link down occurs, firmware adds the function of sending message to PF driver through mailbox, hns3 PMD driver can recognize

Re: [dpdk-dev] [PATCH 2/9] net/hns3: get link state change through mailbox

2019-12-14 Thread Wei Hu (Xavier)
Hi, Ferruh Yigit On 2019/12/3 21:16, Ferruh Yigit wrote: On 12/2/2019 2:51 AM, Wei Hu (Xavier) wrote: From: Hongbo Zheng When link down occurs, firmware adds the function of sending message to PF driver through mailbox, hns3 PMD driver can recognize link state change faster through the

[dpdk-dev] [PATCH v2 5/9] net/hns3: optimize RSS's default algorithm

2019-12-14 Thread Wei Hu (Xavier)
From: Hao Chen This patch changed the default algorithm of RSS from simle_xor to toeplitz because toeplitz is used more frequently by upper applications such as ceph. Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_rss.c | 14 +++--- 1 file changed

[dpdk-dev] [PATCH v2 4/9] net/hns3: modify custom macro

2019-12-14 Thread Wei Hu (Xavier)
From: Huisong Li This patch replaces custom macro named HNS3_MIN_FRAME_LEN for ethernet minimum frame length with the macro named RTE_ETHER_MIN_LEN that defined in dpdk framework. Signed-off-by: Huisong Li Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c | 2 +- drivers/net

[dpdk-dev] [PATCH v2 8/9] net/hns3: remove the unnecessary assignment

2019-12-14 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" This patch removes the unncessary assignment in hns3_xmit_pkts function to avoid performance loss. Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_rxtx.c | 5 - 1 file changed, 5 deletions(-) diff --git a/drivers/net/hns3/hns3_rxtx.c b/driver

[dpdk-dev] [PATCH v2 1/9] net/hns3: support Rx interrupt

2019-12-14 Thread Wei Hu (Xavier)
From: Hao Chen This patch supports of receive packets through interrupt mode for hns3 PF/VF driver. The following ops functions should be implemented defined in struct eth_dev_ops: rx_queue_intr_enable rx_queue_intr_disable rx_queue_count Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier

[dpdk-dev] [PATCH v2 2/9] net/hns3: get link state change through mailbox

2019-12-14 Thread Wei Hu (Xavier)
pdate' ops implementation function named hns3_dev_link_update to solve the out of date link status. Signed-off-by: Hongbo Zheng Signed-off-by: Wei Hu (Xavier) Signed-off-by: Huisong Li --- v1 -> v2: 1.Add querying link status by issuing command to the firmware in '

[dpdk-dev] [PATCH v2 3/9] net/hns3: modify the return value of enable msix

2019-12-14 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" This patch replaces the return value "-1" with "-ENXIO". Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev_vf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/hns3/hns3_ethdev_vf.c b/dri

[dpdk-dev] [PATCH v2 7/9] net/hns3: remove the redundant variable initialization

2019-12-14 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" This patch removes the redundant initialization of the variable named ret. Signed-off-by: Hongbo Zheng Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c| 10 +- drivers/net/hns3/hns3_ethdev_vf.c | 2 +

[dpdk-dev] [PATCH v2 0/9] updates for hns3 PMD driver

2019-12-14 Thread Wei Hu (Xavier)
net/hns3: remove the unused macros Hongbo Zheng (1): net/hns3: get link state change through mailbox Huisong Li (1): net/hns3: modify custom macro Wei Hu (Xavier) (3): net/hns3: modify the return value of enable msix net/hns3: remove the redundant variable initialization net/hns3: re

[dpdk-dev] [PATCH v2 6/9] net/hns3: remove the redundant function call

2019-12-14 Thread Wei Hu (Xavier)
. Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev_vf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/hns3/hns3_ethdev_vf.c b/drivers/net/hns3/hns3_ethdev_vf.c index 781374c82..46d3efad0 100644 --- a/drivers/net/hns3/hns3_ethdev_vf.c +++ b

[dpdk-dev] [PATCH v2 9/9] net/hns3: remove the unused macros

2019-12-14 Thread Wei Hu (Xavier)
From: Hao Chen This patch removed some unused macros defined in hns3_rss.h, these macros are used to set tuples for abandoned RTE_ETH_FILTER_HASH in hns3_dev_filter_ctrl(). Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_rss.h | 10 -- 1 file changed

[dpdk-dev] [PATCH v3 3/9] net/hns3: modify the return value of enable msix

2019-12-21 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" This patch replaces the return value "-1" with "-ENXIO". Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev_vf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/hns3/hns3_ethdev_vf.c b/dri

[dpdk-dev] [PATCH v3 0/9] updates for hns3 PMD driver

2019-12-21 Thread Wei Hu (Xavier)
rough mailbox Huisong Li (1): net/hns3: modify custom macro Wei Hu (Xavier) (3): net/hns3: modify the return value of enable msix net/hns3: remove the redundant variable initialization net/hns3: remove the unnecessary assignment doc/guides/nics/features/hns3.ini| 1 + doc/guides/nics/fea

[dpdk-dev] [PATCH v3 2/9] net/hns3: get link state change through mailbox

2019-12-21 Thread Wei Hu (Xavier)
pdate' ops implementation function named hns3_dev_link_update to solve the out of date link status. Signed-off-by: Hongbo Zheng Signed-off-by: Wei Hu (Xavier) Signed-off-by: Huisong Li --- v2 -> v3: 1.No change. v1 -> v2: 1.Add querying link status by issuing command

[dpdk-dev] [PATCH v3 9/9] net/hns3: remove the unused macros

2019-12-21 Thread Wei Hu (Xavier)
From: Hao Chen This patch removed some unused macros defined in hns3_rss.h, these macros are used to set tuples for abandoned RTE_ETH_FILTER_HASH in hns3_dev_filter_ctrl(). Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_rss.h | 10 -- 1 file changed

[dpdk-dev] [PATCH v3 4/9] net/hns3: modify custom macro

2019-12-21 Thread Wei Hu (Xavier)
From: Huisong Li This patch replaces custom macro named HNS3_MIN_FRAME_LEN for ethernet minimum frame length with the macro named RTE_ETHER_MIN_LEN that defined in dpdk framework. Signed-off-by: Huisong Li Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c | 2 +- drivers/net

[dpdk-dev] [PATCH v3 1/9] net/hns3: support Rx interrupt

2019-12-21 Thread Wei Hu (Xavier)
From: Hao Chen This patch adds supports of receive packets through interrupt mode for hns3 PF/VF driver. The following ops functions should be implemented defined in the struct eth_dev_ops: rx_queue_intr_enable rx_queue_intr_disable Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier

[dpdk-dev] [PATCH v3 6/9] net/hns3: remove the redundant function call

2019-12-21 Thread Wei Hu (Xavier)
. Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev_vf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/hns3/hns3_ethdev_vf.c b/drivers/net/hns3/hns3_ethdev_vf.c index b5f3e9a86..92ed32631 100644 --- a/drivers/net/hns3/hns3_ethdev_vf.c +++ b

[dpdk-dev] [PATCH v3 7/9] net/hns3: remove the redundant variable initialization

2019-12-21 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" This patch removes the redundant initialization of the variable named ret. Signed-off-by: Hongbo Zheng Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c| 10 +- drivers/net/hns3/hns3_ethdev_vf.c | 2 +

[dpdk-dev] [PATCH v3 5/9] net/hns3: optimize RSS's default algorithm

2019-12-21 Thread Wei Hu (Xavier)
From: Hao Chen This patch changed the default algorithm of RSS from simle_xor to toeplitz because toeplitz is used more frequently by upper applications such as ceph. Signed-off-by: Hao Chen Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_rss.c | 14 +++--- 1 file changed

[dpdk-dev] [PATCH v3 8/9] net/hns3: remove the unnecessary assignment

2019-12-21 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" This patch removes the unncessary assignment in the '.tx_pkt_burst' ops implementation function to avoid performance loss. Signed-off-by: Wei Hu (Xavier) Signed-off-by: Yisen Zhuang --- drivers/net/hns3/hns3_rxtx.c | 12 ++-- 1 file c

Re: [dpdk-dev] [PATCH v3 0/9] updates for hns3 PMD driver

2020-01-08 Thread Wei Hu (Xavier)
Hi, Ferruh Yigit On 2020/1/9 2:18, Ferruh Yigit wrote: On 12/21/2019 10:32 AM, Wei Hu (Xavier) wrote: This series are updates for hns3 ethernet PMD driver. Hao Chen (4): net/hns3: support Rx interrupt net/hns3: optimize RSS's default algorithm net/hns3: remove the redundant fun

[dpdk-dev] [PATCH 11/11] net/hns3: fix triggering reset proceduce in slave process

2020-01-08 Thread Wei Hu (Xavier)
evice reset") Cc: sta...@dpdk.org Signed-off-by: Chengwen Feng Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_cmd.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/hns3/hns3_cmd.c b/drivers/net/hns3/hns3_cmd.c index 65a5af8e4..5ec3dfe01 10

[dpdk-dev] [PATCH 00/11] misc updates and fixes for hns3 PMD driver

2020-01-08 Thread Wei Hu (Xavier)
This series are updates and bugfixes for hns3 ethernet PMD driver. Chengwen Feng (1): net/hns3: fix triggering reset proceduce in slave process Hongbo Zheng (1): net/hns3: fix segment error when closing the port Wei Hu (Xavier) (8): net/hns3: support different numbered Rx and Tx queues

[dpdk-dev] [PATCH 03/11] net/hns3: reduce the judgements of free Tx ring space

2020-01-08 Thread Wei Hu (Xavier)
Signed-off-by: Yisen Zhuang Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_rxtx.c | 32 +++- 1 file changed, 7 insertions(+), 25 deletions(-) diff --git a/drivers/net/hns3/hns3_rxtx.c b/drivers/net/hns3/hns3_rxtx.c index 3d13ed526..34919cd2c 100644 --- a/d

[dpdk-dev] [PATCH 10/11] net/hns3: fix link status when failure in issuing command

2020-01-08 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, the hns3 PMD driver issues command to the firmware and gets link status information. When the driver fails to call internal interface function named hns3_cmd_send to query the status from firmware for some reason, the link status queried by the dri

[dpdk-dev] [PATCH 04/11] net/hns3: remove io rmb call in Rx operation

2020-01-08 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" When receiving a packet, hns3 hardware network engine firstly writes the packet content to the memory pointed by the 'addr' field of the Rx Buffer Descriptor, secondly fills the result of parsing the packet include the valid field into the Rx Buffer De

[dpdk-dev] [PATCH 02/11] net/hns3: support setting VF MAC address by PF driver

2020-01-08 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, we only support VF device is bound to vfio_pci or igb_uio and then driven by DPDK driver when PF is driven by kernel mode hns3 ethdev driver, VF is not supported when PF is driven by hns3 DPDK driver. This patch adds support setting VF MAC address

[dpdk-dev] [PATCH 06/11] net/hns3: fix Rx queue search miss RAS err when recv BC pkt

2020-01-08 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, there is a certain probability of a type of RAS errors when receiving broadcast packets. This type of RAS errors are parsed as rx_q_search_miss error by hns3 PF PMD driver, the related log as below: :bd:00.0 hns3_find_hig

[dpdk-dev] [PATCH 07/11] net/hns3: fix segment error when closing the port

2020-01-08 Thread Wei Hu (Xavier)
Cc: sta...@dpdk.org Signed-off-by: Hongbo Zheng Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c| 11 +++ drivers/net/hns3/hns3_ethdev_vf.c | 7 +-- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net

[dpdk-dev] [PATCH 09/11] net/hns3: fix dumping VF register information

2020-01-08 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, when the API interface named rte_eth_dev_get_reg_info is called by upper applications based on VF device, it returns error. We can read registers directly to get ring and interrupt related information in hns3 PF/VF PMD driver. But for some other inte

[dpdk-dev] [PATCH 08/11] net/hns3: fix ring vector related mailbox command format

2020-01-08 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" The format of the ring vector related mailbox commands between driver and firmware is different from those of other mailbox commands in hns3 network engine. This patch fixes the error mailbox command format about the vector of the rings, the related command

[dpdk-dev] [PATCH 01/11] net/hns3: support different numbered Rx and Tx queues

2020-01-08 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Hardware does not support individually enable/disable/reset the Tx or Rx queue in hns3 network engine, driver must enable/disable/reset Tx and Rx queues at the same time. Currently, hns3 PMD driver does not support the scenarios as below: 1) When calling the

[dpdk-dev] [PATCH 05/11] net/hns3: add free thresh in Rx operation

2020-01-08 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" This patch optimizes the Rx performance by adding the rx_free_thresh related process in the '.rx_pkt_burst' ops implementation function named hns3_recv_pkts. The related change as follows: 1. Adding the rx_free_thresh related process to reduce the numb

[dpdk-dev] [PATCH 2/4] net/hns3: remove unnecessary input parameter valid judgement

2020-01-16 Thread Wei Hu (Xavier)
From: Lijun Ou Since the input parameter named dev has been guaranteed not to be NULL in the rte layer of DPDK framework, it doesn't need to check dev whether is null in the 'filter_ctrl' ops implementation function named hns3_dev_filter_ctrl. Signed-off-by: Lijun Ou Signed

[dpdk-dev] [PATCH 0/4] improvement and cleanup for hns3 PMD driver

2020-01-16 Thread Wei Hu (Xavier)
This series are improvement and cleanup for hns3 PMD driver. Chengwen Feng (1): net/hns3: replace memory barrier with data dependency order Lijun Ou (2): net/hns3: remove unnecessary input parameter valid judgement net/hns3: remove unnecessary branch Wei Hu (Xavier) (1): doc: update

[dpdk-dev] [PATCH 1/4] net/hns3: replace memory barrier with data dependency order

2020-01-16 Thread Wei Hu (Xavier)
From: Chengwen Feng This patch optimizes the Rx performance by using data dependency ordering to instead of memory barrier which is rte_cio_rmb in the '.rx_pkt_burst' ops implementation function named hns3_recv_pkts. Signed-off-by: Chengwen Feng Signed-off-by: Wei Hu (Xavier) --- d

[dpdk-dev] [PATCH 3/4] net/hns3: remove unnecessary branch

2020-01-16 Thread Wei Hu (Xavier)
nch process to check whether input parameter named idx is zero in the '.mac_addr_remove' ops implementation function named hns3_remove_mac_addr. Signed-off-by: Lijun Ou Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c | 2 -- 1 file changed, 2 deletions(-)

[dpdk-dev] [PATCH 4/4] doc: update release notes for hns3

2020-01-16 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Update release doc briefly describing updates to hns3 PMD for 20.02 release. The support for these was added include the following commits: 1) commit 6e79a0ad1236 ("net/hns3: support Rx interrupt") 2) commit 34c5c2d5abb8 ("net/hns3: support set

[dpdk-dev] [PATCH] ethdev: move non null judgment of ops function pointer ahead

2020-01-16 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" This patch moves the following judgement statement to the first half of the function named rte_eth_dev_set_vlan_offload, so we can avoid changing the content of dev->data->dev_conf.rxmode.offloads even when the pointer named dev->dev_ops->vl

Re: [dpdk-dev] [PATCH] ethdev: move non null judgment of ops function pointer ahead

2020-01-16 Thread Wei Hu (Xavier)
Hi, Ferruh Yigit On 2020/1/17 5:08, Ferruh Yigit wrote: On 1/16/2020 12:27 PM, Wei Hu (Xavier) wrote: From: "Wei Hu (Xavier)" This patch moves the following judgement statement to the first half of the function named rte_eth_dev_set_vlan_offload, so we can avoid changing the cont

[dpdk-dev] [PATCH v2] ethdev: fix updating device data when ops pointer is NULL

2020-01-16 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, there is a potential problem that changing the content of dev->data->dev_conf.rxmode.offloads even when the pointer named dev->dev_ops->vlan_offload_set is NULL in the API function named rte_eth_dev_set_vlan_offload. It is a good idea

Re: [dpdk-dev] [PATCH v2] ethdev: fix updating device data when ops pointer is NULL

2020-01-17 Thread Wei Hu (Xavier)
Hi,Andrew Rybchenko On 2020/1/17 15:57, Andrew Rybchenko wrote: On 1/17/20 9:23 AM, Wei Hu (Xavier) wrote: From: "Wei Hu (Xavier)" I think summary is misleading. It is too generic and does not mention VLAN offloads. Consider something like: ethdev: fix VLAN offloads set if

[dpdk-dev] [PATCH v3] ethdev: fix VLAN offloads set if no driver callback

2020-01-17 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, there is a potential problem that changing the content of dev->data->dev_conf.rxmode.offloads even when there is no vlan_offload_set driver callback. It is a good idea that prevent the side effect and make the API return success if no change

[dpdk-dev] [PATCH 0/3] app/testpmd: fixes for testpmd application

2020-01-21 Thread Wei Hu (Xavier)
These patchset are fixes for testpmd application. Wei Hu (Xavier) (3): app/testpmd: update Rx offload after setting MTU sccessfully app/testpmd: fix the initial value when setting PFC app/testpmd: fix uninitialized members when setting PFC app/test-pmd/cmdline.c | 3 ++- app/test-pmd

[dpdk-dev] [PATCH 3/3] app/testpmd: fix uninitialized members when setting PFC

2020-01-21 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Only a part of members in the local structure variable named pfc_conf are initialized in the function named cmd_priority_flow_ctrl_set_parsed when typing "set pfc_ctrl..." command, and others are random values. However, those uninitialized members may

[dpdk-dev] [PATCH 2/3] app/testpmd: fix the initial value when setting PFC

2020-01-21 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, the initial values of the local structure variable named rx_tx_onoff_2_lfc_mode and rx_tx_onoff_2_pfc_mode are different in the similar part of these two following functions: cmd_link_flow_ctrl_set_parsed cmd_priority_flow_ctrl_set_par

[dpdk-dev] [PATCH 1/3] app/testpmd: update Rx offload after setting MTU sccessfully

2020-01-21 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, Rx offload capabilities and max_rx_pkt_len in the struct variable named rte_port are not updated after setting mtu successfully in port_mtu_set function by 'port config mtu ' command. This may lead to reconfig mtu to the initial valu

Re: [dpdk-dev] [EXT] Re: [PATCH v4 2/2] ethdev: fix VLAN offloads set if no relative capabilities

2020-06-30 Thread Wei Hu (Xavier)
On 2020/6/29 22:47, Harman Kalra wrote: Acked-by: Harman Kalra Hiļ¼ŒHarman Kalra Thanks Xavier On Mon, Jun 29, 2020 at 09:34:00AM +0800, Wei Hu (Xavier) wrote: External Email -- Hi, Heinrich Kuhn & Harman Kalra &am

[dpdk-dev] [PATCH 00/10] misc updates for hns3 PMD driver

2020-07-01 Thread Wei Hu (Xavier)
: support symmetric RSS net/hns3: report Tx descriptor segment limitations Wei Hu (Xavier) (5): net/hns3: support LRO net/hns3: get device capability in primary process net/hns3: fix Rx buffer size net/hns3: fix reassembling multiple segment packets in Tx net/hns3: add Scattered Rx and

[dpdk-dev] [PATCH 01/10] net/hns3: support symmetric RSS

2020-07-01 Thread Wei Hu (Xavier)
From: Lijun Ou This patch adds support of symmetric algorithm of RSS. Signed-off-by: Lijun Ou Signed-off-by: Wei Hu (Xavier) Signed-off-by: Chengwen Feng --- drivers/net/hns3/hns3_flow.c | 12 +++- drivers/net/hns3/hns3_rss.c | 27 +-- drivers/net/hns3

[dpdk-dev] [PATCH 02/10] net/hns3: support LRO

2020-07-01 Thread Wei Hu (Xavier)
This patch adds support of LRO offload for hns3 PMD driver. Signed-off-by: Hongbo Zheng Signed-off-by: Wei Hu (Xavier) --- doc/guides/nics/features/hns3.ini| 1 + doc/guides/nics/features/hns3_vf.ini | 1 + doc/guides/nics/hns3.rst | 1 + drivers/net/hns3/hns3_ethdev.c

[dpdk-dev] [PATCH 06/10] net/hns3: clear residual hardware configurations on init

2020-07-01 Thread Wei Hu (Xavier)
vely clear the hardware environment during initialization, including PF and corresponding VFs' vlan, mac, flow table configurations, etc. Fixes: d51867db65c1 ("net/hns3: add initialization") Cc: sta...@dpdk.org Signed-off-by: Hongbo Zheng Signed-off-by: Wei Hu (Xavier) Sig

[dpdk-dev] [PATCH 09/10] net/hns3: fix reassembling multiple segment packets in Tx

2020-07-01 Thread Wei Hu (Xavier)
ang Tang Signed-off-by: Wei Hu (Xavier) Signed-off-by: Chengwen Feng --- drivers/net/hns3/hns3_rxtx.c | 25 + 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/drivers/net/hns3/hns3_rxtx.c b/drivers/net/hns3/hns3_rxtx.c index 931d89a..8892fc1 100644

[dpdk-dev] [PATCH 10/10] net/hns3: add Scattered Rx and Multiprocess to feature list

2020-07-01 Thread Wei Hu (Xavier)
This patch adds 'Scattered Rx' and 'Multiprocess aware' those are supported by current hns3 PMD driver for feature list file named hns3.ini and hns3_vf.ini. Signed-off-by: Wei Hu (Xavier) --- doc/guides/nics/features/hns3.ini| 2 ++ doc/guides/nics/features/hns3_vf

[dpdk-dev] [PATCH 04/10] net/hns3: support setting VF PVID by PF driver

2020-07-01 Thread Wei Hu (Xavier)
.tx_pkt_prepare' ops implementation function named hns3_prep_pkts to inform users that these packets will be discarded. Signed-off-by: Chengchang Tang Signed-off-by: Wei Hu (Xavier) Signed-off-by: Chengwen Feng --- drivers/net/hns3/hns3_ethdev.c| 5 ++-- drivers/net/hns3/h

[dpdk-dev] [PATCH 07/10] net/hns3: report Tx descriptor segment limitations

2020-07-01 Thread Wei Hu (Xavier)
: Lijun Ou Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c| 2 ++ drivers/net/hns3/hns3_ethdev_vf.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c index 1c234da..7bc9b17 100644 --- a/drivers/net/hns3

[dpdk-dev] [PATCH 05/10] net/hns3: get device capability in primary process

2020-07-01 Thread Wei Hu (Xavier)
This patch optimizes the code to get device capability in primary process, and moves the code of getting PCI revison id in order to avoid evaluating the private hw->revision of shared PMD-specific private data in slave process. Signed-off-by: Wei Hu (Xavier) Signed-off-by: Huisong Li Signed-

[dpdk-dev] [PATCH 08/10] net/hns3: fix Rx buffer size

2020-07-01 Thread Wei Hu (Xavier)
port Rx/Tx and related operations") Cc: sta...@dpdk.org Signed-off-by: Chengchang Tang Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c| 3 +-- drivers/net/hns3/hns3_ethdev.h| 1 - drivers/net/hns3/hns3_ethdev_vf.c | 5 +--- drivers/net/hns3/hns3_r

[dpdk-dev] [PATCH 03/10] net/hns3: decrease non-nearby memory access in Rx

2020-07-01 Thread Wei Hu (Xavier)
tus, so it isn't need to access other data structure in the 'rx_pkt_burst' ops implementation, to avoid performance loss because of reducing cache miss. Signed-off-by: Chengchang Tang Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c | 21 - dri

Re: [dpdk-dev] [PATCH] dedicated queues: delete redundant check valid_bonded_port_id has include check_for_bonded_ethdev, no need to check again.

2020-07-01 Thread Wei Hu (Xavier)
Hi, pandongyang The title is too long, and lack of the commit log. You can use this script to check your commit when making patch ./devtools/check-git-log.sh -[num] On 2020/6/21 21:34, 197020...@qq.com wrote: From: pandongyang <197020...@qq.com> Signed-off-by: pandongyang <197020...

Re: [dpdk-dev] [PATCH v4 2/2] ethdev: fix VLAN offloads set if no relative capabilities

2020-07-02 Thread Wei Hu (Xavier)
Hi, Heinrich Kuhn & Jerin Jacob & Nithin Dabilpuram & Kiran Kumar K & Rasesh Mody & Shahed Shaikh & Qi Zhang & Xiao Wang & Beilei Xing & Jeff Guo. Could you please help to review this patch and give 'Acked-by' if there are no objects. Than

Re: [dpdk-dev] [PATCH V2] net/bonding: delete redundant code

2020-07-03 Thread Wei Hu (Xavier)
g Signed-off-by: pandongyang <197020...@qq.com> Reviewed-by: Wei Hu (Xavier) --- v1 -> v2: Adjust commit info --- drivers/net/bonding/rte_eth_bond_8023ad.c | 6 -- 1 file changed, 6 deletions(-) diff --git a/drivers/net/bonding/rte_eth_bond_8023ad.c b/drivers/net/bonding/rt

[dpdk-dev] [PATCH 4/4] doc: update feature list of hns3 rst document

2020-07-04 Thread Wei Hu (Xavier)
From: Lijun Ou This patch updates the feature list for hns3 PMD driver document. Signed-off-by: Lijun Ou Signed-off-by: Wei Hu (Xavier) --- doc/guides/nics/hns3.rst | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/guides/nics/hns3.rst b/doc/guides/nics/hns3

[dpdk-dev] [PATCH 2/4] net/hns3: cleanup duplicate code when processing TSO in Tx

2020-07-04 Thread Wei Hu (Xavier)
From: Chengchang Tang This patch fixes up paylen calculation twice when processing TSO request in the '.tx_pkt_burst' ops implementation function to avoid performance loss. Fixes: 6dca716c9e1d ("net/hns3: support TSO") Cc: sta...@dpdk.org Signed-off-by: Chengchang Tang S

[dpdk-dev] [PATCH 0/4] updates for hns3 PMD driver

2020-07-04 Thread Wei Hu (Xavier)
This series are updates for hns3 PMD driver. Chengchang Tang (1): net/hns3: cleanup duplicate code when processing TSO in Tx Lijun Ou (1): doc: update feature list of hns3 rst document Wei Hu (Xavier) (2): net/hns3: check if registering mp action successfully net/hns3: fix VLAN tag

[dpdk-dev] [PATCH 3/4] net/hns3: fix VLAN tag inserted in wrong position in Tx

2020-07-04 Thread Wei Hu (Xavier)
le segment packets. This patch fixed them by filling the VLAN information into the position of the Tx Buffer Descriptor. Fixes: bba636698316 ("net/hns3: support Rx/Tx and related operations") Cc: sta...@dpdk.org Signed-off-by: Chengchang Tang Signed-off-by: Wei Hu (Xavier) S

[dpdk-dev] [PATCH 1/4] net/hns3: check if registering mp action successfully

2020-07-04 Thread Wei Hu (Xavier)
e API function named rte_mp_action_register in the '.dev_init' implementation function of hns3 PMD driver. Coverity issue: 289969 Fixes: 23d4b61fee5d ("net/hns3: support multiple process") Cc: sta...@dpdk.org Signed-off-by: Lijun Ou Signed-off-by: Wei Hu (Xavier) --- drivers/net/h

Re: [dpdk-dev] [PATCH v4 2/2] ethdev: fix VLAN offloads set if no relative capabilities

2020-07-05 Thread Wei Hu (Xavier)
Hi, Jeff Guo On 2020/7/5 19:22, Jeff Guo wrote: hi, xavier On 7/3/2020 9:28 AM, Wei Hu (Xavier) wrote: Hi, Heinrich Kuhn & Jerin Jacob & Nithin Dabilpuram & Kiran Kumar K & Rasesh Mody & Shahed Shaikh & Qi Zhang & Xiao Wang & Beilei Xing & Jeff Guo.

[dpdk-dev] [PATCH v5 2/2] ethdev: fix VLAN offloads set if no relative capabilities

2020-07-05 Thread Wei Hu (Xavier)
f-by: Chengchang Tang Signed-off-by: Wei Hu (Xavier) Acked-by: Andrew Rybchenko Acked-by: Hyong Youb Kim Acked-by: Sachin Saxena Acked-by: Xiaoyun wang Acked-by: Harman Kalra --- v4 -> v5: add the related history patch into the Fixes commit log. v3 -> v4: Delete "next_mask" la

[dpdk-dev] [PATCH v5 0/2] ethdev: minor bugfixes

2020-07-05 Thread Wei Hu (Xavier)
This series are minor bugfixes for rte_ethdev.c. Wei Hu (Xavier) (2): ethdev: fix data room size verification in Rx queue setup ethdev: fix VLAN offloads set if no relative capabilities drivers/net/dpaa2/dpaa2_ethdev.c | 12 +++- drivers/net/enic/enic_ethdev.c

[dpdk-dev] [PATCH v5 1/2] ethdev: fix data room size verification in Rx queue setup

2020-07-05 Thread Wei Hu (Xavier)
varibale named mbp_buf_size is bigger than RTE_PKTMBUF_HEADROOM. Fixes: af75078fece3 ("first public release") Cc: sta...@dpdk.org Signed-off-by: Chengchang Tang Signed-off-by: Wei Hu (Xavier) Reviewed-by: Andrew Rybchenko Acked-by: Sachin Saxena --- v2 -> v5: No change. v1 ->

[dpdk-dev] [PATCH v6 2/2] ethdev: fix VLAN offloads set if no relative capabilities

2020-07-06 Thread Wei Hu (Xavier)
le QinQ strip") Fixes: d4a27a3b092a ("nfp: add basic features") Fixes: 56139e85abec ("net/octeontx: support VLAN filter offload") Fixes: ba1b3b081edf ("net/octeontx2: support VLAN offloads") Fixes: d87246a43759 ("net/qede: enable and disable VLAN filtering&qu

[dpdk-dev] [PATCH v6 1/2] ethdev: fix data room size verification in Rx queue setup

2020-07-06 Thread Wei Hu (Xavier)
varibale named mbp_buf_size is bigger than RTE_PKTMBUF_HEADROOM. Fixes: af75078fece3 ("first public release") Cc: sta...@dpdk.org Signed-off-by: Chengchang Tang Signed-off-by: Wei Hu (Xavier) Reviewed-by: Andrew Rybchenko Acked-by: Sachin Saxena --- v2 -> v6: No change. v1 ->

  1   2   3   4   5   6   >