These profiles are performance optimized for SAP HANA loads. There are available in tuned-profiles-sap-hana subpackage. Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
22 lines
245 B
Bash
Executable file
22 lines
245 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# SAP ktune script
|
|
#
|
|
# TODO: drop this script and implement native support
|
|
# into plugins
|
|
|
|
. /usr/lib/tuned/functions
|
|
|
|
start() {
|
|
ethtool -K eth0 lro off
|
|
|
|
return 0
|
|
}
|
|
|
|
stop() {
|
|
ethtool -K eth0 lro on
|
|
|
|
return 0
|
|
}
|
|
|
|
process $@
|