Subversion Repositories configs

Rev

Rev 4 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
#!/bin/sh
2
 
3
. /etc/tune-profiles/functions
4
 
5
start() {
6
	set_cpu_governor performance
7
	/usr/libexec/tuned/pmqos-static.py cpu_dma_latency=1
8
	set_transparent_hugepages never
9
 
10
	return 0
11
}
12
 
13
stop() {
97 - 14
	[ "$1" != "restart" ] && restore_cpu_governor
4 - 15
	/usr/libexec/tuned/pmqos-static.py disable
16
	restore_transparent_hugepages
17
	return 0
18
}
19
 
20
process $@