...so that it can be used for any iproute command output.

Signed-off-by: Stefano Brivio <sbri...@redhat.com>
---
 tools/testing/selftests/net/pmtu.sh | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/tools/testing/selftests/net/pmtu.sh 
b/tools/testing/selftests/net/pmtu.sh
index 7a7845e415e4..fc79cc6f49a6 100755
--- a/tools/testing/selftests/net/pmtu.sh
+++ b/tools/testing/selftests/net/pmtu.sh
@@ -105,6 +105,16 @@ mtu() {
        ${ns_cmd} ip link set dev ${dev} mtu ${mtu}
 }
 
+mtu_parse() {
+       input="${1}"
+
+       next=0
+       for i in ${input}; do
+               [ ${next} -eq 1 ] && echo "${i}" && return
+               [ "${i}" = "mtu" ] && next=1
+       done
+}
+
 route_get_dst_exception() {
        ns_cmd="${1}"
        dst="${2}"
@@ -116,12 +126,7 @@ route_get_dst_pmtu_from_exception() {
        ns_cmd="${1}"
        dst="${2}"
 
-       exception="$(route_get_dst_exception "${ns_cmd}" ${dst})"
-       next=0
-       for i in ${exception}; do
-               [ ${next} -eq 1 ] && echo "${i}" && return
-               [ "${i}" = "mtu" ] && next=1
-       done
+       mtu_parse "$(route_get_dst_exception "${ns_cmd}" ${dst})"
 }
 
 test_pmtu_vti6_exception() {
-- 
2.15.1

Reply via email to