search for: dbs_tuners_in

Displaying 3 results from an estimated 3 matches for "dbs_tuners_in".

Did you mean: dbs_tuners_ins
2013 Sep 12
23
More Coverity-reported issues.
Another bundle of issues from Coverity triage. The first one is in x86/mm, and looks scarier than it is. The others are all in xen/drivers and AFAICT are pretty minor. Cheers, Tim.
2007 Oct 29
0
[PATCH][retry 2][cpufreq] Xen support for the ondemand governor in Linux dom0
...ct cpu_dbs_info_s *this_dbs_info) +{ + int load; + + struct cpufreq_policy *policy; + + if (!this_dbs_info->enable) + return; + + policy = this_dbs_info->cur_policy; + load = dbs_calc_load(this_dbs_info); + if (load > 100) + return; /* Check for frequency increase */ if (load > dbs_tuners_ins.up_threshold) { _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Oct 23
2
[PATCH][cpufreq] Xen support for the ondemand governor [2/2] (linux)
...ct cpu_dbs_info_s *this_dbs_info) +{ + int load; + + struct cpufreq_policy *policy; + + if (!this_dbs_info->enable) + return; + + policy = this_dbs_info->cur_policy; + load = dbs_calc_load(this_dbs_info); + if (load > 100) + return; /* Check for frequency increase */ if (load > dbs_tuners_ins.up_threshold) { diff -r 9bf1ddd0f6bf include/xen/interface/platform.h --- a/include/xen/interface/platform.h Wed Oct 17 09:24:03 2007 +0100 +++ b/include/xen/interface/platform.h Thu Oct 18 16:08:36 2007 -0500 @@ -179,6 +179,7 @@ struct xenpf_getidletime { /* IN variables. */ uint32_t ma...