qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: Avi Kivity <avi@redhat.com>
Cc: Jan Kiszka <jan.kiszka@siemens.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] kvmvapic: align start address as well as size
Date: Wed, 14 Mar 2012 16:18:01 -0500	[thread overview]
Message-ID: <4F610B09.1050207@codemonkey.ws> (raw)
In-Reply-To: <1331049010-24312-1-git-send-email-avi@redhat.com>

On 03/06/2012 09:50 AM, Avi Kivity wrote:
> The kvmvapic code remaps a section of ROM as RAM to allow the guest to
> maintain state there.  It is careful to align the section size to a page
> boundary, to avoid creating subpages, but neglects to do the same for
> the start address.  These leads to an assert later on when the memory
> core tries to create a page which is half RAM and half ROM.
>
> Fix by aligning the start address to a page boundary.
>
> This can be triggered by running qemu-system-x86_64 -enable-kvm -vga none.
>
> Signed-off-by: Avi Kivity<avi@redhat.com>

Applied.  Thanks.

Regards,

Anthony Liguori

> ---
>   hw/kvmvapic.c |    4 +++-
>   1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/hw/kvmvapic.c b/hw/kvmvapic.c
> index 36ccfbc..e8bfeec 100644
> --- a/hw/kvmvapic.c
> +++ b/hw/kvmvapic.c
> @@ -578,8 +578,10 @@ static void vapic_map_rom_writable(VAPICROMState *s)
>       rom_size = ram[rom_paddr + 2] * ROM_BLOCK_SIZE;
>       s->rom_size = rom_size;
>
> -    /* We need to round up to avoid creating subpages
> +    /* We need to round to avoid creating subpages
>        * from which we cannot run code. */
> +    rom_size += rom_paddr&  ~TARGET_PAGE_MASK;
> +    rom_paddr&= TARGET_PAGE_MASK;
>       rom_size = TARGET_PAGE_ALIGN(rom_size);
>
>       memory_region_init_alias(&s->rom, "kvmvapic-rom", section.mr, rom_paddr,

      parent reply	other threads:[~2012-03-14 21:18 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-06 15:50 [Qemu-devel] [PATCH] kvmvapic: align start address as well as size Avi Kivity
2012-03-06 16:01 ` Jan Kiszka
2012-03-14 20:33 ` Anthony Liguori
2012-03-15  9:55   ` Avi Kivity
2012-03-15 13:16     ` Anthony Liguori
2012-03-14 21:18 ` Anthony Liguori [this message]

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=4F610B09.1050207@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=avi@redhat.com \
    --cc=jan.kiszka@siemens.com \
    --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).