summaryrefslogtreecommitdiffstats
path: root/include/net/sctp
diff options
context:
space:
mode:
authorMarcelo Ricardo Leitner <marcelo.leitner@gmail.com>2018-04-26 16:58:58 -0300
committerDavid S. Miller <davem@davemloft.net>2018-04-27 14:35:23 -0400
commit22d7be267eaa8114dcc28d66c1c347f667d7878a (patch)
tree8fc357f00ed1fe648bfd2cf04f32d5edf9794844 /include/net/sctp
parent6ff0f871c20ec1769a481edca86f23c76b2b06d3 (diff)
downloadlinux-0-day-22d7be267eaa8114dcc28d66c1c347f667d7878a.tar.gz
linux-0-day-22d7be267eaa8114dcc28d66c1c347f667d7878a.tar.xz
sctp: remove sctp_transport_pmtu_check
We are now keeping the MTU information synced between asoc, transport and dst, which makes the check at sctp_packet_config() not needed anymore. As it was the sole caller to this function, lets remove it. Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sctp')
-rw-r--r--include/net/sctp/sctp.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h
index 4965cbfa7d92c..f66d443500079 100644
--- a/include/net/sctp/sctp.h
+++ b/include/net/sctp/sctp.h
@@ -606,16 +606,4 @@ static inline __u32 sctp_dst_mtu(const struct dst_entry *dst)
SCTP_DEFAULT_MINSEGMENT));
}
-static inline bool sctp_transport_pmtu_check(struct sctp_transport *t)
-{
- __u32 pmtu = sctp_dst_mtu(t->dst);
-
- if (t->pathmtu == pmtu)
- return true;
-
- t->pathmtu = pmtu;
-
- return false;
-}
-
#endif /* __net_sctp_h__ */