diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c index f305eb44bf365..165823ab13d66 100644 --- a/net/sched/sch_api.c +++ b/net/sched/sch_api.c @@ -938,12 +938,13 @@ static int qdisc_graft(struct net_device *dev, struct Qdisc *parent, skip: if (!ingress) { - notify_and_destroy(net, skb, n, classid, - dev->qdisc, new); + old = dev->qdisc; if (new && !new->ops->attach) qdisc_refcount_inc(new); dev->qdisc = new ? : &noop_qdisc; + notify_and_destroy(net, skb, n, classid, old, new); + if (new && new->ops->attach) new->ops->attach(new); } else {