]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
selftests/net: give more time to udpgro bg processes to complete startup
authorAdrien Thierry <athierry@redhat.com>
Tue, 1 Nov 2022 18:48:08 +0000 (14:48 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Oct 2024 13:11:48 +0000 (15:11 +0200)
[ Upstream commit cdb525ca92b196f8916102b62431aa0d9a644ff2 ]

In some conditions, background processes in udpgro don't have enough
time to set up the sockets. When foreground processes start, this
results in the test failing with "./udpgso_bench_tx: sendmsg: Connection
refused". For instance, this happens from time to time on a Qualcomm
SA8540P SoC running CentOS Stream 9.

To fix this, increase the time given to background processes to
complete the startup before foreground processes start.

Signed-off-by: Adrien Thierry <athierry@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Stable-dep-of: 9d851dd4dab6 ("selftests: net: Remove executable bits from library scripts")
Signed-off-by: Sasha Levin <sashal@kernel.org>
tools/testing/selftests/net/udpgro.sh
tools/testing/selftests/net/udpgro_bench.sh

index ebbd0b282432721f8b5265dab7b22bead3803304..6a443ca3cd3a4d675b2fe5930a28e0f2cd5771f7 100755 (executable)
@@ -50,7 +50,7 @@ run_one() {
                echo "failed" &
 
        # Hack: let bg programs complete the startup
-       sleep 0.1
+       sleep 0.2
        ./udpgso_bench_tx ${tx_args}
        ret=$?
        wait $(jobs -p)
@@ -117,7 +117,7 @@ run_one_2sock() {
                echo "failed" &
 
        # Hack: let bg programs complete the startup
-       sleep 0.1
+       sleep 0.2
        ./udpgso_bench_tx ${tx_args} -p 12345
        sleep 0.1
        # first UDP GSO socket should be closed at this point
index fad2d1a71cac36a996b03f2bcce615212f4fa6ac..8a1109a545dba0be3f6b6db3ba84e90168f3f4f0 100755 (executable)
@@ -39,7 +39,7 @@ run_one() {
        ip netns exec "${PEER_NS}" ./udpgso_bench_rx -t ${rx_args} -r &
 
        # Hack: let bg programs complete the startup
-       sleep 0.1
+       sleep 0.2
        ./udpgso_bench_tx ${tx_args}
 }