Move a logging function away from other functions, comment what it does

master
Shoelaceman 4 years ago
parent f9b4e1c294
commit 663e8f2061

@ -23,6 +23,14 @@ HPG_CURRENT=$(cat "${HPG_PATH}/hugepages-${HPG_SIZE}kB/nr_hugepages")
# Get amount of memory used by the guest
GUEST_MEM=$(grep '<memory unit' "$XML_PATH" | grep -ohE '[[:digit:]]+')
# Define a function used for logging later
function kmessageNotify {
MESSAGE="$1"
while read -r line; do
echo "libvirt_qemu hugepages: ${line}" > /dev/kmsg 2>&1
done < <(echo "${MESSAGE}")
}
# We define functions here named for each step libvirt calls the hook against
# respectively. These will be ran after checks pass at the end of the script.
function prepare/begin {
@ -39,13 +47,6 @@ function release/end {
kmessageNotify "Releasing ${GUEST_MEM}kB of HugePages for VM ${GUEST_NAME}"
}
function kmessageNotify {
MESSAGE="$1"
while read -r line; do
echo "libvirt_qemu hugepages: ${line}" > /dev/kmsg 2>&1
done < <(echo "${MESSAGE}")
}
# Do some checks before continuing
if [[ $HPG_SIZE -eq 0 ]]; then
# Break if HugePage size is 0

Loading…
Cancel
Save