From: Alexandre Derumier Date: Tue, 9 Jan 2018 17:42:46 +0000 (+0100) Subject: increase start timeout when hugepages are enabled. X-Git-Url: https://git.proxmox.com/?p=qemu-server.git;a=commitdiff_plain;h=f38de678e435519d31301407b61a507ea088660d;ds=sidebyside increase start timeout when hugepages are enabled. Hugepages can take some time to be allocated by qemu at start (60s for 120G of 1G hugepages). This patch increase start timeout to 5min when hugepages are enabled. --- diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 3e3c93e..1ca3456 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -4688,7 +4688,8 @@ sub vm_start { my $cpuunits = defined($conf->{cpuunits}) ? $conf->{cpuunits} : $defaults->{cpuunits}; - my %run_params = (timeout => $statefile ? undef : 30, umask => 0077); + my $start_timeout = $conf->{hugepages} ? 300 : 30; + my %run_params = (timeout => $statefile ? undef : $start_timeout, umask => 0077); my %properties = ( Slice => 'qemu.slice',