]> err.no Git - util-linux/commitdiff
sfdisk: allow partitioning drives of over 2^31 sectors.
authorKunihiko IMAI <kimai@iodata.jp>
Mon, 20 Aug 2007 12:12:53 +0000 (06:12 -0600)
committerKarel Zak <kzak@redhat.com>
Tue, 4 Dec 2007 13:38:32 +0000 (14:38 +0100)
sfdisk would incorrectly complain that there was no room when partitioning
a drive over 2^31 sectors in size.

Signed-off-by: LaMont Jones <lamont@mmjgroup.com>
fdisk/sfdisk.c

index 99e165efaaccbee220b5452e9251ccaaf7f2431e..a3b66174f0fabcefc1f569ce1de470c97fa70b20 100644 (file)
@@ -1927,11 +1927,12 @@ compute_start_sect(struct part_desc *p, struct part_desc *ep) {
       delta = 0;
 
     if (delta < 0) {
+       unsigned long old_size = p->size;
        p->start -= delta;
        p->size += delta;
        if (is_extended(p->p.sys_type) && boxes == ONESECTOR)
          p->size = inc;
-       else if ((int)(p->size) <= 0) {
+       else if (old_size <= -delta) {
            warn(_("no room for partition descriptor\n"));
            return 0;
        }