diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-07 16:55:29 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-11-07 16:55:29 +0100 |
commit | f3bea317e2a6ec0c7a9d1e14c66b5a31f1fb8294 (patch) | |
tree | 41e94b1dd24f6e3491689d863409e51e605b40d4 /package/oprofile/patches | |
parent | b59da8fc7b46ee62cbe9eb97a05c8a0f1ab75593 (diff) | |
parent | 79be206de9335752c6355995961b69846c641410 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/oprofile/patches')
-rw-r--r-- | package/oprofile/patches/patch-daemon_liblegacy_opd_kernel_c | 34 | ||||
-rw-r--r-- | package/oprofile/patches/patch-libop_op_cpu_type_c | 42 |
2 files changed, 42 insertions, 34 deletions
diff --git a/package/oprofile/patches/patch-daemon_liblegacy_opd_kernel_c b/package/oprofile/patches/patch-daemon_liblegacy_opd_kernel_c deleted file mode 100644 index 226522e40..000000000 --- a/package/oprofile/patches/patch-daemon_liblegacy_opd_kernel_c +++ /dev/null @@ -1,34 +0,0 @@ ---- oprofile-0.9.6.orig/daemon/liblegacy/opd_kernel.c 2009-11-24 16:25:17.000000000 +0100 -+++ oprofile-0.9.6/daemon/liblegacy/opd_kernel.c 2010-07-13 18:20:26.727084854 +0200 -@@ -148,6 +148,7 @@ void opd_clear_module_info(void) - */ - static void opd_get_module_info(void) - { -+#if 0 - char * line; - char * cp, * cp2, * cp3; - FILE * fp; -@@ -252,6 +253,7 @@ static void opd_get_module_info(void) - if (line) - free(line); - op_close_file(fp); -+#endif - } - - -@@ -270,6 +272,7 @@ static void opd_get_module_info(void) - */ - static void opd_drop_module_sample(unsigned long eip) - { -+#if 0 - char * module_names; - char * name; - size_t size = 1024; -@@ -307,6 +310,7 @@ static void opd_drop_module_sample(unsig - - if (module_names) - free(module_names); -+#endif - } - - diff --git a/package/oprofile/patches/patch-libop_op_cpu_type_c b/package/oprofile/patches/patch-libop_op_cpu_type_c new file mode 100644 index 000000000..6064fc5e7 --- /dev/null +++ b/package/oprofile/patches/patch-libop_op_cpu_type_c @@ -0,0 +1,42 @@ +--- oprofile-0.9.9.orig/libop/op_cpu_type.c 2013-07-29 17:55:07.000000000 +0200 ++++ oprofile-0.9.9/libop/op_cpu_type.c 2013-11-05 20:55:54.000000000 +0100 +@@ -23,9 +23,17 @@ + #include <elf.h> + #include <link.h> + ++#include "config.h" + #include "op_cpu_type.h" + #include "op_hw_specific.h" + ++ ++/* A macro to be used for ppc64 architecture-specific code. The '__powerpc__' macro ++ * is defined for both ppc64 and ppc32 architectures, so we must further qualify by ++ * including the 'HAVE_LIBPFM' macro, since that macro will be defined only for ppc64. ++ */ ++#define PPC64_ARCH (HAVE_LIBPFM) && ((defined(__powerpc__) || defined(__powerpc64__))) ++ + struct cpu_descr { + char const * pretty; + char const * name; +@@ -176,6 +184,7 @@ static char * _get_cpuinfo_cpu_type(char + return _get_cpuinfo_cpu_type_line(buf, len, prefix, 1); + } + ++#if PPC64_ARCH + // The aux vector stuff below is currently only used by ppc64 arch + static ElfW(auxv_t) * auxv_buf = NULL; + +@@ -313,6 +322,13 @@ static op_cpu _get_ppc64_cpu_type(void) + return cpu_type; + } + ++#else ++static op_cpu _get_ppc64_cpu_type(void) ++{ ++ return CPU_NO_GOOD; ++} ++#endif ++ + static op_cpu _get_arm_cpu_type(void) + { + unsigned long cpuid, vendorid; |