From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Elena Ufimtseva <ufimtseva@gmail.com>
Cc: keir@xen.org, Ian.Campbell@citrix.com,
stefano.stabellini@eu.citrix.com, george.dunlap@eu.citrix.com,
msw@linux.com, dario.faggioli@citrix.com, lccycc123@gmail.com,
ian.jackson@eu.citrix.com, xen-devel@lists.xen.org,
JBeulich@suse.com
Subject: Re: [PATCH RESEND v7 7/9] libxc: allocate domain memory for vnuma enabled
Date: Thu, 21 Aug 2014 22:10:42 -0400 [thread overview]
Message-ID: <20140822021042.GD20329@laptop.dumpdata.com> (raw)
In-Reply-To: <1408597829-21135-5-git-send-email-ufimtseva@gmail.com>
On Thu, Aug 21, 2014 at 01:10:27AM -0400, Elena Ufimtseva wrote:
> vNUMA-aware domain memory allocation based on provided
> vnode to pnode map. If this map is not defined, use
> default allocation. Default allocation will not specify
> any physical node when allocating memory.
> Domain creation will fail if at least one node was not defined.
>
> Signed-off-by: Elena Ufimtseva <ufimtseva@gmail.com>
> ---
> tools/libxc/xc_dom.h | 13 ++++++++
> tools/libxc/xc_dom_x86.c | 76 ++++++++++++++++++++++++++++++++++++++--------
> 2 files changed, 77 insertions(+), 12 deletions(-)
>
> diff --git a/tools/libxc/xc_dom.h b/tools/libxc/xc_dom.h
> index 6ae6a9f..61c2a06 100644
> --- a/tools/libxc/xc_dom.h
> +++ b/tools/libxc/xc_dom.h
> @@ -164,6 +164,16 @@ struct xc_dom_image {
>
> /* kernel loader */
> struct xc_dom_arch *arch_hooks;
> +
> + /*
> + * vNUMA topology and memory allocation structure.
> + * Defines the way to allocate memory on per NUMA
> + * physical defined by vnode_to_pnode.
> + */
> + uint32_t vnodes;
> + uint64_t *numa_memszs;
> + unsigned int *vnode_to_pnode;
> +
> /* allocate up to virt_alloc_end */
> int (*allocate) (struct xc_dom_image * dom, xen_vaddr_t up_to);
> };
> @@ -385,6 +395,9 @@ static inline xen_pfn_t xc_dom_p2m_guest(struct xc_dom_image *dom,
> int arch_setup_meminit(struct xc_dom_image *dom);
> int arch_setup_bootearly(struct xc_dom_image *dom);
> int arch_setup_bootlate(struct xc_dom_image *dom);
> +int arch_boot_alloc(struct xc_dom_image *dom);
> +
> +#define LIBXC_VNUMA_NO_NODE ~((unsigned int)0)
>
> /*
> * Local variables:
> diff --git a/tools/libxc/xc_dom_x86.c b/tools/libxc/xc_dom_x86.c
> index bf06fe4..3d29c38 100644
> --- a/tools/libxc/xc_dom_x86.c
> +++ b/tools/libxc/xc_dom_x86.c
> @@ -759,7 +759,7 @@ static int x86_shadow(xc_interface *xch, domid_t domid)
> int arch_setup_meminit(struct xc_dom_image *dom)
> {
> int rc;
> - xen_pfn_t pfn, allocsz, i, j, mfn;
> + xen_pfn_t pfn, i, j, mfn;
>
> rc = x86_compat(dom->xch, dom->guest_domid, dom->guest_type);
> if ( rc )
> @@ -811,25 +811,77 @@ int arch_setup_meminit(struct xc_dom_image *dom)
> /* setup initial p2m */
> for ( pfn = 0; pfn < dom->total_pages; pfn++ )
> dom->p2m_host[pfn] = pfn;
> +
> + /*
> + * Any PV domain should have at least one vNUMA node.
> + * If no config was defined, one default vNUMA node
> + * will be set. Panic if otherwise.
Could you explain you rationale of why we want to crash please?
> + */
> + if ( dom->vnodes == 0 ) {
> + xc_dom_panic(dom->xch, XC_INTERNAL_ERROR,
> + "%s: Cannot construct vNUMA topology with 0 vnodes\n",
> + __FUNCTION__);
> + return -EINVAL;
> + }
>
> /* allocate guest memory */
> - for ( i = rc = allocsz = 0;
> - (i < dom->total_pages) && !rc;
> - i += allocsz )
> - {
> - allocsz = dom->total_pages - i;
> - if ( allocsz > 1024*1024 )
> - allocsz = 1024*1024;
> - rc = xc_domain_populate_physmap_exact(
> - dom->xch, dom->guest_domid, allocsz,
> - 0, 0, &dom->p2m_host[i]);
> - }
> + rc = arch_boot_alloc(dom);
> + if ( rc )
> + return rc;
>
> /* Ensure no unclaimed pages are left unused.
> * OK to call if hadn't done the earlier claim call. */
> (void)xc_domain_claim_pages(dom->xch, dom->guest_domid,
> 0 /* cancels the claim */);
> }
> + return rc;
> +}
> +
> +/*
> + * Allocates domain memory taking into account
> + * defined vnuma topology and vnode_to_pnode map.
> + * Any pv guest will have at least one vnuma node
> + * with vnuma_memszs[0] = domain memory and the rest
> + * topology initialized with default values.
> + */
> +int arch_boot_alloc(struct xc_dom_image *dom)
> +{
> + int rc;
> + unsigned int n, memflags;
> + unsigned long long vnode_pages;
> + unsigned long long allocsz = 0, node_pfn_base, i;
> +
> + rc = allocsz = node_pfn_base = n = 0;
> +
> + for ( n = 0; n < dom->vnodes; n++ )
> + {
> + memflags = 0;
> + if ( dom->vnode_to_pnode[n] != LIBXC_VNUMA_NO_NODE )
> + {
> + memflags |= XENMEMF_exact_node(dom->vnode_to_pnode[n]);
> + memflags |= XENMEMF_exact_node_request;
> + }
> + /* memeszs are in megabytes, calc pages from it for this node. */
> + vnode_pages = (dom->numa_memszs[n] << 20) >> PAGE_SHIFT_X86;
> + for ( i = 0; i < vnode_pages; i += allocsz )
> + {
> + allocsz = vnode_pages - i;
> + if ( allocsz > 1024*1024 )
> + allocsz = 1024*1024;
> +
> + rc = xc_domain_populate_physmap_exact(dom->xch, dom->guest_domid,
> + allocsz, 0, memflags,
> + &dom->p2m_host[node_pfn_base + i]);
> + if ( rc )
> + {
> + xc_dom_panic(dom->xch, XC_INTERNAL_ERROR,
> + "%s: Failed allocation of %Lu pages for vnode %d on pnode %d out of %lu\n",
> + __FUNCTION__, vnode_pages, n, dom->vnode_to_pnode[n], dom->total_pages);
> + return rc;
> + }
> + }
> + node_pfn_base += i;
> + }
>
> return rc;
> }
> --
> 1.7.10.4
>
next prev parent reply other threads:[~2014-08-22 2:10 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-21 5:10 [PATCH RESEND v7 3/9] vnuma hook to debug-keys u Elena Ufimtseva
2014-08-21 5:10 ` [PATCH RESEND v7 4/9] libxc: Introduce xc_domain_setvnuma to set vNUMA Elena Ufimtseva
2014-08-22 1:40 ` Konrad Rzeszutek Wilk
2014-08-21 5:10 ` [PATCH RESEND v7 5/9] libxl: vnuma types declararion Elena Ufimtseva
2014-08-25 14:15 ` Wei Liu
2014-08-21 5:10 ` [PATCH RESEND v7 6/9] libxl: build numa nodes memory blocks Elena Ufimtseva
2014-08-22 2:18 ` Konrad Rzeszutek Wilk
2014-08-25 14:15 ` Wei Liu
2014-08-21 5:10 ` [PATCH RESEND v7 7/9] libxc: allocate domain memory for vnuma enabled Elena Ufimtseva
2014-08-22 2:10 ` Konrad Rzeszutek Wilk [this message]
2014-08-25 0:40 ` Elena Ufimtseva
2014-08-21 5:10 ` [PATCH RESEND v7 8/9] libxl: vnuma nodes placement bits Elena Ufimtseva
2014-08-21 5:10 ` [PATCH RESEND v7] libxl: vnuma topology configuration parser and doc Elena Ufimtseva
2014-08-22 2:06 ` Konrad Rzeszutek Wilk
2014-08-22 17:40 ` Elena Ufimtseva
2014-08-21 16:19 ` [PATCH RESEND v7 3/9] vnuma hook to debug-keys u Konrad Rzeszutek Wilk
2014-08-22 9:13 ` Jan Beulich
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=20140822021042.GD20329@laptop.dumpdata.com \
--to=konrad.wilk@oracle.com \
--cc=Ian.Campbell@citrix.com \
--cc=JBeulich@suse.com \
--cc=dario.faggioli@citrix.com \
--cc=george.dunlap@eu.citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=keir@xen.org \
--cc=lccycc123@gmail.com \
--cc=msw@linux.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=ufimtseva@gmail.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).