to_ratio
return to_ratio(period, quota);
to_ratio(dl_se->dl_period, dl_se->dl_runtime);
u64 new_bw = to_ratio(period, runtime);
dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime);
dl_se->dl_density = to_ratio(dl_se->dl_deadline, dl_se->dl_runtime);
u64 new_bw = to_ratio(period, runtime);
dl_rq->bw_ratio = to_ratio(global_rt_runtime(),
to_ratio(global_rt_period(), global_rt_runtime());
new_bw = to_ratio(global_rt_period(), global_rt_runtime());
u64 new_bw = dl_policy(policy) ? to_ratio(period, runtime) : 0;
dl_se->dl_bw = to_ratio(dl_se->dl_period, dl_se->dl_runtime);
dl_se->dl_density = to_ratio(dl_se->dl_deadline, dl_se->dl_runtime);
dl_b->bw = to_ratio(global_rt_period(), global_rt_runtime());
total = to_ratio(period, runtime);
if (total > to_ratio(global_rt_period(), global_rt_runtime()))
sum += to_ratio(period, runtime);
extern u64 to_ratio(u64 period, u64 runtime);