diff --git a/net/sched/sch_hfsc.c b/net/sched/sch_hfsc.c index 4749609..466518e 100644 --- a/net/sched/sch_hfsc.c +++ b/net/sched/sch_hfsc.c @@ -312,10 +312,6 @@ vttree_firstfit(struct hfsc_class *cl, u64 cur_time) static struct hfsc_class * vttree_get_minvt(struct hfsc_class *cl, u64 cur_time) { - /* if root-class's cfmin is bigger than cur_time nothing to do */ - if (cl->cl_cfmin > cur_time) - return NULL; - while (cl->level > 0) { cl = vttree_firstfit(cl, cur_time); if (cl == NULL)