Subversion Repositories configs

Rev

Rev 3 | 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() {
        [ "$1" != "restart" ] && restore_cpu_governor
        /usr/libexec/tuned/pmqos-static.py disable
        restore_transparent_hugepages
        return 0
}

process $@