Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78360
b: refs/heads/master
c: e2fddf5
h: refs/heads/master
v: v3
  • Loading branch information
Daniel Lezcano authored and David S. Miller committed Jan 28, 2008
1 parent 5be8fa0 commit 1bd9177
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 433d49c3bb14b8a2351fe97df8359e4ad0de4c7c
refs/heads/master: e2fddf5e96df4ac26f2e9ce63053d51cdf3cfe1e
6 changes: 5 additions & 1 deletion trunk/net/ipv6/af_inet6.c
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,9 @@ static int __init inet6_init(void)
if (if6_proc_init())
goto proc_if6_fail;
#endif
ip6_route_init();
err = ip6_route_init();
if (err)
goto ip6_route_fail;
ip6_flowlabel_init();
err = addrconf_init();
if (err)
Expand All @@ -874,6 +876,7 @@ static int __init inet6_init(void)
addrconf_fail:
ip6_flowlabel_cleanup();
ip6_route_cleanup();
ip6_route_fail:
#ifdef CONFIG_PROC_FS
if6_proc_exit();
proc_if6_fail:
Expand Down Expand Up @@ -904,6 +907,7 @@ static int __init inet6_init(void)
cleanup_ipv6_mibs();
out_unregister_sock:
sock_unregister(PF_INET6);
rtnl_unregister_all(PF_INET6);
out_unregister_raw_proto:
proto_unregister(&rawv6_prot);
out_unregister_udplite_proto:
Expand Down

0 comments on commit 1bd9177

Please sign in to comment.