Displaying 2 results from an estimated 2 matches for "tmp_load".
Did you mean:
lp_load
2007 Oct 23
2
[PATCH][cpufreq] Xen support for the ondemand governor [2/2] (linux)
...altime, totaltime);
+ HYPERVISOR_platform_op(&op);
+
+ policy = this_dbs_info->cur_policy;
+ for_each_cpu_mask(j, policy->cpus) {
+ cputime64_t total_idle_ticks, total_wall_ticks;
+ cputime64_t tmp_idle_ticks, tmp_wall_ticks;
+ struct cpu_dbs_info_s *j_dbs_info;
+ unsigned long tmp_load;
+
+ j_dbs_info = &per_cpu(cpu_dbs_info, j);
+ total_idle_ticks = idletime[j];
+ tmp_idle_ticks = cputime64_sub(total_idle_ticks,
+ j_dbs_info->prev_cpu_idle);
+ total_wall_ticks = totaltime[j];
+ tmp_wall_ticks = cputime64_sub(total_wall_ticks,
+ j_dbs_info->prev_cpu_wall);
+...
2007 Oct 29
0
[PATCH][retry 2][cpufreq] Xen support for the ondemand governor in Linux dom0
...VISOR_platform_op(&op))
+ return 200;
+
+ policy = this_dbs_info->cur_policy;
+ cpumap = policy->cpus;
+ for_each_cpu_mask(j, cpumap) {
+ cputime64_t total_idle_nsecs, tmp_idle_nsecs;
+ cputime64_t total_wall_nsecs, tmp_wall_nsecs;
+ struct cpu_dbs_info_s *j_dbs_info;
+ unsigned long tmp_load;
+
+ j_dbs_info = &per_cpu(cpu_dbs_info, j);
+ total_idle_nsecs = idletime[j];
+ tmp_idle_nsecs = cputime64_sub(total_idle_nsecs,
+ j_dbs_info->prev_cpu_idle);
+ total_wall_nsecs = op.u.getidletime.now;
+ tmp_wall_nsecs = cputime64_sub(total_wall_nsecs,
+ j_dbs_info->prev_cpu_w...