forked from pool/parted
- libparted: Fix partition device naming for all devices (bsc#1078820, bsc#1081547) - libparted: Canonicalize /dev/md/ paths (bsc#1078820) OBS-URL: https://build.opensuse.org/request/show/578406 OBS-URL: https://build.opensuse.org/package/show/Base:System/parted?expand=0&rev=139
66 lines
2.9 KiB
Diff
66 lines
2.9 KiB
Diff
From: Petr Uzel <petr.uzel@suse.cz>
|
|
Subject: libparted: Change partition naming for SUSE needs
|
|
References: bsc#1056508
|
|
Patch-mainline: no, custom SUSE patch
|
|
|
|
Device mapper partitions always use the suffix "-part%d" for
|
|
partition names. Other devices with a trailing number in their
|
|
name use the "p%d" suffix. All other devices use the "%d" suffix.
|
|
|
|
YaST depends on this.
|
|
|
|
[mwilck: Fixed dm part name in _dm_add_partition(), bsc#1056508]
|
|
[sparschauer: Fixed dm part name in _dm_resize_partition(), bsc#1056508]
|
|
[sparschauer: Wrote the patch description]
|
|
[sparschauer: Dropped "_part" suffix, bsc#1078820, bsc#1081547]
|
|
Signed-off-by: Sebastian Parschauer <sparschauer@suse.de>
|
|
---
|
|
libparted/arch/linux.c | 20 +++++++++++++-------
|
|
1 file changed, 13 insertions(+), 7 deletions(-)
|
|
|
|
diff --git a/libparted/arch/linux.c b/libparted/arch/linux.c
|
|
index 0f18904..cad5159 100644
|
|
--- a/libparted/arch/linux.c
|
|
+++ b/libparted/arch/linux.c
|
|
@@ -2342,11 +2342,17 @@ _device_get_part_path (PedDevice const *dev, int num)
|
|
result = zasprintf ("%.*s/part%d",
|
|
(int) (path_len - 5), devpath, num);
|
|
} else {
|
|
- char const *p = (dev->type == PED_DEVICE_DAC960
|
|
- || dev->type == PED_DEVICE_CPQARRAY
|
|
- || dev->type == PED_DEVICE_ATARAID
|
|
- || isdigit (devpath[path_len - 1])
|
|
- ? "p" : "");
|
|
+ const char *p;
|
|
+ if (dev->type == PED_DEVICE_ATARAID ||
|
|
+ dev->type == PED_DEVICE_CPQARRAY ||
|
|
+ dev->type == PED_DEVICE_DAC960 ||
|
|
+ dev->type == PED_DEVICE_SDMMC)
|
|
+ p = "p";
|
|
+ else if (dev->type == PED_DEVICE_DM)
|
|
+ p = "-part";
|
|
+ else
|
|
+ p = (isdigit (devpath[path_len - 1])
|
|
+ ? "p" : "");
|
|
result = zasprintf ("%s%s%d", devpath, p, num);
|
|
}
|
|
if (dev->type == PED_DEVICE_DM)
|
|
@@ -2797,7 +2803,7 @@ _dm_add_partition (PedDisk* disk, const PedPartition* part)
|
|
size_t name_len = strlen (dev_name);
|
|
vol_name = zasprintf ("%s%s%d",
|
|
dev_name,
|
|
- isdigit (dev_name[name_len - 1]) ? "p" : "",
|
|
+ "-part",
|
|
part->num);
|
|
if (vol_name == NULL)
|
|
goto err;
|
|
@@ -2870,7 +2876,7 @@ _dm_resize_partition (PedDisk* disk, const PedPartition* part)
|
|
size_t name_len = strlen (dev_name);
|
|
vol_name = zasprintf ("%s%s%d",
|
|
dev_name,
|
|
- isdigit (dev_name[name_len - 1]) ? "p" : "",
|
|
+ "-part",
|
|
part->num);
|
|
if (vol_name == NULL)
|
|
goto err;
|