int ip6_route_add(struct fib6_config *cfg, gfp_t gfp_flags,
                  struct netlink_ext_ack *extack);
 int ip6_ins_rt(struct net *net, struct fib6_info *f6i);
-int ip6_del_rt(struct net *net, struct fib6_info *f6i);
+int ip6_del_rt(struct net *net, struct fib6_info *f6i, bool skip_notify);
 
 void rt6_flush_exceptions(struct fib6_info *f6i);
 void rt6_age_exceptions(struct fib6_info *f6i, struct fib6_gc_args *gc_args,
 
                            struct netlink_ext_ack *extack);
        void (*fib6_nh_release)(struct fib6_nh *fib6_nh);
        void (*fib6_update_sernum)(struct net *net, struct fib6_info *rt);
-       int (*ip6_del_rt)(struct net *net, struct fib6_info *rt);
+       int (*ip6_del_rt)(struct net *net, struct fib6_info *rt, bool skip_notify);
        void (*fib6_rt_update)(struct net *net, struct fib6_info *rt,
                               struct nl_info *info);
 
 
        list_for_each_entry_safe(f6i, tmp, &nh->f6i_list, nh_list) {
                /* __ip6_del_rt does a release, so do a hold here */
                fib6_info_hold(f6i);
-               ipv6_stub->ip6_del_rt(net, f6i);
+               ipv6_stub->ip6_del_rt(net, f6i, false);
        }
 }
 
 
                                        ifp->idev->dev, 0, RTF_DEFAULT, true);
        if (f6i) {
                if (del_rt)
-                       ip6_del_rt(dev_net(ifp->idev->dev), f6i);
+                       ip6_del_rt(dev_net(ifp->idev->dev), f6i, false);
                else {
                        if (!(f6i->fib6_flags & RTF_EXPIRES))
                                fib6_set_expires(f6i, expires);
                if (rt) {
                        /* Autoconf prefix route */
                        if (valid_lft == 0) {
-                               ip6_del_rt(net, rt);
+                               ip6_del_rt(net, rt, false);
                                rt = NULL;
                        } else if (addrconf_finite_timeout(rt_expires)) {
                                /* not infinity */
                spin_unlock_bh(&ifa->lock);
 
                if (rt)
-                       ip6_del_rt(net, rt);
+                       ip6_del_rt(net, rt, false);
 
                if (state != INET6_IFADDR_STATE_DEAD) {
                        __ipv6_ifa_notify(RTM_DELADDR, ifa);
        prio = ifp->rt_priority ? : IP6_RT_PRIO_ADDRCONF;
        if (f6i->fib6_metric != prio) {
                /* delete old one */
-               ip6_del_rt(dev_net(ifp->idev->dev), f6i);
+               ip6_del_rt(dev_net(ifp->idev->dev), f6i, false);
 
                /* add new one */
                addrconf_prefix_route(modify_peer ? &ifp->peer_addr : &ifp->addr,
                                                       ifp->idev->dev, 0, 0,
                                                       false);
                        if (rt)
-                               ip6_del_rt(net, rt);
+                               ip6_del_rt(net, rt, false);
                }
                if (ifp->rt) {
-                       ip6_del_rt(net, ifp->rt);
+                       ip6_del_rt(net, ifp->rt, false);
                        ifp->rt = NULL;
                }
                rt_genid_bump_ipv6(net);
 
        return -EAFNOSUPPORT;
 }
 
-static int eafnosupport_ip6_del_rt(struct net *net, struct fib6_info *rt)
+static int eafnosupport_ip6_del_rt(struct net *net, struct fib6_info *rt,
+                                  bool skip_notify)
 {
        return -EAFNOSUPPORT;
 }
 
        ipv6_del_acaddr_hash(aca);
        addrconf_leave_solict(idev, &aca->aca_addr);
 
-       ip6_del_rt(dev_net(idev->dev), aca->aca_rt);
+       ip6_del_rt(dev_net(idev->dev), aca->aca_rt, false);
 
        aca_put(aca);
        return 0;
 
                addrconf_leave_solict(idev, &aca->aca_addr);
 
-               ip6_del_rt(dev_net(idev->dev), aca->aca_rt);
+               ip6_del_rt(dev_net(idev->dev), aca->aca_rt, false);
 
                aca_put(aca);
 
 
                }
        }
        if (rt && lifetime == 0) {
-               ip6_del_rt(net, rt);
+               ip6_del_rt(net, rt, false);
                rt = NULL;
        }
 
 
                                        gwaddr, dev);
 
        if (rt && !lifetime) {
-               ip6_del_rt(net, rt);
+               ip6_del_rt(net, rt, false);
                rt = NULL;
        }
 
        return err;
 }
 
-int ip6_del_rt(struct net *net, struct fib6_info *rt)
+int ip6_del_rt(struct net *net, struct fib6_info *rt, bool skip_notify)
 {
-       struct nl_info info = { .nl_net = net };
+       struct nl_info info = {
+               .nl_net = net,
+               .skip_notify = skip_notify
+       };
 
        return __ip6_del_rt(rt, &info);
 }
                    (!idev || idev->cnf.accept_ra != 2) &&
                    fib6_info_hold_safe(rt)) {
                        rcu_read_unlock();
-                       ip6_del_rt(net, rt);
+                       ip6_del_rt(net, rt, false);
                        goto restart;
                }
        }