Re: [PATCH RESEND] tests/tcg/linux-test: Fix random hangs in test_socket

2022-07-29 Thread Thomas Huth
On 25/07/2022 16.42, Ilya Leoshkevich wrote: test_socket hangs randomly in connect(), especially when run without qemu. Apparently the reason is that linux started treating backlog value of 0 literally instead of rounding it up since v4.4 (commit ef547f2ac16b). So set it to 1 instead.

[PATCH RESEND] tests/tcg/linux-test: Fix random hangs in test_socket

2022-07-25 Thread Ilya Leoshkevich
test_socket hangs randomly in connect(), especially when run without qemu. Apparently the reason is that linux started treating backlog value of 0 literally instead of rounding it up since v4.4 (commit ef547f2ac16b). So set it to 1 instead. Signed-off-by: Ilya Leoshkevich --- This is a rebase