Trivial fixes 06/06/2019

-----BEGIN PGP SIGNATURE-----
 
 iQJGBAABCAAwFiEEzS913cjjpNwuT1Fz8ww4vT8vvjwFAlz4844SHGxhdXJlbnRA
 dml2aWVyLmV1AAoJEPMMOL0/L748FtwQALCoNnMrEY4mnmHy0dnEQPRFcPMKa9pp
 3lqpmxLHAkSsWFKmmLKPteZhUroBmzXPa91984hhQiglcMMMsIPy+A+x1QBj7Yt2
 KeEKpIdSS6Qi4T72zVOtO4MR1pCeKUYHY8ICn/rqAkpkA/lt5DuX2xJSepgrSdAI
 /JgpawJ4Rz95x5rCLuy/t5egtKVYVhauv4EbQ9PeaFhSlwoKNYbc6qAZSvs8pr9n
 H4W8DgtI35wPj4zE3i9bbmnUUxCUMj6MjkIm/jTB5qewY/I+llb27CN2Uq1yvRKW
 ANGbGW3rVwQe8p6kbVcM7CDbawm4J0c59w/4mUTa3BRRuAj4KtHTeghXALHLn/gv
 aO90oZKGd2xGxpSMAapzgebNezUQxFFoRWhyI4o8N+SWEpoRbHkxDwrk2WlKXsCR
 xRYOensU17NOKMJ32AbUReC2/m7D71EH3723aVzd2O5nuIHlsEG2CYjlzjXFB4X8
 wPbaigcqpDEMwLTt3kYy4TrghFdcSaAYepmqXJ9D9UONMOrnRhhR9GkvEmCB4Eus
 BJanLE0xp59KTVDZ5c/v6+44P/RQ04aD2oFh0bMKlNb4+cfbQlq2odoiCPcUKimh
 XCCbYbwJFRRkgGTh9pFMgMqH9zX8HTgG/2Zp2VGFnYXnJzz/AuvgH9k5Pc4P3C/A
 lOCSBWpxR6bk
 =wmCY
 -----END PGP SIGNATURE-----

Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-pull-request' into staging

Trivial fixes 06/06/2019

# gpg: Signature made Thu 06 Jun 2019 12:05:50 BST
# gpg:                using RSA key CD2F75DDC8E3A4DC2E4F5173F30C38BD3F2FBE3C
# gpg:                issuer "laurent@vivier.eu"
# gpg: Good signature from "Laurent Vivier <lvivier@redhat.com>" [full]
# gpg:                 aka "Laurent Vivier <laurent@vivier.eu>" [full]
# gpg:                 aka "Laurent Vivier (Red Hat) <lvivier@redhat.com>" [full]
# Primary key fingerprint: CD2F 75DD C8E3 A4DC 2E4F  5173 F30C 38BD 3F2F BE3C

* remotes/vivier2/tags/trivial-branch-pull-request:
  hw/watchdog/wdt_i6300esb: Use DEVICE() macro to access DeviceState.qdev
  hw/scsi: Use the QOM BUS() macro to access BusState.qbus
  hw/sd: Use the QOM BUS() macro to access BusState.qbus
  hw/audio/ac97: Use the QOM DEVICE() macro to access DeviceState.qdev
  hw/vfio/pci: Use the QOM DEVICE() macro to access DeviceState.qdev
  hw/usb-storage: Use the QOM DEVICE() macro to access DeviceState.qdev
  hw/isa: Use the QOM DEVICE() macro to access DeviceState.qdev
  hw/s390x/event-facility: Use the QOM BUS() macro to access BusState.qbus
  hw/pci-bridge: Use the QOM BUS() macro to access BusState.qbus
  hw/scsi/vmw_pvscsi: Use qbus_reset_all() directly
  docs/devel/build-system: Update an example
  test: Fix make target check-report.tap
  util: Adjust qemu_guest_getrandom_nofail for Coverity
  vhost: fix incorrect print type
  migration: fix a typo
  hw/rdma: Delete unused headers inclusion

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
Peter Maydell 2019-06-06 14:09:14 +01:00
commit 0d74f3b427
19 changed files with 27 additions and 39 deletions

View File

