bug-parted
[Top][All Lists]
Advanced

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

[PATCH 1/4] Fix snap radius so that it is using half (#665496)


From: Brian C. Lane
Subject: [PATCH 1/4] Fix snap radius so that it is using half (#665496)
Date: Tue, 21 Jun 2011 10:44:15 -0700

The snap radius didn't match the documentation, it has been using +/-
unit size instead +/- 0.5 * unit (eg. 500KB for a MB unit). This caused
problems when specifying 1MB, 1GB, etc. as a partition start or end
resulting in partitions being created that were nowhere near the
specified size.

* libparted/unit.c (ped_unit_parse_custom): divide radius by 2
---
 libparted/unit.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libparted/unit.c b/libparted/unit.c
index dc4205b..1dafc90 100644
--- a/libparted/unit.c
+++ b/libparted/unit.c
@@ -533,7 +533,7 @@ ped_unit_parse_custom (const char* str, const PedDevice* 
dev, PedUnit unit,
        }
 
        unit_size = ped_unit_get_size (dev, unit);
-       radius = ped_div_round_up (unit_size, dev->sector_size) - 1;
+       radius = (ped_div_round_up (unit_size, dev->sector_size)  / 2) - 1;
        if (radius < 0)
                radius = 0;
        /* If the user specifies units in a power of 2, e.g., 4MiB, as in
-- 
1.7.4.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]