Message ID | 20210621041650.5826-3-jasowang@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | vhost-vDPA multiqueue | expand |
On Mon, Jun 21, 2021 at 12:16:34PM +0800, Jason Wang wrote: > Switch to use unsigned int for nvqs since it's not expected to be > negative. > > Signed-off-by: Jason Wang <jasowang@redhat.com> Reviewed-by: Eli Cohen <elic@nvidia.com> > --- > include/hw/virtio/vhost.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/hw/virtio/vhost.h b/include/hw/virtio/vhost.h > index 21a9a52088..ddd7d3d594 100644 > --- a/include/hw/virtio/vhost.h > +++ b/include/hw/virtio/vhost.h > @@ -71,7 +71,7 @@ struct vhost_dev { > int n_tmp_sections; > MemoryRegionSection *tmp_sections; > struct vhost_virtqueue *vqs; > - int nvqs; > + unsigned int nvqs; > /* the first virtqueue which would be used by this vhost dev */ > int vq_index; > /* if non-zero, minimum required value for max_queues */ > -- > 2.25.1 >
diff --git a/include/hw/virtio/vhost.h b/include/hw/virtio/vhost.h index 21a9a52088..ddd7d3d594 100644 --- a/include/hw/virtio/vhost.h +++ b/include/hw/virtio/vhost.h @@ -71,7 +71,7 @@ struct vhost_dev { int n_tmp_sections; MemoryRegionSection *tmp_sections; struct vhost_virtqueue *vqs; - int nvqs; + unsigned int nvqs; /* the first virtqueue which would be used by this vhost dev */ int vq_index; /* if non-zero, minimum required value for max_queues */
Switch to use unsigned int for nvqs since it's not expected to be negative. Signed-off-by: Jason Wang <jasowang@redhat.com> --- include/hw/virtio/vhost.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)