Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
26 lines
832 B
Bash
Executable File
26 lines
832 B
Bash
Executable File
#!/bin/sh
|
|
|
|
packet_steering="$(uci -q get network.@globals[0].packet_steering)"
|
|
flow_offloading="$(uci -q get firewall.@defaults[0].flow_offloading)"
|
|
flow_offloading_hw="$(uci -q get firewall.@defaults[0].flow_offloading_hw)"
|
|
|
|
[ "$packet_steering" != 1 ] && {
|
|
echo 0 > /sys/class/net/br-lan/queues/rx-0/rps_cpus
|
|
echo 0 > /sys/class/net/eth0/queues/rx-0/rps_cpus
|
|
exit 0
|
|
}
|
|
|
|
if [ ${flow_offloading_hw:-0} -gt 0 ]; then
|
|
# HW offloading
|
|
echo 0 > /sys/class/net/br-lan/queues/rx-0/rps_cpus
|
|
echo 0 > /sys/class/net/eth0/queues/rx-0/rps_cpus
|
|
elif [ ${flow_offloading:-0} -gt 0 ]; then
|
|
# SW offloading
|
|
# br-lan setup doesn't seem to matter for offloading case
|
|
echo 2 > /sys/class/net/eth0/queues/rx-0/rps_cpus
|
|
else
|
|
# Default
|
|
echo 2 > /sys/class/net/br-lan/queues/rx-0/rps_cpus
|
|
echo 0 > /sys/class/net/eth0/queues/rx-0/rps_cpus
|
|
fi
|