RE: [PATCH v2] net/pcap: fix timeout of stopping device

2022-12-04 Thread Zhou, YidingX
> > On Tue, 6 Sep 2022 16:05:11 +0800 Yiding Zhou > > wrote: > > > >> The pcap file will be synchronized to the disk when stopping the > >> device. > >> It takes a long time if the file is large that would cause the > >> 'detach sync req

RE: [PATCH v2] net/pcap: fix timeout of stopping device

2022-12-02 Thread Zhou, YidingX
> > > > On Tue, 6 Sep 2022 16:05:11 +0800 Yiding Zhou > > > > wrote: > > > > > > > > > The pcap file will be synchronized to the disk when stopping the > > > > > device. > > > > > It takes a long time if the file is large that would cause the > > > > > 'detach sync

RE: [PATCH v2] net/pcap: fix timeout of stopping device

2022-12-02 Thread Zhou, YidingX
> >>> On Tue, 6 Sep 2022 16:05:11 +0800 > >>> Yiding Zhou wrote: > >>> > The pcap file will be synchronized to the disk when stopping the device. > It takes a long time if the file is large that would cause the > 'detach sync request' timeout when t

RE: [PATCH v2] net/pcap: fix timeout of stopping device

2022-11-22 Thread Zhou, YidingX
> -Original Message- > From: Zhou, YidingX > Sent: Wednesday, September 21, 2022 3:15 PM > To: Stephen Hemminger ; Zhang, Qi Z > > Cc: dev@dpdk.org; Burakov, Anatoly ; He, > Xingguang ; sta...@dpdk.org > Subject: RE: [PATCH v2] net/pcap: fix ti

RE: [PATCH v3] net/iavf: revert fix VLAN insertion

2022-11-09 Thread Zhou, YidingX
> > Subject: [PATCH v3] net/iavf: revert fix VLAN insertion > > > > The vector Tx path does not support VLAN insertion via the L2TAG2 > > field, but the scalar path supports. The previous commit was to force > > to select scalar path as soon as kernel driver requests to use L2TAG2. > > In which si

RE: [PATCH v3] net/iavf: revert fix VLAN insertion

2022-11-08 Thread Zhou, YidingX
Hi > -Original Message- > From: Zhou, YidingX > Sent: Friday, November 4, 2022 2:10 PM > To: dev@dpdk.org > Cc: ktray...@redhat.com; Yang, Qiming ; Zhou, > YidingX > Subject: [PATCH v3] net/iavf: revert fix VLAN insertion > > The vector Tx path does not sup

RE: [PATCH] net/ice/base: fix duplicate flow rules

2022-11-07 Thread Zhou, YidingX
Hi, Qi This patch has been merged to kernel driver. Should it be merged to dpdk now? > -Original Message- > From: Zhou, YidingX > Sent: Thursday, October 13, 2022 2:21 PM > To: dev@dpdk.org > Cc: Zhou, YidingX ; sta...@dpdk.org > Subject: [PATCH] net/ice/base:

RE: [PATCH v2] net/iavf: revert fix VLAN insertion

2022-10-20 Thread Zhou, YidingX
> >> -Original Message- > >> From: Kevin Traynor > >> Sent: Wednesday, October 19, 2022 4:53 PM > >> To: Zhou, YidingX ; dev@dpdk.org > >> Subject: Re: [PATCH v2] net/iavf: revert fix VLAN insertion > >> > >> On 19/10/2022

RE: [PATCH v2] net/iavf: revert fix VLAN insertion

2022-10-19 Thread Zhou, YidingX
> -Original Message- > From: Kevin Traynor > Sent: Wednesday, October 19, 2022 4:53 PM > To: Zhou, YidingX ; dev@dpdk.org > Subject: Re: [PATCH v2] net/iavf: revert fix VLAN insertion > > On 19/10/2022 08:54, Yiding Zhou wrote: > > When the kernel driver te

RE: [PATCH v3] app/testpmd: fix incorrect queues state of secondary process

