From: Dario Faggioli <dario.faggioli@citrix.com>
To: Dongli Zhang <dongli.zhang@oracle.com>, xen-devel@lists.xen.org
Cc: sstabellini@kernel.org, wei.liu2@citrix.com,
george.dunlap@eu.citrix.com, ian.jackson@eu.citrix.com,
tim@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 09:19:22 +0200 [thread overview]
Message-ID: <1473319162.19612.139.camel@citrix.com> (raw)
In-Reply-To: <1473312603-28581-1-git-send-email-dongli.zhang@oracle.com>
[-- Attachment #1.1: Type: text/plain, Size: 3842 bytes --]
On Thu, 2016-09-08 at 13:30 +0800, Dongli Zhang wrote:
> diff --git a/xen/common/memory.c b/xen/common/memory.c
> index f34dd56..3641469 100644
> @@ -150,6 +152,12 @@ static void populate_physmap(struct memop_args
> *a)
> max_order(curr_d)) )
> return;
>
> + /* 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. */
>
/*
* Comment style for multi line comments in Xen
* includes the 'wings'. :-)
*/
Yes, I know there's some inconsistency in this file (and in many others
:-/), but still.
> + if ( d->already_scheduled == 0 )
>
unlikely() maybe?
> + a->memflags |= MEMF_no_tlbflush;
> +
> for ( i = a->nr_done; i < a->nr_extents; i++ )
> {
> if ( i != a->nr_done && hypercall_preempt_check() )
> @@ -214,6 +222,21 @@ static void populate_physmap(struct memop_args
> *a)
> goto out;
> }
>
> + if ( d->already_scheduled == 0 )
> + {
> + for ( j = 0; j < (1U << a->extent_order); j++ )
> + {
> + if ( page[j].u.free.need_tlbflush &&
> + (page[j].tlbflush_timestamp <=
> tlbflush_current_time()) &&
> + (!need_tlbflush ||
> + (page[j].tlbflush_timestamp >
> tlbflush_timestamp)) )
>
This check is long, complicated to read (at least to a non TLBflush
guru), and also appear twice.. can it be put in an inline function with
a talking name?
Oh, and I think you don't need the parenthesis around these twos:
(page[j].tlbflush_timestamp <= tlbflush_current_time())
(page[j].tlbflush_timestamp > tlbflush_timestamp)
> + {
> + need_tlbflush = 1;
> + tlbflush_timestamp =
> page[j].tlbflush_timestamp;
> + }
> + }
> + }
> +
> mfn = page_to_mfn(page);
> }
> diff --git a/xen/common/schedule.c b/xen/common/schedule.c
> index 32a300f..593541a 100644
> @@ -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 */
>
Wings again.
And, about the content, it's already clear from the code that this gets
set when a vcpu of a domain is scheduled. What we want here is a
_quick_ explanation of why we need the scheduler to record this
information.
> + if ( next->domain->already_scheduled == 0 )
>
unlikely() (and here I'm sure :-)).
> + next->domain->already_scheduled = 1;
> +
>
And, finally, I'd move this toward the bottom of the function, outside
of the pcpu_schedule_lock() critical section, e.g., around the call to
vcpu_periodic_timer_work(next);
> sd->curr = next;
>
> if ( next_slice.time >= 0 ) /* -ve means no limit */
Regards,
Dario
--
<<This happens because I choose it to happen!>> (Raistlin Majere)
-----------------------------------------------------------------
Dario Faggioli, Ph.D, http://about.me/dario.faggioli
Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK)
[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
[-- Attachment #2: Type: text/plain, Size: 127 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-09-08 7:19 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 [this message]
2016-09-08 10:50 ` Wei Liu
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=1473319162.19612.139.camel@citrix.com \
--to=dario.faggioli@citrix.com \
--cc=andrew.cooper3@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=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 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.