Home
last modified time | relevance | path

Searched refs:rx_queue_size (Results 1 – 3 of 3) sorted by relevance

/qemu/hw/hyperv/
H A Dvmbus.c238 uint8_t rx_queue_size; member
1524 if (vmbus->rx_queue_size == HV_MSG_QUEUE_LEN) { in enqueue_incoming_message()
1529 prev_size = vmbus->rx_queue_size; in enqueue_incoming_message()
1530 idx = (vmbus->rx_queue_head + vmbus->rx_queue_size) % HV_MSG_QUEUE_LEN; in enqueue_incoming_message()
1532 vmbus->rx_queue_size++; in enqueue_incoming_message()
2075 vmbus->rx_queue_size = 0; in send_unload()
2097 if (!vmbus->rx_queue_size) { in process_message()
2142 vmbus->rx_queue_size--; in process_message()
2568 return vmbus->rx_queue_size; in vmbus_rx_queue_needed()
2578 VMSTATE_UINT8(rx_queue_size, VMBus),
/qemu/include/hw/virtio/
H A Dvirtio-net.h52 uint16_t rx_queue_size; member
/qemu/hw/net/
H A Dvirtio-net.c2976 n->vqs[index].rx_vq = virtio_add_queue(vdev, n->net_conf.rx_queue_size, in virtio_net_add_queue()
3690 if (n->net_conf.rx_queue_size < VIRTIO_NET_RX_QUEUE_MIN_SIZE || in virtio_net_device_realize()
3691 n->net_conf.rx_queue_size > VIRTQUEUE_MAX_SIZE || in virtio_net_device_realize()
3692 !is_power_of_2(n->net_conf.rx_queue_size)) { in virtio_net_device_realize()
3695 n->net_conf.rx_queue_size, VIRTIO_NET_RX_QUEUE_MIN_SIZE, in virtio_net_device_realize()
3988 DEFINE_PROP_UINT16("rx_queue_size", VirtIONet, net_conf.rx_queue_size,