selftests: forwarding: Convert until_counter_is() to take expression

until_counter_is() currently takes as an argument a number and the
condition holds when the current counter value is >= that number. Make the
function more generic by taking a partial expression instead of just the
number.

Convert the two existing users.

Signed-off-by: Petr Machata <petrm@mellanox.com>
Reviewed-by: Amit Cohen <amitc@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Petr Machata 2020-03-02 19:56:03 +02:00 committed by David S. Miller
parent 84ea1f8541
commit 844f055654
2 changed files with 6 additions and 6 deletions

View file

@ -277,11 +277,11 @@ wait_for_offload()
until_counter_is()
{
local value=$1; shift
local expr=$1; shift
local current=$("$@")
echo $((current))
((current >= value))
((current $expr))
}
busywait_for_counter()
@ -290,7 +290,7 @@ busywait_for_counter()
local delta=$1; shift
local base=$("$@")
busywait "$timeout" until_counter_is $((base + delta)) "$@"
busywait "$timeout" until_counter_is ">= $((base + delta))" "$@"
}
setup_wait_dev()