From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:36357) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZN00-0003IB-8y for qemu-devel@nongnu.org; Wed, 22 Jun 2011 08:57:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QZMzy-0008QL-Ho for qemu-devel@nongnu.org; Wed, 22 Jun 2011 08:57:40 -0400 Received: from e37.co.us.ibm.com ([32.97.110.158]:57576) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZMzy-0008Q8-6M for qemu-devel@nongnu.org; Wed, 22 Jun 2011 08:57:38 -0400 Received: from d03relay05.boulder.ibm.com (d03relay05.boulder.ibm.com [9.17.195.107]) by e37.co.us.ibm.com (8.14.4/8.13.1) with ESMTP id p5MCsXj4000435 for ; Wed, 22 Jun 2011 06:54:33 -0600 Received: from d03av05.boulder.ibm.com (d03av05.boulder.ibm.com [9.17.195.85]) by d03relay05.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p5MCvAiG202568 for ; Wed, 22 Jun 2011 06:57:14 -0600 Received: from d03av05.boulder.ibm.com (loopback [127.0.0.1]) by d03av05.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p5MCv9jO000380 for ; Wed, 22 Jun 2011 06:57:09 -0600 Message-ID: <4E01E6A5.7030802@us.ibm.com> Date: Wed, 22 Jun 2011 07:57:09 -0500 From: Anthony Liguori MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 00/15] [PULL] qemu-kvm.git uq/master queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Marcelo Tosatti Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org On 06/21/2011 12:07 PM, Marcelo Tosatti wrote: > 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 Pulled. Thanks. Regards, Anthony Liguori > > 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 > >