summaryrefslogtreecommitdiff
path: root/hw/char
diff options
context:
space:
mode:
authorEmil Condrea <emilcondrea@gmail.com>2016-10-25 08:50:16 +0300
committerStefano Stabellini <sstabellini@kernel.org>2016-10-28 17:54:21 -0700
commitba18fa2a8c9e1746f8229322be8e8893d9a3b192 (patch)
treef0c276fac3395c60fbce6a5dea9131447cbc1052 /hw/char
parent65807f4b6c6c922644be5cffae2ceb9694217bb1 (diff)
downloadqemu-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/char')
-rw-r--r--hw/char/xen_console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/char/xen_console.c b/hw/char/xen_console.c
index 15463dcb93..c01f41090e 100644
--- a/hw/char/xen_console.c
+++ b/hw/char/xen_console.c
@@ -74,7 +74,7 @@ static void buffer_append(struct XenConsole *con)
xen_mb();
intf->out_cons = cons;
- xen_be_send_notify(&con->xendev);
+ xen_pv_send_notify(&con->xendev);
if (buffer->max_capacity &&
buffer->size > buffer->max_capacity) {
@@ -142,7 +142,7 @@ static void xencons_receive(void *opaque, const uint8_t *buf, int len)
}
xen_wmb();
intf->in_prod = prod;
- xen_be_send_notify(&con->xendev);
+ xen_pv_send_notify(&con->xendev);
}
static void xencons_send(struct XenConsole *con)