@ -413,18 +413,13 @@ context.
- default-configs/*.mak - default-configs/*.mak
The files under default-configs/ control what emulated hardware is built The files under default-configs/ control what emulated hardware is built
into each QEMU system and userspace emulator targets. They merely into each QEMU system and userspace emulator targets. They merely contain
contain a long list of config variable definitions. For example, a list of config variable definitions like the machines that should be
default-configs/x86_64-softmmu.mak has: included. For example, default-configs/aarch64-softmmu.mak has:
include sound.mak include arm-softmmu.mak
include usb.mak CONFIG_XLNX_ZYNQMP_ARM=y
CONFIG_QXL=$(CONFIG_SPICE) CONFIG_XLNX_VERSAL=y
CONFIG_VGA_ISA=y
CONFIG_VGA_CIRRUS=y
CONFIG_VMWARE_VGA=y
CONFIG_VIRTIO_VGA=y
...snip...
These files rarely need changing unless new devices / hardware need to These files rarely need changing unless new devices / hardware need to
be enabled for a particular system/userspace emulation target be enabled for a particular system/userspace emulation target

View File

@ -1388,7 +1388,7 @@ static void ac97_realize(PCIDevice *dev, Error **errp)
pci_register_bar (&s->dev, 0, PCI_BASE_ADDRESS_SPACE_IO, &s->io_nam); pci_register_bar (&s->dev, 0, PCI_BASE_ADDRESS_SPACE_IO, &s->io_nam);
pci_register_bar (&s->dev, 1, PCI_BASE_ADDRESS_SPACE_IO, &s->io_nabm); pci_register_bar (&s->dev, 1, PCI_BASE_ADDRESS_SPACE_IO, &s->io_nabm);
AUD_register_card ("ac97", &s->card); AUD_register_card ("ac97", &s->card);
ac97_on_reset (&s->dev.qdev); ac97_on_reset(DEVICE(s));
} }
static void ac97_exit(PCIDevice *dev) static void ac97_exit(PCIDevice *dev)

View File

@ -412,7 +412,7 @@ void ich9_lpc_pm_init(PCIDevice *lpc_pci, bool smm_enabled)
true); true);
} }
ich9_lpc_reset(&lpc->d.qdev); ich9_lpc_reset(DEVICE(lpc));
} }
/* APM */ /* APM */

View File

@ -369,7 +369,7 @@ static void vt82c686b_pm_realize(PCIDevice *dev, Error **errp)
pci_conf[0x90] = s->smb_io_base | 1; pci_conf[0x90] = s->smb_io_base | 1;
pci_conf[0x91] = s->smb_io_base >> 8; pci_conf[0x91] = s->smb_io_base >> 8;
pci_conf[0xd2] = 0x90; pci_conf[0xd2] = 0x90;
pm_smbus_init(&s->dev.qdev, &s->smb, false); pm_smbus_init(DEVICE(s), &s->smb, false);
memory_region_add_subregion(get_system_io(), s->smb_io_base, &s->smb.io); memory_region_add_subregion(get_system_io(), s->smb_io_base, &s->smb.io);
apm_init(dev, &s->apm, NULL, s); apm_init(dev, &s->apm, NULL, s);

View File

@ -273,7 +273,7 @@ void pci_bridge_write_config(PCIDevice *d,
newctl = pci_get_word(d->config + PCI_BRIDGE_CONTROL); newctl = pci_get_word(d->config + PCI_BRIDGE_CONTROL);
if (~oldctl & newctl & PCI_BRIDGE_CTL_BUS_RESET) { if (~oldctl & newctl & PCI_BRIDGE_CTL_BUS_RESET) {
/* Trigger hot reset on 0->1 transition. */ /* Trigger hot reset on 0->1 transition. */
qbus_reset_all(&s->sec_bus.qbus); qbus_reset_all(BUS(&s->sec_bus));
} }
} }

View File

@ -14,16 +14,9 @@
*/ */
#include "qemu/osdep.h" #include "qemu/osdep.h"
#include "sysemu/sysemu.h"
#include "qapi/error.h"
#include "qapi/qmp/qlist.h"
#include "qapi/qmp/qnum.h"
#include "qapi/qapi-events-rdma.h" #include "qapi/qapi-events-rdma.h"
#include <infiniband/verbs.h> #include <infiniband/verbs.h>
#include <infiniband/umad_types.h>
#include <infiniband/umad.h>
#include <rdma/rdma_user_cm.h>
#include "contrib/rdmacm-mux/rdmacm-mux.h" #include "contrib/rdmacm-mux/rdmacm-mux.h"
#include "trace.h" #include "trace.h"

View File

@ -466,12 +466,12 @@ static void init_event_facility(Object *obj)
new = object_new(TYPE_SCLP_QUIESCE); new = object_new(TYPE_SCLP_QUIESCE);
object_property_add_child(obj, TYPE_SCLP_QUIESCE, new, NULL); object_property_add_child(obj, TYPE_SCLP_QUIESCE, new, NULL);
object_unref(new); object_unref(new);
qdev_set_parent_bus(DEVICE(new), &event_facility->sbus.qbus); qdev_set_parent_bus(DEVICE(new), BUS(&event_facility->sbus));
new = object_new(TYPE_SCLP_CPU_HOTPLUG); new = object_new(TYPE_SCLP_CPU_HOTPLUG);
object_property_add_child(obj, TYPE_SCLP_CPU_HOTPLUG, new, NULL); object_property_add_child(obj, TYPE_SCLP_CPU_HOTPLUG, new, NULL);
object_unref(new); object_unref(new);
qdev_set_parent_bus(DEVICE(new), &event_facility->sbus.qbus); qdev_set_parent_bus(DEVICE(new), BUS(&event_facility->sbus));
/* the facility will automatically realize the devices via the bus */ /* the facility will automatically realize the devices via the bus */
} }

