From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55879) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXHBy-0004FX-5k for qemu-devel@nongnu.org; Mon, 17 Jul 2017 21:20:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXHBv-0002Kt-1X for qemu-devel@nongnu.org; Mon, 17 Jul 2017 21:20:50 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54908) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dXHBu-0002Kf-RI for qemu-devel@nongnu.org; Mon, 17 Jul 2017 21:20:46 -0400 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 9BFEA8124A for ; Tue, 18 Jul 2017 01:20:45 +0000 (UTC) Date: Tue, 18 Jul 2017 09:20:42 +0800 From: Peter Xu Message-ID: <20170718012042.GW27284@pxdev.xzpeter.org> References: <20170717110936.23314-1-dgilbert@redhat.com> <20170717110936.23314-4-dgilbert@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20170717110936.23314-4-dgilbert@redhat.com> Subject: Re: [Qemu-devel] [PATCH v4 3/6] migration/rdma: fix qemu_rdma_block_for_wrid error paths List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Dr. David Alan Gilbert (git)" Cc: qemu-devel@nongnu.org, quintela@redhat.com, lvivier@redhat.com On Mon, Jul 17, 2017 at 12:09:33PM +0100, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" > > The two places that 'goto err_block_for_wrid' weren't setting ret > and so would end up returning 0 even though we've failed. > > Signed-off-by: Dr. David Alan Gilbert > --- > migration/rdma.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/migration/rdma.c b/migration/rdma.c > index 6111e10c70..59810aec2e 100644 > --- a/migration/rdma.c > +++ b/migration/rdma.c > @@ -1521,14 +1521,16 @@ static int qemu_rdma_block_for_wrid(RDMAContext *rdma, int wrid_requested, > yield_until_fd_readable(rdma->comp_channel->fd); > } > > - if (ibv_get_cq_event(rdma->comp_channel, &cq, &cq_ctx)) { > + ret = ibv_get_cq_event(rdma->comp_channel, &cq, &cq_ctx); > + if (ret) { > perror("ibv_get_cq_event"); > goto err_block_for_wrid; > } > > num_cq_events++; > > - if (ibv_req_notify_cq(cq, 0)) { > + ret = -ibv_req_notify_cq(cq, 0); (I didn't really notice that it is returning a positive value for error...) Reviewed-by: Peter Xu > + if (ret) { > goto err_block_for_wrid; > } > > @@ -1564,6 +1566,8 @@ err_block_for_wrid: > if (num_cq_events) { > ibv_ack_cq_events(cq, num_cq_events); > } > + > + rdma->error_state = ret; > return ret; > } > > -- > 2.13.0 > -- Peter Xu