[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <pjobj2gw4632k7sxhbekcms4klneqr3boik7gbnx5vvsqvdm72@c3ifhmjjkiwi>
Date: Tue, 13 May 2025 15:49:52 +0200
From: Stefano Garzarella <sgarzare@...hat.com>
To: Paolo Abeni <pabeni@...hat.com>
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
virtualization@...ts.linux.dev
Subject: Re: [PATCH net-next 2/2] vsock/test: check also expected errno on
sigpipe test
On Tue, May 13, 2025 at 12:41:17PM +0200, Paolo Abeni wrote:
>On 5/8/25 4:20 PM, Stefano Garzarella wrote:
>> diff --git a/tools/testing/vsock/vsock_test.c b/tools/testing/vsock/vsock_test.c
>> index 7de870dee1cf..533d9463a297 100644
>> --- a/tools/testing/vsock/vsock_test.c
>> +++ b/tools/testing/vsock/vsock_test.c
>> @@ -1074,9 +1074,13 @@ static void test_stream_check_sigpipe(int fd)
>> do {
>> res = send(fd, "A", 1, 0);
>> timeout_check("send");
>> - } while (res != -1);
>> + } while (res != -1 && errno == EINTR);
>
>I'm low on coffee, but should the above condition be:
>
> res != -1 || errno == EINTR
>
>instead?
Ooops, copy & paste where we waited successful send().
>
>Same thing below.
I'll fix both!
Thanks,
Stefano
Powered by blists - more mailing lists