aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Pirko <jiri@mellanox.com>2018-02-28 05:25:13 -0500
committerDavid S. Miller <davem@davemloft.net>2018-02-28 12:25:48 -0500
commit2f19f2125d824fc607359f6d9248bd765edf7183 (patch)
tree19d6e853b513ff83386326b4fd3b71e1c77adad5
parent4fb20ae13711ee05fba6e5dd2b81a83d9e5b5249 (diff)
selftests: forwarding: Add tc offload check helper
Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: Ido Schimmel <idosch@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--tools/testing/selftests/net/forwarding/lib.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/testing/selftests/net/forwarding/lib.sh b/tools/testing/selftests/net/forwarding/lib.sh
index 6866f4a4bc4e..92e46426bd1d 100644
--- a/tools/testing/selftests/net/forwarding/lib.sh
+++ b/tools/testing/selftests/net/forwarding/lib.sh
@@ -296,6 +296,19 @@ forwarding_restore()
296 sysctl -q -w net.ipv4.conf.all.forwarding=$ipv4_fwd 296 sysctl -q -w net.ipv4.conf.all.forwarding=$ipv4_fwd
297} 297}
298 298
299tc_offload_check()
300{
301 for i in $(eval echo {1..$NUM_NETIFS}); do
302 ethtool -k ${NETIFS[p$i]} \
303 | grep "hw-tc-offload: on" &> /dev/null
304 if [[ $? -ne 0 ]]; then
305 return 1
306 fi
307 done
308
309 return 0
310}
311
299############################################################################## 312##############################################################################
300# Tests 313# Tests
301 314