diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-12-17 10:43:55 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-12-17 10:46:47 -0800 |
commit | e7493a9e23325c00ad9a0db341d5887afe3ae5eb (patch) | |
tree | 3a690e63993aaafd6307778ba78c27a3e6e7ead5 /runsc/boot | |
parent | 74788b1b6194ef62f8355f7e4721c00f615d16ad (diff) |
Set max memory not min
Closes #5048
PiperOrigin-RevId: 348050472
Diffstat (limited to 'runsc/boot')
-rw-r--r-- | runsc/boot/loader.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/boot/loader.go b/runsc/boot/loader.go index 3df013d34..98ea8db64 100644 --- a/runsc/boot/loader.go +++ b/runsc/boot/loader.go @@ -294,7 +294,7 @@ func New(args Args) (*Loader, error) { if args.TotalMem > 0 { // 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 + usage.MaximumTotalMemoryBytes = args.TotalMem log.Infof("Setting total memory to %.2f GB", float64(args.TotalMem)/(1<<30)) } |