Commit 010079ba authored by Petr Machata's avatar Petr Machata Committed by David S. Miller

selftests: forwarding: lib: Split out setup_wait_dev()

Split out of setup_wait() a function setup_wait_dev() that waits for a
single device. This gives tests the opportunity to wait for a selected
device after they tinkered with its upness.
Signed-off-by: default avatarPetr Machata <petrm@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b330219c
...@@ -185,18 +185,25 @@ log_info() ...@@ -185,18 +185,25 @@ log_info()
echo "INFO: $msg" echo "INFO: $msg"
} }
setup_wait_dev()
{
local dev=$1; shift
while true; do
ip link show dev $dev up \
| grep 'state UP' &> /dev/null
if [[ $? -ne 0 ]]; then
sleep 1
else
break
fi
done
}
setup_wait() setup_wait()
{ {
for i in $(eval echo {1..$NUM_NETIFS}); do for i in $(eval echo {1..$NUM_NETIFS}); do
while true; do setup_wait_dev ${NETIFS[p$i]}
ip link show dev ${NETIFS[p$i]} up \
| grep 'state UP' &> /dev/null
if [[ $? -ne 0 ]]; then
sleep 1
else
break
fi
done
done done
# Make sure links are ready. # Make sure links are ready.
......
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