summaryrefslogtreecommitdiffstats
path: root/sys/netinet/sctp_pcb.c
diff options
context:
space:
mode:
authortuexen <tuexen@FreeBSD.org>2011-10-09 14:12:17 +0000
committertuexen <tuexen@FreeBSD.org>2011-10-09 14:12:17 +0000
commit187fe92b28e9f1274f337c7d4597e2934db396d0 (patch)
tree38754b42a292a0731560e3eed98ab49b5be6897a /sys/netinet/sctp_pcb.c
parent71b88d2a56e51eacfbc63fb7b57a29d8f6572ac7 (diff)
downloadFreeBSD-src-187fe92b28e9f1274f337c7d4597e2934db396d0.zip
FreeBSD-src-187fe92b28e9f1274f337c7d4597e2934db396d0.tar.gz
Update the inp stored in a HB-timer when moving an stcb to a new inp.
Use only this stored inp when processing a HB timeout. This fixes a bug which results in a crash. MFC after: 3 days.
Diffstat (limited to 'sys/netinet/sctp_pcb.c')
-rw-r--r--sys/netinet/sctp_pcb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/netinet/sctp_pcb.c b/sys/netinet/sctp_pcb.c
index 9eb9a7d..b04ee93 100644
--- a/sys/netinet/sctp_pcb.c
+++ b/sys/netinet/sctp_pcb.c
@@ -2804,6 +2804,7 @@ sctp_move_pcb_and_assoc(struct sctp_inpcb *old_inp, struct sctp_inpcb *new_inp,
/* now what about the nets? */
TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) {
net->pmtu_timer.ep = (void *)new_inp;
+ net->hb_timer.ep = (void *)new_inp;
net->rxt_timer.ep = (void *)new_inp;
}
SCTP_INP_WUNLOCK(new_inp);
OpenPOWER on IntegriCloud