diff options
Diffstat (limited to 'net/ipv6/ip6mr.c')
-rw-r--r-- | net/ipv6/ip6mr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index fdfd96d288ed..96bfb4e4b820 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c | |||
@@ -1369,7 +1369,7 @@ static int __net_init ip6mr_net_init(struct net *net) | |||
1369 | 1369 | ||
1370 | #ifdef CONFIG_PROC_FS | 1370 | #ifdef CONFIG_PROC_FS |
1371 | proc_cache_fail: | 1371 | proc_cache_fail: |
1372 | proc_net_remove(net, "ip6_mr_vif"); | 1372 | remove_proc_entry("ip6_mr_vif", net->proc_net); |
1373 | proc_vif_fail: | 1373 | proc_vif_fail: |
1374 | ip6mr_rules_exit(net); | 1374 | ip6mr_rules_exit(net); |
1375 | #endif | 1375 | #endif |
@@ -1380,8 +1380,8 @@ fail: | |||
1380 | static void __net_exit ip6mr_net_exit(struct net *net) | 1380 | static void __net_exit ip6mr_net_exit(struct net *net) |
1381 | { | 1381 | { |
1382 | #ifdef CONFIG_PROC_FS | 1382 | #ifdef CONFIG_PROC_FS |
1383 | proc_net_remove(net, "ip6_mr_cache"); | 1383 | remove_proc_entry("ip6_mr_cache", net->proc_net); |
1384 | proc_net_remove(net, "ip6_mr_vif"); | 1384 | remove_proc_entry("ip6_mr_vif", net->proc_net); |
1385 | #endif | 1385 | #endif |
1386 | ip6mr_rules_exit(net); | 1386 | ip6mr_rules_exit(net); |
1387 | } | 1387 | } |