projects
/
GitHub
/
moto-9609
/
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:
2aed282
)
[NETNS]: Don't initialize err variable twice.
author
Pavel Emelyanov
<xemul@openvz.org>
Mon, 21 Apr 2008 21:25:23 +0000
(14:25 -0700)
committer
David S. Miller
<davem@davemloft.net>
Mon, 21 Apr 2008 21:25:23 +0000
(14:25 -0700)
The ip6_route_net_init() performs some unneeded actions.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/route.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv6/route.c
b/net/ipv6/route.c
index 1f42bc960bd52d244f6ad7233ff90bc4fb85e667..a493ad9b891475bdd7cd0c11b18688d8fe306f31 100644
(file)
--- a/
net/ipv6/route.c
+++ b/
net/ipv6/route.c
@@
-2614,9
+2614,8
@@
struct ctl_table *ipv6_route_sysctl_init(struct net *net)
static int ip6_route_net_init(struct net *net)
{
- int ret =
0
;
+ int ret =
-ENOMEM
;
- ret = -ENOMEM;
net->ipv6.ip6_dst_ops = kmemdup(&ip6_dst_ops_template,
sizeof(*net->ipv6.ip6_dst_ops),
GFP_KERNEL);