mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
xen: Rename xen_be_send_notify
Prepare xen_be_send_notify to be shared with frontends: * xen_be_send_notify -> xen_pv_send_notify Signed-off-by: Emil Condrea <emilcondrea@gmail.com> Signed-off-by: Stefano Stabellini <sstabellini@kernel.org> Signed-off-by: Quan Xu <xuquan8@huawei.com> Acked-by: Anthony PERARD <anthony.perard@citrix.com>
This commit is contained in:
parent
65807f4b6c
commit
ba18fa2a8c
7 changed files with 15 additions and 15 deletions
|
@ -314,7 +314,7 @@ static void usbback_do_response(struct usbback_req *usbback_req, int32_t status,
|
|||
RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&usbif->urb_ring, notify);
|
||||
|
||||
if (notify) {
|
||||
xen_be_send_notify(xendev);
|
||||
xen_pv_send_notify(xendev);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -590,7 +590,7 @@ static void usbback_hotplug_notify(struct usbback_info *usbif)
|
|||
|
||||
/* Check for full ring. */
|
||||
if ((RING_SIZE(ring) - ring->rsp_prod_pvt - ring->req_cons) == 0) {
|
||||
xen_be_send_notify(&usbif->xendev);
|
||||
xen_pv_send_notify(&usbif->xendev);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -609,7 +609,7 @@ static void usbback_hotplug_notify(struct usbback_info *usbif)
|
|||
RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(ring, notify);
|
||||
|
||||
if (notify) {
|
||||
xen_be_send_notify(&usbif->xendev);
|
||||
xen_pv_send_notify(&usbif->xendev);
|
||||
}
|
||||
|
||||
TR_BUS(&usbif->xendev, "hotplug port %d speed %d\n", usb_hp->port,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue