30 lines
921 B
Diff
30 lines
921 B
Diff
From 6d1bc8ae0cee4ee837d5dc8ad7f1a525208f3eec Mon Sep 17 00:00:00 2001
|
|
From: Vojtech Trefny <vtrefny@redhat.com>
|
|
Date: Thu, 5 May 2022 16:35:37 +0200
|
|
Subject: [PATCH] Use LVM PV format current_size in
|
|
LVMVolumeGroupDevice._remove
|
|
|
|
The member format size is 0 when target size is not set.
|
|
|
|
Related: rhbz#2081276
|
|
---
|
|
blivet/devices/lvm.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/blivet/devices/lvm.py b/blivet/devices/lvm.py
|
|
index 7c78c813..4700d141 100644
|
|
--- a/blivet/devices/lvm.py
|
|
+++ b/blivet/devices/lvm.py
|
|
@@ -293,7 +293,7 @@ class LVMVolumeGroupDevice(ContainerDevice):
|
|
|
|
# do not run pvmove on empty PVs
|
|
member.format.update_size_info()
|
|
- if member.format.free < member.format.size:
|
|
+ if member.format.free < member.format.current_size:
|
|
blockdev.lvm.pvmove(member.path)
|
|
blockdev.lvm.vgreduce(self.name, member.path)
|
|
|
|
--
|
|
2.35.3
|
|
|