]> git.proxmox.com Git - qemu-server.git/commitdiff
increase start timeout when hugepages are enabled.
authorAlexandre Derumier <aderumier@odiso.com>
Tue, 9 Jan 2018 17:42:46 +0000 (18:42 +0100)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Wed, 10 Jan 2018 14:08:26 +0000 (15:08 +0100)
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.

PVE/QemuServer.pm

index 3e3c93e2b4f236a81dd0e16f488ebbd3a41be9e7..1ca34563922c32fcd8294403c3220511b36e5784 100644 (file)
@@ -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',