diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-07-16 23:28:10 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-16 23:28:10 -0400 |
commit | 5c52ba170f8167511bdb65b981f4582100c40675 (patch) | |
tree | 1dab120003eb696dfb4ca18c40861274a317739d /net/core/sock.c | |
parent | cf1100a7a4f2573f50f9a923b53373977328e3c8 (diff) |
sock: add net to prot->enter_memory_pressure callback
The tcp_enter_memory_pressure calls NET_INC_STATS, but doesn't
have where to get the net from.
I decided to add a sk argument, not the net itself, only to factor
all the required sock_net(sk) calls inside the enter_memory_pressure
callback itself.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/sock.c')
-rw-r--r-- | net/core/sock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/sock.c b/net/core/sock.c index 2c0ba52e5303..10a64d57078c 100644 --- a/net/core/sock.c +++ b/net/core/sock.c | |||
@@ -1442,7 +1442,7 @@ int __sk_mem_schedule(struct sock *sk, int size, int kind) | |||
1442 | /* Under pressure. */ | 1442 | /* Under pressure. */ |
1443 | if (allocated > prot->sysctl_mem[1]) | 1443 | if (allocated > prot->sysctl_mem[1]) |
1444 | if (prot->enter_memory_pressure) | 1444 | if (prot->enter_memory_pressure) |
1445 | prot->enter_memory_pressure(); | 1445 | prot->enter_memory_pressure(sk); |
1446 | 1446 | ||
1447 | /* Over hard limit. */ | 1447 | /* Over hard limit. */ |
1448 | if (allocated > prot->sysctl_mem[2]) | 1448 | if (allocated > prot->sysctl_mem[2]) |