From e37bc32183771866093417cfa6abb5c2860c0464 Mon Sep 17 00:00:00 2001 From: Neel Natu Date: Tue, 8 Jan 2013 01:56:05 +0000 Subject: [PATCH] Reduce the default memory allocation for a VM from 768MB to 128MB. Obtained from: NetApp --- usr.sbin/bhyveload/bhyveload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bhyveload/bhyveload.c b/usr.sbin/bhyveload/bhyveload.c index 12f7c4b359cb..ef12d9f575f9 100644 --- a/usr.sbin/bhyveload/bhyveload.c +++ b/usr.sbin/bhyveload/bhyveload.c @@ -567,7 +567,7 @@ main(int argc, char** argv) progname = argv[0]; - lowmem = 768 * MB; + lowmem = 128 * MB; highmem = 0; disk_image = NULL;