Re: [PATCH] vhost: only emit debug log with invalid FD

2024-06-25 Thread Maxime Coquelin
On 6/25/24 09:35, David Marchand wrote: On Mon, Jun 24, 2024 at 4:46 PM Maxime Coquelin wrote: This patch improves the FD manager logging in case of FD removal from the epoll FD set failure. When the FD is not more valid, like for example if it is not valid anymore* has already been cl

Re: [PATCH] vhost: only emit debug log with invalid FD

2024-06-25 Thread David Marchand
On Mon, Jun 24, 2024 at 4:46 PM Maxime Coquelin wrote: > > This patch improves the FD manager logging in case > of FD removal from the epoll FD set failure. > > When the FD is not more valid, like for example if it is not valid anymore* > has already been closed, only emit a debug log and not >

[PATCH] vhost: only emit debug log with invalid FD

2024-06-24 Thread Maxime Coquelin
This patch improves the FD manager logging in case of FD removal from the epoll FD set failure. When the FD is not more valid, like for example if it has already been closed, only emit a debug log and not an error one. Fixes: 0e38b42bf61c ("vhost: manage FD with epoll") Reported-by: David Marcha