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>
This commit is contained in:

committed by
David S. Miller

parent
6ff0f871c2
commit
22d7be267e
@@ -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__ */
|
||||
|
Reference in New Issue
Block a user