From: Jason Wang <jasowang@redhat.com>
To: Tiwei Bie <tiwei.bie@intel.com>
Cc: mst@redhat.com, virtualization@lists.linux-foundation.org,
linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
wexu@redhat.com, jfreimann@redhat.com
Subject: Re: [PATCH RFC 2/2] vhost: packed ring support
Date: Wed, 28 Feb 2018 10:38:36 +0800 [thread overview]
Message-ID: <4a77554f-a4ce-a1d7-97c4-ffeb56bf1c90@redhat.com> (raw)
In-Reply-To: <20180227090319.h7hxmxp5rpozrb5s@debian>
On 2018年02月27日 17:03, Tiwei Bie wrote:
> On Wed, Feb 14, 2018 at 10:37:09AM +0800, Jason Wang wrote:
> [...]
>> +static void set_desc_used(struct vhost_virtqueue *vq,
>> + struct vring_desc_packed *desc, bool wrap_counter)
>> +{
>> + __virtio16 flags = desc->flags;
>> +
>> + if (wrap_counter) {
>> + desc->flags |= cpu_to_vhost16(vq, DESC_AVAIL);
>> + desc->flags |= cpu_to_vhost16(vq, DESC_USED);
>> + } else {
>> + desc->flags &= ~cpu_to_vhost16(vq, DESC_AVAIL);
>> + desc->flags &= ~cpu_to_vhost16(vq, DESC_USED);
>> + }
>> +
>> + desc->flags = flags;
> The `desc->flags` is restored after the change.
Right, will fix.
>> +}
>> +
>> +static int vhost_get_vq_desc_packed(struct vhost_virtqueue *vq,
>> + struct iovec iov[], unsigned int iov_size,
>> + unsigned int *out_num, unsigned int *in_num,
>> + struct vhost_log *log,
>> + unsigned int *log_num)
>> +{
>> + struct vring_desc_packed desc;
>> + int ret, access, i;
>> + u16 avail_idx = vq->last_avail_idx;
>> +
>> + /* When we start there are none of either input nor output. */
>> + *out_num = *in_num = 0;
>> + if (unlikely(log))
>> + *log_num = 0;
>> +
>> + do {
>> + unsigned int iov_count = *in_num + *out_num;
>> +
>> + i = vq->last_avail_idx & (vq->num - 1);
> The queue size may not be a power of 2 in packed ring.
Will fix this too.
Thanks
> Best regards,
> Tiwei Bie
next prev parent reply other threads:[~2018-02-28 2:38 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-14 2:37 [PATCH RFC 0/2] Packed ring for vhost Jason Wang
2018-02-14 2:37 ` [PATCH RFC 1/2] virtio: introduce packed ring defines Jason Wang
2018-02-14 2:37 ` [PATCH RFC 2/2] vhost: packed ring support Jason Wang
2018-02-27 9:03 ` Tiwei Bie
2018-02-28 2:38 ` Jason Wang [this message]
2018-02-14 2:43 ` [PATCH RFC 0/2] Packed ring for vhost Jason Wang
2018-02-14 2:47 ` Michael S. Tsirkin
2018-02-14 3:48 ` 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=4a77554f-a4ce-a1d7-97c4-ffeb56bf1c90@redhat.com \
--to=jasowang@redhat.com \
--cc=jfreimann@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=tiwei.bie@intel.com \
--cc=virtualization@lists.linux-foundation.org \
--cc=wexu@redhat.com \
/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).