View File

@ -1860,7 +1860,7 @@ static void lsi_reg_writeb(LSIState *s, int offset, uint8_t val)
} }
if (val & LSI_SCNTL1_RST) { if (val & LSI_SCNTL1_RST) {
if (!(s->sstat0 & LSI_SSTAT0_RST)) { if (!(s->sstat0 & LSI_SSTAT0_RST)) {
qbus_reset_all(&s->bus.qbus); qbus_reset_all(BUS(&s->bus));
s->sstat0 |= LSI_SSTAT0_RST; s->sstat0 |= LSI_SSTAT0_RST;
lsi_script_scsi_interrupt(s, LSI_SIST0_RST, 0); lsi_script_scsi_interrupt(s, LSI_SIST0_RST, 0);
} }

View File

@ -540,7 +540,7 @@ reply_maybe_async:
break; break;
case MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS: case MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS:
qbus_reset_all(&s->bus.qbus); qbus_reset_all(BUS(&s->bus));
break; break;
default: default:
@ -803,7 +803,7 @@ static void mptsas_soft_reset(MPTSASState *s)
s->intr_mask = MPI_HIM_DIM | MPI_HIM_RIM; s->intr_mask = MPI_HIM_DIM | MPI_HIM_RIM;
mptsas_update_interrupt(s); mptsas_update_interrupt(s);
qbus_reset_all(&s->bus.qbus); qbus_reset_all(BUS(&s->bus));
s->intr_status = 0; s->intr_status = 0;
s->intr_mask = save_mask; s->intr_mask = save_mask;

View File

@ -696,7 +696,7 @@ static void virtio_scsi_reset(VirtIODevice *vdev)
assert(!s->dataplane_started); assert(!s->dataplane_started);
s->resetting++; s->resetting++;
qbus_reset_all(&s->bus.qbus); qbus_reset_all(BUS(&s->bus));
s->resetting--; s->resetting--;
vs->sense_size = VIRTIO_SCSI_SENSE_DEFAULT_SIZE; vs->sense_size = VIRTIO_SCSI_SENSE_DEFAULT_SIZE;

View File

@ -440,7 +440,7 @@ static void
pvscsi_reset_adapter(PVSCSIState *s) pvscsi_reset_adapter(PVSCSIState *s)
{ {
s->resetting++; s->resetting++;
qbus_reset_all_fn(&s->bus); qbus_reset_all(BUS(&s->bus));
s->resetting--; s->resetting--;
pvscsi_process_completion_queue(s); pvscsi_process_completion_queue(s);
assert(QTAILQ_EMPTY(&s->pending_queue)); assert(QTAILQ_EMPTY(&s->pending_queue));
@ -848,7 +848,7 @@ pvscsi_on_cmd_reset_bus(PVSCSIState *s)
trace_pvscsi_on_cmd_arrived("PVSCSI_CMD_RESET_BUS"); trace_pvscsi_on_cmd_arrived("PVSCSI_CMD_RESET_BUS");
s->resetting++; s->resetting++;
qbus_reset_all_fn(&s->bus); qbus_reset_all(BUS(&s->bus));
s->resetting--; s->resetting--;
return PVSCSI_COMMAND_PROCESSING_SUCCEEDED; return PVSCSI_COMMAND_PROCESSING_SUCCEEDED;
} }

View File

@ -277,7 +277,7 @@ static void milkymist_memcard_realize(DeviceState *dev, Error **errp)
/* FIXME use a qdev drive property instead of drive_get_next() */ /* FIXME use a qdev drive property instead of drive_get_next() */
dinfo = drive_get_next(IF_SD); dinfo = drive_get_next(IF_SD);
blk = dinfo ? blk_by_legacy_dinfo(dinfo) : NULL; blk = dinfo ? blk_by_legacy_dinfo(dinfo) : NULL;
carddev = qdev_create(&s->sdbus.qbus, TYPE_SD_CARD); carddev = qdev_create(BUS(&s->sdbus), TYPE_SD_CARD);
qdev_prop_set_drive(carddev, "drive", blk, &err); qdev_prop_set_drive(carddev, "drive", blk, &err);
object_property_set_bool(OBJECT(carddev), true, "realized", &err); object_property_set_bool(OBJECT(carddev), true, "realized", &err);
if (err) { if (err) {

View File

@ -249,7 +249,7 @@ static void ssi_sd_realize(SSISlave *d, Error **errp)
/* Create and plug in the sd card */ /* Create and plug in the sd card */
/* FIXME use a qdev drive property instead of drive_get_next() */ /* FIXME use a qdev drive property instead of drive_get_next() */
dinfo = drive_get_next(IF_SD); dinfo = drive_get_next(IF_SD);
carddev = qdev_create(&s->sdbus.qbus, TYPE_SD_CARD); carddev = qdev_create(BUS(&s->sdbus), TYPE_SD_CARD);
if (dinfo) { if (dinfo) {
qdev_prop_set_drive(carddev, "drive", blk_by_legacy_dinfo(dinfo), &err); qdev_prop_set_drive(carddev, "drive", blk_by_legacy_dinfo(dinfo), &err);
} }

View File

@ -616,7 +616,7 @@ static void usb_msd_storage_realize(USBDevice *dev, Error **errp)
* The hack is probably a bad idea. * The hack is probably a bad idea.
*/ */
blk_ref(blk); blk_ref(blk);
blk_detach_dev(blk, &s->dev.qdev); blk_detach_dev(blk, DEVICE(s));
s->conf.blk = NULL; s->conf.blk = NULL;
usb_desc_create_serial(dev); usb_desc_create_serial(dev);

View File

@ -2717,7 +2717,7 @@ static void vfio_req_notifier_handler(void *opaque)
return; return;
} }
qdev_unplug(&vdev->pdev.qdev, &err); qdev_unplug(DEVICE(vdev), &err);
if (err) { if (err) {
warn_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name); warn_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name);
} }
@ -2839,7 +2839,7 @@ static void vfio_realize(PCIDevice *pdev, Error **errp)
vdev->vbasedev.name = g_path_get_basename(vdev->vbasedev.sysfsdev); vdev->vbasedev.name = g_path_get_basename(vdev->vbasedev.sysfsdev);
vdev->vbasedev.ops = &vfio_pci_ops; vdev->vbasedev.ops = &vfio_pci_ops;
vdev->vbasedev.type = VFIO_DEVICE_TYPE_PCI; vdev->vbasedev.type = VFIO_DEVICE_TYPE_PCI;
vdev->vbasedev.dev = &vdev->pdev.qdev; vdev->vbasedev.dev = DEVICE(vdev);
tmp = g_strdup_printf("%s/iommu_group", vdev->vbasedev.sysfsdev); tmp = g_strdup_printf("%s/iommu_group", vdev->vbasedev.sysfsdev);
len = readlink(tmp, group_path, sizeof(group_path)); len = readlink(tmp, group_path, sizeof(group_path));

