From 1d039be1e7ed54bca38a2ba290bb4b6a027dd3d5 Mon Sep 17 00:00:00 2001 From: "David Kaspar [Dee'Kej]" Date: Thu, 25 May 2017 13:25:55 +0200 Subject: Replace usleep(1) calls with sleep(1) calls The time units had to be manually converted from microseconds to seconds. Hopefully this was done right. --- sysconfig/network-scripts/network-functions | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'sysconfig/network-scripts/network-functions') diff --git a/sysconfig/network-scripts/network-functions b/sysconfig/network-scripts/network-functions index 1867c38a..330f6738 100644 --- a/sysconfig/network-scripts/network-functions +++ b/sysconfig/network-scripts/network-functions @@ -196,7 +196,11 @@ ethtool_set() { oldifs=$IFS; IFS=';'; - [ -n "${ETHTOOL_DELAY}" ] && /bin/usleep ${ETHTOOL_DELAY} + if [ -n "${ETHTOOL_DELAY}" ]; then + # Convert microseconds to seconds: + local ETHTOOL_DELAY_SEC=$(awk "BEGIN {printf \"%f\", ${ETHTOOL_DELAY} / 1000000}") + sleep ${ETHTOOL_DELAY_SEC} + fi for opts in $ETHTOOL_OPTS ; do IFS=$oldifs; if [[ "${opts}" =~ [[:space:]]*- ]]; then @@ -464,7 +468,7 @@ check_link_down () [ -n "$LINKDELAY" ] && delay=$(($LINKDELAY * 2)) while [ $timeout -le $delay ]; do [ "$(cat /sys/class/net/$REALDEVICE/carrier 2>/dev/null)" != "0" ] && return 1 - usleep 500000 + sleep 0.5 timeout=$((timeout+1)) done return 0 -- cgit v1.2.1