[PATCH] Keep the end sector aligned when resizing partitions (#560647)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is esp. important with DASD's as these will only accept properly
aligned partitions.
---
 storage/devices.py |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/storage/devices.py b/storage/devices.py
index 9e95084..a0fe78c 100644
--- a/storage/devices.py
+++ b/storage/devices.py
@@ -1276,6 +1276,9 @@ class PartitionDevice(StorageDevice):
         newGeometry = parted.Geometry(device=currentDev,
                                       start=currentGeom.start,
                                       length=newLen)
+        # and align the end sector
+        newGeometry.end = self.disk.format.endAlignment.alignDown(newGeometry,
+                                                               newGeometry.end)
         constraint = parted.Constraint(exactGeom=newGeometry)
 
         return (constraint, newGeometry)
-- 
1.6.6

_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/anaconda-devel-list

[Index of Archives]     [Kickstart]     [Fedora Users]     [Fedora Legacy List]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [Yosemite Photos]     [KDE Users]     [Fedora Tools]
  Powered by Linux