9ae3a8
#!/bin/bash
9ae3a8
#
9ae3a8
# Copyright 2009 Red Hat, Inc. and/or its affiliates.
9ae3a8
# Released under the GPL
9ae3a8
#
9ae3a8
# Author:      Dan Kenigsberg <danken@redhat.com>
9ae3a8
#
9ae3a8
# ksmtuned - a simple script that controls whether (and with what vigor) ksm
9ae3a8
# should search for duplicated pages.
9ae3a8
#
9ae3a8
# starts ksm when memory commited to qemu processes exceeds a threshold, and
9ae3a8
# make ksm work harder and harder untill memory load falls below that
9ae3a8
# threshold.
9ae3a8
#
9ae3a8
# send SIGUSR1 to this process right after a new qemu process is started, or
9ae3a8
# following its death, to retune ksm accordingly
9ae3a8
#
9ae3a8
# needs testing and ironing. contact danken@redhat.com if something breaks.
9ae3a8
9ae3a8
if [ -f /etc/ksmtuned.conf ]; then
9ae3a8
    . /etc/ksmtuned.conf
9ae3a8
fi
9ae3a8
9ae3a8
debug() {
9ae3a8
    if [ -n "$DEBUG" ]; then
9ae3a8
        s="`/bin/date`: $*"
9ae3a8
        [ -n "$LOGFILE" ] && echo "$s" >> "$LOGFILE" || echo "$s"
9ae3a8
    fi
9ae3a8
}
9ae3a8
9ae3a8
9ae3a8
KSM_MONITOR_INTERVAL=${KSM_MONITOR_INTERVAL:-60}
9ae3a8
KSM_NPAGES_BOOST=${KSM_NPAGES_BOOST:-300}
9ae3a8
KSM_NPAGES_DECAY=${KSM_NPAGES_DECAY:--50}
9ae3a8
9ae3a8
KSM_NPAGES_MIN=${KSM_NPAGES_MIN:-64}
9ae3a8
KSM_NPAGES_MAX=${KSM_NPAGES_MAX:-1250}
9ae3a8
# millisecond sleep between ksm scans for 16Gb server. Smaller servers sleep
9ae3a8
# more, bigger sleep less.
9ae3a8
KSM_SLEEP_MSEC=${KSM_SLEEP_MSEC:-10}
9ae3a8
9ae3a8
KSM_THRES_COEF=${KSM_THRES_COEF:-20}
9ae3a8
KSM_THRES_CONST=${KSM_THRES_CONST:-2048}
9ae3a8
9ae3a8
total=`awk '/^MemTotal:/ {print $2}' /proc/meminfo`
9ae3a8
debug total $total
9ae3a8
9ae3a8
npages=0
9ae3a8
sleep=$[KSM_SLEEP_MSEC * 16 * 1024 * 1024 / total]
9ae3a8
[ $sleep -le 10 ] && sleep=10
9ae3a8
debug sleep $sleep
9ae3a8
thres=$[total * KSM_THRES_COEF / 100]
9ae3a8
if [ $KSM_THRES_CONST -gt $thres ]; then
9ae3a8
    thres=$KSM_THRES_CONST
9ae3a8
fi
9ae3a8
debug thres $thres
9ae3a8
9ae3a8
KSMCTL () {
9ae3a8
    case x$1 in
9ae3a8
        xstop)
9ae3a8
            echo 0 > /sys/kernel/mm/ksm/run
9ae3a8
            ;;
9ae3a8
        xstart)
9ae3a8
            echo $2 > /sys/kernel/mm/ksm/pages_to_scan
9ae3a8
            echo $3 > /sys/kernel/mm/ksm/sleep_millisecs
9ae3a8
            echo 1 > /sys/kernel/mm/ksm/run
9ae3a8
            ;;
9ae3a8
    esac
9ae3a8
}
9ae3a8
9ae3a8
committed_memory () {
9ae3a8
    local pidlist
9ae3a8
    pidlist=$(pgrep -d ' ' -- '^qemu(-kvm|:.{1,11})$')
9ae3a8
    if [ -n "$pidlist" ]; then
9ae3a8
        ps -p "$pidlist" -o rsz=
9ae3a8
    fi | awk '{ sum += $1 }; END { print 0+sum }'
9ae3a8
}
9ae3a8
9ae3a8
free_memory () {
9ae3a8
    awk '/^(MemFree|Buffers|Cached):/ {free += $2}; END {print free}' \
9ae3a8
                /proc/meminfo
9ae3a8
}
9ae3a8
9ae3a8
increase_npages() {
9ae3a8
    local delta
9ae3a8
    delta=${1:-0}
9ae3a8
    npages=$[npages + delta]
9ae3a8
    if [ $npages -lt $KSM_NPAGES_MIN ]; then
9ae3a8
        npages=$KSM_NPAGES_MIN
9ae3a8
    elif [ $npages -gt $KSM_NPAGES_MAX ]; then
9ae3a8
        npages=$KSM_NPAGES_MAX
9ae3a8
    fi
9ae3a8
    echo $npages
9ae3a8
}
9ae3a8
9ae3a8
9ae3a8
adjust () {
9ae3a8
    local free committed
9ae3a8
    free=`free_memory`
9ae3a8
    committed=`committed_memory`
9ae3a8
    debug committed $committed free $free
9ae3a8
    if [ $[committed + thres] -lt $total -a $free -gt $thres ]; then
9ae3a8
        KSMCTL stop
9ae3a8
        debug "$[committed + thres] < $total and free > $thres, stop ksm"
9ae3a8
        return 1
9ae3a8
    fi
9ae3a8
    debug "$[committed + thres] > $total, start ksm"
9ae3a8
    if [ $free -lt $thres ]; then
9ae3a8
        npages=`increase_npages $KSM_NPAGES_BOOST`
9ae3a8
        debug "$free < $thres, boost"
9ae3a8
    else
9ae3a8
        npages=`increase_npages $KSM_NPAGES_DECAY`
9ae3a8
        debug "$free > $thres, decay"
9ae3a8
    fi
9ae3a8
    KSMCTL start $npages $sleep
9ae3a8
    debug "KSMCTL start $npages $sleep"
9ae3a8
    return 0
9ae3a8
}
9ae3a8
9ae3a8
function nothing () {
9ae3a8
    :
9ae3a8
}
9ae3a8
9ae3a8
loop () {
9ae3a8
    trap nothing SIGUSR1
9ae3a8
    while true
9ae3a8
    do
9ae3a8
        sleep $KSM_MONITOR_INTERVAL &
9ae3a8
        wait $!
9ae3a8
        adjust
9ae3a8
    done
9ae3a8
}
9ae3a8
9ae3a8
PIDFILE=${PIDFILE-/var/run/ksmtune.pid}
9ae3a8
if touch "$PIDFILE"; then
9ae3a8
  loop &
9ae3a8
  echo $! > "$PIDFILE"
9ae3a8
fi