From 25303ca2c5c6ac2a7b09a0aa07cb8aeb2de9f3e1 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Wed, 21 Aug 2013 11:27:00 -0700 Subject: [PATCH] Properly handle case where burstable and real limit are the same http://www.virtualmin.com/node/29522 --- proc/linux-lib.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/proc/linux-lib.pl b/proc/linux-lib.pl index ca4b17e0cf..72a0d81424 100755 --- a/proc/linux-lib.pl +++ b/proc/linux-lib.pl @@ -266,6 +266,7 @@ sub get_memory_info } elsif ($memburst && $memburst == $m{'memtotal'}) { # Same as actual RAM + $memtotal = $memburst; $memburst = undef; } elsif (!$memburst) {