Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752196AbdHDUcm (ORCPT ); Fri, 4 Aug 2017 16:32:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40748 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751970AbdHDUcl (ORCPT ); Fri, 4 Aug 2017 16:32:41 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com BE1B66148E Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=rkrcmar@redhat.com Date: Fri, 4 Aug 2017 22:32:37 +0200 From: Radim =?utf-8?B?S3LEjW3DocWZ?= To: Linus Torvalds Cc: Paolo Bonzini , linux-kernel@vger.kernel.org, kvm@vger.kernel.org Subject: [GIT PULL] KVM fixes for v4.13-rc4 Message-ID: <20170804203237.GA1967@potion> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Fri, 04 Aug 2017 20:32:40 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2636 Lines: 75 Linus, The following changes since commit 16f73eb02d7e1765ccab3d2018e0bd98eb93d973: Linux 4.13-rc3 (2017-07-30 12:40:36 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/kvm tags/for-linus for you to fetch changes up to 53a5abd8392e5f6e5b134fe47eb9f2400256d93e: Merge tag 'kvm-arm-for-v4.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm (2017-08-03 17:59:58 +0200) ---------------------------------------------------------------- KVM fixes for v4.13-rc4 ARM: - Yet another race with VM destruction plugged - A set of small vgic fixes x86: - Preserve pending INIT - RCU fixes in paravirtual async pf, VM teardown, and VMXOFF emulation - nVMX interrupt injection and dirty tracking fixes - initialize to make UBSAN happy ---------------------------------------------------------------- Andrew Jones (1): KVM: arm/arm64: PMU: Fix overflow interrupt injection Christoffer Dall (1): KVM: arm/arm64: vgic: Use READ_ONCE fo cmpxchg David Matlack (2): kvm: nVMX: don't flush VMCS12 during VMXOFF or VCPU teardown KVM: nVMX: mark vmcs12 pages dirty on L2 exit Longpeng(Mike) (1): KVM: X86: init irq->level in kvm_pv_kick_cpu_op Paolo Bonzini (4): KVM: nVMX: do not fill vm_exit_intr_error_code in prepare_vmcs12 KVM: nVMX: fixes to nested virt interrupt injection KVM: avoid using rcu_dereference_protected KVM: nVMX: do not pin the VMCS12 Radim Krčmář (1): Merge tag 'kvm-arm-for-v4.13-rc4' of git://git.kernel.org/.../kvmarm/kvmarm Shanker Donthineni (1): KVM: arm/arm64: Fix bug in advertising KVM_CAP_MSI_DEVID capability Suzuki K Poulose (1): KVM: arm/arm64: Handle hva aging while destroying the vm Wanpeng Li (3): KVM: async_pf: make rcu irq exit if not triggered from idle task KVM: X86: Fix loss of pending INIT due to race KVM: nVMX: Fix interrupt window request with "Acknowledge interrupt on exit" arch/arm64/kvm/sys_regs.c | 2 +- arch/x86/kernel/kvm.c | 6 +- arch/x86/kvm/svm.c | 10 ++ arch/x86/kvm/vmx.c | 237 +++++++++++++++++++++++++++------------ arch/x86/kvm/x86.c | 20 ++-- include/kvm/arm_pmu.h | 2 - include/linux/kvm_host.h | 6 +- virt/kvm/arm/mmu.c | 4 + virt/kvm/arm/pmu.c | 43 +++---- virt/kvm/arm/vgic/vgic-init.c | 3 - virt/kvm/arm/vgic/vgic-its.c | 1 + virt/kvm/arm/vgic/vgic-mmio-v3.c | 4 +- virt/kvm/kvm_main.c | 11 +- 13 files changed, 220 insertions(+), 129 deletions(-)