Skip to content

Commit

Permalink
perf tests test_bridge_fdb_stress.sh: Fix redirection of stderr to stdin
Browse files Browse the repository at this point in the history
It's not 2&>1, the correct is 2>&1.

Signed-off-by: Patrice Duroux <patrice.duroux@gmail.com>
Cc: linux-kselftest@vger.kernel.org
Link: https://lore.kernel.org/r/20230303193058.21274-1-patrice.duroux@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Patrice Duroux authored and Arnaldo Carvalho de Melo committed Apr 4, 2023
1 parent 9835b74 commit 7f8d3fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7f8d3fb

Please sign in to comment.