summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/sysprof/files/0001-callgraph-Use-U64_TO_POINTER.patch
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2016-05-04 12:49:28 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-15 18:05:24 +0100
commitdda59ddc1c123b8bcfcbc76a41cedf7bb9bf0490 (patch)
treed2726405774a0adc75c4a53ed8fff0647a94d2f5 /meta/recipes-kernel/sysprof/files/0001-callgraph-Use-U64_TO_POINTER.patch
parentc0725452d5d299f4ee7409cf2337ef8b8044fb70 (diff)
downloadpoky-dda59ddc1c123b8bcfcbc76a41cedf7bb9bf0490.tar.gz
sysprof: Upgrade to git version slightly past 3.20
New version uses Gtk+3. 3.20 release requires a bunch of fixes to build without polkit, this git revision inclues those fixes. * Add patch to use proper U64_TO_POINTER macro to fix build on 32 bit platforms. * Forward port memory barrier patches for arm & mips * sysprof builds with loads of warnings and git builds also use -Werror: avoid that by setting "--enable-compile-warnings" (From OE-Core rev: ab2d5e397d30999929108c9d929767205fee9db4) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/sysprof/files/0001-callgraph-Use-U64_TO_POINTER.patch')
-rw-r--r--meta/recipes-kernel/sysprof/files/0001-callgraph-Use-U64_TO_POINTER.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-kernel/sysprof/files/0001-callgraph-Use-U64_TO_POINTER.patch b/meta/recipes-kernel/sysprof/files/0001-callgraph-Use-U64_TO_POINTER.patch
new file mode 100644
index 0000000000..ac1384c9b0
--- /dev/null
+++ b/meta/recipes-kernel/sysprof/files/0001-callgraph-Use-U64_TO_POINTER.patch
@@ -0,0 +1,29 @@
1From 05816e6f9cd65b2624bb04de65fdf61031c7017f Mon Sep 17 00:00:00 2001
2From: Jussi Kukkonen <jussi.kukkonen@intel.com>
3Date: Fri, 10 Jun 2016 14:01:54 +0300
4Subject: [PATCH] callgraph: Use U64_TO_POINTER
5
6This fixes a "cast to pointer from integer of different size" on i586.
7
8Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9Upstream-Status: Pending
10---
11 lib/sp-callgraph-view.c | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/lib/sp-callgraph-view.c b/lib/sp-callgraph-view.c
15index 02cc17b..58315b0 100644
16--- a/lib/sp-callgraph-view.c
17+++ b/lib/sp-callgraph-view.c
18@@ -135,7 +135,7 @@ build_functions_store (StackNode *node,
19
20 gtk_list_store_append (state->store, &iter);
21 gtk_list_store_set (state->store, &iter,
22- COLUMN_NAME, (const gchar *)node->data,
23+ COLUMN_NAME, U64_TO_POINTER(node->data),
24 COLUMN_SELF, 100.0 * size / state->profile_size,
25 COLUMN_TOTAL, 100.0 * total / state->profile_size,
26 COLUMN_POINTER, node,
27--
282.1.4
29