Home
last modified time | relevance | path

Searched refs:delta_w (Results 1 – 2 of 2) sorted by relevance

/linux-4.1.27/net/sched/
Dsch_qfq.c415 int delta_w; in qfq_change_class() local
452 delta_w = weight - (cl ? cl->agg->class_weight : 0); in qfq_change_class()
454 if (q->wsum + delta_w > QFQ_MAX_WSUM) { in qfq_change_class()
456 delta_w, q->wsum); in qfq_change_class()
/linux-4.1.27/kernel/sched/
Dfair.c2528 int delta_w, decayed = 0; in __update_entity_runnable_avg() local
2551 delta_w = sa->avg_period % 1024; in __update_entity_runnable_avg()
2552 if (delta + delta_w >= 1024) { in __update_entity_runnable_avg()
2561 delta_w = 1024 - delta_w; in __update_entity_runnable_avg()
2563 sa->runnable_avg_sum += delta_w; in __update_entity_runnable_avg()
2565 sa->running_avg_sum += delta_w * scale_freq in __update_entity_runnable_avg()
2567 sa->avg_period += delta_w; in __update_entity_runnable_avg()
2569 delta -= delta_w; in __update_entity_runnable_avg()