vfio/pci: Make vfio_populate_vga() return bool
This is to follow the coding standand in qapi/error.h to return bool for bool-valued functions. Suggested-by: Cédric Le Goater <clg@redhat.com> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Signed-off-by: Cédric Le Goater <clg@redhat.com>
This commit is contained in:
parent
c32bab074e
commit
64410a741d
@ -478,7 +478,7 @@ void vfio_probe_igd_bar4_quirk(VFIOPCIDevice *vdev, int nr)
|
|||||||
* try to enable it. Probably shouldn't be using legacy mode without VGA,
|
* try to enable it. Probably shouldn't be using legacy mode without VGA,
|
||||||
* but also no point in us enabling VGA if disabled in hardware.
|
* but also no point in us enabling VGA if disabled in hardware.
|
||||||
*/
|
*/
|
||||||
if (!(gmch & 0x2) && !vdev->vga && vfio_populate_vga(vdev, &err)) {
|
if (!(gmch & 0x2) && !vdev->vga && !vfio_populate_vga(vdev, &err)) {
|
||||||
error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name);
|
error_reportf_err(err, VFIO_MSG_PREFIX, vdev->vbasedev.name);
|
||||||
error_report("IGD device %s failed to enable VGA access, "
|
error_report("IGD device %s failed to enable VGA access, "
|
||||||
"legacy mode disabled", vdev->vbasedev.name);
|
"legacy mode disabled", vdev->vbasedev.name);
|
||||||
|
@ -2670,7 +2670,7 @@ static VFIODeviceOps vfio_pci_ops = {
|
|||||||
.vfio_load_config = vfio_pci_load_config,
|
.vfio_load_config = vfio_pci_load_config,
|
||||||
};
|
};
|
||||||
|
|
||||||
int vfio_populate_vga(VFIOPCIDevice *vdev, Error **errp)
|
bool vfio_populate_vga(VFIOPCIDevice *vdev, Error **errp)
|
||||||
{
|
{
|
||||||
VFIODevice *vbasedev = &vdev->vbasedev;
|
VFIODevice *vbasedev = &vdev->vbasedev;
|
||||||
struct vfio_region_info *reg_info;
|
struct vfio_region_info *reg_info;
|
||||||
@ -2681,7 +2681,7 @@ int vfio_populate_vga(VFIOPCIDevice *vdev, Error **errp)
|
|||||||
error_setg_errno(errp, -ret,
|
error_setg_errno(errp, -ret,
|
||||||
"failed getting region info for VGA region index %d",
|
"failed getting region info for VGA region index %d",
|
||||||
VFIO_PCI_VGA_REGION_INDEX);
|
VFIO_PCI_VGA_REGION_INDEX);
|
||||||
return ret;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(reg_info->flags & VFIO_REGION_INFO_FLAG_READ) ||
|
if (!(reg_info->flags & VFIO_REGION_INFO_FLAG_READ) ||
|
||||||
@ -2691,7 +2691,7 @@ int vfio_populate_vga(VFIOPCIDevice *vdev, Error **errp)
|
|||||||
(unsigned long)reg_info->flags,
|
(unsigned long)reg_info->flags,
|
||||||
(unsigned long)reg_info->size);
|
(unsigned long)reg_info->size);
|
||||||
g_free(reg_info);
|
g_free(reg_info);
|
||||||
return -EINVAL;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
vdev->vga = g_new0(VFIOVGA, 1);
|
vdev->vga = g_new0(VFIOVGA, 1);
|
||||||
@ -2735,7 +2735,7 @@ int vfio_populate_vga(VFIOPCIDevice *vdev, Error **errp)
|
|||||||
&vdev->vga->region[QEMU_PCI_VGA_IO_LO].mem,
|
&vdev->vga->region[QEMU_PCI_VGA_IO_LO].mem,
|
||||||
&vdev->vga->region[QEMU_PCI_VGA_IO_HI].mem);
|
&vdev->vga->region[QEMU_PCI_VGA_IO_HI].mem);
|
||||||
|
|
||||||
return 0;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool vfio_populate_device(VFIOPCIDevice *vdev, Error **errp)
|
static bool vfio_populate_device(VFIOPCIDevice *vdev, Error **errp)
|
||||||
@ -2798,8 +2798,7 @@ static bool vfio_populate_device(VFIOPCIDevice *vdev, Error **errp)
|
|||||||
g_free(reg_info);
|
g_free(reg_info);
|
||||||
|
|
||||||
if (vdev->features & VFIO_FEATURE_ENABLE_VGA) {
|
if (vdev->features & VFIO_FEATURE_ENABLE_VGA) {
|
||||||
ret = vfio_populate_vga(vdev, errp);
|
if (!vfio_populate_vga(vdev, errp)) {
|
||||||
if (ret) {
|
|
||||||
error_append_hint(errp, "device does not support "
|
error_append_hint(errp, "device does not support "
|
||||||
"requested feature x-vga\n");
|
"requested feature x-vga\n");
|
||||||
return false;
|
return false;
|
||||||
|
@ -225,7 +225,7 @@ bool vfio_pci_host_match(PCIHostDeviceAddress *addr, const char *name);
|
|||||||
int vfio_pci_get_pci_hot_reset_info(VFIOPCIDevice *vdev,
|
int vfio_pci_get_pci_hot_reset_info(VFIOPCIDevice *vdev,
|
||||||
struct vfio_pci_hot_reset_info **info_p);
|
struct vfio_pci_hot_reset_info **info_p);
|
||||||
|
|
||||||
int vfio_populate_vga(VFIOPCIDevice *vdev, Error **errp);
|
bool vfio_populate_vga(VFIOPCIDevice *vdev, Error **errp);
|
||||||
|
|
||||||
int vfio_pci_igd_opregion_init(VFIOPCIDevice *vdev,
|
int vfio_pci_igd_opregion_init(VFIOPCIDevice *vdev,
|
||||||
struct vfio_region_info *info,
|
struct vfio_region_info *info,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user