vsock: set EPOLLERR on non-empty error queue
authorArseniy Krasnov <avkrasnov@salutedevices.com>
Tue, 10 Oct 2023 19:15:13 +0000 (22:15 +0300)
committerDavid S. Miller <davem@davemloft.net>
Sun, 15 Oct 2023 12:19:42 +0000 (13:19 +0100)
If socket's error queue is not empty, EPOLLERR must be set. Otherwise,
reader of error queue won't detect data in it using EPOLLERR bit.
Currently for AF_VSOCK this is actual only with MSG_ZEROCOPY, as this
feature is the only user of an error queue of the socket.

Signed-off-by: Arseniy Krasnov <avkrasnov@salutedevices.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/vmw_vsock/af_vsock.c

index 013b65241b65e34d5daad2c060e303fd6841aea6..d841f4de33b0e16cadb22c94a566cf4179fa7a77 100644 (file)
@@ -1030,7 +1030,7 @@ static __poll_t vsock_poll(struct file *file, struct socket *sock,
        poll_wait(file, sk_sleep(sk), wait);
        mask = 0;
 
-       if (sk->sk_err)
+       if (sk->sk_err || !skb_queue_empty_lockless(&sk->sk_error_queue))
                /* Signify that there has been an error on this socket. */
                mask |= EPOLLERR;