|
@@ -316,7 +316,7 @@ int tcp_memory_pressure __read_mostly;
|
|
|
|
|
|
EXPORT_SYMBOL(tcp_memory_pressure);
|
|
|
|
|
|
-void tcp_enter_memory_pressure(void)
|
|
|
+void tcp_enter_memory_pressure(struct sock *sk)
|
|
|
{
|
|
|
if (!tcp_memory_pressure) {
|
|
|
NET_INC_STATS(LINUX_MIB_TCPMEMORYPRESSURES);
|
|
@@ -649,7 +649,7 @@ struct sk_buff *sk_stream_alloc_skb(struct sock *sk, int size, gfp_t gfp)
|
|
|
}
|
|
|
__kfree_skb(skb);
|
|
|
} else {
|
|
|
- sk->sk_prot->enter_memory_pressure();
|
|
|
+ sk->sk_prot->enter_memory_pressure(sk);
|
|
|
sk_stream_moderate_sndbuf(sk);
|
|
|
}
|
|
|
return NULL;
|