View File

@ -200,7 +200,7 @@ static void i6300esb_timer_expired(void *vp)
if (d->reboot_enabled) { if (d->reboot_enabled) {
d->previous_reboot_flag = 1; d->previous_reboot_flag = 1;
watchdog_perform_action(); /* This reboots, exits, etc */ watchdog_perform_action(); /* This reboots, exits, etc */
i6300esb_reset(&d->dev.qdev); i6300esb_reset(DEVICE(d));
} }
/* In "free running mode" we start stage 1 again. */ /* In "free running mode" we start stage 1 again. */

View File

@ -2227,7 +2227,7 @@ static RAMBlock *unqueue_page(RAMState *rs, ram_addr_t *offset)
} }
/** /**
* get_queued_page: unqueue a page from the postocpy requests * get_queued_page: unqueue a page from the postcopy requests
* *
* Skips pages that are already sent (!dirty) * Skips pages that are already sent (!dirty)
* *

View File

@ -908,7 +908,7 @@ check-report-unit.tap: $(check-unit-y)
# Reports and overall runs # Reports and overall runs
check-report.tap: $(patsubst %,check-report-qtest-%.tap, $(QTEST_TARGETS)) check-report-unit.tap check-report.tap: $(patsubst %,check-report-qtest-%.tap, $(QTEST_TARGETS)) check-report-unit.tap
$(call quiet-command,./scripts/tap-merge.py $^ > $@,"GEN","$@") $(call quiet-command, cat $^ | scripts/tap-merge.pl >$@,"GEN","$@")
# FPU Emulation tests (aka softfloat) # FPU Emulation tests (aka softfloat)
# #

View File

@ -56,7 +56,7 @@ int qemu_guest_getrandom(void *buf, size_t len, Error **errp)
void qemu_guest_getrandom_nofail(void *buf, size_t len) void qemu_guest_getrandom_nofail(void *buf, size_t len)
{ {
qemu_guest_getrandom(buf, len, &error_fatal); (void)qemu_guest_getrandom(buf, len, &error_fatal);
} }
uint64_t qemu_guest_random_seed_thread_part1(void) uint64_t qemu_guest_random_seed_thread_part1(void)