summaryrefslogtreecommitdiffstats
path: root/net/jool/files/jool-disable-fraglist-gro.sh
blob: 2d43c2e4b208cdaf4ff4b9bdba24c7460b389bdc (plain)
1
2
3
4
5
6
if [ "$ACTION" = add ]; then
	for dev in `ls /sys/class/net`; do
		[ -d "/sys/class/net/$dev" ] || continue
		ethtool -K $dev rx-gro-list off 2>/dev/null
	done
fi