From: Luiz Capitulino <lcapitulino@redhat.com>
To: "Andreas Färber" <afaerber@suse.de>
Cc: peter.maydell@linaro.org, jan.kiszka@siemens.com,
qemu-devel <qemu-devel@nongnu.org>,
pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2 for-2.0] target-i386: x86_cpu_get_phys_page_debug(): support 1GB page translation
Date: Thu, 27 Mar 2014 14:27:13 -0400 [thread overview]
Message-ID: <20140327142713.5701c8ab@redhat.com> (raw)
In-Reply-To: <53346D1B.4030509@suse.de>
On Thu, 27 Mar 2014 19:25:31 +0100
Andreas Färber <afaerber@suse.de> wrote:
> Am 20.03.2014 13:56, schrieb Luiz Capitulino:
> > On Wed, 19 Mar 2014 22:58:11 +0100
> > Andreas Färber <afaerber@suse.de> wrote:
> >
> >> Am 19.03.2014 22:03, schrieb Luiz Capitulino:
> >>> Linux guests, when using more than 4GB of RAM, may end up using 1GB pages
> >>> to store (kernel) data. When this happens, we're unable to debug a running
> >>> Linux kernel with GDB:
> >>>
> >>> (gdb) p node_data[0]->node_id
> >>> Cannot access memory at address 0xffff88013fffd3a0
> >>> (gdb)
> >>>
> >>> GDB returns this error because x86_cpu_get_phys_page_debug() doesn't support
> >>> translating 1GB pages in IA-32e paging mode and returns an error to GDB.
> >>>
> >>> This commit adds support for 1GB page translation for IA32e paging.
> >>>
> >>> Signed-off-by: Luiz capitulino <lcapitulino@redhat.com>
> >>
> >> Capitulino? :)
> >
> > Can you or Peter fix it when merging?
>
> Done.
>
> >>> ---
> >>>
> >>> - I'm proposing this patch for 2.0 because GDB debugging of large Linux
> >>> guests is kind of broken
> >>
> >> Agree that it would be nice to fix, but having mainly touched the
> >> function interface, I am dependent on reviewers here. => rc2 or .1
> >
> > I think Paolo and/or Jan will review it.
>
> Thanks to them. I did need the followup build fix though:
Thanks a lot.
>
> diff --git a/target-i386/helper.c b/target-i386/helper.c
> index 7cee501..372f0e3 100644
> --- a/target-i386/helper.c
> +++ b/target-i386/helper.c
> @@ -1001,7 +1001,9 @@ hwaddr x86_cpu_get_phys_page_debug(CPUState *cs,
> vaddr addr)
> pte = pte & env->a20_mask;
> }
>
> +#ifdef TARGET_X86_64
> out:
> +#endif
> page_offset = (addr & TARGET_PAGE_MASK) & (page_size - 1);
> paddr = (pte & TARGET_PAGE_MASK) + page_offset;
> return paddr;
>
> Thanks, applied to qom-cpu:
> https://github.com/afaerber/qemu-cpu/commits/qom-cpu
>
> Andreas
>
next prev parent reply other threads:[~2014-03-27 18:27 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-19 21:03 [Qemu-devel] [PATCH v2 for-2.0] target-i386: x86_cpu_get_phys_page_debug(): support 1GB page translation Luiz Capitulino
2014-03-19 21:58 ` Andreas Färber
2014-03-20 12:56 ` Luiz Capitulino
2014-03-27 18:25 ` Andreas Färber
2014-03-27 18:27 ` Luiz Capitulino [this message]
2014-03-20 13:07 ` Paolo Bonzini
2014-03-20 13:07 ` Jan Kiszka
2014-03-27 17:48 ` Luiz Capitulino
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=20140327142713.5701c8ab@redhat.com \
--to=lcapitulino@redhat.com \
--cc=afaerber@suse.de \
--cc=jan.kiszka@siemens.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.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).