From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=35252 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P8gh8-0004RU-Fq for qemu-devel@nongnu.org; Wed, 20 Oct 2010 17:59:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P8gh7-0007o2-ES for qemu-devel@nongnu.org; Wed, 20 Oct 2010 17:59:38 -0400 Received: from e36.co.us.ibm.com ([32.97.110.154]:43930) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P8gh7-0007nr-7x for qemu-devel@nongnu.org; Wed, 20 Oct 2010 17:59:37 -0400 Received: from d03relay01.boulder.ibm.com (d03relay01.boulder.ibm.com [9.17.195.226]) by e36.co.us.ibm.com (8.14.4/8.13.1) with ESMTP id o9KLtNuW020446 for ; Wed, 20 Oct 2010 15:55:23 -0600 Received: from d03av05.boulder.ibm.com (d03av05.boulder.ibm.com [9.17.195.85]) by d03relay01.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o9KLxZrU156166 for ; Wed, 20 Oct 2010 15:59:35 -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 o9KLxZGa015706 for ; Wed, 20 Oct 2010 15:59:35 -0600 Message-ID: <4CBF6647.3030807@linux.vnet.ibm.com> Date: Wed, 20 Oct 2010 16:59:35 -0500 From: Anthony Liguori MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Marcelo Tosatti Cc: Anthony Liguori , qemu-devel@nongnu.org, kvm@vger.kernel.org On 10/20/2010 12:43 PM, Marcelo Tosatti wrote: > The following changes since commit 38cc9b607f85017b095793cab6c129bc9844f441: > > issue snd_pcm_start() when capturing audio (2010-10-18 00:39:06 +0400) > > are available in the git repository at: > git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master > Pulled (with additional build fixes). Regards, Anthony Liguori > Huang Ying (1): > Add RAM -> physical addr mapping in MCE simulation > > Joerg Roedel (2): > Set cpuid definition to 0 before initializing it > Add svm cpuid features > > Marcelo Tosatti (7): > signalfd compatibility > iothread: use signalfd > kvm: x86: add mce support > Export qemu_ram_addr_from_host > MCE: Relay UCR MCE to guest > Add savevm/loadvm support for MCE > Fix memory leak in register save load due to xsave support > > Makefile.objs | 1 + > compatfd.c | 117 ++++++++++++++++++ > compatfd.h | 43 +++++++ > configure | 18 +++ > cpu-common.h | 3 +- > cpus.c | 156 ++++++++++++++++++++++-- > exec-all.h | 2 +- > exec.c | 26 +++-- > kvm-all.c | 18 +++ > kvm-stub.c | 5 + > kvm.h | 9 ++ > target-i386/cpu.h | 32 +++++- > target-i386/cpuid.c | 79 ++++++++++--- > target-i386/helper.c | 6 + > target-i386/kvm.c | 311 ++++++++++++++++++++++++++++++++++++++++++++++++- > target-i386/kvm_x86.h | 22 ++++ > 16 files changed, 801 insertions(+), 47 deletions(-) > create mode 100644 compatfd.c > create mode 100644 compatfd.h > create mode 100644 target-i386/kvm_x86.h >