summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ahern <dsa@cumulusnetworks.com>2017-03-10 09:46:15 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-03-22 12:57:01 +0100
commit61cc1778ad62412beccb65116d0cfafb6111e0c4 (patch)
tree6639ebea9b4eafa06ca798db22f153b76d294907
parent8e9bacd9add7b4ba2bb615a42b0838c26a833ee0 (diff)
downloadlinux-stable-61cc1778ad62412beccb65116d0cfafb6111e0c4.tar.gz
linux-stable-61cc1778ad62412beccb65116d0cfafb6111e0c4.tar.bz2
linux-stable-61cc1778ad62412beccb65116d0cfafb6111e0c4.zip
mpls: Send route delete notifications when router module is unloaded
[ Upstream commit e37791ec1ad785b59022ae211f63a16189bacebf ] When the mpls_router module is unloaded, mpls routes are deleted but notifications are not sent to userspace leaving userspace caches out of sync. Add the call to mpls_notify_route in mpls_net_exit as routes are freed. Fixes: 0189197f44160 ("mpls: Basic routing support") Signed-off-by: David Ahern <dsa@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--net/mpls/af_mpls.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mpls/af_mpls.c b/net/mpls/af_mpls.c
index 5b77377e5a15..2a21ff14c07d 100644
--- a/net/mpls/af_mpls.c
+++ b/net/mpls/af_mpls.c
@@ -1696,6 +1696,7 @@ static void mpls_net_exit(struct net *net)
for (index = 0; index < platform_labels; index++) {
struct mpls_route *rt = rtnl_dereference(platform_label[index]);
RCU_INIT_POINTER(platform_label[index], NULL);
+ mpls_notify_route(net, index, rt, NULL, NULL);
mpls_rt_free(rt);
}
rtnl_unlock();