diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 2a07bcec..648a5f80 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -4922,10 +4922,8 @@ sub vm_start { } } else { - if (!$statefile && (!defined($conf->{balloon}) || $conf->{balloon})) { - vm_mon_cmd_nocheck($vmid, "balloon", value => $conf->{balloon}*1024*1024) - if $conf->{balloon}; - } + vm_mon_cmd_nocheck($vmid, "balloon", value => $conf->{balloon}*1024*1024) + if !$statefile && $conf->{balloon}; foreach my $opt (keys %$conf) { next if $opt !~ m/^net\d+$/;