2022-10-14 Thread Zhou, YidingX
> > > + if (rte_eal_process_type() != RTE_PROC_PRIMARY) { > > + struct fwd_stream *fs = fwd_streams[i]; > > + struct rte_eth_dev_data *dev_rx_data, > *dev_tx_data; > > + > > + dev_rx_data = (&rte_eth_de

RE: [PATCH v3] app/testpmd: fix incorrect queues state of secondary process

2022-10-12 Thread Zhou, YidingX
Hi > -Original Message- > From: Zhou, YidingX > Sent: Thursday, September 29, 2022 9:58 AM > To: Zhang, Peng1X ; lihuisong (C) > ; dev@dpdk.org; andrew.rybche...@oktetlabs.ru > Cc: Singh, Aman Deep ; Zhang, Yuying > > Subject: RE: [PATCH v3] app/testpmd: fix i

RE: [PATCH v3] net/iavf: fix error of virtchnl command

2022-10-09 Thread Zhou, YidingX
> > This commit starts a thread to handle all events to fix this issue. > > > > Fixes: 48de41ca11f0 ("net/avf: enable link status update") > > CC: sta...@dpdk.org > > > > Signed-off-by: Yiding Zhou > > --- > > + > > static uint32_t > > iavf_convert_link_speed(enum virtchnl_link_speed virt_link

RE: [PATCH v3] app/testpmd: fix incorrect queues state of secondary process

2022-09-28 Thread Zhou, YidingX
> > > Primary process could set up queues state correctly when starting > > > port, while secondary process not. Under multi-process scenario, > > "stream_init" > > > function would get wrong queues state for secondary process. > > > > > > This commit is to get queues state from ethdev which is loc

RE: [PATCH v2] net/pcap: fix timeout of stopping device

2022-09-21 Thread Zhou, YidingX
> -Original Message- > From: Stephen Hemminger > Sent: Tuesday, September 6, 2022 10:58 PM > To: Zhou, YidingX > Cc: dev@dpdk.org; Zhang, Qi Z ; Burakov, Anatoly > ; He, Xingguang ; > sta...@dpdk.org > Subject: Re: [PATCH v2] net/pcap: fix timeout of stoppin

RE: [PATCH v2] net/pcap: fix timeout of stopping device

2022-09-06 Thread Zhou, YidingX
On Tue, 6 Sep 2022 16:05:11 +0800 Yiding Zhou wrote: > The pcap file will be synchronized to the disk when stopping the device. > It takes a long time if the file is large that would cause the 'detach > sync request' timeout when the device is closed under multi-process > scenario. > > This c

RE: [PATCH] net/pcap: reduce time for stopping device

2022-09-01 Thread Zhou, YidingX
Hi, Ferruh > > >>> The pcap file will be synchronized to the disk when stopping the device. > > >>> It takes a long time if the file is large that would cause the > > >>> 'detach sync request' timeout when the device is closed under > > >>> multi-process scenario. > > >>> > > >>> This commit fixes

RE: [PATCH] net/pcap: reduce time for stopping device

2022-08-29 Thread Zhou, YidingX
> -Original Message- > From: Ferruh Yigit > Sent: Thursday, August 25, 2022 8:22 PM > To: Zhou, YidingX ; dev@dpdk.org > Cc: Zhang, Qi Z ; sta...@dpdk.org > Subject: Re: [PATCH] net/pcap: reduce time for stopping device > > On 8/25/2022 12:17

RE: [PATCH] net/pcap: reduce time for stopping device

2022-08-25 Thread Zhou, YidingX
> -Original Message- > From: Ferruh Yigit > Sent: Thursday, August 25, 2022 6:09 PM > To: Zhou, YidingX ; dev@dpdk.org > Cc: Zhang, Qi Z ; sta...@dpdk.org > Subject: Re: [PATCH] net/pcap: reduce time for stopping device > > On 8/25/2022 8:20 AM, Yiding Zhou

RE: [PATCH v6] net/ice: add retry mechanism for DCF after failure

2022-07-31 Thread Zhou, YidingX
> -Original Message- > From: Zhang, Qi Z > Sent: Thursday, July 7, 2022 2:56 PM > To: Zhang, Peng1X ; Yang, Qiming > ; dev@dpdk.org > Subject: RE: [PATCH v6] net/ice: add retry mechanism for DCF after failure > > > > > -Original Message- > > From: Zhang, Peng1X > > Sent: Wed

RE: [PATCH] net/ice: fix gcc error with -DRTE_LIBRTE_ICE_16BYTE_RX_DESC

2022-02-07 Thread Zhou, YidingX
> -Original Message- > From: Richardson, Bruce > Sent: Monday, February 7, 2022 9:46 PM > To: Wang, Haiyue > Cc: Zhou, YidingX ; Yang, Qiming > ; Zhang, Qi Z ; > dev@dpdk.org > Subject: Re: [PATCH] net/ice: fix gcc error with - > DRTE_LIBRTE_ICE_16BYTE_