aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sched/sch_api.c')
-rw-r--r--net/sched/sch_api.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c
index ef0efeca6352..45f442d7de47 100644
--- a/net/sched/sch_api.c
+++ b/net/sched/sch_api.c
@@ -444,6 +444,10 @@ void qdisc_watchdog_schedule(struct qdisc_watchdog *wd, psched_time_t expires)
444{ 444{
445 ktime_t time; 445 ktime_t time;
446 446
447 if (test_bit(__QDISC_STATE_DEACTIVATED,
448 &qdisc_root_sleeping(wd->qdisc)->state))
449 return;
450
447 wd->qdisc->flags |= TCQ_F_THROTTLED; 451 wd->qdisc->flags |= TCQ_F_THROTTLED;
448 time = ktime_set(0, 0); 452 time = ktime_set(0, 0);
449 time = ktime_add_ns(time, PSCHED_US2NS(expires)); 453 time = ktime_add_ns(time, PSCHED_US2NS(expires));