qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/16] vhost, virtio, pci, pc, acpi
@ 2016-03-04  7:49 Michael S. Tsirkin
  2016-03-04  7:49 ` [Qemu-devel] [PULL 01/16] acpi: add aml_create_field() Michael S. Tsirkin
                   ` (16 more replies)
  0 siblings, 17 replies; 22+ messages in thread
From: Michael S. Tsirkin @ 2016-03-04  7:49 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell

The following changes since commit ed6128ebbdd7cd885d39980659dad4b5c8ae8158:

  Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2016-03-01 15:54:03 +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 aa5976e7afb9407f64ec0bae1f724d0d21bff959:

  i386: update expected DSDT (2016-03-02 18:55:35 +0200)

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

Fixes all over the place.
Floppy device ACPI rewrite.
Beginning of the nvdimm work.
New statistics for virtio-balloon.

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

----------------------------------------------------------------
Denis V. Lunev (1):
      virtio-balloon: add 'available' counter

Igor Mammedov (1):
      pc-dimm: fix error handling in pc_dimm_check_memdev_is_busy()

Igor Redko (1):
      virtio-balloon: export all balloon statistics

Ilya Maximets (1):
      vhost-user: verify that number of queues is less than MAX_QUEUE_NUM

Ladi Prosek (1):
      balloon: fix segfault and harden the stats queue

Marcel Apfelbaum (2):
      hw/virtio: fix double use of a virtio flag
      hw/virtio: group virtio flags into an enum

Michael S. Tsirkin (2):
      acpi: add build_append_named_dword, returning an offset in buffer
      i386: update expected DSDT

Roman Kagan (4):
      i386/acpi: make floppy controller object dynamic
      i386: expose floppy drive CMOS type
      fdc: add function to determine drive chs limits
      i386: populate floppy drive information in DSDT

Xiao Guangrong (3):
      acpi: add aml_create_field()
      acpi: add aml_concatenate()
      acpi: allow using object as offset for OperationRegion

 configure                                       |  12 +++
 hw/virtio/virtio-pci.h                          |  17 ++--
 include/hw/acpi/aml-build.h                     |   8 +-
 include/hw/block/fdc.h                          |   2 +
 include/hw/i386/pc.h                            |   1 +
 include/hw/virtio/virtio-balloon.h              |   3 +-
 include/standard-headers/linux/virtio_balloon.h |   3 +-
 hw/acpi/aml-build.c                             |  53 +++++++++-
 hw/block/fdc.c                                  |  23 +++++
 hw/i386/acpi-build.c                            | 123 ++++++++++++++++--------
 hw/i386/pc.c                                    |   2 +-
 hw/mem/pc-dimm.c                                |  13 ++-
 hw/virtio/virtio-balloon.c                      |  57 +++++++++--
 net/vhost-user.c                                |   5 +-
 tests/acpi-test-data/pc/DSDT                    | Bin 5478 -> 5527 bytes
 tests/acpi-test-data/pc/DSDT.bridge             | Bin 7337 -> 7386 bytes
 tests/acpi-test-data/q35/DSDT                   | Bin 8321 -> 8233 bytes
 tests/acpi-test-data/q35/DSDT.bridge            | Bin 8338 -> 8250 bytes
 18 files changed, 256 insertions(+), 66 deletions(-)

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

end of thread, other threads:[~2016-05-14 10:50 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-04  7:49 [Qemu-devel] [PULL 00/16] vhost, virtio, pci, pc, acpi Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 01/16] acpi: add aml_create_field() Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 02/16] acpi: add aml_concatenate() Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 03/16] acpi: allow using object as offset for OperationRegion Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 04/16] acpi: add build_append_named_dword, returning an offset in buffer Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 05/16] balloon: fix segfault and harden the stats queue Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 06/16] hw/virtio: fix double use of a virtio flag Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 07/16] hw/virtio: group virtio flags into an enum Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 08/16] virtio-balloon: export all balloon statistics Michael S. Tsirkin
2016-03-16 10:33   ` Denis V. Lunev
2016-03-16 10:37     ` Michael S. Tsirkin
2016-05-14 10:49       ` Denis V. Lunev
2016-03-04  7:49 ` [Qemu-devel] [PULL 09/16] virtio-balloon: add 'available' counter Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 10/16] vhost-user: verify that number of queues is less than MAX_QUEUE_NUM Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 11/16] pc-dimm: fix error handling in pc_dimm_check_memdev_is_busy() Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 12/16] i386/acpi: make floppy controller object dynamic Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 13/16] i386: expose floppy drive CMOS type Michael S. Tsirkin
2016-03-04  7:49 ` [Qemu-devel] [PULL 14/16] fdc: add function to determine drive chs limits Michael S. Tsirkin
2016-03-04  7:50 ` [Qemu-devel] [PULL 15/16] i386: populate floppy drive information in DSDT Michael S. Tsirkin
2016-03-04  7:50 ` [Qemu-devel] [PULL 16/16] i386: update expected DSDT Michael S. Tsirkin
2016-03-04  8:49 ` [Qemu-devel] [PULL 00/16] vhost, virtio, pci, pc, acpi Fam Zheng
2016-03-04  8:52   ` 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).