From: Roland Dreier Date: Tue, 29 Nov 2005 18:13:54 +0000 (-0800) Subject: IPoIB: always set path->query to NULL when query finishes X-Git-Tag: v2.6.15-rc5~19^2~6 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=5872a9fc28e6cd3a4e51479a50970d19a01573b3;p=~emulex%2Finfiniband.git IPoIB: always set path->query to NULL when query finishes Always set path->query to NULL when the SA path record query completes, rather than only when we don't have an address handle. Signed-off-by: Roland Dreier --- diff --git a/drivers/infiniband/ulp/ipoib/ipoib_main.c b/drivers/infiniband/ulp/ipoib/ipoib_main.c index cd58b3ddd9c..826d7a73ef8 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_main.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_main.c @@ -398,9 +398,9 @@ static void path_rec_completion(int status, while ((skb = __skb_dequeue(&neigh->queue))) __skb_queue_tail(&skqueue, skb); } - } else - path->query = NULL; + } + path->query = NULL; complete(&path->done); spin_unlock_irqrestore(&priv->lock, flags);