Commit 01892701 authored by Sabrina Dubroca's avatar Sabrina Dubroca Committed by Jakub Kicinski
Browse files

selftests: netdevsim: add a test checking ethtool features



Add a test checking that some features are active by default and
changeable.

Signed-off-by: default avatarSabrina Dubroca <sd@queasysnail.net>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Link: https://patch.msgid.link/fff58fa70f8a300440958b5020f6a4eb2e9dad61.1730929545.git.sd@queasysnail.net


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 494bd83b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4,6 +4,7 @@ TEST_PROGS = devlink.sh \
	devlink_in_netns.sh \
	devlink_trap.sh \
	ethtool-coalesce.sh \
	ethtool-features.sh \
	ethtool-fec.sh \
	ethtool-pause.sh \
	ethtool-ring.sh \
+31 −0
Original line number Diff line number Diff line
#!/bin/bash
# SPDX-License-Identifier: GPL-2.0-only

source ethtool-common.sh

NSIM_NETDEV=$(make_netdev)

set -o pipefail

FEATS="
  tx-checksum-ip-generic
  tx-scatter-gather
  tx-tcp-segmentation
  generic-segmentation-offload
  generic-receive-offload"

for feat in $FEATS ; do
    s=$(ethtool --json -k $NSIM_NETDEV | jq ".[].\"$feat\".active" 2>/dev/null)
    check $? "$s" true

    s=$(ethtool --json -k $NSIM_NETDEV | jq ".[].\"$feat\".fixed" 2>/dev/null)
    check $? "$s" false
done

if [ $num_errors -eq 0 ]; then
    echo "PASSED all $((num_passes)) checks"
    exit 0
else
    echo "FAILED $num_errors/$((num_errors+num_passes)) checks"
    exit 1
fi