aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/tcp.h
diff options
context:
space:
mode:
authorNikolay Borisov <kernel@kyup.com>2016-01-07 09:38:45 -0500
committerDavid S. Miller <davem@davemloft.net>2016-01-10 17:32:09 -0500
commitb840d15d39128d08ed4486085e5507d2617b9ae1 (patch)
tree33189ee2067bbb204c886affcbca9ac764621f94 /include/net/tcp.h
parent9bd6861bd4326e3afd3f14a9ec8a723771fb20bb (diff)
ipv4: Namespecify the tcp_keepalive_intvl sysctl knob
This is the final part required to namespaceify the tcp keep alive mechanism. Signed-off-by: Nikolay Borisov <kernel@kyup.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r--include/net/tcp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h
index 0646521400bf..a80255f4ca33 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -240,7 +240,6 @@ extern int sysctl_tcp_timestamps;
240extern int sysctl_tcp_window_scaling; 240extern int sysctl_tcp_window_scaling;
241extern int sysctl_tcp_sack; 241extern int sysctl_tcp_sack;
242extern int sysctl_tcp_fin_timeout; 242extern int sysctl_tcp_fin_timeout;
243extern int sysctl_tcp_keepalive_intvl;
244extern int sysctl_tcp_syn_retries; 243extern int sysctl_tcp_syn_retries;
245extern int sysctl_tcp_synack_retries; 244extern int sysctl_tcp_synack_retries;
246extern int sysctl_tcp_retries1; 245extern int sysctl_tcp_retries1;
@@ -1223,7 +1222,9 @@ void tcp_enter_memory_pressure(struct sock *sk);
1223 1222
1224static inline int keepalive_intvl_when(const struct tcp_sock *tp) 1223static inline int keepalive_intvl_when(const struct tcp_sock *tp)
1225{ 1224{
1226 return tp->keepalive_intvl ? : sysctl_tcp_keepalive_intvl; 1225 struct net *net = sock_net((struct sock *)tp);
1226
1227 return tp->keepalive_intvl ? : net->ipv4.sysctl_tcp_keepalive_intvl;
1227} 1228}
1228 1229
1229static inline int keepalive_time_when(const struct tcp_sock *tp) 1230static inline int keepalive_time_when(const struct tcp_sock *tp)