From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] migration: savevm: consult migration blockers
Date: Fri, 16 Nov 2018 17:12:26 +0000 [thread overview]
Message-ID: <20181116171226.GC2457@work-vm> (raw)
In-Reply-To: <20181116164806.26929-2-pbonzini@redhat.com>
* Paolo Bonzini (pbonzini@redhat.com) wrote:
> There is really no difference between live migration and savevm, except
> that savevm does not require bdrv_invalidate_cache to be implemented
> by all disks. However, it is unlikely that savevm is used with anything
> except qcow2 disks, so the penalty is small and worth the improvement
> in catching bad usage of savevm.
>
> Only one place was taking care of savevm when adding a migration blocker,
> and it can be removed.
OK, I'm not sure if it was actually a split between savevm and migration
or just that the migration blockers were added later.
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> migration/savevm.c | 4 ++++
> target/i386/kvm.c | 3 ---
> 2 files changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/migration/savevm.c b/migration/savevm.c
> index ef707b8c43..1c49776a91 100644
> --- a/migration/savevm.c
> +++ b/migration/savevm.c
> @@ -2455,6 +2455,10 @@ int save_snapshot(const char *name, Error **errp)
> struct tm tm;
> AioContext *aio_context;
>
> + if (migration_is_blocked(errp)) {
> + return false;
> + }
> +
> if (!replay_can_snapshot()) {
> error_setg(errp, "Record/replay does not allow making snapshot "
> "right now. Try once more later.");
> diff --git a/target/i386/kvm.c b/target/i386/kvm.c
> index 3b6fbd3f20..d222b68fe4 100644
> --- a/target/i386/kvm.c
> +++ b/target/i386/kvm.c
> @@ -1284,7 +1284,6 @@ int kvm_arch_init_vcpu(CPUState *cs)
> if (!env->user_tsc_khz) {
> if ((env->features[FEAT_8000_0007_EDX] & CPUID_APM_INVTSC) &&
> invtsc_mig_blocker == NULL) {
> - /* for migration */
> error_setg(&invtsc_mig_blocker,
> "State blocked by non-migratable CPU device"
> " (invtsc flag)");
> @@ -1294,8 +1293,6 @@ int kvm_arch_init_vcpu(CPUState *cs)
> error_free(invtsc_mig_blocker);
> return r;
> }
> - /* for savevm */
> - vmstate_x86_cpu.unmigratable = 1;
So that means vmstate_x86_cpu can be static now - but why does it live
in machine.c rather than cpu.c ?
Dave
> }
> }
>
> --
> 2.19.1
>
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
next prev parent reply other threads:[~2018-11-16 17:12 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-16 16:48 [Qemu-devel] [PATCH] target/i386: kvm: add VMX and SVM migration blockers Paolo Bonzini
2018-11-16 16:48 ` [Qemu-devel] [PATCH] migration: savevm: consult " Paolo Bonzini
2018-11-16 17:12 ` Dr. David Alan Gilbert [this message]
2018-11-19 18:20 ` Paolo Bonzini
2018-11-17 2:15 ` Wang, Wei W
2018-11-16 16:56 ` [Qemu-devel] [PATCH] target/i386: kvm: add VMX and SVM " Dr. David Alan Gilbert
2018-11-19 18:21 ` Paolo Bonzini
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=20181116171226.GC2457@work-vm \
--to=dgilbert@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@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).