vhost: Make parameter name match of vhost_get_vq_desc()
authorXianting Tian <xianting.tian@linux.alibaba.com>
Wed, 21 Jun 2023 09:38:35 +0000 (17:38 +0800)
committerMichael S. Tsirkin <mst@redhat.com>
Mon, 3 Jul 2023 16:15:15 +0000 (12:15 -0400)
commit9e396a2f434f829fb3b98a24bb8db5429320589d
tree25813d275b3f750d9c756441ebdcb8d103d85bb3
parentf06cf1e1a503169280467d12d2ec89bf2c30ace7
vhost: Make parameter name match of vhost_get_vq_desc()

The parameter name in the function declaration and definition
should be the same.

drivers/vhost/vhost.h,
int vhost_get_vq_desc(..., unsigned int iov_count,...);

drivers/vhost/vhost.c,
int vhost_get_vq_desc(..., unsigned int iov_size,...)

Signed-off-by: Xianting Tian <xianting.tian@linux.alibaba.com>
Message-Id: <20230621093835.36878-1-xianting.tian@linux.alibaba.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/vhost/vhost.h