mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
virtio: device_plugged() can fail
This patch passes error pointer to transport specific device_plugged() callback. Through this way, device_plugged() can do some transport specific check and fail. This will be uesd by following patches that check the number of virtqueues against the transport limitation. Cc: Cornelia Huck <cornelia.huck@de.ibm.com> Cc: Christian Borntraeger <borntraeger@de.ibm.com> Cc: Richard Henderson <rth@twiddle.net> Cc: Alexander Graf <agraf@suse.de> Signed-off-by: Jason Wang <jasowang@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
da51a335aa
commit
e83980455c
5 changed files with 12 additions and 8 deletions
|
@ -55,7 +55,7 @@ typedef struct VirtioBusClass {
|
|||
* transport independent init function.
|
||||
* This is called by virtio-bus just after the device is plugged.
|
||||
*/
|
||||
void (*device_plugged)(DeviceState *d);
|
||||
void (*device_plugged)(DeviceState *d, Error **errp);
|
||||
/*
|
||||
* transport independent exit function.
|
||||
* This is called by virtio-bus just before the device is unplugged.
|
||||
|
@ -74,7 +74,7 @@ struct VirtioBusState {
|
|||
BusState parent_obj;
|
||||
};
|
||||
|
||||
int virtio_bus_device_plugged(VirtIODevice *vdev);
|
||||
void virtio_bus_device_plugged(VirtIODevice *vdev, Error **errp);
|
||||
void virtio_bus_reset(VirtioBusState *bus);
|
||||
void virtio_bus_device_unplugged(VirtIODevice *bus);
|
||||
/* Get the device id of the plugged device. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue