From mboxrd@z Thu Jan 1 00:00:00 1970 From: Amos Kong Subject: [PATCH v2] virtio: Define queue_size to unsigned Date: Thu, 16 Jun 2011 10:10:13 +0800 Message-ID: <20110616021013.4160.89565.stgit@localhost6.localdomain6> References: <4DF940E3.2020603@codemonkey.ws> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Cc: kvm@vger.kernel.org, mst@redhat.com To: qemu-devel@nongnu.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:57801 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753998Ab1FPCKS (ORCPT ); Wed, 15 Jun 2011 22:10:18 -0400 In-Reply-To: <4DF940E3.2020603@codemonkey.ws> Sender: kvm-owner@vger.kernel.org List-ID: It's not valid for queue_size to be negative, then the type ought to be unsigned. Changes from V1: - drop the check and just define it to unsigned. Signed-off-by: Amos Kong --- hw/virtio.c | 2 +- hw/virtio.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/virtio.c b/hw/virtio.c index 6e8814c..4c1e334 100644 --- a/hw/virtio.c +++ b/hw/virtio.c @@ -602,7 +602,7 @@ void virtio_queue_set_vector(VirtIODevice *vdev, int n, uint16_t vector) vdev->vq[n].vector = vector; } -VirtQueue *virtio_add_queue(VirtIODevice *vdev, int queue_size, +VirtQueue *virtio_add_queue(VirtIODevice *vdev, unsigned int queue_size, void (*handle_output)(VirtIODevice *, VirtQueue *)) { int i; diff --git a/hw/virtio.h b/hw/virtio.h index bc72289..ff0c9b5 100644 --- a/hw/virtio.h +++ b/hw/virtio.h @@ -138,7 +138,7 @@ static inline void virtio_set_status(VirtIODevice *vdev, uint8_t val) vdev->status = val; } -VirtQueue *virtio_add_queue(VirtIODevice *vdev, int queue_size, +VirtQueue *virtio_add_queue(VirtIODevice *vdev, unsigned int queue_size, void (*handle_output)(VirtIODevice *, VirtQueue *));