From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: quintela@redhat.com
Cc: Stefano Stabellini <sstabellini@kernel.org>,
Eduardo Habkost <ehabkost@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
Paul Durrant <paul@xen.org>,
qemu-devel@nongnu.org,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>,
xen-devel@lists.xenproject.org,
Anthony Perard <anthony.perard@citrix.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Igor Mammedov <imammedo@redhat.com>,
Aurelien Jarno <aurelien@aurel32.net>,
Richard Henderson <rth@twiddle.net>
Subject: Re: [PATCH v2 1/2] exec: Check Xen is enabled before calling the Xen API
Date: Fri, 8 May 2020 11:31:59 +0200 [thread overview]
Message-ID: <0731df30-b0c4-c7bf-6194-42cd6cc90ba5@redhat.com> (raw)
In-Reply-To: <87wo5mes6g.fsf@secure.mitica>
Hi Juan,
On 5/8/20 10:39 AM, Juan Quintela wrote:
> Philippe Mathieu-Daudé <philmd@redhat.com> wrote:
>> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> ---
>> include/exec/ram_addr.h | 8 ++++++--
>> 1 file changed, 6 insertions(+), 2 deletions(-)
>>
>> diff --git a/include/exec/ram_addr.h b/include/exec/ram_addr.h
>> index 5e59a3d8d7..dd8713179e 100644
>> --- a/include/exec/ram_addr.h
>> +++ b/include/exec/ram_addr.h
>> @@ -330,7 +330,9 @@ static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
>> }
>> }
>>
>> - xen_hvm_modified_memory(start, length);
>> + if (xen_enabled()) {
>> + xen_hvm_modified_memory(start, length);
>> + }
>> }
>>
>> #if !defined(_WIN32)
>> @@ -388,7 +390,9 @@ static inline void cpu_physical_memory_set_dirty_lebitmap(unsigned long *bitmap,
>> }
>> }
>>
>> - xen_hvm_modified_memory(start, pages << TARGET_PAGE_BITS);
>> + if (xen_enabled()) {
>> + xen_hvm_modified_memory(start, pages << TARGET_PAGE_BITS);
>> + }
>> } else {
>> uint8_t clients = tcg_enabled() ? DIRTY_CLIENTS_ALL : DIRTY_CLIENTS_NOCODE;
>
> I don't object moving the xen code to accell. But I think that this
> change is bad.
>
> On the following patch:
> - You export xen_allowed
> (ok, it was already exported, but I think it shouldn't)
>
> (master)$ find . -type f | xargs grep xen_allowed
> ./hw/xen/xen-common.c: ac->allowed = &xen_allowed;
> ./include/hw/xen/xen.h:extern bool xen_allowed;
> ./include/hw/xen/xen.h: return xen_allowed;
> ./softmmu/vl.c:bool xen_allowed;
>
> This are all the users that I can find.
>
> And xen_havm_modified_memory() is an empty function if xen is not
> compiled in. And in the case that xen is compiled in, the 1st thing
> that it checks is:
>
> if (unlikely(xen_in_migration)) {
>
> That is way more restrictive that xen_enabled().
>
> So, I think that it is better to drop this patch, maintain next one, but
> just un-exporting xen_allowed.
>
> What do you think?
I blindly trust your judgement on this :) I'd rather not touch this code
but as it happens to be in "exec/ram_addr.h" I had to modify it.
Thanks for your reviews!
>
> Later, Juan.
>
>
next prev parent reply other threads:[~2020-05-08 9:33 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-08 8:07 [PATCH v2 0/2] accel: Move Xen accelerator code under accel/xen/ Philippe Mathieu-Daudé
2020-05-08 8:07 ` [PATCH v2 1/2] exec: Check Xen is enabled before calling the Xen API Philippe Mathieu-Daudé
2020-05-08 8:39 ` Juan Quintela
2020-05-08 9:31 ` Philippe Mathieu-Daudé [this message]
2020-05-08 8:07 ` [PATCH v2 2/2] accel: Move Xen accelerator code under accel/xen/ Philippe Mathieu-Daudé
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=0731df30-b0c4-c7bf-6194-42cd6cc90ba5@redhat.com \
--to=philmd@redhat.com \
--cc=aleksandar.qemu.devel@gmail.com \
--cc=anthony.perard@citrix.com \
--cc=aurelien@aurel32.net \
--cc=dgilbert@redhat.com \
--cc=ehabkost@redhat.com \
--cc=imammedo@redhat.com \
--cc=mst@redhat.com \
--cc=paul@xen.org \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
--cc=rth@twiddle.net \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xenproject.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).