[dpdk-dev] [PATCH v2] net/ice: fix VLAN strip show in double VLAN mode

2021-02-03 Thread Haiyue Wang
In double VLAN mode, the VLAN strip is applied on outer, since the VLAN filter is outer; in single VLAN mode, the VLAN strip is applied on inner for the VLAN filter is inner. So it needs to adjust the strip setting according to current VLAN mode. Fixes: 14e7a4b37b4f ("net/ice/base: support config

Re: [dpdk-dev] [PATCH v6 0/2] support both PIO and MMIO BAR for legacy device in virtio PMD

2021-02-03 Thread 谢华伟(此时此刻)
On 2021/2/3 17:37, Maxime Coquelin wrote: Hi Huawei, On 2/1/21 8:43 AM, 谢华伟(此时此刻) wrote: On 2021/1/29 11:25, chris wrote: Hi ferruh and maxime: v6 changes: send v6. Let us discuss if merge in this or early next release. Ping. The -rc2 was released on the 29th, so I think it is too late f

[dpdk-dev] [PATCH] net/iavf: fix VLAN insert issue

2021-02-03 Thread Xiaoyun Li
The new VIRTCHNL_VF_OFFLOAD_VLAN_V2 capability allows PF to set the location of TX VLAN insertion. So VF needs to insert VLAN tag according to the location flags. Fixes: 1c301e8c3cff ("net/iavf: support new VLAN capabilities") Signed-off-by: Xiaoyun Li --- drivers/net/iavf/iavf_rxtx.c | 45 +++

Re: [dpdk-dev] [PATCH v2] net/ice: fix VLAN strip show in double VLAN mode

2021-02-03 Thread Yang, Qiming
Acked-by: Qiming Yang > -Original Message- > From: Wang, Haiyue > Sent: Thursday, February 4, 2021 10:04 > To: dev@dpdk.org > Cc: Yang, Qiming ; Zhang, Qi Z > ; Wang, Haiyue ; Creeley, > Brett > Subject: [PATCH v2] net/ice: fix VLAN strip show in double VLAN mode > > In double VLAN mod

[dpdk-dev] [PATCH] test/crypto: add a check in decryption with digest test case

2021-02-03 Thread Gagandeep Singh
Some platforms may not support operations on encrypted digest, So in this patch adding a check for such test cases. Signed-off-by: Gagandeep Singh --- app/test/test_cryptodev.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c i

Re: [dpdk-dev] [dpdk-announce] release candidate 21.02-rc2

2021-02-03 Thread Jiang, YuX
All, Update the test status for Intel part. Till now 95% is executed and no critical issue blocked the test. # Basic Intel(R) NIC testing * PF/VF(i40e,ixgbe and igb): Done. 1 issue is found but not are big issue. * PF/VF(ICE): Done. 3 issues are found regarding vf_vlan_strip and mac_vlan_ppp

[dpdk-dev] [PATCH v1] net/ice: fix QinQ switch rule input set mask

2021-02-03 Thread Yuying Zhang
QinQ switch rule doesn't support ethertype field match. QinQ ethertype pattern should not be created. Change the input set mask to fix the issue. Fixes: bb3386f348dd ("net/ice: enable QinQ filter for switch") Signed-off-by: Yuying Zhang --- drivers/net/ice/ice_switch_filter.c | 3 ++- 1 file ch

Re: [dpdk-dev] [PATCH] config: increase default maximum number of NUMA nodes

2021-02-03 Thread Jerin Jacob
On Thu, Feb 4, 2021 at 2:49 AM Thomas Monjalon wrote: > > AMD CPU can present a high number of NUMA nodes. > The default should be 32 for better compatibility. The typical configuration is 4 nodes[1] for AMD. Just wondering, Is it an exception case? if so, Do we need to consume more memory for no

Re: [dpdk-dev] [PATCH] net/iavf: fix VLAN insert issue

2021-02-03 Thread Xing, Beilei
> -Original Message- > From: Li, Xiaoyun > Sent: Thursday, February 4, 2021 11:11 AM > To: Wu, Jingjing ; Xing, Beilei > ; > dev@dpdk.org > Cc: Li, Xiaoyun > Subject: [PATCH] net/iavf: fix VLAN insert issue > > The new VIRTCHNL_VF_OFFLOAD_VLAN_V2 capability allows PF to set the > loc

Re: [dpdk-dev] [PATCH] net/iavf: fix VLAN insert issue

2021-02-03 Thread Li, Xiaoyun
> -Original Message- > From: Xing, Beilei > Sent: Thursday, February 4, 2021 14:36 > To: Li, Xiaoyun ; Wu, Jingjing ; > dev@dpdk.org > Subject: RE: [PATCH] net/iavf: fix VLAN insert issue > > > > > -Original Message- > > From: Li, Xiaoyun > > Sent: Thursday, February 4, 2021

[dpdk-dev] 【Some Questions About Multi-Process Resource Cleaning】

2021-02-03 Thread oulijun
Hi, Thomas Monjalon&Ferruh Yigit and others I'm analyzing multiprocess with eal. I have some questions I'd like to ask you. Firstly, After the rte_eal_init() command is executed, the master and slave processes are started successfully. and traffic is continuously sent using the tester.I

Re: [dpdk-dev] [PATCH] net/iavf: fix VLAN insert issue

2021-02-03 Thread Xing, Beilei
> -Original Message- > From: Li, Xiaoyun > Sent: Thursday, February 4, 2021 11:11 AM > To: Wu, Jingjing ; Xing, Beilei > ; > dev@dpdk.org > Cc: Li, Xiaoyun > Subject: [PATCH] net/iavf: fix VLAN insert issue > > The new VIRTCHNL_VF_OFFLOAD_VLAN_V2 capability allows PF to set the > loc

[dpdk-dev] [PATCH v4 1/7] examples/fips_validation: enhance getopt_long usage

2021-02-03 Thread Ibtisam Tariq
Instead of using getopt_long return value, strcmp was used to compare the input parameters with the struct option array. This patch get rid of all those strcmp by directly binding each longopt with an int enum. This is to improve readability and consistency in all examples. Bugzilla ID: 238 Cc: ma

[dpdk-dev] [PATCH v4 2/7] examples/l3fwd-acl: enhance getopt_long usage

2021-02-03 Thread Ibtisam Tariq
Instead of using getopt_long return value, strcmp was used to compare the input parameters with the struct option array. This patch get rid of all those strcmp by directly binding each longopt with an int enum. This is to improve readability and consistency in all examples. Bugzilla ID: 238 Cc: ko

[dpdk-dev] [PATCH v4 3/7] examples/packet_ordering: enhance getopt_long usage

2021-02-03 Thread Ibtisam Tariq
Instead of using getopt_long return value, strcmp was used to compare the input parameters with the struct option array. This patch get rid of all those strcmp by directly binding each longopt with an int enum. This is to improve readability and consistency in all examples. Bugzilla ID: 238 Cc: se

[dpdk-dev] [PATCH v4 4/7] examples/performance-thread/l3fwd-thread: enhance getopt_long usage

2021-02-03 Thread Ibtisam Tariq
Instead of using getopt_long return value, strcmp was used to compare the input parameters with the struct option array. This patch get rid of all those strcmp by directly binding each longopt with an int enum. This is to improve readability and consistency in all examples. Bugzilla ID: 238 Cc: ia

[dpdk-dev] [PATCH v4 5/7] examples/qos_sched: enhance getopt_long usage

2021-02-03 Thread Ibtisam Tariq
Instead of using getopt_long return value, strcmp was used to compare the input parameters with the struct option array. This patch get rid of all those strcmp by directly binding each longopt with an int enum. This is to improve readability and consistency in all examples. Bugzilla ID: 238 Cc: st

[dpdk-dev] [PATCH v4 6/7] examples/vhost: enhance getopt_long usage

2021-02-03 Thread Ibtisam Tariq
Instead of using getopt_long return value, strcmp was used to compare the input parameters with the struct option array. This patch get rid of all those strcmp by directly binding each longopt with an int enum. This is to improve readability and consistency in all examples. Bugzilla ID: 238 Cc: ji

[dpdk-dev] [PATCH v4 7/7] examples/vhost_crypto: enhance getopt_long usage

2021-02-03 Thread Ibtisam Tariq
Instead of using getopt_long return value, strcmp was used to compare the input parameters with the struct option array. This patch get rid of all those strcmp by directly binding each longopt with an int enum. This is to improve readability and consistency in all examples. Bugzilla ID: 238 Cc: ro

Re: [dpdk-dev] [PATCH v2] net/ixgbe: fix UDP zero checksum error

2021-02-03 Thread Zhang, Qi Z
> -Original Message- > From: David Marchand > Sent: Wednesday, February 3, 2021 4:32 PM > To: Zhang, Qi Z > Cc: Wang, Haiyue ; dev@dpdk.org; > pvale...@redhat.com; acon...@redhat.com; Rong, Leyi > ; Tu, Lijuan ; > ruifeng.w...@arm.com; feifei.wa...@arm.com; sta...@dpdk.org; Guo, Jia > ;

Re: [dpdk-dev] [PATCH v3 1/1] net/pcap: imissed stats support

2021-02-03 Thread Ido Goshen
> -Original Message- > From: Ferruh Yigit > Sent: Thursday, 4 February 2021 2:13 > To: Ido Goshen > Cc: dev@dpdk.org > Subject: Re: [PATCH v3 1/1] net/pcap: imissed stats support > > On 2/3/2021 11:07 PM, Ido Goshen wrote: > > get value from pcap_stats.ps_drop (see man pcap_stats) the

<    1   2