From 613d76a179879eaa2aa108293dba249effa40c89 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Thu, 27 Oct 2016 07:23:32 +0200 Subject: [PATCH] change default value for cpuunits to 1024 Use the same default as containers. --- PVE/QemuServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 728110fb..7cb5ffc2 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -217,7 +217,7 @@ my $confdesc = { verbose_description => "CPU weight for a VM. Argument is used in the kernel fair scheduler. The larger the number is, the more CPU time this VM gets. Number is relative to weights of all the other running VMs.\n\nNOTE: You can disable fair-scheduler configuration by setting this to 0.", minimum => 0, maximum => 500000, - default => 1000, + default => 1024, }, memory => { optional => 1,