aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2021-12-30 14:30:11 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2021-12-30 14:30:11 +0000
commit1adb91e52164af634c816327f8cdb3751dc76ce4 (patch)
tree36c63d486d7dc3d4c8e5b74831f05b799c26bf77
parent2de2ae331be2504d1038b2124e7d44f23aa70405 (diff)
downloadsrc-1adb91e52164af634c816327f8cdb3751dc76ce4.tar.gz
src-1adb91e52164af634c816327f8cdb3751dc76ce4.zip
sctp: retire sctp_mtu_size_reset()
Thanks to Timo Voelker for making me aware that sctp_mtu_size_reset() is very similar to sctp_pathmtu_adjustment(). MFC after: 3 days
-rw-r--r--sys/netinet/sctp_output.c16
-rw-r--r--sys/netinet/sctputil.c31
-rw-r--r--sys/netinet/sctputil.h3
3 files changed, 7 insertions, 43 deletions
diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c
index 17a4df2243e2..4c48d4787a69 100644
--- a/sys/netinet/sctp_output.c
+++ b/sys/netinet/sctp_output.c
@@ -4244,10 +4244,10 @@ sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
mtu -= sizeof(struct udphdr);
}
if (mtu < net->mtu) {
+ net->mtu = mtu;
if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) {
- sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
+ sctp_pathmtu_adjustment(stcb, mtu, true);
}
- net->mtu = mtu;
}
}
} else if (ro->ro_nh == NULL) {
@@ -4586,18 +4586,16 @@ sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
mtu -= sizeof(struct udphdr);
}
if (mtu < net->mtu) {
+ net->mtu = mtu;
if ((stcb != NULL) && (stcb->asoc.smallest_mtu > mtu)) {
- sctp_mtu_size_reset(inp, &stcb->asoc, mtu);
+ sctp_pathmtu_adjustment(stcb, mtu, false);
}
- net->mtu = mtu;
}
}
- } else if (ifp) {
- if (ND_IFINFO(ifp)->linkmtu &&
+ } else if (ifp != NULL) {
+ if ((ND_IFINFO(ifp)->linkmtu > 0) &&
(stcb->asoc.smallest_mtu > ND_IFINFO(ifp)->linkmtu)) {
- sctp_mtu_size_reset(inp,
- &stcb->asoc,
- ND_IFINFO(ifp)->linkmtu);
+ sctp_pathmtu_adjustment(stcb, ND_IFINFO(ifp)->linkmtu, false);
}
}
}
diff --git a/sys/netinet/sctputil.c b/sys/netinet/sctputil.c
index df3768ca2a35..04a7e12f10eb 100644
--- a/sys/netinet/sctputil.c
+++ b/sys/netinet/sctputil.c
@@ -2905,37 +2905,6 @@ sctp_calculate_len(struct mbuf *m)
return (tlen);
}
-void
-sctp_mtu_size_reset(struct sctp_inpcb *inp,
- struct sctp_association *asoc, uint32_t mtu)
-{
- /*
- * Reset the P-MTU size on this association, this involves changing
- * the asoc MTU, going through ANY chunk+overhead larger than mtu to
- * allow the DF flag to be cleared.
- */
- struct sctp_tmit_chunk *chk;
- unsigned int eff_mtu, ovh;
-
- asoc->smallest_mtu = mtu;
- if (inp->sctp_flags & SCTP_PCB_FLAGS_BOUND_V6) {
- ovh = SCTP_MIN_OVERHEAD;
- } else {
- ovh = SCTP_MIN_V4_OVERHEAD;
- }
- eff_mtu = mtu - ovh;
- TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
- if (chk->send_size > eff_mtu) {
- chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
- }
- }
- TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
- if (chk->send_size > eff_mtu) {
- chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
- }
- }
-}
-
/*
* Given an association and starting time of the current RTT period, update
* RTO in number of msecs. net should point to the current network.
diff --git a/sys/netinet/sctputil.h b/sys/netinet/sctputil.h
index 3319eb4f455b..8253fde829e1 100644
--- a/sys/netinet/sctputil.h
+++ b/sys/netinet/sctputil.h
@@ -109,9 +109,6 @@ int
sctp_dynamic_set_primary(struct sockaddr *sa, uint32_t vrf_id);
void
- sctp_mtu_size_reset(struct sctp_inpcb *, struct sctp_association *, uint32_t);
-
-void
sctp_wakeup_the_read_socket(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
int so_locked
SCTP_UNUSED