diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2008-01-10 20:43:22 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:01:40 -0500 |
commit | 441fc2a2393a9b9ffbacb97f4427cce743579411 (patch) | |
tree | 1ae7d76b20011f0acc789b77653f2ba650d8eb79 /net/ipv6/addrconf.c | |
parent | e0da5a480cafc7ca228d6b5a05dbd77344a6bd29 (diff) |
[NETNS]: Use the per-net ipv6_devconf_dflt
All its users are in net/ipv6/addrconf.c's sysctl handlers.
Since they already have the struct net to get from, the
per-net ipv6_devconf_dflt can already be used.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/addrconf.c')
-rw-r--r-- | net/ipv6/addrconf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 3ad081e9366b..9b96de3ba5eb 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c | |||
@@ -334,7 +334,7 @@ static struct inet6_dev * ipv6_add_dev(struct net_device *dev) | |||
334 | 334 | ||
335 | rwlock_init(&ndev->lock); | 335 | rwlock_init(&ndev->lock); |
336 | ndev->dev = dev; | 336 | ndev->dev = dev; |
337 | memcpy(&ndev->cnf, &ipv6_devconf_dflt, sizeof(ndev->cnf)); | 337 | memcpy(&ndev->cnf, dev->nd_net->ipv6.devconf_dflt, sizeof(ndev->cnf)); |
338 | ndev->cnf.mtu6 = dev->mtu; | 338 | ndev->cnf.mtu6 = dev->mtu; |
339 | ndev->cnf.sysctl = NULL; | 339 | ndev->cnf.sysctl = NULL; |
340 | ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl); | 340 | ndev->nd_parms = neigh_parms_alloc(dev, &nd_tbl); |
@@ -481,11 +481,11 @@ static void addrconf_fixup_forwarding(struct ctl_table *table, int *p, int old) | |||
481 | struct net *net; | 481 | struct net *net; |
482 | 482 | ||
483 | net = (struct net *)table->extra2; | 483 | net = (struct net *)table->extra2; |
484 | if (p == &ipv6_devconf_dflt.forwarding) | 484 | if (p == &net->ipv6.devconf_dflt->forwarding) |
485 | return; | 485 | return; |
486 | 486 | ||
487 | if (p == &ipv6_devconf.forwarding) { | 487 | if (p == &ipv6_devconf.forwarding) { |
488 | ipv6_devconf_dflt.forwarding = ipv6_devconf.forwarding; | 488 | net->ipv6.devconf_dflt->forwarding = ipv6_devconf.forwarding; |
489 | addrconf_forward_change(net); | 489 | addrconf_forward_change(net); |
490 | } else if ((!*p) ^ (!old)) | 490 | } else if ((!*p) ^ (!old)) |
491 | dev_forward_change((struct inet6_dev *)table->extra1); | 491 | dev_forward_change((struct inet6_dev *)table->extra1); |