Displaying 3 results from an estimated 3 matches for "processor_perf".
2011 Oct 17
0
[PATCH] powernow: don't read never initialoized structure member
c/s 20361:51b031b0737e removed the writing of struct
processor_performance''s shared_cpu_map member, but the powernow driver
still has code to read it (though presumably that code path can''t be
taken on actual hardware supported by the powernow driver). Remove the
use of the field along with the field itself.
Signed-off-by: Jan Beulich <jbeulic...
2008 Sep 19
8
[PATCH] x86: add hypercall to query current underlying pCPU''s frequency
...ig/xen/arch/x86/platform_hypercall.c 2008-09-19 14:12:02.000000000 +0200
+++ 2008-09-19/xen/arch/x86/platform_hypercall.c 2008-09-19 14:12:56.000000000 +0200
@@ -21,7 +21,7 @@
#include <xen/acpi.h>
#include <asm/current.h>
#include <public/platform.h>
-#include <acpi/cpufreq/processor_perf.h>
+#include <acpi/cpufreq/cpufreq.h>
#include <asm/edd.h>
#include <asm/mtrr.h>
#include "cpu/mtrr/mtrr.h"
@@ -55,6 +55,7 @@ static long cpu_frequency_change_helper(
ret_t do_platform_op(XEN_GUEST_HANDLE(xen_platform_op_t) u_xenpf_op)
{
ret_t ret = 0;
+...
2008 Oct 01
0
[PATCH] [IA64] Compilation fix to cpufreq stuff.
...pufreq/cpufreq.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/xen/arch/ia64/xen/cpufreq/cpufreq.c Wed Oct 01 12:09:25 2008 +0900
@@ -0,0 +1,24 @@
+/*
+ * Temporal workaround for compilation breakage.
+ */
+
+#include <xen/errno.h>
+#include <acpi/acpi.h>
+#include <acpi/cpufreq/processor_perf.h>
+#include <public/platform.h>
+
+int get_cpu_id(u8 acpi_id)
+{
+ return -1;
+}
+
+int xenpf_copy_px_states(struct processor_performance *pxpt,
+ struct xen_processor_performance *dom0_px_info)
+{
+ return -ENOSYS;
+}
+
+int cpufreq_cpu_init(unsigned int cpu...