diff options
author | Prashant Bhole <[email protected]> | 2018-03-06 17:31:32 +0900 |
---|---|---|
committer | David S. Miller <[email protected]> | 2018-03-07 12:26:05 -0500 |
commit | 4d1e46a55ea9f8d693ceabe1ba4b056e55fb6625 (patch) | |
tree | b1394e87bcad093f5870962117a51c582174cd5d | |
parent | 6e61e10a8a9655424cf03c0fb44d282b40f402a2 (diff) |
selftests/net: fix in_netns.sh script
execute the subprocess in netns using 'ip netns exec'
Fixes: cc30c93fa020 ("selftests/net: ignore background traffic in psock_fanout")
Signed-off-by: Prashant Bhole <[email protected]>
Acked-by: Willem de Bruijn <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rwxr-xr-x | tools/testing/selftests/net/in_netns.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/in_netns.sh b/tools/testing/selftests/net/in_netns.sh index f57a2eaad069..88795b510b32 100755 --- a/tools/testing/selftests/net/in_netns.sh +++ b/tools/testing/selftests/net/in_netns.sh @@ -19,5 +19,5 @@ cleanup() { trap cleanup EXIT setup -"$@" +ip netns exec "${NETNS}" "$@" exit "$?" |