mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-06-21 15:38:43 +00:00
memory hotplug option is not hotpluggable
Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
This commit is contained in:
parent
3605aaa626
commit
51a6f637d2
@ -3746,7 +3746,6 @@ sub set_migration_caps {
|
||||
|
||||
my $fast_plug_option = {
|
||||
'name' => 1,
|
||||
'hotplug' => 1,
|
||||
'onboot' => 1,
|
||||
'shares' => 1,
|
||||
'startup' => 1,
|
||||
@ -3790,7 +3789,9 @@ sub vmconfig_hotplug_pending {
|
||||
foreach my $opt (@delete) {
|
||||
next if $selection && !$selection->{$opt};
|
||||
eval {
|
||||
if ($opt eq 'tablet') {
|
||||
if ($opt eq 'hotplug') {
|
||||
die "skip\n" if ($conf->{hotplug} =~ /memory/);
|
||||
} elsif ($opt eq 'tablet') {
|
||||
die "skip\n" if !$hotplug_features->{usb};
|
||||
if ($defaults->{tablet}) {
|
||||
vm_deviceplug($storecfg, $conf, $vmid, $opt);
|
||||
@ -3834,7 +3835,9 @@ sub vmconfig_hotplug_pending {
|
||||
next if $selection && !$selection->{$opt};
|
||||
my $value = $conf->{pending}->{$opt};
|
||||
eval {
|
||||
if ($opt eq 'tablet') {
|
||||
if ($opt eq 'hotplug') {
|
||||
die "skip\n" if ($value =~ /memory/) || ($value !~ /memory/ && $conf->{hotplug} =~ /memory/);
|
||||
} elsif ($opt eq 'tablet') {
|
||||
die "skip\n" if !$hotplug_features->{usb};
|
||||
if ($value == 1) {
|
||||
vm_deviceplug($storecfg, $conf, $vmid, $opt);
|
||||
|
@ -1,6 +1,8 @@
|
||||
qemu-server (3.3-15) unstable; urgency=low
|
||||
|
||||
* code cleanup: add foreach_dimm sub
|
||||
|
||||
* hotplug: memory hotplug option is not hotpluggable
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Mon, 09 Feb 2015 07:05:05 +0100
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user