From: Anthony Liguori <anthony@codemonkey.ws>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Anthony Liguori <aliguori@us.ibm.com>,
qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: Re: [Qemu-devel] [PATCH 00/31] [PULL] qemu-kvm.git uq/master queue
Date: Thu, 17 Feb 2011 20:00:45 -0000 [thread overview]
Message-ID: <4D487C05.40109@redhat.com> (raw)
In-Reply-To: <cover.1295859760.git.mtosatti@redhat.com>
On 01/24/2011 03:02 AM, Marcelo Tosatti wrote:
> The following changes since commit b646968336d4180bdd7d2e24209708dcee6ba400:
>
> checkpatch: adjust to QEMUisms (2011-01-20 20:58:56 +0000)
>
> are available in the git repository at:
> git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
>
> Jan Kiszka (23):
> kvm: x86: Fix DPL write back of segment registers
> kvm: x86: Remove obsolete SS.RPL/DPL aligment
> kvm: x86: Prevent sign extension of DR7 in guest debugging mode
> kvm: x86: Fix a few coding style violations
> kvm: Fix coding style violations
> kvm: x86: Swallow KVM_EXIT_SET_TPR
> kvm: Stop on all fatal exit reasons
> kvm: Improve reporting of fatal errors
> x86: Optionally dump code bytes on cpu_dump_state
> kvm: x86: Align kvm_arch_put_registers code with comment
> kvm: x86: Prepare kvm_get_mp_state for in-kernel irqchip
> kvm: x86: Remove redundant mp_state initialization
> kvm: x86: Fix xcr0 reset mismerge
> kvm: x86: Refactor msr_star/hsave_pa setup and checks
> kvm: x86: Reset paravirtual MSRs
> kvm: x86: Fix !CONFIG_KVM_PARA build
> kvm: Drop smp_cpus argument from init functions
> kvm: Consolidate must-have capability checks
> kvm: x86: Rework identity map and TSS setup for larger BIOS sizes
> kvm: Flush coalesced mmio buffer on IO window exits
> kvm: Do not use qemu_fair_mutex
> kvm: x86: Implicitly clear nmi_injected/pending on reset
> kvm: x86: Only read/write MSR_KVM_ASYNC_PF_EN if supported
>
Pulled, but this last change broke the build on 2.6.32.
I applied a one line fix to have another #ifdef KVM_CAP_ASYNC_PF_EN to
resolve it.
Regards,
Anthony Liguori
> Jin Dongming (6):
> Clean up cpu_inject_x86_mce()
> Add "broadcast" option for mce command
> Add function for checking mca broadcast of CPU
> kvm: introduce kvm_mce_in_progress
> kvm: kvm_mce_inj_* subroutines for templated error injections
> kvm: introduce kvm_inject_x86_mce_on
>
> Lai Jiangshan (2):
> kvm: Enable user space NMI injection for kvm guest
> kvm: convert kvm_ioctl(KVM_CHECK_EXTENSION) to kvm_check_extension()
>
> configure | 36 ++-
> cpu-all.h | 5 +-
> cpus.c | 2 -
> hmp-commands.hx | 6 +-
> kvm-all.c | 247 +++++++++--------
> kvm-stub.c | 2 +-
> kvm.h | 14 +-
> monitor.c | 7 +-
> target-i386/cpu.h | 9 +-
> target-i386/cpuid.c | 5 +-
> target-i386/helper.c | 97 ++++++-
> target-i386/kvm.c | 749 +++++++++++++++++++++++++++---------------------
> target-i386/kvm_x86.h | 5 +-
> target-ppc/kvm.c | 10 +-
> target-s390x/kvm.c | 6 +-
> vl.c | 2 +-
> 16 files changed, 714 insertions(+), 488 deletions(-)
>
>
>
prev parent reply other threads:[~2011-02-17 20:00 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-24 9:02 [Qemu-devel] [PATCH 00/31] [PULL] qemu-kvm.git uq/master queue Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 01/31] kvm: Enable user space NMI injection for kvm guest Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 02/31] kvm: convert kvm_ioctl(KVM_CHECK_EXTENSION) to kvm_check_extension() Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 03/31] Clean up cpu_inject_x86_mce() Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 04/31] Add "broadcast" option for mce command Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 05/31] Add function for checking mca broadcast of CPU Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 06/31] kvm: introduce kvm_mce_in_progress Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 07/31] kvm: kvm_mce_inj_* subroutines for templated error injections Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 08/31] kvm: introduce kvm_inject_x86_mce_on Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 09/31] kvm: x86: Fix DPL write back of segment registers Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 10/31] kvm: x86: Remove obsolete SS.RPL/DPL aligment Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 11/31] kvm: x86: Prevent sign extension of DR7 in guest debugging mode Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 12/31] kvm: x86: Fix a few coding style violations Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 13/31] kvm: Fix " Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 14/31] kvm: x86: Swallow KVM_EXIT_SET_TPR Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 15/31] kvm: Stop on all fatal exit reasons Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 16/31] kvm: Improve reporting of fatal errors Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 17/31] x86: Optionally dump code bytes on cpu_dump_state Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 18/31] kvm: x86: Align kvm_arch_put_registers code with comment Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 19/31] kvm: x86: Prepare kvm_get_mp_state for in-kernel irqchip Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 20/31] kvm: x86: Remove redundant mp_state initialization Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 21/31] kvm: x86: Fix xcr0 reset mismerge Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 22/31] kvm: x86: Refactor msr_star/hsave_pa setup and checks Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 23/31] kvm: x86: Reset paravirtual MSRs Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 24/31] kvm: x86: Fix !CONFIG_KVM_PARA build Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 25/31] kvm: Drop smp_cpus argument from init functions Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 26/31] kvm: Consolidate must-have capability checks Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 27/31] kvm: x86: Rework identity map and TSS setup for larger BIOS sizes Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 28/31] kvm: Flush coalesced mmio buffer on IO window exits Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 29/31] kvm: Do not use qemu_fair_mutex Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 30/31] kvm: x86: Implicitly clear nmi_injected/pending on reset Marcelo Tosatti
2011-01-24 9:02 ` [Qemu-devel] [PATCH 31/31] kvm: x86: Only read/write MSR_KVM_ASYNC_PF_EN if supported Marcelo Tosatti
2011-02-17 20:00 ` Anthony Liguori [this message]
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=4D487C05.40109@redhat.com \
--to=anthony@codemonkey.ws \
--cc=aliguori@us.ibm.com \
--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 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).