[pve-devel] [PATCH v2 qemu-server] add check to resize disk if current size could not be determined

Tim Marx t.marx at proxmox.com
Mon Sep 9 12:39:48 CEST 2019


This check ensures that disks aren't unintentionally shrunken, if the
size is zero due to an underlying problem.
---
* fix indentation

 PVE/API2/Qemu.pm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm
index 245de80..e6f3cce 100644
--- a/PVE/API2/Qemu.pm
+++ b/PVE/API2/Qemu.pm
@@ -3511,6 +3511,8 @@ __PACKAGE__->register_method({
 	    PVE::Storage::activate_volumes($storecfg, [$volid]);
 	    my $size = PVE::Storage::volume_size_info($storecfg, $volid, 5);

+	    die "volume $volid does not exists\n" if !$size;
+
 	    die "internal error" if $sizestr !~ m/^(\+)?(\d+(\.\d+)?)([KMGT])?$/;
 	    my ($ext, $newsize, $unit) = ($1, $2, $4);
 	    if ($unit) {
--
2.20.1




More information about the pve-devel mailing list