Use the new irqbalance plugin instead of a script to set up irqbalance. I'm placing the 'irqbalance' instance before the 'script' instance so that it's executed at the same time as the script, however I don't think the 'irqbalance' instance needs to be ordered in any specific way and could be placed almost anywhere. Resolves: rhbz#1784645 Signed-off-by: Ondřej Lysoněk <olysonek@redhat.com>
18 lines
170 B
Bash
Executable file
18 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /usr/lib/tuned/functions
|
|
|
|
start() {
|
|
return 0
|
|
}
|
|
|
|
stop() {
|
|
return 0
|
|
}
|
|
|
|
verify() {
|
|
tuna -c "$TUNED_isolated_cores" -P
|
|
return "$?"
|
|
}
|
|
|
|
process $@
|