qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clg@kaod.org>
To: David Gibson <david@gibson.dropbear.id.au>, Greg Kurz <groug@kaod.org>
Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] spapr/xive: Add proper rollback to kvmppc_xive_connect()
Date: Mon, 1 Jul 2019 08:13:07 +0200	[thread overview]
Message-ID: <a2d8e209-4431-ec77-b5a6-8f755731e433@kaod.org> (raw)
In-Reply-To: <20190619093617.GC22560@umbus.BigPond>

On 19/06/2019 11:36, David Gibson wrote:
> On Sun, Jun 16, 2019 at 07:22:23PM +0200, Greg Kurz wrote:
>> Make kvmppc_xive_disconnect() able to undo the changes of a partial
>> execution of kvmppc_xive_connect() and use it to perform rollback.
>>
>> Based-on: <20190614165920.12670-2-clg@kaod.org>
>> Signed-off-by: Greg Kurz <groug@kaod.org>
> 
> I'm afraid this doesn't apply clean on my current ppc-for-4.1.

With the patch you have taken, this one should now apply.

Thanks,

C.

> 
>> ---
>>  hw/intc/spapr_xive_kvm.c |   48 ++++++++++++++++++++++++++++------------------
>>  1 file changed, 29 insertions(+), 19 deletions(-)
>>
>> diff --git a/hw/intc/spapr_xive_kvm.c b/hw/intc/spapr_xive_kvm.c
>> index 5559f8bce5ef..3bf8e7a20e14 100644
>> --- a/hw/intc/spapr_xive_kvm.c
>> +++ b/hw/intc/spapr_xive_kvm.c
>> @@ -724,8 +724,7 @@ void kvmppc_xive_connect(SpaprXive *xive, Error **errp)
>>      xsrc->esb_mmap = kvmppc_xive_mmap(xive, KVM_XIVE_ESB_PAGE_OFFSET, esb_len,
>>                                        &local_err);
>>      if (local_err) {
>> -        error_propagate(errp, local_err);
>> -        return;
>> +        goto fail;
>>      }
>>  
>>      memory_region_init_ram_device_ptr(&xsrc->esb_mmio_kvm, OBJECT(xsrc),
>> @@ -743,8 +742,7 @@ void kvmppc_xive_connect(SpaprXive *xive, Error **errp)
>>      xive->tm_mmap = kvmppc_xive_mmap(xive, KVM_XIVE_TIMA_PAGE_OFFSET, tima_len,
>>                                       &local_err);
>>      if (local_err) {
>> -        error_propagate(errp, local_err);
>> -        return;
>> +        goto fail;
>>      }
>>      memory_region_init_ram_device_ptr(&xive->tm_mmio_kvm, OBJECT(xive),
>>                                        "xive.tima", tima_len, xive->tm_mmap);
>> @@ -760,21 +758,24 @@ void kvmppc_xive_connect(SpaprXive *xive, Error **errp)
>>  
>>          kvmppc_xive_cpu_connect(spapr_cpu_state(cpu)->tctx, &local_err);
>>          if (local_err) {
>> -            error_propagate(errp, local_err);
>> -            return;
>> +            goto fail;
>>          }
>>      }
>>  
>>      /* Update the KVM sources */
>>      kvmppc_xive_source_reset(xsrc, &local_err);
>>      if (local_err) {
>> -            error_propagate(errp, local_err);
>> -            return;
>> +        goto fail;
>>      }
>>  
>>      kvm_kernel_irqchip = true;
>>      kvm_msi_via_irqfd_allowed = true;
>>      kvm_gsi_direct_mapping = true;
>> +    return;
>> +
>> +fail:
>> +    error_propagate(errp, local_err);
>> +    kvmppc_xive_disconnect(xive, NULL);
>>  }
>>  
>>  void kvmppc_xive_disconnect(SpaprXive *xive, Error **errp)
>> @@ -796,23 +797,29 @@ void kvmppc_xive_disconnect(SpaprXive *xive, Error **errp)
>>      xsrc = &xive->source;
>>      esb_len = (1ull << xsrc->esb_shift) * xsrc->nr_irqs;
>>  
>> -    memory_region_del_subregion(&xsrc->esb_mmio, &xsrc->esb_mmio_kvm);
>> -    object_unparent(OBJECT(&xsrc->esb_mmio_kvm));
>> -    munmap(xsrc->esb_mmap, esb_len);
>> -    xsrc->esb_mmap = NULL;
>> +    if (xsrc->esb_mmap) {
>> +        memory_region_del_subregion(&xsrc->esb_mmio, &xsrc->esb_mmio_kvm);
>> +        object_unparent(OBJECT(&xsrc->esb_mmio_kvm));
>> +        munmap(xsrc->esb_mmap, esb_len);
>> +        xsrc->esb_mmap = NULL;
>> +    }
>>  
>> -    memory_region_del_subregion(&xive->tm_mmio, &xive->tm_mmio_kvm);
>> -    object_unparent(OBJECT(&xive->tm_mmio_kvm));
>> -    munmap(xive->tm_mmap, 4ull << TM_SHIFT);
>> -    xive->tm_mmap = NULL;
>> +    if (xive->tm_mmap) {
>> +        memory_region_del_subregion(&xive->tm_mmio, &xive->tm_mmio_kvm);
>> +        object_unparent(OBJECT(&xive->tm_mmio_kvm));
>> +        munmap(xive->tm_mmap, 4ull << TM_SHIFT);
>> +        xive->tm_mmap = NULL;
>> +    }
>>  
>>      /*
>>       * When the KVM device fd is closed, the KVM device is destroyed
>>       * and removed from the list of devices of the VM. The VCPU
>>       * presenters are also detached from the device.
>>       */
>> -    close(xive->fd);
>> -    xive->fd = -1;
>> +    if (xive->fd != -1) {
>> +        close(xive->fd);
>> +        xive->fd = -1;
>> +    }
>>  
>>      kvm_kernel_irqchip = false;
>>      kvm_msi_via_irqfd_allowed = false;
>> @@ -822,5 +829,8 @@ void kvmppc_xive_disconnect(SpaprXive *xive, Error **errp)
>>      kvm_cpu_disable_all();
>>  
>>      /* VM Change state handler is not needed anymore */
>> -    qemu_del_vm_change_state_handler(xive->change);
>> +    if (xive->change) {
>> +        qemu_del_vm_change_state_handler(xive->change);
>> +        xive->change = NULL;
>> +    }
>>  }
>>
> 



  parent reply	other threads:[~2019-07-01  6:13 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-16 17:22 [Qemu-devel] [PATCH] spapr/xive: Add proper rollback to kvmppc_xive_connect() Greg Kurz
2019-06-18  7:05 ` Cédric Le Goater
2019-06-19  9:36 ` David Gibson
2019-06-19  9:56   ` Cédric Le Goater
2019-07-01  6:13   ` Cédric Le Goater [this message]
2019-07-01  6:52     ` David Gibson

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=a2d8e209-4431-ec77-b5a6-8f755731e433@kaod.org \
    --to=clg@kaod.org \
    --cc=david@gibson.dropbear.id.au \
    --cc=groug@kaod.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@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).