diff options
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/sock.h | 4 | ||||
-rw-r--r-- | include/net/tcp.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/net/sock.h b/include/net/sock.h index 3f4897ab432e..06c5259aff30 100644 --- a/include/net/sock.h +++ b/include/net/sock.h | |||
@@ -565,7 +565,7 @@ struct proto { | |||
565 | #endif | 565 | #endif |
566 | 566 | ||
567 | /* Memory pressure */ | 567 | /* Memory pressure */ |
568 | void (*enter_memory_pressure)(void); | 568 | void (*enter_memory_pressure)(struct sock *sk); |
569 | atomic_t *memory_allocated; /* Current allocated memory. */ | 569 | atomic_t *memory_allocated; /* Current allocated memory. */ |
570 | atomic_t *sockets_allocated; /* Current number of sockets. */ | 570 | atomic_t *sockets_allocated; /* Current number of sockets. */ |
571 | /* | 571 | /* |
@@ -1210,7 +1210,7 @@ static inline struct page *sk_stream_alloc_page(struct sock *sk) | |||
1210 | 1210 | ||
1211 | page = alloc_pages(sk->sk_allocation, 0); | 1211 | page = alloc_pages(sk->sk_allocation, 0); |
1212 | if (!page) { | 1212 | if (!page) { |
1213 | sk->sk_prot->enter_memory_pressure(); | 1213 | sk->sk_prot->enter_memory_pressure(sk); |
1214 | sk_stream_moderate_sndbuf(sk); | 1214 | sk_stream_moderate_sndbuf(sk); |
1215 | } | 1215 | } |
1216 | return page; | 1216 | return page; |
diff --git a/include/net/tcp.h b/include/net/tcp.h index 4d788181654e..c25cb5278b95 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
@@ -975,7 +975,7 @@ static inline void tcp_openreq_init(struct request_sock *req, | |||
975 | ireq->rmt_port = tcp_hdr(skb)->source; | 975 | ireq->rmt_port = tcp_hdr(skb)->source; |
976 | } | 976 | } |
977 | 977 | ||
978 | extern void tcp_enter_memory_pressure(void); | 978 | extern void tcp_enter_memory_pressure(struct sock *sk); |
979 | 979 | ||
980 | static inline int keepalive_intvl_when(const struct tcp_sock *tp) | 980 | static inline int keepalive_intvl_when(const struct tcp_sock *tp) |
981 | { | 981 | { |