Re: [PATCH v3] app/testpmd: fix secondary process not forwarding

2023-03-08 Thread Ferruh Yigit
sta...@dpdk.org; Zhang, >>> Yuying >>> ; Singh, Aman Deep >>> ; Burakov, Anatoly >>> ; Matan Azrad ; Dmitry >>> Kozlyuk >>> Subject: Re: [PATCH v3] app/testpmd: fix secondary process not >>> forwarding >>> >>> On 3/7

Re: [PATCH v3] app/testpmd: fix secondary process not forwarding

2023-03-07 Thread lihuisong (C)
, Anatoly ; Matan Azrad ; Dmitry Kozlyuk Subject: Re: [PATCH v3] app/testpmd: fix secondary process not forwarding On 2/23/2023 2:41 PM, Shiyang He wrote: Under multi-process scenario, the secondary process gets queue state from the wrong location (the global variable 'ports'). Therefore, the

RE: [PATCH v3] app/testpmd: fix secondary process not forwarding

2023-03-07 Thread He, ShiyangX
;> Cc: Zhou, YidingX ; sta...@dpdk.org; Zhang, >>> Yuying ; Singh, Aman Deep >>> ; Burakov, Anatoly >>> ; Matan Azrad ; Dmitry >>> Kozlyuk >>> Subject: Re: [PATCH v3] app/testpmd: fix secondary process not >>> forwarding >>> &g

Re: [PATCH v3] app/testpmd: fix secondary process not forwarding

2023-03-07 Thread Ferruh Yigit
gt; ; Burakov, Anatoly >> ; Matan Azrad ; Dmitry >> Kozlyuk >> Subject: Re: [PATCH v3] app/testpmd: fix secondary process not forwarding >> >> On 2/23/2023 2:41 PM, Shiyang He wrote: >>> Under multi-process scenario, the secondary process gets queue state

RE: [PATCH v3] app/testpmd: fix secondary process not forwarding

2023-03-06 Thread He, ShiyangX
>-Original Message- >From: Ferruh Yigit >Sent: Monday, March 6, 2023 11:06 PM >To: He, ShiyangX ; dev@dpdk.org >Cc: Zhou, YidingX ; sta...@dpdk.org; Zhang, Yuying >; Singh, Aman Deep >; Burakov, Anatoly >; Matan Azrad ; Dmitry >Kozlyuk >Subject: R

Re: [PATCH v3] app/testpmd: fix secondary process not forwarding

2023-03-06 Thread Ferruh Yigit
On 2/23/2023 8:08 AM, lihuisong (C) wrote: > > 在 2023/2/23 22:41, Shiyang He 写道: >> Under multi-process scenario, the secondary process gets queue state >> from the wrong location (the global variable 'ports'). Therefore, the >> secondary process can not forward since "stream_init" is not called.

Re: [PATCH v3] app/testpmd: fix secondary process not forwarding

2023-03-06 Thread Ferruh Yigit
On 2/23/2023 2:41 PM, Shiyang He wrote: > Under multi-process scenario, the secondary process gets queue state > from the wrong location (the global variable 'ports'). Therefore, the > secondary process can not forward since "stream_init" is not called. > > This commit fixes the issue by calling '

Re: [PATCH v3] app/testpmd: fix secondary process not forwarding

2023-02-23 Thread lihuisong (C)
在 2023/2/23 22:41, Shiyang He 写道: Under multi-process scenario, the secondary process gets queue state from the wrong location (the global variable 'ports'). Therefore, the secondary process can not forward since "stream_init" is not called. This commit fixes the issue by calling 'rte_eth_rx/t

[PATCH v3] app/testpmd: fix secondary process not forwarding

2023-02-22 Thread Shiyang He
Under multi-process scenario, the secondary process gets queue state from the wrong location (the global variable 'ports'). Therefore, the secondary process can not forward since "stream_init" is not called. This commit fixes the issue by calling 'rte_eth_rx/tx_queue_info_get' to get queue state f