mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
vfio: Use warn_report() & friends to report warnings
The vfio code reports warnings like
error_report(WARN_PREFIX "Could not frobnicate", DEV-NAME);
where WARN_PREFIX is defined so the message comes out as
vfio warning: DEV-NAME: Could not frobnicate
This usage predates the introduction of warn_report() & friends in
commit 97f40301f1
. It's time to convert to that interface. Since
these functions already prefix the message with "warning: ", replace
WARN_PREFIX by VFIO_MSG_PREFIX, so the messages come out like
warning: vfio DEV-NAME: Could not frobnicate
The next commit will replace ERR_PREFIX.
Cc: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Alex Williamson <alex.williamson@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20181017082702.5581-6-armbru@redhat.com>
This commit is contained in:
parent
0765691e97
commit
e1eb292ace
3 changed files with 10 additions and 10 deletions
|
@ -679,8 +679,8 @@ static void vfio_platform_realize(DeviceState *dev, Error **errp)
|
|||
|
||||
for (i = 0; i < vbasedev->num_regions; i++) {
|
||||
if (vfio_region_mmap(vdev->regions[i])) {
|
||||
error_report("%s mmap unsupported. Performance may be slow",
|
||||
memory_region_name(vdev->regions[i]->mem));
|
||||
warn_report("%s mmap unsupported, performance may be slow",
|
||||
memory_region_name(vdev->regions[i]->mem));
|
||||
}
|
||||
sysbus_init_mmio(sbdev, vdev->regions[i]->mem);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue