qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL for-3.0 0/1] s390x fix for -rc3
@ 2018-07-31  6:50 Cornelia Huck
  2018-07-31  6:50 ` [Qemu-devel] [PULL for-3.0 1/1] s390x/sclp: fix maxram calculation Cornelia Huck
  2018-07-31 10:13 ` [Qemu-devel] [PULL for-3.0 0/1] s390x fix for -rc3 Peter Maydell
  0 siblings, 2 replies; 3+ messages in thread
From: Cornelia Huck @ 2018-07-31  6:50 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, qemu-s390x, qemu-devel,
	Cornelia Huck

The following changes since commit 18a398f6a39df4b08ff86ac0d38384193ca5f4cc:

  Update version for v3.0.0-rc2 release (2018-07-24 22:06:31 +0100)

are available in the Git repository at:

  git://github.com/cohuck/qemu tags/s390x-20180731

for you to fetch changes up to 408e5ace517ff18c9c7cd918fc93358162e6e26d:

  s390x/sclp: fix maxram calculation (2018-07-30 17:41:52 +0200)

----------------------------------------------------------------
fix large guests on s390x

----------------------------------------------------------------

Christian Borntraeger (1):
  s390x/sclp: fix maxram calculation

 hw/s390x/sclp.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.14.4

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

* [Qemu-devel] [PULL for-3.0 1/1] s390x/sclp: fix maxram calculation
  2018-07-31  6:50 [Qemu-devel] [PULL for-3.0 0/1] s390x fix for -rc3 Cornelia Huck
@ 2018-07-31  6:50 ` Cornelia Huck
  2018-07-31 10:13 ` [Qemu-devel] [PULL for-3.0 0/1] s390x fix for -rc3 Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Cornelia Huck @ 2018-07-31  6:50 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, qemu-s390x, qemu-devel,
	qemu-stable, Cornelia Huck

From: Christian Borntraeger <borntraeger@de.ibm.com>

We clamp down ram_size to match the sclp increment size. We do
not do the same for maxram_size, which means for large guests
with some sizes (e.g. -m 50000) maxram_size differs from ram_size.
This can break other code (e.g. CMMA migration) which uses maxram_size
to calculate the number of pages and then throws some errors.

Fixes: 82fab5c5b90e468f3e9d54c ("s390x/sclp: remove memory hotplug support")
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
CC: qemu-stable@nongnu.org
CC: David Hildenbrand <david@redhat.com>
Message-Id: <1532959766-53343-1-git-send-email-borntraeger@de.ibm.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
---
 hw/s390x/sclp.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/s390x/sclp.c b/hw/s390x/sclp.c
index bd2a024efd..4510a800cb 100644
--- a/hw/s390x/sclp.c
+++ b/hw/s390x/sclp.c
@@ -320,6 +320,7 @@ static void sclp_memory_init(SCLPDevice *sclp)
     initial_mem = initial_mem >> increment_size << increment_size;
 
     machine->ram_size = initial_mem;
+    machine->maxram_size = initial_mem;
     /* let's propagate the changed ram size into the global variable. */
     ram_size = initial_mem;
 }
-- 
2.14.4

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

* Re: [Qemu-devel] [PULL for-3.0 0/1] s390x fix for -rc3
  2018-07-31  6:50 [Qemu-devel] [PULL for-3.0 0/1] s390x fix for -rc3 Cornelia Huck
  2018-07-31  6:50 ` [Qemu-devel] [PULL for-3.0 1/1] s390x/sclp: fix maxram calculation Cornelia Huck
@ 2018-07-31 10:13 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2018-07-31 10:13 UTC (permalink / raw)
  To: Cornelia Huck
  Cc: Christian Borntraeger, Alexander Graf, Richard Henderson,
	David Hildenbrand, Thomas Huth, qemu-s390x, QEMU Developers

On 31 July 2018 at 07:50, Cornelia Huck <cohuck@redhat.com> wrote:
> The following changes since commit 18a398f6a39df4b08ff86ac0d38384193ca5f4cc:
>
>   Update version for v3.0.0-rc2 release (2018-07-24 22:06:31 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/cohuck/qemu tags/s390x-20180731
>
> for you to fetch changes up to 408e5ace517ff18c9c7cd918fc93358162e6e26d:
>
>   s390x/sclp: fix maxram calculation (2018-07-30 17:41:52 +0200)
>
> ----------------------------------------------------------------
> fix large guests on s390x
>

Applied, thanks.

-- PMM

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

end of thread, other threads:[~2018-07-31 10:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-31  6:50 [Qemu-devel] [PULL for-3.0 0/1] s390x fix for -rc3 Cornelia Huck
2018-07-31  6:50 ` [Qemu-devel] [PULL for-3.0 1/1] s390x/sclp: fix maxram calculation Cornelia Huck
2018-07-31 10:13 ` [Qemu-devel] [PULL for-3.0 0/1] s390x fix for -rc3 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).