projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
888bdaa
)
tcp_memcontrol: fix reversed if condition
author
Dan Carpenter
<dan.carpenter@oracle.com>
Thu, 15 Dec 2011 01:05:10 +0000
(
01:05
+0000)
committer
David S. Miller
<davem@davemloft.net>
Thu, 15 Dec 2011 16:59:44 +0000
(11:59 -0500)
We should only dereference the pointer if it's valid, not the other way
round.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_memcontrol.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv4/tcp_memcontrol.c
b/net/ipv4/tcp_memcontrol.c
index 171d7b64f80365048f4cb1e97f5c2aa7aafe1f47..7fed04f875c1acf4448333d18276c928c3a0180a 100644
(file)
--- a/
net/ipv4/tcp_memcontrol.c
+++ b/
net/ipv4/tcp_memcontrol.c
@@
-44,7
+44,7
@@
static inline struct tcp_memcontrol *tcp_from_cgproto(struct cg_proto *cg_proto)
static void memcg_tcp_enter_memory_pressure(struct sock *sk)
{
- if (
!
sk->sk_cgrp->memory_pressure)
+ if (sk->sk_cgrp->memory_pressure)
*sk->sk_cgrp->memory_pressure = 1;
}
EXPORT_SYMBOL(memcg_tcp_enter_memory_pressure);