Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752022Ab1EQEbe (ORCPT ); Tue, 17 May 2011 00:31:34 -0400 Received: from e34.co.us.ibm.com ([32.97.110.152]:41378 "EHLO e34.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751024Ab1EQEba (ORCPT ); Tue, 17 May 2011 00:31:30 -0400 Subject: Re: [PATCH V5 4/6 net-next] vhost: vhost TX zero-copy support From: Shirley Ma To: "Michael S. Tsirkin" Cc: David Miller , Eric Dumazet , Avi Kivity , Arnd Bergmann , netdev@vger.kernel.org, kvm@vger.kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20110516212401.GF18148@redhat.com> References: <1305574484.3456.30.camel@localhost.localdomain> <20110516204540.GD18148@redhat.com> <1305579414.3456.49.camel@localhost.localdomain> <20110516212401.GF18148@redhat.com> Content-Type: text/plain; charset="UTF-8" Date: Mon, 16 May 2011 21:31:23 -0700 Message-ID: <1305606683.10756.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 (2.28.3-1.fc12) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1907 Lines: 57 On Tue, 2011-05-17 at 00:24 +0300, Michael S. Tsirkin wrote: > On Mon, May 16, 2011 at 01:56:54PM -0700, Shirley Ma wrote: > > On Mon, 2011-05-16 at 23:45 +0300, Michael S. Tsirkin wrote: > > > > +/* Since we need to keep the order of used_idx as avail_idx, > it's > > > possible that > > > > + * DMA done not in order in lower device driver for some > reason. To > > > prevent > > > > + * used_idx out of order, upend_idx is used to track avail_idx > > > order, done_idx > > > > + * is used to track used_idx order. Once lower device DMA done, > > > then upend_idx > > > > + * can move to done_idx. > > > > > > Could you clarify this please? virtio explicitly allows out of > order > > > completion of requests. Does it simplify code that we try to keep > > > used index updates in-order? Because if not, this is not > > > really a requirement. > > > > Hello Mike, > > > > Based on my testing, vhost_add_used() must be in order from > > vhost_get_vq_desc(). Otherwise, virtio_net ring seems get double > > freed. > > Double-freed or you get NULL below? More likely is NULL. > > I didn't spend time on debugging this. > > > > in virtqueue_get_buf > > > > if (unlikely(!vq->data[i])) { > > BAD_RING(vq, "id %u is not a head!\n", i); > > return NULL; > > } > > Yes but i used here is the head that we read from the > ring, not the ring index itself. > i = vq->vring.used->ring[vq->last_used_idx%vq->vring.num].id > we must complete any id only once, but in any order. It is in any order of ring id, but must be in the order of "head" returns from vhost_get_vq_desc(), any clue? Thanks Shirley -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/