projects
/
profile
/
wearable
/
platform
/
kernel
/
linux-4.9-exynos9110.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86fa9c4
)
neigh: check error pointer instead of NULL for ipv4_neigh_lookup()
author
WANG Cong
<xiyou.wangcong@gmail.com>
Thu, 25 Sep 2014 00:07:53 +0000
(17:07 -0700)
committer
David S. Miller
<davem@davemloft.net>
Sun, 28 Sep 2014 21:16:04 +0000
(17:16 -0400)
Fixes: commit
f187bc6efb7250afee0e2009b6106
("ipv4: No need to set generic neighbour pointer")
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/route.c
patch
|
blob
|
history
diff --git
a/net/ipv4/route.c
b/net/ipv4/route.c
index
173e7ea
..
cbadb94
100644
(file)
--- a/
net/ipv4/route.c
+++ b/
net/ipv4/route.c
@@
-746,7
+746,7
@@
static void __ip_do_redirect(struct rtable *rt, struct sk_buff *skb, struct flow
}
n = ipv4_neigh_lookup(&rt->dst, NULL, &new_gw);
- if (
n
) {
+ if (
!IS_ERR(n)
) {
if (!(n->nud_state & NUD_VALID)) {
neigh_event_send(n, NULL);
} else {