Skip to content

Commit

Permalink
net: mpls: Send netconf messages on device register and unregister
Browse files Browse the repository at this point in the history
Send netconf notifications for MPLS when the device registers and
unregisters.

Signed-off-by: David Ahern <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
David Ahern authored and davem330 committed Mar 29, 2017
1 parent 823566a commit 1182e4d
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions net/mpls/af_mpls.c
Original file line number Diff line number Diff line change
Expand Up @@ -1225,10 +1225,11 @@ static int mpls_dev_sysctl_register(struct net_device *dev,

snprintf(path, sizeof(path), "net/mpls/conf/%s", dev->name);

mdev->sysctl = register_net_sysctl(dev_net(dev), path, table);
mdev->sysctl = register_net_sysctl(net, path, table);
if (!mdev->sysctl)
goto free;

mpls_netconf_notify_devconf(net, RTM_NEWNETCONF, NETCONFA_ALL, mdev);
return 0;

free:
Expand All @@ -1237,13 +1238,17 @@ static int mpls_dev_sysctl_register(struct net_device *dev,
return -ENOBUFS;
}

static void mpls_dev_sysctl_unregister(struct mpls_dev *mdev)
static void mpls_dev_sysctl_unregister(struct net_device *dev,
struct mpls_dev *mdev)
{
struct net *net = dev_net(dev);
struct ctl_table *table;

table = mdev->sysctl->ctl_table_arg;
unregister_net_sysctl_table(mdev->sysctl);
kfree(table);

mpls_netconf_notify_devconf(net, RTM_DELNETCONF, 0, mdev);
}

static struct mpls_dev *mpls_add_dev(struct net_device *dev)
Expand All @@ -1269,11 +1274,12 @@ static struct mpls_dev *mpls_add_dev(struct net_device *dev)
u64_stats_init(&mpls_stats->syncp);
}

mdev->dev = dev;

err = mpls_dev_sysctl_register(dev, mdev);
if (err)
goto free;

mdev->dev = dev;
rcu_assign_pointer(dev->mpls_ptr, mdev);

return mdev;
Expand Down Expand Up @@ -1419,7 +1425,7 @@ static int mpls_dev_notify(struct notifier_block *this, unsigned long event,
mpls_ifdown(dev, event);
mdev = mpls_dev_get(dev);
if (mdev) {
mpls_dev_sysctl_unregister(mdev);
mpls_dev_sysctl_unregister(dev, mdev);
RCU_INIT_POINTER(dev->mpls_ptr, NULL);
call_rcu(&mdev->rcu, mpls_dev_destroy_rcu);
}
Expand All @@ -1429,7 +1435,7 @@ static int mpls_dev_notify(struct notifier_block *this, unsigned long event,
if (mdev) {
int err;

mpls_dev_sysctl_unregister(mdev);
mpls_dev_sysctl_unregister(dev, mdev);
err = mpls_dev_sysctl_register(dev, mdev);
if (err)
return notifier_from_errno(err);
Expand Down

0 comments on commit 1182e4d

Please sign in to comment.