ipv4_mtu
INDIRECT_CALLABLE_DECLARE(unsigned int ipv4_mtu(const struct dst_entry *));
return INDIRECT_CALL_INET(dst->ops->mtu, ip6_mtu, ipv4_mtu, dst);
return INDIRECT_CALL_1(dst->ops->mtu, ipv4_mtu, dst);
old_mtu = ipv4_mtu(dst);
unsigned int ipv4_mtu(const struct dst_entry *dst);
advmss = max_t(unsigned int, ipv4_mtu(dst) - header_size,
EXPORT_INDIRECT_CALLABLE(ipv4_mtu);
.mtu = ipv4_mtu,