qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/14] pc,pci,virtio fixes and cleanups
@ 2013-08-26 16:42 Michael S. Tsirkin
  2013-08-26 16:43 ` [Qemu-devel] [PULL 01/14] pc: cleanup 1.4 compat support Michael S. Tsirkin
                   ` (13 more replies)
  0 siblings, 14 replies; 17+ messages in thread
From: Michael S. Tsirkin @ 2013-08-26 16:42 UTC (permalink / raw)
  To: qemu-devel, Anthony Liguori
  Cc: ehabkost, mst, armbru, yin.yin, agraf, alex.williamson, lersek

The following changes since commit ecfe10c9a6f9bc77d0e4b7eb5d0f5d61e8fbaed8:

  Merge remote-tracking branch 'pmaydell/tags/pull-target-arm-20130820' into staging (2013-08-20 11:23: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 1ae2757c6c4525c9b42f408c86818f843bad7418:

  virtio: virtqueue_get_avail_bytes: fix desc_pa when loop over the indirect descriptor table (2013-08-25 12:52:33 +0300)

----------------------------------------------------------------
pc,pci,virtio fixes and cleanups

This includes pc and pci cleanups, future-proofing of ROM files,
and a virtio bugfix correcting splice on virtio console.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>

----------------------------------------------------------------
Alex Williamson (1):
      q35: Add PCIe switch to example q35 configuration

Eduardo Habkost (4):
      pc: Kill pc_init_pci_1_0()
      pc: Create pc_compat_*() functions
      pc: pc_compat_1_4() now can call pc_compat_1_5()
      pc_piix: Kill pc_init1() memory region args

Markus Armbruster (5):
      sun4: Don't prematurely explode QEMUMachineInitArgs
      ppc: Don't explode QEMUMachineInitArgs into local variables needlessly
      ppc: Don't duplicate QEMUMachineInitArgs in PPCE500Params
      pc: Don't prematurely explode QEMUMachineInitArgs
      pc: Don't explode QEMUMachineInitArgs into local variables needlessly

Michael S. Tsirkin (3):
      pc: cleanup 1.4 compat support
      arch_init: align MR size to target page size
      loader: store FW CFG ROM files in RAM

yinyin (1):
      virtio: virtqueue_get_avail_bytes: fix desc_pa when loop over the indirect descriptor table

 arch_init.c          |   3 +-
 docs/q35-chipset.cfg |  23 +++++++++
 hw/core/loader.c     |  49 +++++++++++++++++--
 hw/i386/pc_piix.c    | 129 ++++++++++++++++++++++++---------------------------
 hw/i386/pc_q35.c     |  53 +++++++++++++--------
 hw/ppc/e500.c        |  35 +++++++-------
 hw/ppc/e500.h        |  13 ++----
 hw/ppc/e500plat.c    |  14 +-----
 hw/ppc/mpc8544ds.c   |  14 +-----
 hw/sparc/sun4m.c     | 113 ++++++++++----------------------------------
 hw/sparc64/sun4u.c   |  52 ++++++---------------
 hw/virtio/virtio.c   |   2 +-
 include/hw/loader.h  |   1 +
 13 files changed, 231 insertions(+), 270 deletions(-)

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [Qemu-devel] [PULL 00/14] pc,pci,virtio fixes and cleanups
@ 2013-09-29  6:59 Michael S. Tsirkin
  0 siblings, 0 replies; 17+ messages in thread
From: Michael S. Tsirkin @ 2013-09-29  6:59 UTC (permalink / raw)
  To: qemu-devel; +Cc: imammedo, hpoussin, armbru

The following changes since commit 2d1fe1873a984d1c2c89ffa3d12949cafc718551:

  Merge remote-tracking branch 'pmaydell/tags/pull-target-arm-20130910' into 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 <mst@redhat.com>

----------------------------------------------------------------
Hervé 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= 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(-)

-- 
MST

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2013-09-29  6:57 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-26 16:42 [Qemu-devel] [PULL 00/14] pc,pci,virtio fixes and cleanups Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 01/14] pc: cleanup 1.4 compat support Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 02/14] arch_init: align MR size to target page size Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 03/14] loader: store FW CFG ROM files in RAM Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 04/14] q35: Add PCIe switch to example q35 configuration Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 05/14] sun4: Don't prematurely explode QEMUMachineInitArgs Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 06/14] ppc: Don't explode QEMUMachineInitArgs into local variables needlessly Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 07/14] ppc: Don't duplicate QEMUMachineInitArgs in PPCE500Params Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 08/14] pc: Don't prematurely explode QEMUMachineInitArgs Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 09/14] pc: Don't explode QEMUMachineInitArgs into local variables needlessly Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 10/14] pc: Kill pc_init_pci_1_0() Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 11/14] pc: Create pc_compat_*() functions Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 12/14] pc: pc_compat_1_4() now can call pc_compat_1_5() Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 13/14] pc_piix: Kill pc_init1() memory region args Michael S. Tsirkin
2013-08-26 16:43 ` [Qemu-devel] [PULL 14/14] virtio: virtqueue_get_avail_bytes: fix desc_pa when loop over the indirect descriptor table Michael S. Tsirkin
2013-08-28  9:24   ` Amos Kong
  -- strict thread matches above, loose matches on Subject: below --
2013-09-29  6:59 [Qemu-devel] [PULL 00/14] pc,pci,virtio fixes and cleanups Michael S. Tsirkin

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).