All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Durrant <pdurrant@gmail.com>
To: Wei Liu <wl@xen.org>
Cc: "Wei Liu" <liuwe@microsoft.com>,
	"Andrew Cooper" <andrew.cooper3@citrix.com>,
	"Michael Kelley" <mikelley@microsoft.com>,
	"Jan Beulich" <jbeulich@suse.com>,
	"Xen Development List" <xen-devel@lists.xenproject.org>,
	"Roger Pau Monné" <roger.pau@citrix.com>
Subject: Re: [Xen-devel] [PATCH 2/8] x86/hyperv: detect absolutely necessary MSRs
Date: Fri, 3 Jan 2020 11:01:33 +0000	[thread overview]
Message-ID: <CACCGGhDpQ4Df9KcgeTY30XPri9cP+Nv=NZsm7oZA4J_Z7ZS_Jg@mail.gmail.com> (raw)
In-Reply-To: <20191229183341.14877-3-liuwe@microsoft.com>

On Sun, 29 Dec 2019 at 18:34, Wei Liu <wl@xen.org> wrote:
>
> If they are not available, disable Hyper-V related features.
>
> Signed-off-by: Wei Liu <liuwe@microsoft.com>
> ---
>  xen/arch/x86/guest/hyperv/hyperv.c | 11 +++++++++++
>  1 file changed, 11 insertions(+)
>
> diff --git a/xen/arch/x86/guest/hyperv/hyperv.c b/xen/arch/x86/guest/hyperv/hyperv.c
> index 2e70b4aa82..c6a26c5453 100644
> --- a/xen/arch/x86/guest/hyperv/hyperv.c
> +++ b/xen/arch/x86/guest/hyperv/hyperv.c
> @@ -32,6 +32,8 @@ static const struct hypervisor_ops ops = {
>  const struct hypervisor_ops *__init hyperv_probe(void)
>  {
>      uint32_t eax, ebx, ecx, edx;
> +    uint64_t required_msrs = HV_X64_MSR_HYPERCALL_AVAILABLE |
> +        HV_X64_MSR_VP_INDEX_AVAILABLE;
>
>      cpuid(0x40000000, &eax, &ebx, &ecx, &edx);
>      if ( !((ebx == 0x7263694d) &&  /* "Micr" */
> @@ -57,6 +59,15 @@ const struct hypervisor_ops *__init hyperv_probe(void)
>      ms_hyperv.max_vp_index = eax;
>      ms_hyperv.max_lp_index = ebx;
>
> +    if ( (ms_hyperv.features & required_msrs) != required_msrs )
> +    {
> +        /* Oops, required MSRs are not available. Treat this as
> +         * "Hyper-V is not available".
> +         */

That block comment violates default coding style.

  Paul

> +        memset(&ms_hyperv, 0, sizeof(ms_hyperv));
> +        return NULL;
> +    }
> +
>      return &ops;
>  }
>
> --
> 2.20.1
>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

  reply	other threads:[~2020-01-03 11:02 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-29 18:33 [Xen-devel] [PATCH 0/8] More Hyper-V infrastructure Wei Liu
2019-12-29 18:33 ` [Xen-devel] [PATCH 1/8] x86: include xen/lib.h in guest/pvh-boot.h Wei Liu
2020-01-03 16:09   ` Jan Beulich
2019-12-29 18:33 ` [Xen-devel] [PATCH 2/8] x86/hyperv: detect absolutely necessary MSRs Wei Liu
2020-01-03 11:01   ` Paul Durrant [this message]
2020-01-03 16:14     ` Jan Beulich
2019-12-29 18:33 ` [Xen-devel] [PATCH 3/8] x86: rename guest/hypercall.h to guest/xen-hypercall.h Wei Liu
2020-01-03 11:02   ` Paul Durrant
2020-01-03 16:16   ` Jan Beulich
2020-01-03 16:18     ` Wei Liu
2019-12-29 18:33 ` [Xen-devel] [PATCH 4/8] x86/hyperv: setup hypercall page Wei Liu
2019-12-29 19:54   ` Michael Kelley
2019-12-29 22:58     ` Wei Liu
2019-12-30 12:55   ` Andrew Cooper
2019-12-30 13:33     ` Wei Liu
2019-12-30 13:42       ` Andrew Cooper
2019-12-29 18:33 ` [Xen-devel] [PATCH 5/8] x86/hyperv: provide Hyper-V hypercall functions Wei Liu
2019-12-30 13:04   ` Andrew Cooper
2019-12-30 13:36     ` Wei Liu
2019-12-29 18:33 ` [Xen-devel] [PATCH 6/8] x86/hyperv: provide percpu hypercall input page Wei Liu
2020-01-03 11:08   ` Paul Durrant
2019-12-29 18:33 ` [Xen-devel] [PATCH 7/8] x86/hyperv: retrieve vp_index from Hyper-V Wei Liu
2020-01-03 11:11   ` Paul Durrant
2020-01-03 14:20     ` Wei Liu
2019-12-29 18:33 ` [Xen-devel] [PATCH 8/8] x86/hyperv: setup VP assist page Wei Liu
2019-12-29 19:59   ` Michael Kelley
2019-12-29 22:58     ` Wei Liu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CACCGGhDpQ4Df9KcgeTY30XPri9cP+Nv=NZsm7oZA4J_Z7ZS_Jg@mail.gmail.com' \
    --to=pdurrant@gmail.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=jbeulich@suse.com \
    --cc=liuwe@microsoft.com \
    --cc=mikelley@microsoft.com \
    --cc=roger.pau@citrix.com \
    --cc=wl@xen.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.