diff options
Diffstat (limited to 'net/sctp/input.c')
| -rw-r--r-- | net/sctp/input.c | 7 | 
1 files changed, 2 insertions, 5 deletions
diff --git a/net/sctp/input.c b/net/sctp/input.c index 80564fe0302..8b9b6790a3d 100644 --- a/net/sctp/input.c +++ b/net/sctp/input.c @@ -736,15 +736,12 @@ static void __sctp_unhash_endpoint(struct sctp_endpoint *ep)  	epb = &ep->base; -	if (hlist_unhashed(&epb->node)) -		return; -  	epb->hashent = sctp_ep_hashfn(epb->bind_addr.port);  	head = &sctp_ep_hashtable[epb->hashent];  	sctp_write_lock(&head->lock); -	__hlist_del(&epb->node); +	hlist_del_init(&epb->node);  	sctp_write_unlock(&head->lock);  } @@ -825,7 +822,7 @@ static void __sctp_unhash_established(struct sctp_association *asoc)  	head = &sctp_assoc_hashtable[epb->hashent];  	sctp_write_lock(&head->lock); -	__hlist_del(&epb->node); +	hlist_del_init(&epb->node);  	sctp_write_unlock(&head->lock);  }  |