diff options
| author | Karel Zak <kzak@redhat.com> | 2018-10-03 14:39:57 +0200 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2018-10-03 14:39:57 +0200 |
| commit | ef2ce68b1f65f22f86272dc60902f9202380acd9 (patch) | |
| tree | 0d3cbdc684d72f6eaea90a4cfdb2f3a6b7b35c6a /misc-utils/lsblk.c | |
| parent | f1a7a86d1b29476ab809a55f49bddbe3dcf280db (diff) | |
| download | util-linux-ef2ce68b1f65f22f86272dc60902f9202380acd9.tar.gz | |
lsblk: always use "part" as TYPE for partitions
The current code uses "part" or "disk" only if nothing else is
possible to recognize. It means for example partitions on loops (or
RAIDs, etc) are marked as "loop" rather than "part".
Addresses: https://github.com/karelzak/util-linux/issues/700
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'misc-utils/lsblk.c')
| -rw-r--r-- | misc-utils/lsblk.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/misc-utils/lsblk.c b/misc-utils/lsblk.c index c15e522305..d63b65a3ad 100644 --- a/misc-utils/lsblk.c +++ b/misc-utils/lsblk.c @@ -413,6 +413,9 @@ static char *get_type(struct blkdev_cxt *cxt) { char *res = NULL, *p; + if (cxt->partition) + return xstrdup("part"); + if (is_dm(cxt->name)) { char *dm_uuid = NULL; @@ -453,7 +456,7 @@ static char *get_type(struct blkdev_cxt *cxt) if (ul_path_read_s32(cxt->sysfs, &x, "device/type") == 0) type = blkdev_scsi_type_to_name(x); if (!type) - type = cxt->partition ? "part" : "disk"; + type = "disk"; res = xstrdup(type); } |
