From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Wang Subject: Re: [RFC v3 0/5] virtio: support packed ring Date: Fri, 27 Apr 2018 14:17:51 +0800 Message-ID: <5c712aa2-f00e-b472-cdfc-48175aea790d@redhat.com> References: <20180425051550.24342-1-tiwei.bie@intel.com> <5ad1ca01-1e5c-7105-f303-7e8d42f6a068@redhat.com> <20180427071725-mutt-send-email-mst@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Cc: Tiwei Bie , virtualization@lists.linux-foundation.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, wexu@redhat.com, jfreimann@redhat.com To: "Michael S. Tsirkin" Return-path: In-Reply-To: <20180427071725-mutt-send-email-mst@kernel.org> Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On 2018年04月27日 12:18, Michael S. Tsirkin wrote: > On Fri, Apr 27, 2018 at 11:56:05AM +0800, Jason Wang wrote: >> On 2018年04月25日 13:15, Tiwei Bie wrote: >>> Hello everyone, >>> >>> This RFC implements packed ring support in virtio driver. >>> >>> Some simple functional tests have been done with Jason's >>> packed ring implementation in vhost: >>> >>> https://lkml.org/lkml/2018/4/23/12 >>> >>> Both of ping and netperf worked as expected (with EVENT_IDX >>> disabled). But there are below known issues: >>> >>> 1. Reloading the guest driver will break the Tx/Rx; >> Will have a look at this issue. >> >>> 2. Zeroing the flags when detaching a used desc will >>> break the guest -> host path. >> I still think zeroing flags is unnecessary or even a bug. At host, I track >> last observed avail wrap counter and detect avail like (what is suggested in >> the example code in the spec): >> >> static bool desc_is_avail(struct vhost_virtqueue *vq, __virtio16 flags) >> { >>        bool avail = flags & cpu_to_vhost16(vq, DESC_AVAIL); >> >>        return avail == vq->avail_wrap_counter; >> } >> >> So zeroing wrap can not work with this obviously. >> >> Thanks > I agree. I think what one should do is flip the available bit. > But is this flipping a must? Thanks