The variable node shadows earlier one in same function. Signed-off-by: Stephen Hemminger --- a/net/sctp/socket.c 2010-02-18 10:06:57.656887238 -0800 +++ b/net/sctp/socket.c 2010-02-18 10:07:09.894132363 -0800 @@ -5478,7 +5478,7 @@ pp_found: */ int reuse = sk->sk_reuse; struct sock *sk2; - struct hlist_node *node; + struct hlist_node *node2; SCTP_DEBUG_PRINTK("sctp_get_port() found a possible match\n"); if (pp->fastreuse && sk->sk_reuse && @@ -5495,7 +5495,7 @@ pp_found: * that this port/socket (sk) combination are already * in an endpoint. */ - sk_for_each_bound(sk2, node, &pp->owner) { + sk_for_each_bound(sk2, node2, &pp->owner) { struct sctp_endpoint *ep2; ep2 = sctp_sk(sk2)->ep; -- -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html