diff options
author | Emil Condrea <emilcondrea@gmail.com> | 2016-10-25 08:50:16 +0300 |
---|---|---|
committer | Stefano Stabellini <sstabellini@kernel.org> | 2016-10-28 17:54:21 -0700 |
commit | ba18fa2a8c9e1746f8229322be8e8893d9a3b192 (patch) | |
tree | f0c276fac3395c60fbce6a5dea9131447cbc1052 /hw/xen | |
parent | 65807f4b6c6c922644be5cffae2ceb9694217bb1 (diff) | |
download | qemu-ba18fa2a8c9e1746f8229322be8e8893d9a3b192.tar.gz qemu-ba18fa2a8c9e1746f8229322be8e8893d9a3b192.tar.bz2 qemu-ba18fa2a8c9e1746f8229322be8e8893d9a3b192.zip |
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>
Diffstat (limited to 'hw/xen')
-rw-r--r-- | hw/xen/xen_pvdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xen/xen_pvdev.c b/hw/xen/xen_pvdev.c index b362eb7f44..8c7e3f51b8 100644 --- a/hw/xen/xen_pvdev.c +++ b/hw/xen/xen_pvdev.c @@ -257,7 +257,7 @@ void xen_pv_unbind_evtchn(struct XenDevice *xendev) xendev->local_port = -1; } -int xen_be_send_notify(struct XenDevice *xendev) +int xen_pv_send_notify(struct XenDevice *xendev) { return xenevtchn_notify(xendev->evtchndev, xendev->local_port); } |