[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [qemu-s390x] [Qemu-devel] [PATCH v1 1/1] s390x: fix storage attribut
From: |
Christian Borntraeger |
Subject: |
Re: [qemu-s390x] [Qemu-devel] [PATCH v1 1/1] s390x: fix storage attributes migration for non-small guests |
Date: |
Mon, 15 Jan 2018 19:53:55 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 |
CCing qemu-s390x.
On 01/15/2018 05:52 PM, Claudio Imbrenda wrote:
> Fix storage attribute migration so that it does not fail for guests
> with more than a few GB of RAM. Migration itself was successful, but
> storage attributes were not migrated completely.
>
> This patch fixes the migration of all storage attributes, even when the
> guest have large amounts of memory.
>
> Signed-off-by: Claudio Imbrenda <address@hidden>
> Fixes: 903fd80b03243476 ("s390x/migration: Storage attributes device")
> ---
> hw/s390x/s390-stattrib-kvm.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/s390x/s390-stattrib-kvm.c b/hw/s390x/s390-stattrib-kvm.c
> index 41770a7..480551c 100644
> --- a/hw/s390x/s390-stattrib-kvm.c
> +++ b/hw/s390x/s390-stattrib-kvm.c
> @@ -116,7 +116,7 @@ static void
> kvm_s390_stattrib_synchronize(S390StAttribState *sa)
> for (cx = 0; cx + len <= max; cx += len) {
> clog.start_gfn = cx;
> clog.count = len;
> - clog.values = (uint64_t)(sas->incoming_buffer + cx * len);
> + clog.values = (uint64_t)(sas->incoming_buffer + cx);
> r = kvm_vm_ioctl(kvm_state, KVM_S390_SET_CMMA_BITS, &clog);
> if (r) {
> error_report("KVM_S390_SET_CMMA_BITS failed: %s",
> strerror(-r));
> @@ -126,7 +126,7 @@ static void
> kvm_s390_stattrib_synchronize(S390StAttribState *sa)
> if (cx < max) {
> clog.start_gfn = cx;
> clog.count = max - cx;
> - clog.values = (uint64_t)(sas->incoming_buffer + cx * len);
> + clog.values = (uint64_t)(sas->incoming_buffer + cx);
> r = kvm_vm_ioctl(kvm_state, KVM_S390_SET_CMMA_BITS, &clog);
> if (r) {
> error_report("KVM_S390_SET_CMMA_BITS failed: %s",
> strerror(-r));
>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: [qemu-s390x] [Qemu-devel] [PATCH v1 1/1] s390x: fix storage attributes migration for non-small guests,
Christian Borntraeger <=