public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Marcelo Tosatti <mtosatti@redhat.com>
To: Anthony Liguori <aliguori@us.ibm.com>
Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org,
	Marcelo Tosatti <mtosatti@redhat.com>
Subject: [PATCH 00/31] [PULL] qemu-kvm.git uq/master queue
Date: Mon, 24 Jan 2011 07:02:09 -0200	[thread overview]
Message-ID: <cover.1295859760.git.mtosatti@redhat.com> (raw)

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

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

             reply	other threads:[~2011-01-24  9:05 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-24  9:02 Marcelo Tosatti [this message]
2011-01-24  9:02 ` [PATCH 01/31] kvm: Enable user space NMI injection for kvm guest Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 02/31] kvm: convert kvm_ioctl(KVM_CHECK_EXTENSION) to kvm_check_extension() Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 03/31] Clean up cpu_inject_x86_mce() Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 04/31] Add "broadcast" option for mce command Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 05/31] Add function for checking mca broadcast of CPU Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 06/31] kvm: introduce kvm_mce_in_progress Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 07/31] kvm: kvm_mce_inj_* subroutines for templated error injections Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 08/31] kvm: introduce kvm_inject_x86_mce_on Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 09/31] kvm: x86: Fix DPL write back of segment registers Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 10/31] kvm: x86: Remove obsolete SS.RPL/DPL aligment Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 11/31] kvm: x86: Prevent sign extension of DR7 in guest debugging mode Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 12/31] kvm: x86: Fix a few coding style violations Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 13/31] kvm: Fix " Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 14/31] kvm: x86: Swallow KVM_EXIT_SET_TPR Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 15/31] kvm: Stop on all fatal exit reasons Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 16/31] kvm: Improve reporting of fatal errors Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 17/31] x86: Optionally dump code bytes on cpu_dump_state Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 18/31] kvm: x86: Align kvm_arch_put_registers code with comment Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 19/31] kvm: x86: Prepare kvm_get_mp_state for in-kernel irqchip Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 20/31] kvm: x86: Remove redundant mp_state initialization Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 21/31] kvm: x86: Fix xcr0 reset mismerge Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 22/31] kvm: x86: Refactor msr_star/hsave_pa setup and checks Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 23/31] kvm: x86: Reset paravirtual MSRs Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 24/31] kvm: x86: Fix !CONFIG_KVM_PARA build Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 25/31] kvm: Drop smp_cpus argument from init functions Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 26/31] kvm: Consolidate must-have capability checks Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 27/31] kvm: x86: Rework identity map and TSS setup for larger BIOS sizes Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 28/31] kvm: Flush coalesced mmio buffer on IO window exits Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 29/31] kvm: Do not use qemu_fair_mutex Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 30/31] kvm: x86: Implicitly clear nmi_injected/pending on reset Marcelo Tosatti
2011-01-24  9:02 ` [PATCH 31/31] kvm: x86: Only read/write MSR_KVM_ASYNC_PF_EN if supported Marcelo Tosatti
2011-02-01 21:32 ` [Qemu-devel] [PATCH 00/31] [PULL] qemu-kvm.git uq/master queue Anthony Liguori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1295859760.git.mtosatti@redhat.com \
    --to=mtosatti@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=kvm@vger.kernel.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox