diff options
author | Hangbin Liu <liuhangbin@gmail.com> | 2023-12-19 17:48:52 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-12-23 00:26:32 +0000 |
commit | 098f1ce08bbce6030e8c136f1efc753fd9199f33 (patch) | |
tree | eb54c080cf9520b181f628021d146479025d0682 /tools/testing/selftests/net | |
parent | d3b6b1116127123c15b85ce1ccd5f6d2d3317925 (diff) |
selftests/net: convert stress_reuseport_listen.sh to run it in unique namespace
Here is the test result after conversion.
# ./stress_reuseport_listen.sh
listen 24000 socks took 0.47714
Acked-by: David Ahern <dsahern@kernel.org>
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests/net')
-rwxr-xr-x | tools/testing/selftests/net/stress_reuseport_listen.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/testing/selftests/net/stress_reuseport_listen.sh b/tools/testing/selftests/net/stress_reuseport_listen.sh index 4de11da4092b..94d5d1a1c90f 100755 --- a/tools/testing/selftests/net/stress_reuseport_listen.sh +++ b/tools/testing/selftests/net/stress_reuseport_listen.sh @@ -2,18 +2,18 @@ # SPDX-License-Identifier: GPL-2.0 # Copyright (c) 2022 Meta Platforms, Inc. and affiliates. -NS='stress_reuseport_listen_ns' +source lib.sh NR_FILES=24100 SAVED_NR_FILES=$(ulimit -n) setup() { - ip netns add $NS + setup_ns NS ip netns exec $NS sysctl -q -w net.ipv6.ip_nonlocal_bind=1 ulimit -n $NR_FILES } cleanup() { - ip netns del $NS + cleanup_ns $NS ulimit -n $SAVED_NR_FILES } |