From 34a8fa8868da1817d8e94adbecf0e2f84eb8cfa5 Mon Sep 17 00:00:00 2001 From: Sayan Paul Date: Mon, 27 Nov 2023 16:03:56 +0530 Subject: [PATCH] wip: increasing from 1 mb to 16 mb workes. Signed-off-by: Sayan Paul --- pkg/disk/lvm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/disk/lvm.go b/pkg/disk/lvm.go index 13cb561fff..5dd69f4046 100644 --- a/pkg/disk/lvm.go +++ b/pkg/disk/lvm.go @@ -138,7 +138,7 @@ func (vg *LVMVolumeGroup) MetadataSize() uint64 { // of the metadata and its location and thus the start of the physical // extent. For now we assume the default which results in a start of // the physical extent 1 MiB - return 1024 * 1024 + return 16 * 1024 * 1024 } type LVMLogicalVolume struct {