diff options
author | Karel Zak | 2019-01-31 14:16:42 +0100 |
---|---|---|
committer | Karel Zak | 2019-01-31 14:16:42 +0100 |
commit | 167a2b520a38d20e0f5a8617d66cb7a27b0ae35a (patch) | |
tree | 1a3fa55afd49a0fa2523d135ce15f1561b6d6ef5 /libfdisk | |
parent | logger: (man) add info about rewrite and authors (diff) | |
download | kernel-qcow2-util-linux-167a2b520a38d20e0f5a8617d66cb7a27b0ae35a.tar.gz kernel-qcow2-util-linux-167a2b520a38d20e0f5a8617d66cb7a27b0ae35a.tar.xz kernel-qcow2-util-linux-167a2b520a38d20e0f5a8617d66cb7a27b0ae35a.zip |
sfdisk: fix logical partition resize when start specified
Addresses: https://github.com/karelzak/util-linux/issues/745
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libfdisk')
-rw-r--r-- | libfdisk/src/partition.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/libfdisk/src/partition.c b/libfdisk/src/partition.c index ebcf6bf5c..307fe1b17 100644 --- a/libfdisk/src/partition.c +++ b/libfdisk/src/partition.c @@ -1019,7 +1019,9 @@ int fdisk_get_partition(struct fdisk_context *cxt, size_t partno, } static struct fdisk_partition *resize_get_by_offset( - struct fdisk_table *tb, fdisk_sector_t off) + struct fdisk_table *tb, + struct fdisk_partition *cur, + fdisk_sector_t off) { struct fdisk_partition *pa = NULL; struct fdisk_iter itr; @@ -1029,6 +1031,9 @@ static struct fdisk_partition *resize_get_by_offset( while (fdisk_table_next_partition(tb, &itr, &pa) == 0) { if (!fdisk_partition_has_start(pa) || !fdisk_partition_has_size(pa)) continue; + if (fdisk_partition_is_nested(cur) && + pa->parent_partno != cur->parent_partno) + continue; if (off >= pa->start && off < pa->start + pa->size) return pa; } @@ -1183,15 +1188,18 @@ static int recount_resize( /* 2) verify that start is within the current partition or any freespace area */ if (!FDISK_IS_UNDEF(start)) { - struct fdisk_partition *area = resize_get_by_offset(tb, start); + struct fdisk_partition *area = resize_get_by_offset(tb, cur, start); + if (area == cur) DBG(PART, ul_debugobj(tpl, "resize: start points to the current partition")); else if (area && fdisk_partition_is_freespace(area)) DBG(PART, ul_debugobj(tpl, "resize: start points to freespace")); else if (!area && start >= cxt->first_lba && start < cxt->first_lba + (cxt->grain / cxt->sector_size)) DBG(PART, ul_debugobj(tpl, "resize: start points before first partition")); - else + else { + DBG(PART, ul_debugobj(tpl, "resize: start verification failed")); goto erange; + } } else { /* no change, start points to the current partition */ DBG(PART, ul_debugobj(tpl, "resize: start unchanged")); |