Commit 7f8d3fbe authored by Patrice Duroux's avatar Patrice Duroux Committed by Arnaldo Carvalho de Melo

perf tests test_bridge_fdb_stress.sh: Fix redirection of stderr to stdin

It's not 2&>1, the correct is 2>&1.
Signed-off-by: default avatarPatrice Duroux <patrice.duroux@gmail.com>
Cc: linux-kselftest@vger.kernel.org
Link: https://lore.kernel.org/r/20230303193058.21274-1-patrice.duroux@gmail.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 9835b742
......@@ -31,7 +31,7 @@ trap 'cleanup' EXIT
eth=${NETIFS[p1]}
ip link del br0 2&>1 >/dev/null || :
ip link del br0 2>&1 >/dev/null || :
ip link add br0 type bridge && ip link set $eth master br0
(while :; do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment