Files
linux/tools/perf/util
Zeev Tarantov 26cf838583 Perf: fix build breakage
[Patch not needed upstream as this is a backport build bugfix - gregkh

gcc correctly complains:

util/hist.c: In function ‘__hists__add_entry’:
util/hist.c:240:27: error: invalid type argument of ‘->’ (have ‘struct hist_entry’)
util/hist.c:241:23: error: invalid type argument of ‘->’ (have ‘struct hist_entry’)

for this new code:

+                       if (he->ms.map != entry->ms.map) {
+                               he->ms.map = entry->ms.map;
+                               if (he->ms.map)
+                                       he->ms.map->referenced = true;
+                       }

because "entry" is a "struct hist_entry", not a pointer to a struct.

In mainline, "entry" is a pointer to struct passed as argument to the function.
So this is broken during backporting. But obviously not compile tested.

Signed-off-by: Zeev Tarantov <zeev.tarantov@gmail.com>
Cc: Signed-off-by: David S. Miller <davem@davemloft.net>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2012-04-27 09:51:04 -07:00
..
2011-02-22 12:02:07 -03:00
2011-02-16 13:30:48 +01:00
2009-12-28 10:36:36 +01:00
2012-04-27 09:51:04 -07:00
2010-10-21 16:11:44 -02:00
2010-08-21 11:22:47 -03:00
2010-05-14 20:05:21 -03:00
2011-03-31 11:26:23 -03:00