vp_vdpa: Fix return value check vp_vdpa_request_irq
In the vp_vdpa_set_status function, when setting the device status to VIRTIO_CONFIG_S_DRIVER_OK, the vp_vdpa_request_irq function may fail. In such cases, the device status should not be set to DRIVER_OK. Add exception printing to remind the user. Signed-off-by: Yuxue Liu <yuxue.liu@jaguarmicro.com> Message-Id: <20240325105448.235-1-gavin.liu@jaguarmicro.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
e117d9b6e7
commit
f181a3736b
1 changed files with 4 additions and 1 deletions
|
@ -216,7 +216,10 @@ static void vp_vdpa_set_status(struct vdpa_device *vdpa, u8 status)
|
||||||
|
|
||||||
if (status & VIRTIO_CONFIG_S_DRIVER_OK &&
|
if (status & VIRTIO_CONFIG_S_DRIVER_OK &&
|
||||||
!(s & VIRTIO_CONFIG_S_DRIVER_OK)) {
|
!(s & VIRTIO_CONFIG_S_DRIVER_OK)) {
|
||||||
vp_vdpa_request_irq(vp_vdpa);
|
if (vp_vdpa_request_irq(vp_vdpa)) {
|
||||||
|
WARN_ON(1);
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
vp_modern_set_status(mdev, status);
|
vp_modern_set_status(mdev, status);
|
||||||
|
|
Loading…
Add table
Reference in a new issue