From: Jason Wang <jasowang@redhat.com>
To: Cornelia Huck <cornelia.huck@de.ibm.com>
Cc: Alexander Graf <agraf@suse.de>,
Richard Henderson <rth@twiddle.net>,
qemu-devel@nongnu.org,
Christian Borntraeger <borntraeger@de.ibm.com>,
mst@redhat.com
Subject: Re: [Qemu-devel] [PATCH V5 09/18] virtio-ccw: introduce ccw specific queue limit
Date: Fri, 03 Apr 2015 16:53:06 +0800 [thread overview]
Message-ID: <1428051186.27124.1@smtp.corp.redhat.com> (raw)
In-Reply-To: <20150402154742.21d6c66e.cornelia.huck@de.ibm.com>
On Thu, Apr 2, 2015 at 9:47 PM, Cornelia Huck
<cornelia.huck@de.ibm.com> wrote:
> On Wed, 1 Apr 2015 16:15:03 +0800
> Jason Wang <jasowang@redhat.com> wrote:
>
>> Instead of depending on marco, using a bus specific limit. Also make
>> it clear that the number of gsis per I/O adapter is not directly
>> depending on the number of virtio queues, but rather the other way
>> around.
>>
>> Cc: Alexander Graf <agraf@suse.de>
>> Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
>> Cc: Christian Borntraeger <borntraeger@de.ibm.com>
>> Cc: Richard Henderson <rth@twiddle.net>
>> Signed-off-by: Jason Wang <jasowang@redhat.com>
>> ---
>> hw/s390x/s390-virtio-ccw.c | 7 +++++--
>> hw/s390x/virtio-ccw.c | 19 ++++++++++++-------
>> include/hw/s390x/s390_flic.h | 4 +++-
>> 3 files changed, 20 insertions(+), 10 deletions(-)
>>
>
>> diff --git a/hw/s390x/virtio-ccw.c b/hw/s390x/virtio-ccw.c
>> index dfe6ded..935b880 100644
>> --- a/hw/s390x/virtio-ccw.c
>> +++ b/hw/s390x/virtio-ccw.c
>
>> @@ -265,8 +267,9 @@ static int virtio_ccw_set_vqs(SubchDev *sch,
>> uint64_t addr, uint32_t align,
>> uint16_t index, uint16_t num)
>> {
>> VirtIODevice *vdev = virtio_ccw_get_vdev(sch);
>> + int queue_max = virtio_get_queue_max(vdev);
>>
>> - if (index > VIRTIO_PCI_QUEUE_MAX) {
>> + if (index > queue_max) {
>
> trivial conflict on master (>= instead of >)
Yes, because of 590fe5722b522e492a9c78adadae4def35b137dd.
>
>> return -EINVAL;
>> }
>>
>
> In master, there's also a new instance of VIRTIO_PCI_QUEUE_MAX (in
> virtio_ccw_cb()) which needs a similar treatment.
>
> But on the whole, looks good.
Thanks for the reminding, will address this in V6.
next prev parent reply other threads:[~2015-04-03 8:53 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-01 8:14 [Qemu-devel] [PATCH V5 00/18] Support more virtio queues Jason Wang
2015-04-01 8:14 ` [Qemu-devel] [PATCH V5 01/18] virtio-net: fix the upper bound when trying to delete queues Jason Wang
2015-04-01 8:14 ` [Qemu-devel] [PATCH V5 02/18] pc: add 2.4 machine types Jason Wang
2015-04-01 8:14 ` [Qemu-devel] [PATCH V5 03/18] spapr: add machine type specific instance init function Jason Wang
2015-04-01 8:14 ` [Qemu-devel] [PATCH V5 04/18] ppc: spapr: add 2.4 machine type Jason Wang
2015-04-01 8:14 ` [Qemu-devel] [PATCH V5 05/18] monitor: replace the magic number 255 with MAX_QUEUE_NUM Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 06/18] monitor: check return value of qemu_find_net_clients_except() Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 07/18] virtio-ccw: using VIRTIO_NO_VECTOR instead of 0 for invalid virtqueue Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 08/18] virtio: introduce bus specific queue limit Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 09/18] virtio-ccw: introduce ccw " Jason Wang
2015-04-02 13:47 ` Cornelia Huck
2015-04-03 8:53 ` Jason Wang [this message]
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 10/18] virtio-s390: switch to bus " Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 11/18] virtio-mmio: " Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 12/18] virtio-pci: switch to use " Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 13/18] virtio: introduce vector to virtqueues mapping Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 14/18] virtio: introduce virtio_queue_get_index() Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 15/18] virtio-pci: speedup MSI-X masking and unmasking Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 16/18] virtio-pci: increase the maximum number of virtqueues to 513 Jason Wang
2015-04-07 16:54 ` Alexander Graf
2015-04-07 18:06 ` Luigi Rizzo
2015-04-07 18:33 ` Alexander Graf
2015-04-08 8:29 ` Jason Wang
2015-04-08 8:41 ` Alexander Graf
2015-04-08 9:04 ` Jason Wang
2015-04-08 8:27 ` Jason Wang
2015-04-08 13:23 ` Michael S. Tsirkin
2015-04-08 8:10 ` Jason Wang
2015-04-08 8:13 ` Alexander Graf
2015-04-08 8:30 ` Jason Wang
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 17/18] pci: remove hard-coded bar size in msix_init_exclusive_bar() Jason Wang
2015-04-01 9:18 ` Michael S. Tsirkin
2015-04-01 10:12 ` Jason Wang
2015-04-01 10:20 ` Michael S. Tsirkin
2015-04-01 8:15 ` [Qemu-devel] [PATCH V5 18/18] virtio-pci: introduce auto_msix_bar_size property Jason Wang
2015-04-01 9:20 ` Michael S. Tsirkin
2015-04-01 10:14 ` Jason Wang
2015-04-02 13:43 ` [Qemu-devel] [PATCH V5 00/18] Support more virtio queues Cornelia Huck
2015-04-03 8:52 ` Jason Wang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1428051186.27124.1@smtp.corp.redhat.com \
--to=jasowang@redhat.com \
--cc=agraf@suse.de \
--cc=borntraeger@de.ibm.com \
--cc=cornelia.huck@de.ibm.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).