[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v9] s390x: protvirt: Add migration blocker
From: |
David Hildenbrand |
Subject: |
Re: [PATCH v9] s390x: protvirt: Add migration blocker |
Date: |
Tue, 10 Mar 2020 16:26:36 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0 |
On 10.03.20 16:24, Janosch Frank wrote:
> Migration is not yet supported.
>
> Signed-off-by: Janosch Frank <address@hidden>
> ---
> hw/s390x/s390-virtio-ccw.c | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c
> index 455ad31718..f18d98bb32 100644
> --- a/hw/s390x/s390-virtio-ccw.c
> +++ b/hw/s390x/s390-virtio-ccw.c
> @@ -43,6 +43,9 @@
> #include "sysemu/sysemu.h"
> #include "hw/s390x/pv.h"
> #include <linux/kvm.h>
> +#include "migration/blocker.h"
> +
> +static Error *pv_mig_blocker;
>
> S390CPU *s390_cpu_addr2state(uint16_t cpu_addr)
> {
> @@ -323,15 +326,30 @@ static void s390_machine_unprotect(S390CcwMachineState
> *ms)
>
> s390_pv_vm_disable();
> ms->pv = false;
> + migrate_del_blocker(pv_mig_blocker);
> + error_free_or_abort(&pv_mig_blocker);
> }
>
> static int s390_machine_protect(S390CcwMachineState *ms)
> {
> + Error *local_err = NULL;
> int rc;
>
> + error_setg(&pv_mig_blocker,
> + "protected VMs are currently not migrateable.");
> + rc = migrate_add_blocker(pv_mig_blocker, &local_err);
> + if (local_err) {
> + error_report_err(local_err);
> + error_free_or_abort(&pv_mig_blocker);
> + return rc;
> + }
> +
> /* Create SE VM */
> rc = s390_pv_vm_enable();
> if (rc) {
> + error_report_err(local_err);
> + migrate_del_blocker(pv_mig_blocker);
> + error_free_or_abort(&pv_mig_blocker);
> return rc;
> }
>
>
Reviewed-by: David Hildenbrand <address@hidden>
--
Thanks,
David / dhildenb
- Re: [PATCH v8 02/15] s390x: protvirt: Support unpack facility, (continued)
[PATCH v8 08/15] s390x: protvirt: SCLP interpretation, Janosch Frank, 2020/03/10
[PATCH v8 04/15] s390x: protvirt: Inhibit balloon when switching to protected mode, Janosch Frank, 2020/03/10
[PATCH v8 12/15] s390x: protvirt: Move IO control structures over SIDA, Janosch Frank, 2020/03/10
[PATCH v8 13/15] s390x: protvirt: Handle SIGP store status correctly, Janosch Frank, 2020/03/10