From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rusty Russell Subject: Re: [PATCH 2/5] virtio: support unlocked queue kick Date: Thu, 03 Nov 2011 15:45:37 +1030 Message-ID: <871utpu6py.fsf@rustcorp.com.au> References: <20111005195403.407628164@bombadil.infradead.org> <20111005195529.964397366@bombadil.infradead.org> <87r52qgaf3.fsf@rustcorp.com.au> <20111006131828.GC19023@redhat.com> <20111101144045.GA15433@redhat.com> <87ty6ntdmf.fsf@rustcorp.com.au> <20111102072544.GA6967@infradead.org> <874nylua4z.fsf@rustcorp.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "Michael S. Tsirkin" , Christoph Hellwig , Chris Wright , Jens Axboe , Stefan Hajnoczi , kvm@vger.kernel.org, linux-kernel@vger.kernel.org To: Christoph Hellwig Return-path: In-Reply-To: <874nylua4z.fsf@rustcorp.com.au> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org On Thu, 03 Nov 2011 14:31:48 +1030, Rusty Russell wrote: > So let's change the API for everyone, into: > > bool virtqueue_should_kick(struct virtqueue *vq); > void virtqueue_kick(struct virtqueue *vq); > > Patch series coming... Nope, that sucked. virtqueue_should_kick() has side effects (it has to, if you want the actual kick to be outside the lock). I stole the names from your patch instead, just added some documentation and restored the "EXPORT_SYMBOL_GPL(virtqueue_kick);". No Signed-off-by on yours. Also, one trivial nit. You did: bool need_kick = false; ... if (vq->event) { if (vring_need_event(vring_avail_event(&vq->vring), new, old)) need_kick = true; } else { if (!(vq->vring.used->flags & VRING_USED_F_NO_NOTIFY)) need_kick = true; } ... return need_kick; I prefer to use uninitialized vars where possible: bool kick; if (vq->event) { kick = vring_need_event(vring_avail_event(&vq->vring), new, old); } else { kick = (!(vq->vring.used->flags & VRING_USED_F_NO_NOTIFY)); } ... return kick; This way, GCC will give an uninitialized var warning if someone changes the code and forgets to set kick. This is especially noticeable with err values and complex functions using goto. Thanks, Rusty.