qcom-wifi-7: Default TC fq_codel queue on GRE cause low GRE RX throughput

Fixes: WIFI-14603
Signed-off-by: Ken <xshi@actiontec.com>
This commit is contained in:
Ken
2025-05-21 10:05:34 +08:00
committed by John Crispin
parent 942d7c15b4
commit 44bcc50815

View File

@@ -0,0 +1,20 @@
# /etc/hotplug.d/iface/85-greqos
[ "$ACTION" == "ifup" ] || exit 0
. /lib/functions.sh
case "$(board_name)" in
cig,wf189|\
cig,wf189w|\
cig,wf189h|\
cig,wf672)
case "$INTERFACE" in
gre*)
dev=$(ubus call network.interface.$INTERFACE status | jsonfilter -e '@.l3_device')
[ -n "$dev" ] && {
tc qdisc del dev $dev root 2>/dev/null
tc qdisc add dev $dev root noqueue
}
;;
esac
esac