From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58262) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjQjx-0005U4-Kx for qemu-devel@nongnu.org; Mon, 03 Jun 2013 05:07:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UjQjq-0002Ui-Kp for qemu-devel@nongnu.org; Mon, 03 Jun 2013 05:07:45 -0400 Message-ID: <51AC5CCA.90701@redhat.com> Date: Mon, 03 Jun 2013 11:07:22 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1370249911-19708-1-git-send-email-stefanha@redhat.com> <1370249911-19708-2-git-send-email-stefanha@redhat.com> In-Reply-To: <1370249911-19708-2-git-send-email-stefanha@redhat.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 1/2] vhost-scsi: fix k->set_guest_notifiers() NULL dereference List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org, Nicholas Bellinger , qemu-stable@nongnu.org, Asias He Il 03/06/2013 10:58, Stefan Hajnoczi ha scritto: > Coverity picked up a copy-paste bug. In vhost_scsi_start() we check for > !k->set_guest_notifiers and error out. The check probably got copied > but instead of erroring we actually use the function pointer! Exactly. :) Applied to scsi branch, thanks. Paolo > Cc: Nicholas Bellinger > Cc: Asias He > Cc: qemu-stable@nongnu.org > Signed-off-by: Stefan Hajnoczi > --- > hw/scsi/vhost-scsi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/scsi/vhost-scsi.c b/hw/scsi/vhost-scsi.c > index d7a1c33..785e93f 100644 > --- a/hw/scsi/vhost-scsi.c > +++ b/hw/scsi/vhost-scsi.c > @@ -123,7 +123,7 @@ static void vhost_scsi_stop(VHostSCSI *s) > VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus); > int ret = 0; > > - if (!k->set_guest_notifiers) { > + if (k->set_guest_notifiers) { > ret = k->set_guest_notifiers(qbus->parent, s->dev.nvqs, false); > if (ret < 0) { > error_report("vhost guest notifier cleanup failed: %d\n", ret); >