All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL v2 00/30] pc, pci, virtio: new features, cleanups, fixes
@ 2016-07-05 15:46 Michael S. Tsirkin
  2016-07-05 16:48 ` Peter Maydell
  0 siblings, 1 reply; 2+ messages in thread
From: Michael S. Tsirkin @ 2016-07-05 15:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

The following changes since commit e2c8f9e44e07d8210049abaa6042ec3c956f1dd4:

  Merge remote-tracking branch 'remotes/thibault/tags/samuel-thibault' into staging (2016-07-04 10:49:17 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream

for you to fetch changes up to 269fe4c3ab0cf29329317eb868f8ec90ac761b41:

  vmw_pvscsi: remove unnecessary internal msi state flag (2016-07-05 13:14:41 +0300)

----------------------------------------------------------------
pc, pci, virtio: new features, cleanups, fixes

iommus can not be added with -device.
cleanups and fixes all over the place

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

----------------------------------------------------------------
Cao jin (13):
      pci_register_bar: cleanup
      change pvscsi_init_msi() type to void
      usb xhci: change msi/msix property type
      intel-hda: change msi property type
      mptsas: change msi property type
      megasas: change msi/msix property type
      pci bridge dev: change msi property type
      pci: Convert msi_init() to Error and fix callers to check it
      megasas: remove unnecessary megasas_use_msi()
      mptsas: remove unnecessary internal msi state flag
      vmxnet3: remove unnecessary internal msi state flag
      e1000e: remove unnecessary internal msi state flag
      vmw_pvscsi: remove unnecessary internal msi state flag

Cornelia Huck (1):
      virtio: revert host notifiers to old semantics

Gerd Hoffmann (1):
      xen: fix ram init regression

Igor Mammedov (2):
      tests: acpi: add CPU hotplug testcase
      tests: add APIC.cphp and DSDT.cphp blobs

Marcel Apfelbaum (5):
      hw/ppc: realize the PCI root bus as part of mac99 init
      hw/pci: delay bus_master_enable_region initialization
      q35: allow dynamic sysbus
      hw/iommu: enable iommu with -device
      machine: remove iommu property

Markus Armbruster (6):
      piix: Set I440FXState member pci_info.w32 in one place
      pc: Eliminate PcPciInfo
      log: Clean up misuse of Range for -dfilter
      range: Eliminate direct Range member access
      range: Replace internal representation of Range
      log: Permit -dfilter 0..0xffffffffffffffff

Michael S. Tsirkin (2):
      virtio: set low features early on load
      Revert "virtio-net: unbreak self announcement and guest offloads after migration"

 hw/scsi/mptsas.h                    |   5 +-
 include/hw/i386/pc.h                |   5 --
 include/hw/pci-host/q35.h           |   3 +-
 include/hw/pci/msi.h                |   3 +-
 include/hw/pci/pci_bus.h            |   2 +
 include/qemu/range.h                | 103 +++++++++++++++++++++++++++++++-----
 include/sysemu/sysemu.h             |   1 +
 hw/audio/intel-hda.c                |  29 +++++++---
 hw/core/machine.c                   |  20 -------
 hw/i386/acpi-build.c                |  44 ++++++++-------
 hw/i386/intel_iommu.c               |  16 ++++++
 hw/i386/pc.c                        |   2 +-
 hw/i386/pc_piix.c                   |  50 +++++++++--------
 hw/i386/pc_q35.c                    |   5 +-
 hw/ide/ich.c                        |   7 ++-
 hw/net/e1000e.c                     |  37 +++----------
 hw/net/virtio-net.c                 |  40 ++++++--------
 hw/net/vmxnet3.c                    |  52 ++++++------------
 hw/pci-bridge/ioh3420.c             |   6 ++-
 hw/pci-bridge/pci_bridge_dev.c      |  31 +++++++----
 hw/pci-bridge/pci_expander_bridge.c |   2 +
 hw/pci-bridge/xio3130_downstream.c  |   6 ++-
 hw/pci-bridge/xio3130_upstream.c    |   6 ++-
 hw/pci-host/piix.c                  |  32 +++++++----
 hw/pci-host/q35.c                   |  72 +++++++++++--------------
 hw/pci/msi.c                        |  11 ++--
 hw/pci/pci.c                        |  74 +++++++++++++++++---------
 hw/ppc/mac_newworld.c               |   1 +
 hw/scsi/megasas.c                   |  59 +++++++++++----------
 hw/scsi/mptsas.c                    |  36 ++++++++-----
 hw/scsi/vmw_pvscsi.c                |  15 ++----
 hw/usb/hcd-xhci.c                   |  35 ++++++++----
 hw/vfio/pci.c                       |   7 ++-
 hw/virtio/virtio-bus.c              |  26 ++++-----
 hw/virtio/virtio.c                  |  10 ++++
 qapi/string-input-visitor.c         |  20 +++----
 qapi/string-output-visitor.c        |  18 +++----
 tests/bios-tables-test.c            |  28 ++++++++++
 tests/test-logging.c                |  11 ++++
 util/log.c                          |  27 +++++-----
 util/range.c                        |  19 +++----
 vl.c                                |   5 ++
 xen-hvm.c                           |   3 ++
 qemu-options.hx                     |   3 --
 tests/acpi-test-data/pc/APIC.cphp   | Bin 0 -> 160 bytes
 tests/acpi-test-data/pc/DSDT.cphp   | Bin 0 -> 6435 bytes
 tests/acpi-test-data/q35/APIC.cphp  | Bin 0 -> 160 bytes
 tests/acpi-test-data/q35/DSDT.cphp  | Bin 0 -> 9197 bytes
 48 files changed, 586 insertions(+), 401 deletions(-)
 create mode 100644 tests/acpi-test-data/pc/APIC.cphp
 create mode 100644 tests/acpi-test-data/pc/DSDT.cphp
 create mode 100644 tests/acpi-test-data/q35/APIC.cphp
 create mode 100644 tests/acpi-test-data/q35/DSDT.cphp

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

* Re: [Qemu-devel] [PULL v2 00/30] pc, pci, virtio: new features, cleanups, fixes
  2016-07-05 15:46 [Qemu-devel] [PULL v2 00/30] pc, pci, virtio: new features, cleanups, fixes Michael S. Tsirkin
@ 2016-07-05 16:48 ` Peter Maydell
  0 siblings, 0 replies; 2+ messages in thread
From: Peter Maydell @ 2016-07-05 16:48 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: QEMU Developers

On 5 July 2016 at 16:46, Michael S. Tsirkin <mst@redhat.com> wrote:
> The following changes since commit e2c8f9e44e07d8210049abaa6042ec3c956f1dd4:
>
>   Merge remote-tracking branch 'remotes/thibault/tags/samuel-thibault' into staging (2016-07-04 10:49:17 +0100)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/virt/kvm/mst/qemu.git tags/for_upstream
>
> for you to fetch changes up to 269fe4c3ab0cf29329317eb868f8ec90ac761b41:
>
>   vmw_pvscsi: remove unnecessary internal msi state flag (2016-07-05 13:14:41 +0300)
>
> ----------------------------------------------------------------
> pc, pci, virtio: new features, cleanups, fixes
>
> iommus can not be added with -device.
> cleanups and fixes all over the place
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>

Applied, thanks.

-- PMM

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

end of thread, other threads:[~2016-07-05 16:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-05 15:46 [Qemu-devel] [PULL v2 00/30] pc, pci, virtio: new features, cleanups, fixes Michael S. Tsirkin
2016-07-05 16:48 ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.