Re: [PATCH v2] net/af_xdp: allow operation when multiprocess is disabled

2022-02-17 Thread Ferruh Yigit
On 2/17/2022 1:29 PM, Loftus, Ciara wrote: Subject: [PATCH v2] net/af_xdp: allow operation when multiprocess is disabled If EAL multiprocess feature has been disabled via rte_mp_disable() function, AF_XDP driver may not be able to register its IPC callback. Previously this leads to probe

RE: [PATCH v2] net/af_xdp: allow operation when multiprocess is disabled

2022-02-17 Thread Loftus, Ciara
> Subject: [PATCH v2] net/af_xdp: allow operation when multiprocess is > disabled > > If EAL multiprocess feature has been disabled via rte_mp_disable() > function, AF_XDP driver may not be able to register its IPC callback. > Previously this leads to probe failure. > This co

Re: [PATCH v2] net/af_xdp: allow operation when multiprocess is disabled

2022-02-17 Thread David Marchand
On Thu, Feb 17, 2022 at 12:14 PM Junxiao Shi wrote: > > If EAL multiprocess feature has been disabled via rte_mp_disable() > function, AF_XDP driver may not be able to register its IPC callback. > Previously this leads to probe failure. > This commit adds a check for this condition so that AF_XDP

[PATCH v2] net/af_xdp: allow operation when multiprocess is disabled

2022-02-17 Thread Junxiao Shi
If EAL multiprocess feature has been disabled via rte_mp_disable() function, AF_XDP driver may not be able to register its IPC callback. Previously this leads to probe failure. This commit adds a check for this condition so that AF_XDP can still be used even if multiprocess is disabled. Fixes: 987