Subversion Repositories configs

Rev

Go to most recent revision | Details | 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
	set_transparent_hugepages always
8
	multiply_disk_readahead 4
9
 
10
	return 0
11
}
12
 
13
stop() {
14
	restore_cpu_governor
15
	restore_transparent_hugepages
16
	restore_disk_readahead
17
 
18
	return 0
19
}
20
 
21
process $@