mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
virtio-net: use "queue_pairs" instead of "queues" when possible
Most of the time, "queues" really means queue pairs. So this patch switch to use "queue_pairs" to avoid confusion. Signed-off-by: Jason Wang <jasowang@redhat.com> Message-Id: <20211020045600.16082-8-jasowang@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
05ba3f63d1
commit
441537f1ce
3 changed files with 80 additions and 80 deletions
|
@ -194,8 +194,8 @@ struct VirtIONet {
|
|||
NICConf nic_conf;
|
||||
DeviceState *qdev;
|
||||
int multiqueue;
|
||||
uint16_t max_queues;
|
||||
uint16_t curr_queues;
|
||||
uint16_t max_queue_pairs;
|
||||
uint16_t curr_queue_pairs;
|
||||
size_t config_size;
|
||||
char *netclient_name;
|
||||
char *netclient_type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue