summaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorTim Froidcoeur <tim.froidcoeur@tessares.net>2020-08-11 21:33:23 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-08-19 09:15:03 +0300
commit42f4480a37d682da5d144488f4c7443fd41d5067 (patch)
treec5077c0d202415ee5fc6a4be31c5fc928ace1b2a /include/net
parentbc8ce7de36b00ad3d416a03555cb4f4bdd4519ef (diff)
downloadlinux-42f4480a37d682da5d144488f4c7443fd41d5067.tar.xz
net: refactor bind_bucket fastreuse into helper
[ Upstream commit 62ffc589abb176821662efc4525ee4ac0b9c3894 ] Refactor the fastreuse update code in inet_csk_get_port into a small helper function that can be called from other places. Acked-by: Matthieu Baerts <matthieu.baerts@tessares.net> Signed-off-by: Tim Froidcoeur <tim.froidcoeur@tessares.net> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/inet_connection_sock.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/inet_connection_sock.h b/include/net/inet_connection_sock.h
index 371b3b45fd5c..2d5220ab0600 100644
--- a/include/net/inet_connection_sock.h
+++ b/include/net/inet_connection_sock.h
@@ -313,5 +313,9 @@ int inet_csk_compat_getsockopt(struct sock *sk, int level, int optname,
int inet_csk_compat_setsockopt(struct sock *sk, int level, int optname,
char __user *optval, unsigned int optlen);
+/* update the fast reuse flag when adding a socket */
+void inet_csk_update_fastreuse(struct inet_bind_bucket *tb,
+ struct sock *sk);
+
struct dst_entry *inet_csk_update_pmtu(struct sock *sk, u32 mtu);
#endif /* _INET_CONNECTION_SOCK_H */