From: "Michael S. Tsirkin" <mst@redhat.com>
To: Anthony Liguori <anthony@codemonkey.ws>,
avi@redhat.com, mtosatti@redhat.com, gleb@redhat.com,
qemu-devel@nongnu.org, kvm@vger.kernel.org,
Jan Kiszka <jan.kiszka@web.de>
Subject: [PATCHv2 0/4] migrate PV EOI MSR
Date: Mon, 27 Aug 2012 15:20:03 +0300 [thread overview]
Message-ID: <cover.1346069810.git.mst@redhat.com> (raw)
It turns out PV EOI gets disabled after migration -
until next guest reset.
This is because we are missing code to actually migrate it.
This patch fixes it up: it applies cleanly to qemu.git
as well as qemu-kvm.git, so I think it's cleaner
to apply it in qemu.git to keep diff to minimum.
Note: there's talk about adding infrastructure for
CPUID whitelisting which thinkably could be used
for migration compat support. I am guessing this won't be
1.2 material - when it's ready we can easily replace
a simple flag that this patchset adds with something else.
So this just adds minimal code to avoid regressing
cross-version migration.
Note: there's a kernel bug in linux 3.6-rc3 - apply
my patch 'kvm: fix KVM_GET_MSR for PV EOI' in order to
use this patchset on it.
Needed for 1.2.
Changes from v1:
Update all headers from 3.6-rc3 to keep them in sync (Jan)
Disable cpuid flag for qemu 1.2 and older (Orit)
Michael S. Tsirkin (4):
linux-headers: update to 3.6-rc3
pc: refactor compat code
cpuid: disable pv eoi for 1.1 and older compat types
kvm: get/set PV EOI MSR
hw/Makefile.objs | 2 +-
hw/cpu_flags.c | 32 +++++++++++++++++++++++++++
hw/cpu_flags.h | 9 ++++++++
hw/pc_piix.c | 46 ++++++++++++++++++++++++++++++++-------
linux-headers/asm-s390/kvm.h | 2 +-
linux-headers/asm-s390/kvm_para.h | 2 +-
linux-headers/asm-x86/kvm.h | 1 +
linux-headers/asm-x86/kvm_para.h | 7 ++++++
linux-headers/linux/kvm.h | 3 +++
target-i386/cpu.c | 8 +++++++
target-i386/cpu.h | 1 +
target-i386/kvm.c | 13 +++++++++++
target-i386/machine.c | 21 ++++++++++++++++++
13 files changed, 136 insertions(+), 11 deletions(-)
create mode 100644 hw/cpu_flags.c
create mode 100644 hw/cpu_flags.h
--
MST
WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Anthony Liguori <anthony@codemonkey.ws>,
avi@redhat.com, mtosatti@redhat.com, gleb@redhat.com,
qemu-devel@nongnu.org, kvm@vger.kernel.org,
Jan Kiszka <jan.kiszka@web.de>
Subject: [Qemu-devel] [PATCHv2 0/4] migrate PV EOI MSR
Date: Mon, 27 Aug 2012 15:20:03 +0300 [thread overview]
Message-ID: <cover.1346069810.git.mst@redhat.com> (raw)
It turns out PV EOI gets disabled after migration -
until next guest reset.
This is because we are missing code to actually migrate it.
This patch fixes it up: it applies cleanly to qemu.git
as well as qemu-kvm.git, so I think it's cleaner
to apply it in qemu.git to keep diff to minimum.
Note: there's talk about adding infrastructure for
CPUID whitelisting which thinkably could be used
for migration compat support. I am guessing this won't be
1.2 material - when it's ready we can easily replace
a simple flag that this patchset adds with something else.
So this just adds minimal code to avoid regressing
cross-version migration.
Note: there's a kernel bug in linux 3.6-rc3 - apply
my patch 'kvm: fix KVM_GET_MSR for PV EOI' in order to
use this patchset on it.
Needed for 1.2.
Changes from v1:
Update all headers from 3.6-rc3 to keep them in sync (Jan)
Disable cpuid flag for qemu 1.2 and older (Orit)
Michael S. Tsirkin (4):
linux-headers: update to 3.6-rc3
pc: refactor compat code
cpuid: disable pv eoi for 1.1 and older compat types
kvm: get/set PV EOI MSR
hw/Makefile.objs | 2 +-
hw/cpu_flags.c | 32 +++++++++++++++++++++++++++
hw/cpu_flags.h | 9 ++++++++
hw/pc_piix.c | 46 ++++++++++++++++++++++++++++++++-------
linux-headers/asm-s390/kvm.h | 2 +-
linux-headers/asm-s390/kvm_para.h | 2 +-
linux-headers/asm-x86/kvm.h | 1 +
linux-headers/asm-x86/kvm_para.h | 7 ++++++
linux-headers/linux/kvm.h | 3 +++
target-i386/cpu.c | 8 +++++++
target-i386/cpu.h | 1 +
target-i386/kvm.c | 13 +++++++++++
target-i386/machine.c | 21 ++++++++++++++++++
13 files changed, 136 insertions(+), 11 deletions(-)
create mode 100644 hw/cpu_flags.c
create mode 100644 hw/cpu_flags.h
--
MST
next reply other threads:[~2012-08-27 12:18 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-27 12:20 Michael S. Tsirkin [this message]
2012-08-27 12:20 ` [Qemu-devel] [PATCHv2 0/4] migrate PV EOI MSR Michael S. Tsirkin
2012-08-27 12:20 ` [PATCHv2 1/4] linux-headers: update to 3.6-rc3 Michael S. Tsirkin
2012-08-27 12:20 ` [Qemu-devel] " Michael S. Tsirkin
2012-08-27 12:42 ` Peter Maydell
2012-08-27 12:42 ` Peter Maydell
2012-08-27 12:48 ` Jan Kiszka
2012-08-27 12:48 ` Jan Kiszka
2012-08-27 14:53 ` Michael S. Tsirkin
2012-08-27 14:53 ` Michael S. Tsirkin
2012-08-27 14:59 ` Jan Kiszka
2012-08-27 14:59 ` [Qemu-devel] " Jan Kiszka
2012-08-27 18:48 ` Michael S. Tsirkin
2012-08-27 18:48 ` Michael S. Tsirkin
2012-08-27 14:50 ` Michael S. Tsirkin
2012-08-27 14:50 ` Michael S. Tsirkin
2012-08-27 12:20 ` [PATCHv2 2/4] pc: refactor compat code Michael S. Tsirkin
2012-08-27 12:20 ` [Qemu-devel] " Michael S. Tsirkin
2012-08-28 16:23 ` Marcelo Tosatti
2012-08-28 16:23 ` [Qemu-devel] " Marcelo Tosatti
2012-08-28 16:31 ` Michael S. Tsirkin
2012-08-28 16:31 ` [Qemu-devel] " Michael S. Tsirkin
2012-08-28 16:37 ` Marcelo Tosatti
2012-08-28 16:37 ` [Qemu-devel] " Marcelo Tosatti
2012-08-28 21:29 ` Michael S. Tsirkin
2012-08-28 21:29 ` [Qemu-devel] " Michael S. Tsirkin
2012-08-27 12:20 ` [PATCHv2 3/4] cpuid: disable pv eoi for 1.1 and older compat types Michael S. Tsirkin
2012-08-27 12:20 ` [Qemu-devel] " Michael S. Tsirkin
2012-08-27 18:58 ` Blue Swirl
2012-08-27 18:58 ` [Qemu-devel] " Blue Swirl
2012-08-27 19:06 ` Michael S. Tsirkin
2012-08-27 19:06 ` Michael S. Tsirkin
2012-08-27 19:12 ` Blue Swirl
2012-08-27 19:12 ` Blue Swirl
2012-08-27 19:24 ` Michael S. Tsirkin
2012-08-27 19:24 ` Michael S. Tsirkin
2012-08-27 19:40 ` Blue Swirl
2012-08-27 19:40 ` Blue Swirl
2012-08-28 15:46 ` Michael S. Tsirkin
2012-08-28 15:46 ` Michael S. Tsirkin
2012-08-28 17:02 ` malc
2012-08-28 17:02 ` malc
2012-08-28 21:50 ` Michael S. Tsirkin
2012-08-28 21:50 ` [Qemu-devel] " Michael S. Tsirkin
2012-08-28 19:13 ` Anthony Liguori
2012-08-28 19:13 ` [Qemu-devel] " Anthony Liguori
2012-08-28 19:40 ` Eduardo Habkost
2012-08-28 19:40 ` [Qemu-devel] " Eduardo Habkost
2012-08-28 21:41 ` Michael S. Tsirkin
2012-08-28 21:41 ` Michael S. Tsirkin
2012-08-28 21:40 ` Michael S. Tsirkin
2012-08-28 21:40 ` [Qemu-devel] " Michael S. Tsirkin
2012-08-27 12:20 ` [PATCHv2 4/4] kvm: get/set PV EOI MSR Michael S. Tsirkin
2012-08-27 12:20 ` [Qemu-devel] " Michael S. Tsirkin
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=cover.1346069810.git.mst@redhat.com \
--to=mst@redhat.com \
--cc=anthony@codemonkey.ws \
--cc=avi@redhat.com \
--cc=gleb@redhat.com \
--cc=jan.kiszka@web.de \
--cc=kvm@vger.kernel.org \
--cc=mtosatti@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.