aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Romer <benjamin.romer@unisys.com>2015-02-10 16:04:09 -0500
committerKarel Zak <kzak@redhat.com>2015-02-11 11:46:19 +0100
commit4597b69249be90c248de0f4a3270901c4762f4a9 (patch)
treeeabc82dd6f26aa1a0d6e995b26447327c4ef6d64
parent559a5b6cf2efe7dee8172249312c0a7747842491 (diff)
downloadutil-linux-playground-4597b69249be90c248de0f4a3270901c4762f4a9.tar.gz
lscpu: add s-Par support
Adds support for the s-Par firmware's hypervisor leaf. Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
-rw-r--r--sys-utils/lscpu.c3
-rw-r--r--sys-utils/lscpu.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c
index b6f1d6e0dd..fd94d1a83f 100644
--- a/sys-utils/lscpu.c
+++ b/sys-utils/lscpu.c
@@ -107,6 +107,7 @@ const char *hv_vendors[] = {
[HYPER_VBOX] = "Oracle",
[HYPER_OS400] = "OS/400",
[HYPER_PHYP] = "pHyp",
+ [HYPER_SPAR] = "Unisys s-Par"
};
const int hv_vendor_pci[] = {
@@ -585,6 +586,8 @@ read_hypervisor_cpuid(struct lscpu_desc *desc)
desc->hyper = HYPER_MSHV;
else if (!strncmp("VMwareVMware", hyper_vendor_id, 12))
desc->hyper = HYPER_VMWARE;
+ else if (!strncmp("UnisysSpar64", hyper_vendor_id, 12))
+ desc->hyper = HYPER_SPAR;
}
#else /* ! (__x86_64__ || __i386__) */
diff --git a/sys-utils/lscpu.h b/sys-utils/lscpu.h
index e340291941..b9aa25562e 100644
--- a/sys-utils/lscpu.h
+++ b/sys-utils/lscpu.h
@@ -17,6 +17,7 @@ enum {
HYPER_VBOX,
HYPER_OS400,
HYPER_PHYP,
+ HYPER_SPAR,
};
extern int read_hypervisor_dmi(void);