qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/16] Trivial branch patches
@ 2019-06-06 11:06 Laurent Vivier
  2019-06-06 11:06 ` [Qemu-devel] [PULL 01/16] hw/rdma: Delete unused headers inclusion Laurent Vivier
                   ` (16 more replies)
  0 siblings, 17 replies; 19+ messages in thread
From: Laurent Vivier @ 2019-06-06 11:06 UTC (permalink / raw)
  To: qemu-devel
  Cc: Fam Zheng, Dmitry Fleytman, David Hildenbrand, Michael Tokarev,
	Gerd Hoffmann, Juan Quintela, Aleksandar Rikalo,
	Michael S. Tsirkin, Halil Pasic, Christian Borntraeger,
	Dr. David Alan Gilbert, Yuval Shaia, Alex Williamson,
	Richard Henderson, Daniel P. Berrangé, qemu-s390x,
	Cornelia Huck, Laurent Vivier, qemu-trivial, Michael Walle,
	Aleksandar Markovic, Paolo Bonzini

The following changes since commit 47fbad45d47af8af784bb12a5719489edcd89b4c:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2019-06-04 17:22:42 +0100)

are available in the Git repository at:

  git://github.com/vivier/qemu.git tags/trivial-branch-pull-request

for you to fetch changes up to f1114d321246f9177072923e1c2a20e7aab82700:

  hw/watchdog/wdt_i6300esb: Use DEVICE() macro to access DeviceState.qdev (2019-06-06 11:55:04 +0200)

----------------------------------------------------------------
Trivial fixes 06/06/2019

----------------------------------------------------------------

Jie Wang (1):
  vhost: fix incorrect print type

Li Qiang (1):
  migration: fix a typo

Markus Armbruster (1):
  test: Fix make target check-report.tap

Philippe Mathieu-Daudé (11):
  docs/devel/build-system: Update an example
  hw/scsi/vmw_pvscsi: Use qbus_reset_all() directly
  hw/pci-bridge: Use the QOM BUS() macro to access BusState.qbus
  hw/s390x/event-facility: Use the QOM BUS() macro to access
    BusState.qbus
  hw/isa: Use the QOM DEVICE() macro to access DeviceState.qdev
  hw/usb-storage: Use the QOM DEVICE() macro to access DeviceState.qdev
  hw/vfio/pci: Use the QOM DEVICE() macro to access DeviceState.qdev
  hw/audio/ac97: Use the QOM DEVICE() macro to access DeviceState.qdev
  hw/sd: Use the QOM BUS() macro to access BusState.qbus
  hw/scsi: Use the QOM BUS() macro to access BusState.qbus
  hw/watchdog/wdt_i6300esb: Use DEVICE() macro to access
    DeviceState.qdev

Richard Henderson (1):
  util: Adjust qemu_guest_getrandom_nofail for Coverity

Yuval Shaia (1):
  hw/rdma: Delete unused headers inclusion

 docs/devel/build-system.txt | 19 +++++++------------
 hw/audio/ac97.c             |  2 +-
 hw/isa/lpc_ich9.c           |  2 +-
 hw/isa/vt82c686.c           |  2 +-
 hw/pci/pci_bridge.c         |  2 +-
 hw/rdma/rdma_backend.c      |  7 -------
 hw/s390x/event-facility.c   |  4 ++--
 hw/scsi/lsi53c895a.c        |  2 +-
 hw/scsi/mptsas.c            |  4 ++--
 hw/scsi/virtio-scsi.c       |  2 +-
 hw/scsi/vmw_pvscsi.c        |  4 ++--
 hw/sd/milkymist-memcard.c   |  2 +-
 hw/sd/ssi-sd.c              |  2 +-
 hw/usb/dev-storage.c        |  2 +-
 hw/vfio/pci.c               |  4 ++--
 hw/virtio/vhost.c           |  2 +-
 hw/watchdog/wdt_i6300esb.c  |  2 +-
 migration/ram.c             |  2 +-
 tests/Makefile.include      |  2 +-
 util/guest-random.c         |  2 +-
 20 files changed, 29 insertions(+), 41 deletions(-)

-- 
2.21.0



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

end of thread, other threads:[~2019-06-06 14:06 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-06 11:06 [Qemu-devel] [PULL 00/16] Trivial branch patches Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 01/16] hw/rdma: Delete unused headers inclusion Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 02/16] migration: fix a typo Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 03/16] vhost: fix incorrect print type Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 04/16] util: Adjust qemu_guest_getrandom_nofail for Coverity Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 05/16] test: Fix make target check-report.tap Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 06/16] docs/devel/build-system: Update an example Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 07/16] hw/scsi/vmw_pvscsi: Use qbus_reset_all() directly Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 08/16] hw/pci-bridge: Use the QOM BUS() macro to access BusState.qbus Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 09/16] hw/s390x/event-facility: " Laurent Vivier
2019-06-06 12:11   ` David Hildenbrand
2019-06-06 11:06 ` [Qemu-devel] [PULL 10/16] hw/isa: Use the QOM DEVICE() macro to access DeviceState.qdev Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 11/16] hw/usb-storage: " Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 12/16] hw/vfio/pci: " Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 13/16] hw/audio/ac97: " Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 14/16] hw/sd: Use the QOM BUS() macro to access BusState.qbus Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 15/16] hw/scsi: " Laurent Vivier
2019-06-06 11:06 ` [Qemu-devel] [PULL 16/16] hw/watchdog/wdt_i6300esb: Use DEVICE() macro to access DeviceState.qdev Laurent Vivier
2019-06-06 14:04 ` [Qemu-devel] [PULL 00/16] Trivial branch patches Peter Maydell

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