From: Ian Campbell <ian.campbell@citrix.com>
To: Juergen Gross <jgross@suse.com>,
xen-devel@lists.xen.org, ian.jackson@eu.citrix.com,
stefano.stabellini@eu.citrix.com, wei.liu2@citrix.com
Subject: Re: [PATCH v2 4/5] libxc: split p2m allocation in domain builder from other magic pages
Date: Fri, 2 Oct 2015 10:29:35 +0100 [thread overview]
Message-ID: <1443778175.11707.64.camel@citrix.com> (raw)
In-Reply-To: <1443764987-23639-5-git-send-email-jgross@suse.com>
On Fri, 2015-10-02 at 07:49 +0200, Juergen Gross wrote:
> Carve out the p2m list allocation from the .alloc_magic_pages hook of
> the domain builder in order to prepare allocating the p2m list outside
> of the initial kernel mapping. This will be needed to support loading
> domains with huge memory (>512 GB).
Looks good, thanks.
> Signed-off-by: Juergen Gross <jgross@suse.com>
> Acked-by: Ian Campbell <ian.campbell@citrix.com>
> ---
> tools/libxc/include/xc_dom.h | 1 +
> tools/libxc/xc_dom_core.c | 3 +++
> tools/libxc/xc_dom_x86.c | 11 ++++++++++-
> 3 files changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/tools/libxc/include/xc_dom.h b/tools/libxc/include/xc_dom.h
> index 5eeff15..9117269 100644
> --- a/tools/libxc/include/xc_dom.h
> +++ b/tools/libxc/include/xc_dom.h
> @@ -197,6 +197,7 @@ void xc_dom_register_loader(struct xc_dom_loader
> *loader);
> struct xc_dom_arch {
> /* pagetable setup */
> int (*alloc_magic_pages) (struct xc_dom_image * dom);
> + int (*alloc_p2m_list) (struct xc_dom_image * dom);
> int (*count_pgtables) (struct xc_dom_image * dom);
> int (*setup_pgtables) (struct xc_dom_image * dom);
>
> diff --git a/tools/libxc/xc_dom_core.c b/tools/libxc/xc_dom_core.c
> index 85b531a..bd970c5 100644
> --- a/tools/libxc/xc_dom_core.c
> +++ b/tools/libxc/xc_dom_core.c
> @@ -1047,6 +1047,9 @@ int xc_dom_build_image(struct xc_dom_image *dom)
> }
>
> /* allocate other pages */
> + if ( dom->arch_hooks->alloc_p2m_list &&
> + dom->arch_hooks->alloc_p2m_list(dom) != 0 )
> + goto err;
> if ( dom->arch_hooks->alloc_magic_pages(dom) != 0 )
> goto err;
> if ( dom->arch_hooks->count_pgtables )
> diff --git a/tools/libxc/xc_dom_x86.c b/tools/libxc/xc_dom_x86.c
> index e2f3792..972f081 100644
> --- a/tools/libxc/xc_dom_x86.c
> +++ b/tools/libxc/xc_dom_x86.c
> @@ -439,7 +439,7 @@ pfn_error:
>
> /* ---------------------------------------------------------------------
> --- */
>
> -static int alloc_magic_pages(struct xc_dom_image *dom)
> +static int alloc_p2m_list(struct xc_dom_image *dom)
> {
> size_t p2m_alloc_size = dom->p2m_size * dom->arch_hooks->sizeof_pfn;
>
> @@ -451,6 +451,13 @@ static int alloc_magic_pages(struct xc_dom_image
> *dom)
> if ( dom->p2m_guest == NULL )
> return -1;
>
> + return 0;
> +}
> +
> +/* ---------------------------------------------------------------------
> --- */
> +
> +static int alloc_magic_pages(struct xc_dom_image *dom)
> +{
> /* allocate special pages */
> dom->start_info_pfn = xc_dom_alloc_page(dom, "start info");
> dom->xenstore_pfn = xc_dom_alloc_page(dom, "xenstore");
> @@ -674,6 +681,7 @@ static struct xc_dom_arch xc_dom_32_pae = {
> .page_shift = PAGE_SHIFT_X86,
> .sizeof_pfn = 4,
> .alloc_magic_pages = alloc_magic_pages,
> + .alloc_p2m_list = alloc_p2m_list,
> .count_pgtables = count_pgtables_x86_32_pae,
> .setup_pgtables = setup_pgtables_x86_32_pae,
> .start_info = start_info_x86_32,
> @@ -687,6 +695,7 @@ static struct xc_dom_arch xc_dom_64 = {
> .page_shift = PAGE_SHIFT_X86,
> .sizeof_pfn = 8,
> .alloc_magic_pages = alloc_magic_pages,
> + .alloc_p2m_list = alloc_p2m_list,
> .count_pgtables = count_pgtables_x86_64,
> .setup_pgtables = setup_pgtables_x86_64,
> .start_info = start_info_x86_64,
next prev parent reply other threads:[~2015-10-02 9:29 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-02 5:49 [PATCH v2 0/5] libxc: support building large pv-domains Juergen Gross
2015-10-02 5:49 ` [PATCH v2 1/5] libxc: remove allocate member from struct xc_dom_image Juergen Gross
2015-10-02 13:01 ` Ian Campbell
2015-10-02 14:25 ` Juergen Gross
2015-10-02 14:47 ` Ian Campbell
2015-10-02 15:00 ` Juergen Gross
2015-10-02 5:49 ` [PATCH v2 2/5] xen: add generic flag to elf_dom_parms indicating support of unmapped initrd Juergen Gross
2015-10-02 9:37 ` Andrew Cooper
2015-10-02 9:41 ` Jan Beulich
2015-10-02 9:44 ` Juergen Gross
2015-10-02 9:53 ` Andrew Cooper
2015-10-02 10:01 ` Juergen Gross
2015-10-02 10:22 ` Ian Campbell
2015-10-02 5:49 ` [PATCH v2 3/5] libxc: create unmapped initrd in domain builder if supported Juergen Gross
2015-10-02 12:59 ` Ian Campbell
2015-10-02 14:46 ` Juergen Gross
2015-10-02 14:56 ` Ian Campbell
2015-10-02 15:13 ` Juergen Gross
2015-10-02 15:21 ` Ian Campbell
2015-10-02 16:28 ` Juergen Gross
2015-10-02 5:49 ` [PATCH v2 4/5] libxc: split p2m allocation in domain builder from other magic pages Juergen Gross
2015-10-02 9:29 ` Ian Campbell [this message]
2015-10-02 5:49 ` [PATCH v2 5/5] libxc: create p2m list outside of kernel mapping if supported Juergen Gross
2015-10-02 13:16 ` Ian Campbell
2015-10-02 14:37 ` Juergen Gross
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=1443778175.11707.64.camel@citrix.com \
--to=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jgross@suse.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).