summaryrefslogtreecommitdiffstats
path: root/libfdisk/src/sun.c
diff options
context:
space:
mode:
authorKarel Zak2013-11-28 12:17:45 +0100
committerKarel Zak2014-03-11 11:35:12 +0100
commit27d4d07292fff6f89f12ab8d186d703372b83a40 (patch)
tree743195047b7ad39ec56838ed4d019062a02cd92e /libfdisk/src/sun.c
parentlibfdisk: (sgi) remove get_partition_type() (diff)
downloadkernel-qcow2-util-linux-27d4d07292fff6f89f12ab8d186d703372b83a40.tar.gz
kernel-qcow2-util-linux-27d4d07292fff6f89f12ab8d186d703372b83a40.tar.xz
kernel-qcow2-util-linux-27d4d07292fff6f89f12ab8d186d703372b83a40.zip
libfdisk: (sun) remove get_partition_type()
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libfdisk/src/sun.c')
-rw-r--r--libfdisk/src/sun.c38
1 files changed, 16 insertions, 22 deletions
diff --git a/libfdisk/src/sun.c b/libfdisk/src/sun.c
index a1c4a5bbc..b15fd5873 100644
--- a/libfdisk/src/sun.c
+++ b/libfdisk/src/sun.c
@@ -692,6 +692,21 @@ static int sun_list_disklabel(struct fdisk_context *cxt)
return fdisk_list_partitions(cxt, NULL, 0);
}
+static struct fdisk_parttype *sun_get_parttype(
+ struct fdisk_context *cxt,
+ size_t n)
+{
+ struct sun_disklabel *sunlabel = self_disklabel(cxt);
+ struct fdisk_parttype *t;
+
+ if (n >= cxt->label->nparts_max)
+ return NULL;
+
+ t = fdisk_get_parttype_from_code(cxt, be16_to_cpu(sunlabel->vtoc.infos[n].id));
+ return t ? : fdisk_new_unknown_parttype(be16_to_cpu(sunlabel->vtoc.infos[n].id), NULL);
+}
+
+
static int sun_get_partition(struct fdisk_context *cxt, size_t n,
struct fdisk_partition *pa)
{
@@ -719,7 +734,7 @@ static int sun_get_partition(struct fdisk_context *cxt, size_t n,
* cxt->geom.heads * cxt->geom.sectors;
len = be32_to_cpu(part->num_sectors);
- pa->type = fdisk_get_partition_type(cxt, n);
+ pa->type = sun_get_parttype(cxt, n);
if (flags & SUN_FLAG_UNMNT || flags & SUN_FLAG_RONLY) {
if (asprintf(&pa->attrs, "%c%c",
@@ -846,26 +861,6 @@ static int sun_write_disklabel(struct fdisk_context *cxt)
return 0;
}
-static struct fdisk_parttype *sun_get_parttype(
- struct fdisk_context *cxt,
- size_t n)
-{
- struct sun_disklabel *sunlabel = self_disklabel(cxt);
- struct fdisk_parttype *t;
-
- assert(cxt);
- assert(cxt->label);
- assert(fdisk_is_disklabel(cxt, SUN));
-
- if (n >= cxt->label->nparts_max)
- return NULL;
-
- t = fdisk_get_parttype_from_code(cxt, be16_to_cpu(sunlabel->vtoc.infos[n].id));
- if (!t)
- t = fdisk_new_unknown_parttype(be16_to_cpu(sunlabel->vtoc.infos[n].id), NULL);
- return t;
-}
-
static int sun_set_parttype(
struct fdisk_context *cxt,
size_t i,
@@ -969,7 +964,6 @@ const struct fdisk_label_operations sun_operations =
.part_add = sun_add_partition,
.part_delete = sun_delete_partition,
- .part_get_type = sun_get_parttype,
.part_set_type = sun_set_parttype,
.part_is_used = sun_partition_is_used,