]> git.proxmox.com Git - pve-storage.git/commitdiff
import: don't check for 1K aligned size
authorStefan Reiter <s.reiter@proxmox.com>
Mon, 4 Oct 2021 15:29:19 +0000 (17:29 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 5 Oct 2021 04:19:39 +0000 (06:19 +0200)
TPM state disks on directory storages may have completely unaligned
sizes, this check doesn't make sense for them.

This appears to just be a (weak) safeguard and not serve an actual
functional purpose, so simply get rid of it to allow migration of TPM
state.

Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
PVE/Storage/Plugin.pm

index 417d1fdcfac30ba7a180e06c3ae0d024a4dc7b93..fab231642c366dabf51a8d90723fc0c865c69514 100644 (file)
@@ -1353,7 +1353,6 @@ sub read_common_header($) {
     sysread($fh, my $size, 8);
     $size = unpack('Q<', $size);
     die "import: no size found in export header, aborting.\n" if !defined($size);
-    die "import: got a bad size (not a multiple of 1K), aborting.\n" if ($size&1023);
     # Size is in bytes!
     return $size;
 }