qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/1] xen-140130
@ 2014-01-30 14:24 Stefano Stabellini
  2014-01-30 14:25 ` [Qemu-devel] [PULL 1/1] address_space_translate: do not cross page boundaries Stefano Stabellini
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Stefano Stabellini @ 2014-01-30 14:24 UTC (permalink / raw)
  To: Anthony Liguori
  Cc: xen-devel, Stefano Stabellini, qemu-stable, qemu-devel,
	Anthony.Perard, Paolo Bonzini

The following changes since commit 0169c511554cb0014a00290b0d3d26c31a49818f:

  Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2014-01-24 15:52:44 -0800)

are available in the git repository at:


  git://xenbits.xen.org/people/sstabellini/qemu-dm.git xen-140130

for you to fetch changes up to 360e607b88a23d378f6efaa769c76d26f538234d:

  address_space_translate: do not cross page boundaries (2014-01-30 14:20:45 +0000)

----------------------------------------------------------------
Stefano Stabellini (1):
      address_space_translate: do not cross page boundaries

 exec.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Qemu-devel] [PULL 1/1] address_space_translate: do not cross page boundaries
  2014-01-30 14:24 [Qemu-devel] [PULL 0/1] xen-140130 Stefano Stabellini
@ 2014-01-30 14:25 ` Stefano Stabellini
  2014-01-30 18:29 ` [Qemu-devel] [PULL 0/1] xen-140130 Stefano Stabellini
  2014-02-01 21:03 ` Peter Maydell
  2 siblings, 0 replies; 4+ messages in thread
From: Stefano Stabellini @ 2014-01-30 14:25 UTC (permalink / raw)
  To: anthony
  Cc: xen-devel, Stefano Stabellini, qemu-stable, qemu-devel,
	Anthony Perard, pbonzini

From: Stefano Stabellini <Stefano.Stabellini@eu.citrix.com>

The following commit:

commit 149f54b53b7666a3facd45e86eece60ce7d3b114
Author: Paolo Bonzini <pbonzini@redhat.com>
Date:   Fri May 24 12:59:37 2013 +0200

    memory: add address_space_translate

breaks Xen support in QEMU, in particular the Xen mapcache. The effect
is that one Windows XP installation out of ten would end up with BSOD.

The reason is that after this commit l in address_space_rw can span a
page boundary, however qemu_get_ram_ptr still calls xen_map_cache asking
to map a single page (if block->offset == 0).

Fix the issue by reverting to the previous behaviour: do not return a
length from address_space_translate_internal that can span a page
boundary.

Also in address_space_translate do not ignore the length returned by
address_space_translate_internal.

This patch should be backported to QEMU 1.6.x.

Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Anthony Perard <anthony.perard@citrix.com>
Tested-by: Paolo Bonzini <pbonzini@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Cc: qemu-stable@nongnu.org
---
 exec.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/exec.c b/exec.c
index 2435d9e..9ad0a4b 100644
--- a/exec.c
+++ b/exec.c
@@ -325,7 +325,7 @@ address_space_translate_internal(AddressSpaceDispatch *d, hwaddr addr, hwaddr *x
                                  hwaddr *plen, bool resolve_subpage)
 {
     MemoryRegionSection *section;
-    Int128 diff;
+    Int128 diff, diff_page;
 
     section = address_space_lookup_region(d, addr, resolve_subpage);
     /* Compute offset within MemoryRegionSection */
@@ -334,7 +334,9 @@ address_space_translate_internal(AddressSpaceDispatch *d, hwaddr addr, hwaddr *x
     /* Compute offset within MemoryRegion */
     *xlat = addr + section->offset_within_region;
 
+    diff_page = int128_make64(((addr & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE) - addr);
     diff = int128_sub(section->mr->size, int128_make64(addr));
+    diff = int128_min(diff, diff_page);
     *plen = int128_get64(int128_min(diff, int128_make64(*plen)));
     return section;
 }
@@ -349,7 +351,7 @@ MemoryRegion *address_space_translate(AddressSpace *as, hwaddr addr,
     hwaddr len = *plen;
 
     for (;;) {
-        section = address_space_translate_internal(as->dispatch, addr, &addr, plen, true);
+        section = address_space_translate_internal(as->dispatch, addr, &addr, &len, true);
         mr = section->mr;
 
         if (!mr->iommu_ops) {
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] xen-140130
  2014-01-30 14:24 [Qemu-devel] [PULL 0/1] xen-140130 Stefano Stabellini
  2014-01-30 14:25 ` [Qemu-devel] [PULL 1/1] address_space_translate: do not cross page boundaries Stefano Stabellini
@ 2014-01-30 18:29 ` Stefano Stabellini
  2014-02-01 21:03 ` Peter Maydell
  2 siblings, 0 replies; 4+ messages in thread
From: Stefano Stabellini @ 2014-01-30 18:29 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel, qemu-devel, qemu-stable, Anthony Liguori,
	Anthony.Perard, Paolo Bonzini

Anthony,
I would appreciate if you could pull this branch quickly, as I am
looking forward to backport the patch to the qemu-xen tree for the Xen
4.4 release.
Thanks,

Stefano

On Thu, 30 Jan 2014, Stefano Stabellini wrote:
> The following changes since commit 0169c511554cb0014a00290b0d3d26c31a49818f:
> 
>   Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2014-01-24 15:52:44 -0800)
> 
> are available in the git repository at:
> 
> 
>   git://xenbits.xen.org/people/sstabellini/qemu-dm.git xen-140130
> 
> for you to fetch changes up to 360e607b88a23d378f6efaa769c76d26f538234d:
> 
>   address_space_translate: do not cross page boundaries (2014-01-30 14:20:45 +0000)
> 
> ----------------------------------------------------------------
> Stefano Stabellini (1):
>       address_space_translate: do not cross page boundaries
> 
>  exec.c |    6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] xen-140130
  2014-01-30 14:24 [Qemu-devel] [PULL 0/1] xen-140130 Stefano Stabellini
  2014-01-30 14:25 ` [Qemu-devel] [PULL 1/1] address_space_translate: do not cross page boundaries Stefano Stabellini
  2014-01-30 18:29 ` [Qemu-devel] [PULL 0/1] xen-140130 Stefano Stabellini
@ 2014-02-01 21:03 ` Peter Maydell
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2014-02-01 21:03 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel@lists.xensource.com Devel, qemu-stable, QEMU Developers,
	Anthony Liguori, Anthony PERARD, Paolo Bonzini

On 30 January 2014 14:24, Stefano Stabellini
<stefano.stabellini@eu.citrix.com> wrote:
> The following changes since commit 0169c511554cb0014a00290b0d3d26c31a49818f:
>
>   Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2014-01-24 15:52:44 -0800)
>
> are available in the git repository at:
>
>
>   git://xenbits.xen.org/people/sstabellini/qemu-dm.git xen-140130
>
> for you to fetch changes up to 360e607b88a23d378f6efaa769c76d26f538234d:
>
>   address_space_translate: do not cross page boundaries (2014-01-30 14:20:45 +0000)
>
> ----------------------------------------------------------------
> Stefano Stabellini (1):
>       address_space_translate: do not cross page boundaries
>
>  exec.c |    6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-02-01 21:03 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-30 14:24 [Qemu-devel] [PULL 0/1] xen-140130 Stefano Stabellini
2014-01-30 14:25 ` [Qemu-devel] [PULL 1/1] address_space_translate: do not cross page boundaries Stefano Stabellini
2014-01-30 18:29 ` [Qemu-devel] [PULL 0/1] xen-140130 Stefano Stabellini
2014-02-01 21:03 ` Peter Maydell

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).