From: Wei Liu <wl@xen.org>
To: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: "Wei Liu" <liuwe@microsoft.com>, "Wei Liu" <wl@xen.org>,
"Paul Durrant" <paul@xen.org>,
"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 v2 6/8] x86/hyperv: provide percpu hypercall input page
Date: Fri, 3 Jan 2020 16:55:13 +0000 [thread overview]
Message-ID: <20200103165513.wlgihc4kfqducwtm@debian> (raw)
In-Reply-To: <ec797a21-8b06-6eb1-84a8-7e059c430e7a@citrix.com>
On Fri, Jan 03, 2020 at 04:30:49PM +0000, Andrew Cooper wrote:
> On 03/01/2020 16:08, Wei Liu wrote:
> > @@ -83,14 +84,39 @@ static void __init setup_hypercall_page(void)
> > wrmsrl(HV_X64_MSR_HYPERCALL, hypercall_msr.as_uint64);
> > }
> >
> > +static void setup_hypercall_pcpu_arg(void)
> > +{
> > + struct page_info *pg;
> > + void *mapping;
> > + unsigned int cpu = smp_processor_id();
> > +
> > + pg = alloc_domheap_page(NULL, 0);
> > + if ( !pg )
> > + panic("Failed to setup hypercall input page for %u\n", cpu);
> > +
> > + mapping = __map_domain_page_global(pg);
> > + if ( !mapping )
> > + panic("Failed to map hypercall input page for %u\n", cpu);
>
> Sorry I didn't spot this before, but an always-mapped domheap page is
> just alloc_xenheap_page() (give or take NUMA positioning above the 5T
> boundary, which isn't used here).
I had the (wrong) impression that using domheap was preferred.
I'm fine with switching to xenheap, of course.
Wei.
>
> ~Andrew
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next prev parent reply other threads:[~2020-01-03 16:55 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-03 16:08 [Xen-devel] [PATCH v2 0/8] More Hyper-V infrastructure Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 1/8] x86: include xen/lib.h in guest/pvh-boot.h Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 2/8] x86/hyperv: detect absolutely necessary MSRs Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 3/8] x86: rename guest/hypercall.h to guest/xen-hypercall.h Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 4/8] x86/hyperv: setup hypercall page Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 5/8] x86/hyperv: provide Hyper-V hypercall functions Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 6/8] x86/hyperv: provide percpu hypercall input page Wei Liu
2020-01-03 16:30 ` Andrew Cooper
2020-01-03 16:55 ` Wei Liu [this message]
2020-01-03 16:57 ` Andrew Cooper
2020-01-03 17:02 ` Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 7/8] x86/hyperv: retrieve vp_index from Hyper-V Wei Liu
2020-01-03 16:08 ` [Xen-devel] [PATCH v2 8/8] x86/hyperv: setup VP assist page Wei Liu
2020-01-05 16:41 ` 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=20200103165513.wlgihc4kfqducwtm@debian \
--to=wl@xen.org \
--cc=andrew.cooper3@citrix.com \
--cc=jbeulich@suse.com \
--cc=liuwe@microsoft.com \
--cc=mikelley@microsoft.com \
--cc=paul@xen.org \
--cc=roger.pau@citrix.com \
--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.