[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v8 06/14] net: stream: Don't ignore EINVAL on netdev socket c
From: |
David Gibson |
Subject: |
Re: [PATCH v8 06/14] net: stream: Don't ignore EINVAL on netdev socket connection |
Date: |
Wed, 14 Sep 2022 15:05:04 +1000 |
On Tue, Sep 13, 2022 at 08:39:52AM +0200, Laurent Vivier wrote:
> From: Stefano Brivio <sbrivio@redhat.com>
>
> Other errors are treated as failure by net_stream_client_init(),
> but if connect() returns EINVAL, we'll fail silently. Remove the
> related exception.
Is this also a bug in net_socket_connect_init()? Is there an
equivalent bug in dgram.c?
> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
> [lvivier: applied to net/stream.c]
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
> net/stream.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/net/stream.c b/net/stream.c
> index 0851e90becca..e8afbaca50b6 100644
> --- a/net/stream.c
> +++ b/net/stream.c
> @@ -363,8 +363,7 @@ static int net_stream_client_init(NetClientState *peer,
> if (errno == EINTR || errno == EWOULDBLOCK) {
> /* continue */
> } else if (errno == EINPROGRESS ||
> - errno == EALREADY ||
> - errno == EINVAL) {
> + errno == EALREADY) {
> break;
> } else {
> error_setg_errno(errp, errno, "can't connect socket");
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
signature.asc
Description: PGP signature
- Re: [PATCH v8 11/14] qemu-sockets: move and rename SocketAddress_to_str(), (continued)
- [PATCH v8 07/14] net: stream: add unix socket, Laurent Vivier, 2022/09/13
- [PATCH v8 01/14] net: introduce convert_host_port(), Laurent Vivier, 2022/09/13
- [PATCH v8 03/14] net: simplify net_client_parse() error management, Laurent Vivier, 2022/09/13
- [PATCH v8 06/14] net: stream: Don't ignore EINVAL on netdev socket connection, Laurent Vivier, 2022/09/13
- Re: [PATCH v8 06/14] net: stream: Don't ignore EINVAL on netdev socket connection,
David Gibson <=
- [PATCH v8 02/14] net: remove the @errp argument of net_client_inits(), Laurent Vivier, 2022/09/13
- [PATCH v8 12/14] qemu-sockets: update socket_uri() and socket_parse() to be consistent, Laurent Vivier, 2022/09/13
- [PATCH v8 04/14] qapi: net: introduce a way to bypass qemu_opts_parse_noisily(), Laurent Vivier, 2022/09/13
- Re: [PATCH v8 00/14] qapi: net: add unix socket type support to netdev backend, Stefano Brivio, 2022/09/13