]> code.ossystems Code Review - meta-freescale.git/commitdiff
linux-qoriq: Add a patch to fix perf compilation issue.
authorNoor Ahsan <noor_ahsan@mentor.com>
Fri, 21 Dec 2012 12:24:55 +0000 (17:24 +0500)
committerMatthew McClintock <msm@freescale.com>
Thu, 17 Jan 2013 20:59:39 +0000 (14:59 -0600)
* Perf gived compilation error
  CC builtin-sched.o
    builtin-sched.c: In function ‘get_cpu_usage_nsec_parent’:
  builtin-sched.c:399:16: error: storage size of ‘ru’ isn’t known
* Added a patch from linux kernel git repo commit id
  7b78f13603c6fcb64e020a0bbe31a651ea2b657b which include resource.h
  file in builtin-sched.c.
* Bump PR.
* Verified it on P4080DS machine.

Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com>
meta-fsl-ppc/recipes-kernel/linux/files/fix_getrusage_for_perf.patch [new file with mode: 0644]
meta-fsl-ppc/recipes-kernel/linux/linux-qoriq-sdk.bb

diff --git a/meta-fsl-ppc/recipes-kernel/linux/files/fix_getrusage_for_perf.patch b/meta-fsl-ppc/recipes-kernel/linux/files/fix_getrusage_for_perf.patch
new file mode 100644 (file)
index 0000000..0029fdc
--- /dev/null
@@ -0,0 +1,33 @@
+commit 7b78f13603c6fcb64e020a0bbe31a651ea2b657b
+Author: Markus Trippelsdorf <markus@trippelsdorf.de>
+Date: Wed Apr 4 10:45:27 2012 +0200
+
+    perf tools: Fix getrusage() related build failure on glibc trunk
+    
+    On a system running glibc trunk perf doesn't build:
+    
+        CC builtin-sched.o
+    builtin-sched.c: In function ‘get_cpu_usage_nsec_parent’: builtin-sched.c:399:16: error: storage size of ‘ru’ isn’t known builtin-sched.c:403:2: error: implicit declaration of function ‘getrusage’ [-Werror=implicit-function-declaration]
+        [...]
+    
+    Fix it by including sys/resource.h.
+    
+    Signed-off-by: Markus Trippelsdorf <markus@trippelsdorf.de>
+    Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
+    Link: http://lkml.kernel.org/r/20120404084527.GA294@x4
+    Signed-off-by: Ingo Molnar <mingo@kernel.org>
+
+Upstream-Status: Backport [3.4]
+
+diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c
+index fb8b5f8..1cad3af 100644
+--- a/tools/perf/builtin-sched.c
++++ b/tools/perf/builtin-sched.c
+@@ -17,6 +17,7 @@
+ #include "util/debug.h"
+ #include <sys/prctl.h>
++#include <sys/resource.h>
+ #include <semaphore.h>
+ #include <pthread.h>
index 18e6e16ec4e05e2eaa82a51a5e6802432624a912..1971f1551a1d9acb47b9a27a25eebdcda0479ba1 100644 (file)
@@ -5,8 +5,14 @@ DESCRIPTION = "Linux kernel for Freescale platforms"
 SECTION = "kernel"
 LICENSE = "GPLv2"
 
+
 require recipes-kernel/linux/linux-qoriq-sdk.inc
 
+PR = "r9"
+
+SRC_URI += "file://fix_getrusage_for_perf.patch \
+           "
+
 do_configure_prepend() {
        # copy desired defconfig so we pick it up for the real kernel_do_configure
        cp ${KERNEL_DEFCONFIG} ${B}/.config