From: Juergen Gross <jgross@suse.com>
To: Wei Liu <wei.liu2@citrix.com>,
Dario Faggioli <dario.faggioli@citrix.com>
Cc: sstabellini@kernel.org, george.dunlap@eu.citrix.com,
Dongli Zhang <dongli.zhang@oracle.com>,
tim@xen.org, xen-devel@lists.xen.org, david.vrabel@citrix.com,
jbeulich@suse.com, andrew.cooper3@citrix.com,
ian.jackson@eu.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 13:19:50 +0200 [thread overview]
Message-ID: <07306b9e-9bd5-0276-4df7-ffb1c8c0e792@suse.com> (raw)
In-Reply-To: <20160908111119.GC12697@citrix.com>
On 08/09/16 13:11, Wei Liu wrote:
> On Thu, Sep 08, 2016 at 01:01:40PM +0200, Dario Faggioli wrote:
>> On Thu, 2016-09-08 at 11:50 +0100, Wei Liu wrote:
>>> On Thu, Sep 08, 2016 at 01:30:03PM +0800, Dongli Zhang wrote:
>>>>
>>>> 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.
>>>
>> Are you sure? I mean looking at the cases when the flag is already true
>> (which means, during the life of a domain, basically **always** except
>> a handful of instances after creation), what costs less, a check that
>> is always false, or a write that is always updating a value with its
>> current value?
>
> Omitting the check certain results in less instructions. And it would
> probably eliminate misses in instruction cache and branch prediction
> logic in the processor.
The first scheduling is done via unpausing the domain. Why not setting
the flag to true in that path?
Juergen
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-09-08 11: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
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 [this message]
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=07306b9e-9bd5-0276-4df7-ffb1c8c0e792@suse.com \
--to=jgross@suse.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=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).