From: Wei Yongjun Date: Fri, 7 Sep 2012 06:51:23 +0000 (+0000) Subject: RDMA/cxgb4: Move dereference below NULL test X-Git-Tag: upstream/snapshot3+hdmi~6691^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=92dd6c3d4d4e0a26c9bb987b3f2f08c1da86d9ce;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git RDMA/cxgb4: Move dereference below NULL test spatch with a semantic match is used to found this. (http://coccinelle.lip6.fr/) Signed-off-by: Wei Yongjun Acked-by: Steve Wise Signed-off-by: Roland Dreier --- diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c index 51f4206..6cfd4d8 100644 --- a/drivers/infiniband/hw/cxgb4/cm.c +++ b/drivers/infiniband/hw/cxgb4/cm.c @@ -1361,11 +1361,11 @@ static int abort_rpl(struct c4iw_dev *dev, struct sk_buff *skb) struct tid_info *t = dev->rdev.lldi.tids; ep = lookup_tid(t, tid); - PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid); if (!ep) { printk(KERN_WARNING MOD "Abort rpl to freed endpoint\n"); return 0; } + PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid); mutex_lock(&ep->com.mutex); switch (ep->com.state) { case ABORTING: