Re: [PATCH] eal: fix file descriptor leakage with unhandled messages

2023-07-04 Thread David Marchand
On Mon, Jul 3, 2023 at 12:31 PM Burakov, Anatoly wrote: > On 6/28/2023 1:19 PM, Viacheslav Ovsiienko wrote: > > The sendmsg()/recvmsg() API is used to establish communication between > > the DPDK processes. The API supposes inter-process file descriptors > > sending and conversion, the recipient s

Re: [PATCH] eal: fix file descriptor leakage with unhandled messages

2023-07-03 Thread Burakov, Anatoly
On 6/28/2023 1:19 PM, Viacheslav Ovsiienko wrote: The sendmsg()/recvmsg() API is used to establish communication between the DPDK processes. The API supposes inter-process file descriptors sending and conversion, the recipient sees the resulting descriptors in the received message - the operating

Re: [PATCH] eal: fix file descriptor leakage with unhandled messages

2023-07-03 Thread fengchengwen
Acked-by: Chengwen Feng On 2023/6/28 20:19, Viacheslav Ovsiienko wrote: > The sendmsg()/recvmsg() API is used to establish communication between > the DPDK processes. The API supposes inter-process file descriptors > sending and conversion, the recipient sees the resulting descriptors > in the re

[PATCH] eal: fix file descriptor leakage with unhandled messages

2023-06-28 Thread Viacheslav Ovsiienko
The sendmsg()/recvmsg() API is used to establish communication between the DPDK processes. The API supposes inter-process file descriptors sending and conversion, the recipient sees the resulting descriptors in the received message - the operating systems creates ones in the right context. The mes