mirror of https://github.com/xqemu/xqemu.git
virtio-serial: Implement flow control for individual ports
Individual ports can now signal to the virtio-serial core to stop sending data if the ports cannot immediately handle new data. When a port later unthrottles, any data queued up in the virtqueue are sent to the port. Disable throttling once a port is closed (and we discard all the unconsumed buffers in the vq). The guest kernel can reclaim the buffers when it receives the port close event or when a port is being removed. Ensure we free up the buffers before we send out any events to the guest. Signed-off-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
a69c760085
commit
9ed7b059ef
|
@ -111,14 +111,14 @@ static size_t write_to_port(VirtIOSerialPort *port,
|
||||||
return offset;
|
return offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void flush_queued_data(VirtIOSerialPort *port, VirtQueue *vq,
|
static void do_flush_queued_data(VirtIOSerialPort *port, VirtQueue *vq,
|
||||||
VirtIODevice *vdev, bool discard)
|
VirtIODevice *vdev, bool discard)
|
||||||
{
|
{
|
||||||
VirtQueueElement elem;
|
VirtQueueElement elem;
|
||||||
|
|
||||||
assert(port || discard);
|
assert(port || discard);
|
||||||
|
|
||||||
while (virtqueue_pop(vq, &elem)) {
|
while ((discard || !port->throttled) && virtqueue_pop(vq, &elem)) {
|
||||||
uint8_t *buf;
|
uint8_t *buf;
|
||||||
size_t ret, buf_size;
|
size_t ret, buf_size;
|
||||||
|
|
||||||
|
@ -135,6 +135,13 @@ static void flush_queued_data(VirtIOSerialPort *port, VirtQueue *vq,
|
||||||
virtio_notify(vdev, vq);
|
virtio_notify(vdev, vq);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void flush_queued_data(VirtIOSerialPort *port, bool discard)
|
||||||
|
{
|
||||||
|
assert(port || discard);
|
||||||
|
|
||||||
|
do_flush_queued_data(port, port->ovq, &port->vser->vdev, discard);
|
||||||
|
}
|
||||||
|
|
||||||
static size_t send_control_msg(VirtIOSerialPort *port, void *buf, size_t len)
|
static size_t send_control_msg(VirtIOSerialPort *port, void *buf, size_t len)
|
||||||
{
|
{
|
||||||
VirtQueueElement elem;
|
VirtQueueElement elem;
|
||||||
|
@ -186,6 +193,13 @@ int virtio_serial_open(VirtIOSerialPort *port)
|
||||||
int virtio_serial_close(VirtIOSerialPort *port)
|
int virtio_serial_close(VirtIOSerialPort *port)
|
||||||
{
|
{
|
||||||
port->host_connected = false;
|
port->host_connected = false;
|
||||||
|
/*
|
||||||
|
* If there's any data the guest sent which the app didn't
|
||||||
|
* consume, reset the throttling flag and discard the data.
|
||||||
|
*/
|
||||||
|
port->throttled = false;
|
||||||
|
flush_queued_data(port, true);
|
||||||
|
|
||||||
send_control_event(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
|
send_control_event(port, VIRTIO_CONSOLE_PORT_OPEN, 0);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -227,6 +241,20 @@ size_t virtio_serial_guest_ready(VirtIOSerialPort *port)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void virtio_serial_throttle_port(VirtIOSerialPort *port, bool throttle)
|
||||||
|
{
|
||||||
|
if (!port) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
port->throttled = throttle;
|
||||||
|
if (throttle) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
flush_queued_data(port, false);
|
||||||
|
}
|
||||||
|
|
||||||
/* Guest wants to notify us of some event */
|
/* Guest wants to notify us of some event */
|
||||||
static void handle_control_message(VirtIOSerial *vser, void *buf, size_t len)
|
static void handle_control_message(VirtIOSerial *vser, void *buf, size_t len)
|
||||||
{
|
{
|
||||||
|
@ -380,7 +408,11 @@ static void handle_output(VirtIODevice *vdev, VirtQueue *vq)
|
||||||
discard = true;
|
discard = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
flush_queued_data(port, vq, vdev, discard);
|
if (!discard && port->throttled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
do_flush_queued_data(port, vq, vdev, discard);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handle_input(VirtIODevice *vdev, VirtQueue *vq)
|
static void handle_input(VirtIODevice *vdev, VirtQueue *vq)
|
||||||
|
@ -555,6 +587,8 @@ static void virtser_bus_dev_print(Monitor *mon, DeviceState *qdev, int indent)
|
||||||
indent, "", port->guest_connected);
|
indent, "", port->guest_connected);
|
||||||
monitor_printf(mon, "%*s dev-prop-int: host_connected: %d\n",
|
monitor_printf(mon, "%*s dev-prop-int: host_connected: %d\n",
|
||||||
indent, "", port->host_connected);
|
indent, "", port->host_connected);
|
||||||
|
monitor_printf(mon, "%*s dev-prop-int: throttled: %d\n",
|
||||||
|
indent, "", port->throttled);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This function is only used if a port id is not provided by the user */
|
/* This function is only used if a port id is not provided by the user */
|
||||||
|
@ -592,13 +626,17 @@ static void add_port(VirtIOSerial *vser, uint32_t port_id)
|
||||||
|
|
||||||
static void remove_port(VirtIOSerial *vser, uint32_t port_id)
|
static void remove_port(VirtIOSerial *vser, uint32_t port_id)
|
||||||
{
|
{
|
||||||
|
VirtIOSerialPort *port;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
i = port_id / 32;
|
i = port_id / 32;
|
||||||
vser->ports_map[i] &= ~(1U << (port_id % 32));
|
vser->ports_map[i] &= ~(1U << (port_id % 32));
|
||||||
|
|
||||||
send_control_event(find_port_by_id(vser, port_id),
|
port = find_port_by_id(vser, port_id);
|
||||||
VIRTIO_CONSOLE_PORT_REMOVE, 1);
|
/* Flush out any unconsumed buffers first */
|
||||||
|
flush_queued_data(port, true);
|
||||||
|
|
||||||
|
send_control_event(port, VIRTIO_CONSOLE_PORT_REMOVE, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int virtser_port_qdev_init(DeviceState *qdev, DeviceInfo *base)
|
static int virtser_port_qdev_init(DeviceState *qdev, DeviceInfo *base)
|
||||||
|
|
|
@ -110,6 +110,8 @@ struct VirtIOSerialPort {
|
||||||
bool guest_connected;
|
bool guest_connected;
|
||||||
/* Is this device open for IO on the host? */
|
/* Is this device open for IO on the host? */
|
||||||
bool host_connected;
|
bool host_connected;
|
||||||
|
/* Do apps not want to receive data? */
|
||||||
|
bool throttled;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct VirtIOSerialPortInfo {
|
struct VirtIOSerialPortInfo {
|
||||||
|
@ -173,4 +175,11 @@ ssize_t virtio_serial_write(VirtIOSerialPort *port, const uint8_t *buf,
|
||||||
*/
|
*/
|
||||||
size_t virtio_serial_guest_ready(VirtIOSerialPort *port);
|
size_t virtio_serial_guest_ready(VirtIOSerialPort *port);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Flow control: Ports can signal to the virtio-serial core to stop
|
||||||
|
* sending data or re-start sending data, depending on the 'throttle'
|
||||||
|
* value here.
|
||||||
|
*/
|
||||||
|
void virtio_serial_throttle_port(VirtIOSerialPort *port, bool throttle);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue