All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PULL v3 00/21] vhost, virtio, pci, pc
Date: Thu, 25 Feb 2016 13:20:13 +0200	[thread overview]
Message-ID: <1456399032-6172-1-git-send-email-mst@redhat.com> (raw)

Changes from v2:
    drop patches touching pc-dimm.c and its stubs.
    add new code to balloon where it's used.

The following changes since commit 8eb779e4223a18db9838a49ece1bc72cfdfb7761:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2016-02-22 16:55:41 +0000)

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 533e8bbb55038e224fa418b8b8e8175110ecda4f:

  q35: No need to check gigabyte_align (2016-02-25 13:14:19 +0200)

----------------------------------------------------------------
vhost, virtio, pci, pc

Fixes all over the place.
virtio dataplane migration support.
Old q35 machine types removed.

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

----------------------------------------------------------------
Cao jin (2):
      pci core: function pci_host_bus_register() cleanup
      pci core: function pci_bus_init() cleanup

Eduardo Habkost (5):
      q35: Remove old machine versions
      machine: Remove no_tco field
      ich9: Remove enable_tco arguments from init functions
      q35: Remove unused q35-acpi-dsdt.aml file
      q35: No need to check gigabyte_align

Michael S. Tsirkin (3):
      bios-linker-loader: document+validate input
      vhost-user: don't merge regions with different fds
      tests/vhost-user-bridge: fix build on 32 bit systems

Paolo Bonzini (8):
      block-migration: acquire AioContext as necessary
      vring: make vring_enable_notification return void
      virtio: add AioContext-specific function for host notifiers
      virtio: export vring_notify as virtio_should_notify
      virtio-blk: fix "disabled data plane" mode
      virtio-blk: do not use vring in dataplane
      virtio-scsi: do not use vring in dataplane
      vring: remove

Vladimir Sementsov-Ogievskiy (3):
      move get_current_ram_size to virtio-balloon.c
      virtio-balloon: rewrite get_current_ram_size()
      balloon: Use only 'pc-dimm' type dimm for ballooning

 Makefile                                      |   2 +-
 hw/block/dataplane/virtio-blk.h               |   1 +
 include/exec/cpu-common.h                     |   1 -
 include/hw/acpi/bios-linker-loader.h          |   2 +-
 include/hw/acpi/ich9.h                        |   1 -
 include/hw/boards.h                           |   1 -
 include/hw/i386/ich9.h                        |   2 +-
 include/hw/virtio/dataplane/vring-accessors.h |  75 ----
 include/hw/virtio/dataplane/vring.h           |  51 ---
 include/hw/virtio/vhost-backend.h             |   4 +
 include/hw/virtio/virtio-blk.h                |   4 +-
 include/hw/virtio/virtio-scsi.h               |  21 +-
 include/hw/virtio/virtio.h                    |   3 +
 hw/acpi/aml-build.c                           |   2 +-
 hw/acpi/bios-linker-loader.c                  |  91 ++++-
 hw/acpi/ich9.c                                |   8 +-
 hw/arm/virt-acpi-build.c                      |   3 +-
 hw/block/dataplane/virtio-blk.c               | 130 +-----
 hw/block/virtio-blk.c                         |  51 +--
 hw/i386/acpi-build.c                          |   3 +-
 hw/i386/pc_q35.c                              | 176 +--------
 hw/isa/lpc_ich9.c                             |   4 +-
 hw/mem/pc-dimm.c                              |  26 --
 hw/pci/pci.c                                  |  13 +-
 hw/scsi/virtio-scsi-dataplane.c               | 196 ++-------
 hw/scsi/virtio-scsi.c                         |  52 +--
 hw/virtio/dataplane/vring.c                   | 549 --------------------------
 hw/virtio/vhost-user.c                        |  20 +
 hw/virtio/vhost.c                             |   7 +
 hw/virtio/virtio-balloon.c                    |  33 ++
 hw/virtio/virtio.c                            |  20 +-
 migration/block.c                             |  65 ++-
 stubs/qmp_pc_dimm_device_list.c               |   5 -
 tests/vhost-user-bridge.c                     |  14 +-
 hw/virtio/Makefile.objs                       |   1 -
 hw/virtio/dataplane/Makefile.objs             |   1 -
 pc-bios/q35-acpi-dsdt.aml                     | Bin 7344 -> 0 bytes
 trace-events                                  |   3 -
 38 files changed, 314 insertions(+), 1327 deletions(-)
 delete mode 100644 include/hw/virtio/dataplane/vring-accessors.h
 delete mode 100644 include/hw/virtio/dataplane/vring.h
 delete mode 100644 hw/virtio/dataplane/vring.c
 delete mode 100644 hw/virtio/dataplane/Makefile.objs
 delete mode 100644 pc-bios/q35-acpi-dsdt.aml

             reply	other threads:[~2016-02-25 11:20 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-25 11:20 Michael S. Tsirkin [this message]
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 01/21] bios-linker-loader: document+validate input Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 02/21] vhost-user: don't merge regions with different fds Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 03/21] move get_current_ram_size to virtio-balloon.c Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 04/21] virtio-balloon: rewrite get_current_ram_size() Michael S. Tsirkin
2016-03-01 16:28   ` Vladimir Sementsov-Ogievskiy
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 05/21] balloon: Use only 'pc-dimm' type dimm for ballooning Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 06/21] pci core: function pci_host_bus_register() cleanup Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 07/21] pci core: function pci_bus_init() cleanup Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 08/21] block-migration: acquire AioContext as necessary Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 09/21] vring: make vring_enable_notification return void Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 10/21] virtio: add AioContext-specific function for host notifiers Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 11/21] virtio: export vring_notify as virtio_should_notify Michael S. Tsirkin
2016-02-25 11:20 ` [Qemu-devel] [PULL v3 12/21] virtio-blk: fix "disabled data plane" mode Michael S. Tsirkin
2016-02-25 11:21 ` [Qemu-devel] [PULL v3 13/21] virtio-blk: do not use vring in dataplane Michael S. Tsirkin
2016-02-25 11:21 ` [Qemu-devel] [PULL v3 14/21] virtio-scsi: " Michael S. Tsirkin
2016-02-25 11:21 ` [Qemu-devel] [PULL v3 15/21] vring: remove Michael S. Tsirkin
2016-02-25 11:21 ` [Qemu-devel] [PULL v3 16/21] tests/vhost-user-bridge: fix build on 32 bit systems Michael S. Tsirkin
2016-02-25 11:21 ` [Qemu-devel] [PULL v3 17/21] q35: Remove old machine versions Michael S. Tsirkin
2016-02-25 11:21 ` [Qemu-devel] [PULL v3 18/21] machine: Remove no_tco field Michael S. Tsirkin
2016-02-25 11:21 ` [Qemu-devel] [PULL v3 19/21] ich9: Remove enable_tco arguments from init functions Michael S. Tsirkin
2016-02-25 11:21 ` [Qemu-devel] [PULL v3 20/21] q35: Remove unused q35-acpi-dsdt.aml file Michael S. Tsirkin
2016-02-25 11:21 ` [Qemu-devel] [PULL v3 21/21] q35: No need to check gigabyte_align Michael S. Tsirkin
2016-02-25 12:57 ` [Qemu-devel] [PULL v3 00/21] vhost, virtio, pci, pc Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1456399032-6172-1-git-send-email-mst@redhat.com \
    --to=mst@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.