From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45186) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQ7dY-0007e9-Nh for qemu-devel@nongnu.org; Thu, 21 Jul 2016 02:39:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bQ7dV-0003Sj-J3 for qemu-devel@nongnu.org; Thu, 21 Jul 2016 02:39:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40109) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQ7dV-0003ST-DA for qemu-devel@nongnu.org; Thu, 21 Jul 2016 02:39:09 -0400 Date: Thu, 21 Jul 2016 14:39:04 +0800 From: Peter Xu Message-ID: <20160721063904.GA32544@pxdev.xzpeter.org> References: <1468950176-31959-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PULL v2 00/55] pc, pci, virtio: new features, cleanups, fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: "Michael S. Tsirkin" , QEMU Developers On Wed, Jul 20, 2016 at 05:01:17PM +0100, Peter Maydell wrote: > On 19 July 2016 at 23:29, Michael S. Tsirkin wrote: > > The following changes since commit 3913d3707e3debfbf0d2d014a1a7933949= 93b088: > > > > Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-2.7-2016= 0718' into staging (2016-07-18 11:24:15 +0100) > > > > are available in the git repository at: > > > > git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstrea= m > > > > for you to fetch changes up to 9f156487b55e4d3385e63ef32d1368b33774e1= b4: > > > > virtio: Update migration docs (2016-07-19 20:37:39 +0300) > > > > ---------------------------------------------------------------- > > pc, pci, virtio: new features, cleanups, fixes > > > > - interrupt remapping for intel iommus > > - a bunch of virtio cleanups > > - fixes all over the place > > > > Signed-off-by: Michael S. Tsirkin >=20 > Hi. I'm afraid this doesn't build for win32: >=20 > /home/petmay01/linaro/qemu-for-merges/hw/i386/intel_iommu.c: In > function =E2=80=98vtd_remap_irq_get=E2=80=99: > /home/petmay01/linaro/qemu-for-merges/hw/i386/intel_iommu.c:2095:5: > error: implicit declaration of function =E2=80=98bzero=E2=80=99 > [-Werror=3Dimplicit-function-declaration] > bzero(&irte, sizeof(irte)); > ^ > /home/petmay01/linaro/qemu-for-merges/hw/i386/intel_iommu.c:2095:5: > error: incompatible implicit declaration of built-in function =E2=80=98= bzero=E2=80=99 > [-Werror] >=20 > Don't use bzero(), use memset() (bzero() isn't POSIX). Sorry, my fault. Will be careful next time. -- peterx