qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/14] KVM changes for 2014-08-28
@ 2014-08-28 14:08 Paolo Bonzini
  2014-08-28 14:09 ` [Qemu-devel] [PULL 01/14] kvm: run cpu state synchronization on target vcpu thread Paolo Bonzini
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Paolo Bonzini @ 2014-08-28 14:08 UTC (permalink / raw)
  To: qemu-devel

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

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2014-08-28 16:08 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-28 14:08 [Qemu-devel] [PULL 00/14] KVM changes for 2014-08-28 Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 01/14] kvm: run cpu state synchronization on target vcpu thread Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 02/14] cpus: Define callback for QEMU "nmi" command Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 03/14] s390x: Convert QEMUMachine to MachineClass Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 04/14] s390x: Migrate to new NMI interface Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 05/14] spapr: Add support for " Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 06/14] target-i386: Don't forbid NX bit on PAE PDEs and PTEs Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 07/14] x86: Use common variable range MTRR counts Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 08/14] x86: kvm: Add MTRR support for kvm_get|put_msrs() Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 09/14] x86: Clear MTRRs on vCPU reset Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 10/14] checkpatch.pl: adjust typedef definition to QEMU coding style Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 11/14] vl: process -object after other backend options Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 12/14] target-i386: Add "mpx" CPU feature name Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 13/14] target-i386: Add "tsc_adjust" " Paolo Bonzini
2014-08-28 14:09 ` [Qemu-devel] [PULL 14/14] mc146818rtc: reinitialize irq_reinject_on_ack_count on reset Paolo Bonzini
2014-08-28 16:07 ` [Qemu-devel] [PULL 00/14] KVM changes for 2014-08-28 Peter Maydell

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).