From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753246AbcKSTn7 (ORCPT ); Sat, 19 Nov 2016 14:43:59 -0500 Received: from mx1.redhat.com ([209.132.183.28]:50648 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753096AbcKSTn4 (ORCPT ); Sat, 19 Nov 2016 14:43:56 -0500 Date: Sat, 19 Nov 2016 20:43:52 +0100 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.9-rc6 Message-ID: <20161119194352.GI26213@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.38]); Sat, 19 Nov 2016 19:43:56 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Linus, this pull request contains two fixes for recent syzkaller reports and more fixes are expected for rc7. The following changes since commit a25f0944ba9b1d8a6813fd6f1a86f1bd59ac25a6: Linux 4.9-rc5 (2016-11-13 10:32:32 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/kvm.git tags/for-linus for you to fetch changes up to a2b07739ff5ded8ca7e9c7ff0749ed6f0d36aee2: kvm: x86: merge kvm_arch_set_irq and kvm_arch_set_irq_inatomic (2016-11-19 19:04:19 +0100) ---------------------------------------------------------------- KVM fixes for v4.9-rc6 ARM: - Fix handling of the 32bit cycle counter - Fix cycle counter filtering x86: - Fix a race leading to double unregistering of user notifiers - Amend oversight in kvm_arch_set_irq that turned Hyper-V code dead - Use SRCU around kvm_lapic_set_vapic_addr - Avoid recursive flushing of asynchronous page faults - Do not rely on deferred update in KVM_GET_CLOCK, which fixes #GP - Let userspace know that KVM_GET_CLOCK is useful with master clock; 4.9 changed the return value to better match the guest clock, but didn't provide means to let guests take advantage of it ---------------------------------------------------------------- Ignacio Alvarado (1): KVM: Disable irq while unregistering user notifier Paolo Bonzini (5): KVM: x86: do not go through vcpu in __get_kvmclock_ns kvm: kvmclock: let KVM_GET_CLOCK return whether the master clock is in use KVM: async_pf: avoid recursive flushing of work items KVM: x86: fix missed SRCU usage in kvm_lapic_set_vapic_addr kvm: x86: merge kvm_arch_set_irq and kvm_arch_set_irq_inatomic Radim Krčmář (1): Merge tag 'kvm-arm-for-4.9-rc6' of git://git.kernel.org/.../kvmarm/kvmarm Wei Huang (2): arm64: KVM: pmu: Fix AArch32 cycle counter access KVM: arm64: Fix the issues when guest PMCCFILTR is configured Documentation/virtual/kvm/api.txt | 11 +++++++ arch/arm64/include/asm/perf_event.h | 10 ++++++- arch/arm64/kernel/perf_event.c | 10 +------ arch/arm64/kvm/sys_regs.c | 10 +++++-- arch/x86/kvm/irq_comm.c | 58 +++++++++++++++++-------------------- arch/x86/kvm/x86.c | 47 +++++++++++++++++++++--------- include/uapi/linux/kvm.h | 7 +++++ virt/kvm/arm/pmu.c | 8 +++-- virt/kvm/async_pf.c | 13 ++++++++- 9 files changed, 114 insertions(+), 60 deletions(-)