Thread (42 messages) 42 messages, 5 authors, 2021-08-02

Re: [PATCH 03/13] x86/HV: Add new hvcall guest address host visibility support

From: Dave Hansen <hidden>
Date: 2021-07-29 16:07:59
Also in: linux-arch, linux-hyperv, linux-iommu, linux-scsi, lkml, xen-devel

On 7/29/21 8:02 AM, Tianyu Lan wrote:
quoted
There is x86_hyper_type to identify hypervisor type and we may check
this variable after checking X86_FEATURE_HYPERVISOR.

static inline bool hv_is_isolation_supported(void)
{
    if (!cpu_feature_enabled(X86_FEATURE_HYPERVISOR))
        return 0;

        if (x86_hyper_type != X86_HYPER_MS_HYPERV)
                return 0;

    // out of line function call:
    return __hv_is_isolation_supported();
}   
Looks fine.  You just might want to use this existing helper:

static inline bool hypervisor_is_type(enum x86_hypervisor_type type)
{
        return x86_hyper_type == type;
}
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help