From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53577) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQAwk-0005u2-Q4 for qemu-devel@nongnu.org; Sun, 29 Sep 2013 02:57:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VQAwe-0002Sc-O6 for qemu-devel@nongnu.org; Sun, 29 Sep 2013 02:57:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:25444) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VQAwe-0002SY-EV for qemu-devel@nongnu.org; Sun, 29 Sep 2013 02:57:32 -0400 Date: Sun, 29 Sep 2013 09:59:50 +0300 From: "Michael S. Tsirkin" Message-ID: <1380437951-21788-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 00/14] pc,pci,virtio fixes and cleanups List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: imammedo@redhat.com, hpoussin@reactos.org, armbru@redhat.com The following changes since commit 2d1fe1873a984d1c2c89ffa3d12949cafc7185= 51: Merge remote-tracking branch 'pmaydell/tags/pull-target-arm-20130910' i= nto staging (2013-09-11 14:46:52 -0500) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_anthony for you to fetch changes up to e26d3e734650640fabd7d95ace4f3a6f88725e0b: smbios: Factor out smbios_maybe_add_str() (2013-09-28 23:49:39 +0300) ---------------------------------------------------------------- pc,pci,virtio fixes and cleanups This includes pc and pci cleanups and enhancements, and a virtio-net bugfix related to softmac programming. Signed-off-by: Michael S. Tsirkin ---------------------------------------------------------------- Herv=E9 Poussineau (1): pci: remove explicit check to 64K ioport size Markus Armbruster (5): smbios: Normalize smbios_entry_add()'s error handling to exit(1) smbios: Convert to QemuOpts smbios: Improve diagnostics for conflicting entries smbios: Make multiple -smbios type=3D accumulate sanely smbios: Factor out smbios_maybe_add_str() Michael S. Tsirkin (8): q35: make pci window address/size match guest cfg range: add Range to typedefs range: add min/max operations on ranges pci: add helper to retrieve the 64-bit range q35: use 64 bit window programmed by guest piix: use 64 bit window programmed by guest piix4: disable io on reset virtio-net: fix up HMP NIC info string on reset include/hw/i386/smbios.h | 5 +- include/hw/pci/pci.h | 1 + include/qemu/range.h | 20 ++- include/qemu/typedefs.h | 1 + include/sysemu/arch_init.h | 2 +- include/sysemu/sysemu.h | 1 + arch_init.c | 9 +- hw/acpi/piix4.c | 1 + hw/i386/smbios.c | 339 ++++++++++++++++++++++++++++++++-------= ------ hw/net/virtio-net.c | 1 + hw/pci-host/piix.c | 14 +- hw/pci-host/q35.c | 24 +++- hw/pci/pci.c | 56 +++++++- vl.c | 5 +- 14 files changed, 359 insertions(+), 120 deletions(-) --=20 MST