From b915a25597a961311ceb57f89d18eaee9c9461d8 Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Thu, 13 Jun 2019 14:26:26 -0700 Subject: Fix use of "2 ^ 30". 2 ^ 30 is 28, not 1073741824. --- runsc/boot/loader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runsc/boot/loader.go') diff --git a/runsc/boot/loader.go b/runsc/boot/loader.go index c1dea736f..b2a91bec9 100644 --- a/runsc/boot/loader.go +++ b/runsc/boot/loader.go @@ -259,7 +259,7 @@ func New(args Args) (*Loader, error) { // Adjust the total memory returned by the Sentry so that applications that // use /proc/meminfo can make allocations based on this limit. usage.MinimumTotalMemoryBytes = args.TotalMem - log.Infof("Setting total memory to %.2f GB", float64(args.TotalMem)/(2^30)) + log.Infof("Setting total memory to %.2f GB", float64(args.TotalMem)/(1 << 30)) } // Initiate the Kernel object, which is required by the Context passed -- cgit v1.2.3