diff options
author | Xin Long <lucien.xin@gmail.com> | 2015-12-30 16:50:49 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-01-05 18:24:01 +0100 |
commit | b5eff7128366c4a7a9b502097a968ec9cae2bea2 (patch) | |
tree | 7d82c07abe7e77d96983d3428697f2815e671204 /net/sctp/sm_sideeffect.c | |
parent | sctp: apply rhashtable api to sctp procfs (diff) | |
download | linux-b5eff7128366c4a7a9b502097a968ec9cae2bea2.tar.xz linux-b5eff7128366c4a7a9b502097a968ec9cae2bea2.zip |
sctp: drop the old assoc hashtable of sctp
transport hashtable will replace the association hashtable,
so association hashtable is not used in sctp any more, so
drop the codes about that.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/sm_sideeffect.c')
-rw-r--r-- | net/sctp/sm_sideeffect.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c index 05cd16400e0b..4f170ad38ff4 100644 --- a/net/sctp/sm_sideeffect.c +++ b/net/sctp/sm_sideeffect.c @@ -866,7 +866,6 @@ static void sctp_cmd_delete_tcb(sctp_cmd_seq_t *cmds, (!asoc->temp) && (sk->sk_shutdown != SHUTDOWN_MASK)) return; - sctp_unhash_established(asoc); sctp_association_free(asoc); } @@ -1269,7 +1268,6 @@ static int sctp_cmd_interpreter(sctp_event_t event_type, asoc = cmd->obj.asoc; BUG_ON(asoc->peer.primary_path == NULL); sctp_endpoint_add_asoc(ep, asoc); - sctp_hash_established(asoc); break; case SCTP_CMD_UPDATE_ASSOC: |