Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#!/bin/sh
. /etc/tune-profiles/functions
start() {
set_cpu_governor performance
/usr/libexec/tuned/pmqos-static.py cpu_dma_latency=1
set_transparent_hugepages never
return 0
}
stop() {
restore_cpu_governor
/usr/libexec/tuned/pmqos-static.py disable
restore_transparent_hugepages
return 0
}
process $@