Upstream has finally patched the UI communication socket
creation to happen only if the irqbalance UI is enabled.
As we do not use the irqbalance UI, we can remove
our local fix implemented by 4f0c847828
.
(If you want to enable irqbalance UI, the fix is still needed.)
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
34 lines
637 B
Bash
34 lines
637 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=90
|
|
STOP=10
|
|
|
|
USE_PROCD=1
|
|
|
|
service_triggers()
|
|
{
|
|
procd_add_reload_trigger "irqbalance"
|
|
}
|
|
|
|
start_service() {
|
|
local enabled
|
|
config_load 'irqbalance'
|
|
config_get_bool enabled irqbalance enabled 0
|
|
[ "$enabled" -gt 0 ] || return 0
|
|
|
|
# 10 is the default
|
|
config_get interval irqbalance interval 10
|
|
|
|
# A list of IRQ's to ignore
|
|
banirq=""
|
|
handle_banirq_value()
|
|
{
|
|
banirq="$banirq -i $1"
|
|
}
|
|
config_list_foreach irqbalance banirq handle_banirq_value
|
|
|
|
procd_open_instance "irqbalance"
|
|
procd_set_param command /usr/sbin/irqbalance -f -t "$interval" "$banirq"
|
|
procd_set_param respawn
|
|
procd_close_instance
|
|
}
|