qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Marcelo Tosatti <mtosatti@redhat.com>
To: Anthony Liguori <aliguori@us.ibm.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>,
	qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: [Qemu-devel] [PATCH 00/15] [PULL] qemu-kvm.git uq/master queue
Date: Tue, 21 Jun 2011 14:07:49 -0300	[thread overview]
Message-ID: <cover.1308676083.git.mtosatti@redhat.com> (raw)

The following changes since commit eb47d7c5d96060040931c42773ee07e61e547af9:

  hw/9118.c: Implement active-low interrupt support (2011-06-15 13:23:37 +0200)

are available in the git repository at:
  git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master

Andre Przywara (1):
      KVM: Fix XSAVE feature bit enumeration

Jan Kiszka (13):
      kvm: x86: Save/restore FPU OP, IP and DP
      Add kernel header update script
      Import kernel headers
      Switch build system to accompanied kernel headers
      kvm: Drop CONFIG_KVM_PARA
      kvm: ppc: Drop CONFIG_KVM_PPC_PVR
      kvm: Drop useless zero-initializations
      kvm: Drop KVM_CAP build dependencies
      kvm: x86: Drop KVM_CAP build dependencies
      kvm: ppc: Drop KVM_CAP build dependencies
      kvm: Clean up stubs
      kvm: x86: Pass KVMState to kvm_arch_get_supported_cpuid
      Remove unneeded kvm.h from cpu-exec.c

Marcelo Tosatti (1):
      kvm: fix FPU state subsection

 Makefile.target                      |    4 +-
 configure                            |  149 +------
 cpu-exec.c                           |    1 -
 hw/kvmclock.c                        |    9 -
 kvm-all.c                            |   13 -
 kvm-stub.c                           |   18 +-
 kvm.h                                |    2 +-
 linux-headers/COPYING                |  356 +++++++++++++++
 linux-headers/README                 |    2 +
 linux-headers/asm-powerpc/kvm.h      |  275 ++++++++++++
 linux-headers/asm-powerpc/kvm_para.h |   53 +++
 linux-headers/asm-s390/kvm.h         |   44 ++
 linux-headers/asm-s390/kvm_para.h    |   17 +
 linux-headers/asm-x86/hyperv.h       |  193 ++++++++
 linux-headers/asm-x86/kvm.h          |  324 ++++++++++++++
 linux-headers/asm-x86/kvm_para.h     |   79 ++++
 linux-headers/linux/kvm.h            |  804 ++++++++++++++++++++++++++++++++++
 linux-headers/linux/kvm_para.h       |   28 ++
 linux-headers/linux/vhost.h          |  130 ++++++
 linux-headers/linux/virtio_config.h  |   54 +++
 linux-headers/linux/virtio_ring.h    |  163 +++++++
 scripts/update-linux-headers.sh      |   55 +++
 target-i386/cpu.h                    |    4 +
 target-i386/cpuid.c                  |   20 +-
 target-i386/kvm.c                    |  148 ++-----
 target-i386/machine.c                |   23 +
 target-ppc/kvm.c                     |   23 -
 target-s390x/cpu.h                   |   10 -
 target-s390x/op_helper.c             |    1 +
 29 files changed, 2675 insertions(+), 327 deletions(-)
 create mode 100644 linux-headers/COPYING
 create mode 100644 linux-headers/README
 create mode 100644 linux-headers/asm-powerpc/kvm.h
 create mode 100644 linux-headers/asm-powerpc/kvm_para.h
 create mode 100644 linux-headers/asm-s390/kvm.h
 create mode 100644 linux-headers/asm-s390/kvm_para.h
 create mode 100644 linux-headers/asm-x86/hyperv.h
 create mode 100644 linux-headers/asm-x86/kvm.h
 create mode 100644 linux-headers/asm-x86/kvm_para.h
 create mode 100644 linux-headers/linux/kvm.h
 create mode 100644 linux-headers/linux/kvm_para.h
 create mode 100644 linux-headers/linux/vhost.h
 create mode 100644 linux-headers/linux/virtio_config.h
 create mode 100644 linux-headers/linux/virtio_ring.h
 create mode 100755 scripts/update-linux-headers.sh

             reply	other threads:[~2011-06-21 17:09 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-21 17:07 Marcelo Tosatti [this message]
2011-06-21 17:07 ` [Qemu-devel] [PATCH 01/15] kvm: x86: Save/restore FPU OP, IP and DP Marcelo Tosatti
2011-06-21 17:07 ` [Qemu-devel] [PATCH 02/15] Add kernel header update script Marcelo Tosatti
2011-06-21 17:07 ` [Qemu-devel] [PATCH 03/15] Import kernel headers Marcelo Tosatti
2011-06-21 17:07 ` [Qemu-devel] [PATCH 04/15] Switch build system to accompanied " Marcelo Tosatti
2011-06-21 17:07 ` [Qemu-devel] [PATCH 05/15] kvm: Drop CONFIG_KVM_PARA Marcelo Tosatti
2011-06-21 17:07 ` [Qemu-devel] [PATCH 06/15] kvm: ppc: Drop CONFIG_KVM_PPC_PVR Marcelo Tosatti
2011-06-21 17:07 ` [Qemu-devel] [PATCH 07/15] kvm: Drop useless zero-initializations Marcelo Tosatti
2011-06-21 17:07 ` [Qemu-devel] [PATCH 08/15] kvm: Drop KVM_CAP build dependencies Marcelo Tosatti
2011-06-21 17:07 ` [Qemu-devel] [PATCH 09/15] kvm: x86: " Marcelo Tosatti
2011-06-21 17:07 ` [Qemu-devel] [PATCH 10/15] kvm: ppc: " Marcelo Tosatti
2011-06-21 17:08 ` [Qemu-devel] [PATCH 11/15] kvm: Clean up stubs Marcelo Tosatti
2011-06-21 17:08 ` [Qemu-devel] [PATCH 12/15] kvm: x86: Pass KVMState to kvm_arch_get_supported_cpuid Marcelo Tosatti
2011-06-21 17:08 ` [Qemu-devel] [PATCH 13/15] Remove unneeded kvm.h from cpu-exec.c Marcelo Tosatti
2011-06-21 17:08 ` [Qemu-devel] [PATCH 14/15] KVM: Fix XSAVE feature bit enumeration Marcelo Tosatti
2011-06-21 17:08 ` [Qemu-devel] [PATCH 15/15] kvm: fix FPU state subsection Marcelo Tosatti
2011-06-22 12:57 ` [Qemu-devel] [PATCH 00/15] [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.1308676083.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;
as well as URLs for NNTP newsgroup(s).