From 58971c6a37829bc0363360347c2b45a429069112 Mon Sep 17 00:00:00 2001 From: Shoelaceman Date: Wed, 12 Feb 2020 16:56:34 -0600 Subject: [PATCH] Fix inconsistent tabbing --- libvirt_hooks/hooks/hugepages.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libvirt_hooks/hooks/hugepages.sh b/libvirt_hooks/hooks/hugepages.sh index 0e1c4e6..0fe815d 100755 --- a/libvirt_hooks/hooks/hugepages.sh +++ b/libvirt_hooks/hooks/hugepages.sh @@ -33,9 +33,9 @@ function prepare/begin { } function release/end { - # Unallocate HugePages - ((HPG_NEW = HPG_CURRENT - GUEST_MEM / HPG_SIZE )) - echo "$HPG_NEW" > "$HPG_PATH" + # Unallocate HugePages + ((HPG_NEW = HPG_CURRENT - GUEST_MEM / HPG_SIZE )) + echo "$HPG_NEW" > "$HPG_PATH" kmessageNotify "Releasing ${GUEST_MEM}kB of HugePages for VM ${GUEST_NAME}" }