Lines Matching +full:real +full:-
2 # SPDX-License-Identifier: GPL-2.0-only
4 source ethtool-common.sh
6 set -o pipefail
9 n=$(tc qdisc show dev $NDEV | grep '^qdisc' | wc -l)
10 echo $((n - 1))
19 if [ $n -ne $1 ]; then
40 ethtool -L $NDEV combined $n
47 ethtool -L $NDEV combined $n
51 # One real one
53 n_child_assert 4 "One real queue"
55 ethtool -L $NDEV combined 1
56 n_child_assert 2 "One real queue, one default"
58 ethtool -L $NDEV combined 4
59 n_child_assert 4 "One real queue, rest default"
65 ethtool -L $NDEV combined 1
71 if [ $num_errors -eq 0 ]; then