From: Wei Liu <wei.liu2@citrix.com>
To: Dongli Zhang <dongli.zhang@oracle.com>
Cc: sstabellini@kernel.org, wei.liu2@citrix.com,
george.dunlap@eu.citrix.com, ian.jackson@eu.citrix.com,
dario.faggioli@citrix.com, tim@xen.org, xen-devel@lists.xen.org,
david.vrabel@citrix.com, jbeulich@suse.com,
andrew.cooper3@citrix.com
Subject: Re: [PATCH v3 1/1] xen: move TLB-flush filtering out into populate_physmap during vm creation
Date: Thu, 8 Sep 2016 11:50:47 +0100 [thread overview]
Message-ID: <20160908105047.GB12697@citrix.com> (raw)
In-Reply-To: <1473312603-28581-1-git-send-email-dongli.zhang@oracle.com>
On Thu, Sep 08, 2016 at 01:30:03PM +0800, Dongli Zhang wrote:
> This patch implemented parts of TODO left in commit id
> a902c12ee45fc9389eb8fe54eeddaf267a555c58. It moved TLB-flush filtering out
> into populate_physmap. Because of TLB-flush in alloc_heap_pages, it's very
> slow to create a guest with memory size of more than 100GB on host with
> 100+ cpus.
>
> This patch introduced a "MEMF_no_tlbflush" bit to memflags to indicate
> whether TLB-flush should be done in alloc_heap_pages or its caller
> populate_physmap. Once this bit is set in memflags, alloc_heap_pages will
> ignore TLB-flush. To use this bit after vm is created might lead to
> security issue, that is, this would make pages accessible to the guest B,
> when guest A may still have a cached mapping to them.
>
> Therefore, this patch also introduced a "already_scheduled" field to struct
> domain to indicate whether this domain has ever got scheduled by
> hypervisor. MEMF_no_tlbflush can be set only during vm creation phase when
> already_scheduled is still 0 before this domain gets scheduled for the
> first time.
>
> TODO: ballooning very huge amount of memory cannot benefit from this patch
> and might still be slow.
>
> Signed-off-by: Dongli Zhang <dongli.zhang@oracle.com>
>
> ---
> Changed since v2:
> * Limit this optimization to domain creation time.
>
> ---
> xen/common/domain.c | 2 ++
> xen/common/memory.c | 33 +++++++++++++++++++++++++++++++++
> xen/common/page_alloc.c | 3 ++-
> xen/common/schedule.c | 5 +++++
> xen/include/xen/mm.h | 2 ++
> xen/include/xen/sched.h | 3 +++
> 6 files changed, 47 insertions(+), 1 deletion(-)
>
> diff --git a/xen/common/domain.c b/xen/common/domain.c
> index a8804e4..611a471 100644
> --- a/xen/common/domain.c
> +++ b/xen/common/domain.c
> @@ -303,6 +303,8 @@ struct domain *domain_create(domid_t domid, unsigned int domcr_flags,
> if ( !zalloc_cpumask_var(&d->domain_dirty_cpumask) )
> goto fail;
>
> + d->already_scheduled = 0;
> +
Use false please -- this is a bool_t.
[...]
> diff --git a/xen/common/schedule.c b/xen/common/schedule.c
> index 32a300f..593541a 100644
> --- a/xen/common/schedule.c
> +++ b/xen/common/schedule.c
> @@ -1376,6 +1376,11 @@ static void schedule(void)
>
> next = next_slice.task;
>
> + /* Set already_scheduled to 1 when this domain gets scheduled for the
> + * first time */
> + if ( next->domain->already_scheduled == 0 )
> + next->domain->already_scheduled = 1;
> +
Can be simplified by omitting the "if" altogether. And use "true" here.
Wei.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-09-08 10:50 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-08 5:30 [PATCH v3 1/1] xen: move TLB-flush filtering out into populate_physmap during vm creation Dongli Zhang
2016-09-08 7:19 ` Dario Faggioli
2016-09-08 10:50 ` Wei Liu [this message]
2016-09-08 11:01 ` Dario Faggioli
2016-09-08 11:11 ` Wei Liu
2016-09-08 11:19 ` Juergen Gross
2016-09-08 14:49 ` Dario Faggioli
2016-09-08 14:52 ` Andrew Cooper
2016-09-08 14:28 ` Ian Jackson
2016-09-08 15:36 ` Jan Beulich
2016-09-08 15:53 ` Dario Faggioli
-- strict thread matches above, loose matches on Subject: below --
2016-09-09 5:37 Dongli Zhang
2016-09-09 7:56 ` Jan Beulich
2016-09-09 9:34 ` Andrew Cooper
2016-09-09 9:46 ` Jan Beulich
2016-09-09 9:52 ` Andrew Cooper
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=20160908105047.GB12697@citrix.com \
--to=wei.liu2@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=dario.faggioli@citrix.com \
--cc=david.vrabel@citrix.com \
--cc=dongli.zhang@oracle.com \
--cc=george.dunlap@eu.citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jbeulich@suse.com \
--cc=sstabellini@kernel.org \
--cc=tim@xen.org \
--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 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.