From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH] eal/x86: get hypervisor name Date: Fri, 1 Dec 2017 13:42:35 +0530 Message-ID: <20171201081234.GA24936@jerin> References: <20171130214720.30098-1-thomas@monjalon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, chaozhu@linux.vnet.ibm.com To: Thomas Monjalon Return-path: Received: from NAM03-BY2-obe.outbound.protection.outlook.com (mail-by2nam03on0077.outbound.protection.outlook.com [104.47.42.77]) by dpdk.org (Postfix) with ESMTP id 375482A62 for ; Fri, 1 Dec 2017 09:12:54 +0100 (CET) Content-Disposition: inline In-Reply-To: <20171130214720.30098-1-thomas@monjalon.net> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > Date: Thu, 30 Nov 2017 22:47:20 +0100 > From: Thomas Monjalon > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH] eal/x86: get hypervisor name > X-Mailer: git-send-email 2.15.0 > > The CPUID instruction is catched by hypervisor which can return > a flag indicating one is running, and its name. > > Suggested-by: Stephen Hemminger > Signed-off-by: Thomas Monjalon > --- > warning: to be tested > --- > lib/librte_eal/common/arch/arm/rte_cpuflags.c | 6 +++++ > lib/librte_eal/common/arch/ppc_64/rte_cpuflags.c | 6 +++++ > lib/librte_eal/common/arch/x86/rte_cpuflags.c | 30 ++++++++++++++++++++++ > .../common/include/arch/x86/rte_cpuflags.h | 1 + > .../common/include/generic/rte_cpuflags.h | 14 ++++++++++ > lib/librte_eal/rte_eal_version.map | 9 ++++++- > 6 files changed, 65 insertions(+), 1 deletion(-) > RTE_CPUFLAG_FPU, /**< FPU */ > diff --git a/lib/librte_eal/common/include/generic/rte_cpuflags.h b/lib/librte_eal/common/include/generic/rte_cpuflags.h > index c1c5551fc..3832fb851 100644 > --- a/lib/librte_eal/common/include/generic/rte_cpuflags.h > +++ b/lib/librte_eal/common/include/generic/rte_cpuflags.h > @@ -93,4 +93,18 @@ rte_cpu_check_supported(void); > int > rte_cpu_is_supported(void); > > +enum rte_hypervisor { > + RTE_HYPERVISOR_NONE, > + RTE_HYPERVISOR_KVM, > + RTE_HYPERVISOR_HYPERV, > + RTE_HYPERVISOR_VMWARE, > + RTE_HYPERVISOR_UNKNOWN > +}; > + > +/** > + * Get the type of hypervisor it is running on. > + */ > +enum rte_hypervisor > +rte_hypervisor_get_name(void); Cc: chaozhu@linux.vnet.ibm.com IMO, cpu_flag area is the not the correct abstraction to get the hypervisor name. It is x86 specific. I think, correct usage will be to call hypervisor specific APIs like KVM_GET_API_VERSION https://lwn.net/Articles/658511/ BTW, What is the need for an DPDK application to know the hypervisor name? What action an DPDK application should take based on hypervisor name? if is not interest of data plane application why it needs to be abstracted in DPDK?