summaryrefslogtreecommitdiffstats
path: root/libfdisk/src/partition.c
diff options
context:
space:
mode:
authorKarel Zak2014-09-09 13:04:57 +0200
committerKarel Zak2014-10-07 14:55:31 +0200
commitc3bc74835259bb1d6443ea52f875ce3c179dff20 (patch)
tree2f8be35f22336210b7b09adc1272fd360fa03a07 /libfdisk/src/partition.c
parentsfdisk: implement command_fdisk() (diff)
downloadkernel-qcow2-util-linux-c3bc74835259bb1d6443ea52f875ce3c179dff20.tar.gz
kernel-qcow2-util-linux-c3bc74835259bb1d6443ea52f875ce3c179dff20.tar.xz
kernel-qcow2-util-linux-c3bc74835259bb1d6443ea52f875ce3c179dff20.zip
libfdisk: return partno when add new partition
* improve the way how sfdisk report results * the API change simplify applications Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libfdisk/src/partition.c')
-rw-r--r--libfdisk/src/partition.c34
1 files changed, 21 insertions, 13 deletions
diff --git a/libfdisk/src/partition.c b/libfdisk/src/partition.c
index c60e064fb..717eea711 100644
--- a/libfdisk/src/partition.c
+++ b/libfdisk/src/partition.c
@@ -73,9 +73,9 @@ void fdisk_unref_partition(struct fdisk_partition *pa)
pa->refcount--;
if (pa->refcount <= 0) {
- DBG(PART, ul_debugobj(pa, "free"));
fdisk_reset_partition(pa);
list_del(&pa->parts);
+ DBG(PART, ul_debugobj(pa, "free"));
free(pa);
}
}
@@ -548,7 +548,9 @@ int fdisk_partition_to_string(struct fdisk_partition *pa,
* @partno:
* @pa: pointer to partition struct
*
- * Fills in @pa with data about partition @n.
+ * Fills in @pa with data about partition @n. Note that partno may address
+ * unused partition and then this function does not fill anything to @pa.
+ * See fdisk_is_partition_used().
*
* Returns: 0 on success, otherwise, a corresponding error.
*/
@@ -601,7 +603,8 @@ int fdisk_is_partition_used(struct fdisk_context *cxt, size_t n)
/**
* fdisk_add_partition:
* @cxt: fdisk context
- * @pa: template for the partition
+ * @pa: template for the partition (or NULL)
+ * @partno: returns new partition number (optional)
*
* If @pa is not specified or any @pa item is missiong the libfdisk will ask by
* fdisk_ask_ API.
@@ -611,7 +614,8 @@ int fdisk_is_partition_used(struct fdisk_context *cxt, size_t n)
* Returns 0.
*/
int fdisk_add_partition(struct fdisk_context *cxt,
- struct fdisk_partition *pa)
+ struct fdisk_partition *pa,
+ size_t *partno)
{
int rc;
@@ -625,16 +629,20 @@ int fdisk_add_partition(struct fdisk_context *cxt,
if (fdisk_missing_geometry(cxt))
return -EINVAL;
- DBG(CXT, ul_debugobj(cxt, "adding new partition (start=%ju, end=%ju, size=%ju, "
+ if (pa)
+ DBG(CXT, ul_debugobj(cxt, "adding new partition %p (start=%ju, end=%ju, size=%ju, "
"defaults(start=%s, end=%s, partno=%s)",
- pa ? pa->start : 0,
- pa ? pa->end : 0,
- pa ? pa->size : 0,
- pa && pa->start_follow_default ? "yes" : "no",
- pa && pa->end_follow_default ? "yes" : "no",
- pa && pa->partno_follow_default ? "yes" : "no"));
-
- rc = cxt->label->op->add_part(cxt, pa);
+ pa,
+ pa->start,
+ pa->end,
+ pa->size,
+ pa->start_follow_default ? "yes" : "no",
+ pa->end_follow_default ? "yes" : "no",
+ pa->partno_follow_default ? "yes" : "no"));
+ else
+ DBG(CXT, ul_debugobj(cxt, "adding partition"));
+
+ rc = cxt->label->op->add_part(cxt, pa, partno);
DBG(CXT, ul_debugobj(cxt, "add partition done (rc=%d)", rc));
return rc;