From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58342) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XN0OE-0000jY-Sd for qemu-devel@nongnu.org; Thu, 28 Aug 2014 10:09:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XN0O7-00014M-Je for qemu-devel@nongnu.org; Thu, 28 Aug 2014 10:09:26 -0400 Received: from mail-wg0-x234.google.com ([2a00:1450:400c:c00::234]:54449) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XN0O7-00014A-DT for qemu-devel@nongnu.org; Thu, 28 Aug 2014 10:09:19 -0400 Received: by mail-wg0-f52.google.com with SMTP id m15so807532wgh.35 for ; Thu, 28 Aug 2014 07:09:18 -0700 (PDT) Received: from playground.station (net-37-116-212-108.cust.vodafonedsl.it. [37.116.212.108]) by mx.google.com with ESMTPSA id mv14sm35947136wic.20.2014.08.28.07.09.16 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 28 Aug 2014 07:09:17 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 28 Aug 2014 16:08:59 +0200 Message-Id: <1409234953-20742-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 00/14] KVM changes for 2014-08-28 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The following changes since commit 2656eb7c599e306b95bad82b1372fc49ba3088f6: Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140819' into staging (2014-08-20 09:55:42 +0100) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git tags/for-upstream for you to fetch changes up to 172dbc52b39c86d7569af5251cca78cb2c74c912: mc146818rtc: reinitialize irq_reinject_on_ack_count on reset (2014-08-27 17:54:52 +0200) ---------------------------------------------------------------- Mostly bugfixes + Alexey's interface-based implementation of the NMI monitor command. ---------------------------------------------------------------- Alex Williamson (3): x86: Use common variable range MTRR counts x86: kvm: Add MTRR support for kvm_get|put_msrs() x86: Clear MTRRs on vCPU reset Alexey Kardashevskiy (4): cpus: Define callback for QEMU "nmi" command s390x: Convert QEMUMachine to MachineClass s390x: Migrate to new NMI interface spapr: Add support for new NMI interface David Hildenbrand (1): kvm: run cpu state synchronization on target vcpu thread Eduardo Habkost (2): target-i386: Add "mpx" CPU feature name target-i386: Add "tsc_adjust" CPU feature name Paolo Bonzini (3): checkpatch.pl: adjust typedef definition to QEMU coding style vl: process -object after other backend options mc146818rtc: reinitialize irq_reinject_on_ack_count on reset William Grant (1): target-i386: Don't forbid NX bit on PAE PDEs and PTEs cpus.c | 17 +------- hmp-commands.hx | 6 +-- hw/core/Makefile.objs | 1 + hw/core/nmi.c | 84 +++++++++++++++++++++++++++++++++++++ hw/ppc/spapr.c | 21 ++++++++++ hw/s390x/s390-virtio-ccw.c | 49 +++++++++++++++------- hw/s390x/s390-virtio.c | 59 ++++++++++++++++++-------- hw/s390x/s390-virtio.h | 3 ++ hw/timer/mc146818rtc.c | 1 + include/hw/nmi.h | 49 ++++++++++++++++++++++ kvm-all.c | 18 +++++++- qapi-schema.json | 4 +- qmp-commands.hx | 3 +- scripts/checkpatch.pl | 8 +++- target-i386/cpu.c | 14 ++++++- target-i386/cpu.h | 4 +- target-i386/helper.c | 4 +- target-i386/kvm.c | 101 ++++++++++++++++++++++++++++++++++++++++++++- target-i386/machine.c | 2 +- target-ppc/cpu-qom.h | 1 + target-ppc/excp_helper.c | 8 ++++ vl.c | 10 ++--- 22 files changed, 394 insertions(+), 73 deletions(-) create mode 100644 hw/core/nmi.c create mode 100644 include/hw/nmi.h -- 1.8.3.1