From: Paolo Bonzini <pbonzini@redhat.com>
To: Mikhail Ilyin <m.ilin@samsung.com>, qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, Riku Voipio <riku.voipio@iki.fi>,
rth@twiddle.net, afaerber@suse.de, mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH] translate-all.c: fix debug memory maps printing
Date: Mon, 25 Aug 2014 14:05:14 +0200 [thread overview]
Message-ID: <53FB267A.2080903@redhat.com> (raw)
In-Reply-To: <53FB21C1.2020304@redhat.com>
Il 25/08/2014 13:45, Paolo Bonzini ha scritto:
> Il 11/08/2014 12:28, Mikhail Ilyin ha scritto:
>> Fix memory maps textualizing function. The output was not correct because of
>> wrong base address calculation. The initial address has to be shifted also
>> for TARGET_PAGE_BITS.
>>
>> Signed-off-by: Mikhail Ilyin <m.ilin@samsung.com>
>> ---
>> translate-all.c | 3 +--
>> 1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/translate-all.c b/translate-all.c
>> index 8f7e11b..cb7a33d 100644
>> --- a/translate-all.c
>> +++ b/translate-all.c
>> @@ -1728,9 +1728,8 @@ int walk_memory_regions(void *priv, walk_memory_regions_fn fn)
>> data.prot = 0;
>>
>> for (i = 0; i < V_L1_SIZE; i++) {
>> - int rc = walk_memory_regions_1(&data, (abi_ulong)i << V_L1_SHIFT,
>> + int rc = walk_memory_regions_1(&data, (abi_ulong)i << (V_L1_SHIFT + TARGET_PAGE_BITS),
>> V_L1_SHIFT / V_L2_BITS - 1, l1_map + i);
>> -
>> if (rc != 0) {
>> return rc;
>> }
>>
>
> Thanks, this is simple enough that I've queued it.
Ouch, I spoke too soon.
This patch fails to compile for MIPS N32 (a 32-bit ABI with a 64-bit
virtual address space). I'm not sure if there is a simple fix.
walk_memory_regions and its user should be changed to use target_ulong
instead of abi_ulong. access_ok probably needs to be changed in the
same way too. Riku, do you have any ideas (or free cycles to do the
change)?
Paolo
next prev parent reply other threads:[~2014-08-25 12:05 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-11 10:28 [Qemu-devel] [PATCH] translate-all.c: fix debug memory maps printing Mikhail Ilyin
2014-08-25 11:45 ` Paolo Bonzini
2014-08-25 12:05 ` Paolo Bonzini [this message]
2014-09-05 8:59 ` Mikhail Ilin
2014-09-05 9:09 ` Peter Maydell
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=53FB267A.2080903@redhat.com \
--to=pbonzini@redhat.com \
--cc=afaerber@suse.de \
--cc=m.ilin@samsung.com \
--cc=mst@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
--cc=rth@twiddle.net \
/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).