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

2023-02-20 Thread He, ShiyangX
Cc: Zhou, YidingX ; sta...@dpdk.org; Singh, >>> Aman Deep ; Zhang, Yuying >>> ; Burakov, Anatoly >>> ; Li, Xiaoyun ; >>> Alvin Zhang >>> Subject: Re: [PATCH] app/testpmd: fix secondary process not >>> forwarding >>> >>> >>&g

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

2023-02-20 Thread lihuisong (C)
: [PATCH] app/testpmd: fix secondary process not forwarding 在 2022/12/30 15:55, 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

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

2023-02-20 Thread He, ShiyangX
>-Original Message- >From: lihuisong (C) >Sent: Monday, February 20, 2023 8:46 PM >To: He, ShiyangX ; dev@dpdk.org >Cc: Zhou, YidingX ; sta...@dpdk.org; Singh, Aman >Deep ; Zhang, Yuying >; Burakov, Anatoly ; >Li, Xiaoyun ; Alvin Zhang >Subject: Re: [PATCH]

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

2023-02-20 Thread lihuisong (C)
在 2022/12/30 15:55, 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/

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

2023-02-19 Thread Zhang, Yuying
> -Original Message- > From: He, ShiyangX > Sent: 2023年2月8日 14:39 > To: Zhang, Yuying > Cc: dev@dpdk.org; Zhou, YidingX ; > sta...@dpdk.org; Singh, Aman Deep ; > Burakov, Anatoly ; Li, Xiaoyun > ; Alvin Zhang > Subject: RE: [PATCH] app/testpmd: fix secon

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

2023-02-07 Thread He, ShiyangX
>From: He, ShiyangX >> >Sent: Wednesday, January 4, 2023 10:02 AM >> >To: Stephen Hemminger >> >Cc: dev@dpdk.org; Zhou, YidingX ; >> >sta...@dpdk.org; Singh, Aman Deep ; >Zhang, >> >Yuying ; Burakov, Anatoly >> >; Li, Xiaoyun ; >>

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

2023-02-07 Thread Zhang, Yuying
> >Cc: dev@dpdk.org; Zhou, YidingX ; > >sta...@dpdk.org; Singh, Aman Deep ; Zhang, > >Yuying ; Burakov, Anatoly > >; Li, Xiaoyun ; Alvin > >Zhang > >Subject: RE: [PATCH] app/testpmd: fix secondary process not forwarding > > > >>> Under mul

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

2023-01-13 Thread He, ShiyangX
>Yuying ; Burakov, Anatoly >; Li, Xiaoyun ; Alvin >Zhang >Subject: RE: [PATCH] app/testpmd: fix secondary process not forwarding > >>> Under multi-process scenario, the secondary process gets queue state >>> from the wrong location (the global variable 'ports'

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

2023-01-03 Thread He, ShiyangX
>> 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

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

2022-12-30 Thread Stephen Hemminger
On Fri, 30 Dec 2022 07:55:53 + 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 iss

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

2022-12-30 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