diff options
Diffstat (limited to 'include/net/tcp.h')
| -rw-r--r-- | include/net/tcp.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 4fee0424af7e..e36c874c7fb1 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h  | |||
| @@ -224,7 +224,7 @@ extern int sysctl_tcp_fack; | |||
| 224 | extern int sysctl_tcp_reordering; | 224 | extern int sysctl_tcp_reordering; | 
| 225 | extern int sysctl_tcp_ecn; | 225 | extern int sysctl_tcp_ecn; | 
| 226 | extern int sysctl_tcp_dsack; | 226 | extern int sysctl_tcp_dsack; | 
| 227 | extern int sysctl_tcp_mem[3]; | 227 | extern long sysctl_tcp_mem[3]; | 
| 228 | extern int sysctl_tcp_wmem[3]; | 228 | extern int sysctl_tcp_wmem[3]; | 
| 229 | extern int sysctl_tcp_rmem[3]; | 229 | extern int sysctl_tcp_rmem[3]; | 
| 230 | extern int sysctl_tcp_app_win; | 230 | extern int sysctl_tcp_app_win; | 
| @@ -247,7 +247,7 @@ extern int sysctl_tcp_cookie_size; | |||
| 247 | extern int sysctl_tcp_thin_linear_timeouts; | 247 | extern int sysctl_tcp_thin_linear_timeouts; | 
| 248 | extern int sysctl_tcp_thin_dupack; | 248 | extern int sysctl_tcp_thin_dupack; | 
| 249 | 249 | ||
| 250 | extern atomic_t tcp_memory_allocated; | 250 | extern atomic_long_t tcp_memory_allocated; | 
| 251 | extern struct percpu_counter tcp_sockets_allocated; | 251 | extern struct percpu_counter tcp_sockets_allocated; | 
| 252 | extern int tcp_memory_pressure; | 252 | extern int tcp_memory_pressure; | 
| 253 | 253 | ||
| @@ -280,7 +280,7 @@ static inline bool tcp_too_many_orphans(struct sock *sk, int shift) | |||
| 280 | } | 280 | } | 
| 281 | 281 | ||
| 282 | if (sk->sk_wmem_queued > SOCK_MIN_SNDBUF && | 282 | if (sk->sk_wmem_queued > SOCK_MIN_SNDBUF && | 
| 283 | atomic_read(&tcp_memory_allocated) > sysctl_tcp_mem[2]) | 283 | atomic_long_read(&tcp_memory_allocated) > sysctl_tcp_mem[2]) | 
| 284 | return true; | 284 | return true; | 
| 285 | return false; | 285 | return false; | 
| 286 | } | 286 | } | 
