[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 1/7] tests/tcg/linux-test: Fix random hangs in test_socket
From: |
Thomas Huth |
Subject: |
[PULL 1/7] tests/tcg/linux-test: Fix random hangs in test_socket |
Date: |
Mon, 1 Aug 2022 17:55:00 +0200 |
From: Ilya Leoshkevich <iii@linux.ibm.com>
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 <iii@linux.ibm.com>
Message-Id: <20220725144251.192720-1-iii@linux.ibm.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
tests/tcg/multiarch/linux/linux-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/tcg/multiarch/linux/linux-test.c
b/tests/tcg/multiarch/linux/linux-test.c
index 019d8175ca..5a2a4f2258 100644
--- a/tests/tcg/multiarch/linux/linux-test.c
+++ b/tests/tcg/multiarch/linux/linux-test.c
@@ -263,7 +263,7 @@ static int server_socket(void)
sockaddr.sin_port = htons(0); /* choose random ephemeral port) */
sockaddr.sin_addr.s_addr = 0;
chk_error(bind(fd, (struct sockaddr *)&sockaddr, sizeof(sockaddr)));
- chk_error(listen(fd, 0));
+ chk_error(listen(fd, 1));
return fd;
}
--
2.31.1
- [PULL 0/7] Testing and wording fixes, Thomas Huth, 2022/08/01
- [PULL 6/7] trivial: Fix duplicated words, Thomas Huth, 2022/08/01
- [PULL 2/7] migration-test: Use migrate_ensure_converge() for auto-converge, Thomas Huth, 2022/08/01
- [PULL 3/7] migration-test: Allow test to run without uffd, Thomas Huth, 2022/08/01
- [PULL 1/7] tests/tcg/linux-test: Fix random hangs in test_socket,
Thomas Huth <=
- [PULL 5/7] misc: fix commonly doubled up words, Thomas Huth, 2022/08/01
- [PULL 4/7] tests/unit/test-qga: Replace the word 'blacklist' in the guest agent unit test, Thomas Huth, 2022/08/01
- [PULL 7/7] tests/qtest/migration-test: Run the dirty ring tests only with the x86 target, Thomas Huth, 2022/08/01
- Re: [PULL 0/7] Testing and wording fixes, Richard Henderson, 2022/08/01