|
@@ -874,6 +874,9 @@ void sctp_hash_transport(struct sctp_transport *t)
|
|
|
{
|
|
|
struct sctp_hash_cmp_arg arg;
|
|
|
|
|
|
+ if (t->asoc->temp)
|
|
|
+ return;
|
|
|
+
|
|
|
arg.ep = t->asoc->ep;
|
|
|
arg.paddr = &t->ipaddr;
|
|
|
arg.net = sock_net(t->asoc->base.sk);
|
|
@@ -886,6 +889,9 @@ reinsert:
|
|
|
|
|
|
void sctp_unhash_transport(struct sctp_transport *t)
|
|
|
{
|
|
|
+ if (t->asoc->temp)
|
|
|
+ return;
|
|
|
+
|
|
|
rhashtable_remove_fast(&sctp_transport_hashtable, &t->node,
|
|
|
sctp_hash_params);
|
|
|
}
|
|
@@ -931,7 +937,7 @@ static struct sctp_association *__sctp_lookup_association(
|
|
|
struct sctp_transport *t;
|
|
|
|
|
|
t = sctp_addrs_lookup_transport(net, local, peer);
|
|
|
- if (!t || t->dead || t->asoc->temp)
|
|
|
+ if (!t || t->dead)
|
|
|
return NULL;
|
|
|
|
|
|
sctp_association_hold(t->asoc);
|