search for: avgfreq

Displaying 1 result from an estimated 1 matches for "avgfreq".

Did you mean: avfreq
2011 Dec 21
2
[PATCH] xenpm: assorted adjustments
...free(pxstat->trans_pt); free(pxstat->pt); pxstat->trans_pt = NULL; pxstat->pt = NULL; - return temp; } - return 0; + return ret; } /* show cpu actual average freq information on CPU cpuid */ @@ -272,11 +269,9 @@ static int get_avgfreq_by_cpuid(xc_inter ret = xc_get_cpufreq_avgfreq(xc_handle, cpuid, avgfreq); if ( ret ) - { - return errno; - } + ret = -errno; - return 0; + return ret; } static int show_pxstat_by_cpuid(xc_interface *xc_handle, int cpuid) @@ -325,7 +320,7 @@ static uint64...