RE: [PATCH v4] net/igc: add support for secondary processes

2022-06-30 Thread Zhang, Qi Z
> -Original Message- > From: Zeng, ZhichaoX > Sent: Friday, July 1, 2022 11:13 AM > To: Zhang, Qi Z ; dev@dpdk.org > Cc: sta...@dpdk.org; Yang, Qiming ; > alvinx.zh...@intel.com; Guo, Junfeng ; Su, Simei > ; Burakov, Anatoly ; > Ferruh Yigit > Subject:

RE: [PATCH v4] net/igc: add support for secondary processes

2022-06-30 Thread Zeng, ZhichaoX
>> The RX function was not specified in the secondary process, causing >> the secondary process to segfault in a multi-process environment. >> >> This patch specify RX/TX functions in "dev_init" to support secondary >> processes. >> >> Fixes: 66fde1b943eb ("net/igc: add skeleton") >> Cc: alvinx

RE: [PATCH v4] net/igc: add support for secondary processes

2022-06-30 Thread Zhang, Qi Z
Yigit > Subject: [PATCH v4] net/igc: add support for secondary processes > > From: Zhichao Zeng > > The RX function was not specified in the secondary process, causing the > secondary process to segfault in a multi-process environment. > > This patch specify RX/TX functi

[PATCH v4] net/igc: add support for secondary processes

2022-06-30 Thread zhichaox . zeng
From: Zhichao Zeng The RX function was not specified in the secondary process, causing the secondary process to segfault in a multi-process environment. This patch specify RX/TX functions in "dev_init" to support secondary processes. Fixes: 66fde1b943eb ("net/igc: add skeleton") Cc: alvinx.zh..