diff options
author | Jason Wang <jasowang@redhat.com> | 2016-03-04 06:24:53 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-03-10 19:18:53 -0500 |
commit | 0308813724606549436d30efd877a80c8e00790e (patch) | |
tree | 9ce96f57528d75f21df24831ad35fca9fdc7a4d4 /include/uapi | |
parent | d4a60603fa0b42012decfa058dfa44cffde7a10c (diff) |
vhost_net: basic polling support
This patch tries to poll for new added tx buffer or socket receive
queue for a while at the end of tx/rx processing. The maximum time
spent on polling were specified through a new kind of vring ioctl.
Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/uapi')
-rw-r--r-- | include/uapi/linux/vhost.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/uapi/linux/vhost.h b/include/uapi/linux/vhost.h index ab3731917bac..61a8777178c6 100644 --- a/include/uapi/linux/vhost.h +++ b/include/uapi/linux/vhost.h | |||
@@ -126,6 +126,12 @@ struct vhost_memory { | |||
126 | #define VHOST_SET_VRING_CALL _IOW(VHOST_VIRTIO, 0x21, struct vhost_vring_file) | 126 | #define VHOST_SET_VRING_CALL _IOW(VHOST_VIRTIO, 0x21, struct vhost_vring_file) |
127 | /* Set eventfd to signal an error */ | 127 | /* Set eventfd to signal an error */ |
128 | #define VHOST_SET_VRING_ERR _IOW(VHOST_VIRTIO, 0x22, struct vhost_vring_file) | 128 | #define VHOST_SET_VRING_ERR _IOW(VHOST_VIRTIO, 0x22, struct vhost_vring_file) |
129 | /* Set busy loop timeout (in us) */ | ||
130 | #define VHOST_SET_VRING_BUSYLOOP_TIMEOUT _IOW(VHOST_VIRTIO, 0x23, \ | ||
131 | struct vhost_vring_state) | ||
132 | /* Get busy loop timeout (in us) */ | ||
133 | #define VHOST_GET_VRING_BUSYLOOP_TIMEOUT _IOW(VHOST_VIRTIO, 0x24, \ | ||
134 | struct vhost_vring_state) | ||
129 | 135 | ||
130 | /* VHOST_NET specific defines */ | 136 | /* VHOST_NET specific defines */ |
131 | 137 | ||