From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steve Wise Date: Mon, 19 Jul 2010 22:17:59 +0000 Subject: Re: [patch v2] infiniband: cxgb3: clean up signed check Message-Id: <4C44CF17.3030408@opengridcomputing.com> List-Id: References: <20100717102900.GG17585@bicker> <4C446509.3010400@opengridcomputing.com> <20100719203014.GN17585@bicker> In-Reply-To: <20100719203014.GN17585@bicker> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Dan Carpenter Cc: Steve Wise , Roland Dreier , Sean Hefty , Hal Rosenstock , Frank Zago , linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-janitors-u79uwXL29TY76Z2rM5mHXA@public.gmane.org Acked-by: Steve Wise Dan Carpenter wrote: > Q_FREECNT() returns the number of spaces free. This should never > be a negative amount. Also the num_wrs is an unsigned int so it can > never be less than zero. > > Signed-off-by: Dan Carpenter > --- > In v1: I changed num_wrs to a signed int. > > diff --git a/drivers/infiniband/hw/cxgb3/iwch_qp.c b/drivers/infiniband/hw/cxgb3/iwch_qp.c > index ae47bfd..6adc13f 100644 > --- a/drivers/infiniband/hw/cxgb3/iwch_qp.c > +++ b/drivers/infiniband/hw/cxgb3/iwch_qp.c > @@ -371,7 +371,7 @@ int iwch_post_send(struct ib_qp *ibqp, struct ib_send_wr *wr, > } > num_wrs = Q_FREECNT(qhp->wq.sq_rptr, qhp->wq.sq_wptr, > qhp->wq.sq_size_log2); > - if (num_wrs <= 0) { > + if (num_wrs = 0) { > spin_unlock_irqrestore(&qhp->lock, flag); > err = -ENOMEM; > goto out; > @@ -554,7 +554,7 @@ int iwch_bind_mw(struct ib_qp *qp, > } > num_wrs = Q_FREECNT(qhp->wq.sq_rptr, qhp->wq.sq_wptr, > qhp->wq.sq_size_log2); > - if ((num_wrs) <= 0) { > + if (num_wrs = 0) { > spin_unlock_irqrestore(&qhp->lock, flag); > return -ENOMEM; > } > -- > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >