From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41517 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PqA1s-0005TM-AJ for qemu-devel@nongnu.org; Thu, 17 Feb 2011 15:00:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PqA1r-0002lS-66 for qemu-devel@nongnu.org; Thu, 17 Feb 2011 15:00:44 -0500 Received: from mail-qy0-f180.google.com ([209.85.216.180]:36793) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PqA1r-0002gM-3T for qemu-devel@nongnu.org; Thu, 17 Feb 2011 15:00:43 -0500 Received: by mail-qy0-f180.google.com with SMTP id 29so3171148qyk.4 for ; Thu, 17 Feb 2011 12:00:42 -0800 (PST) Message-ID: <4D487C05.40109@redhat.com> From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 00/31] [PULL] qemu-kvm.git uq/master queue References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Thu, 17 Feb 2011 20:00:45 -0000 To: Marcelo Tosatti Cc: Anthony Liguori , qemu-devel@nongnu.org, kvm@vger.kernel.org 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(-) > > >