Re: [GIT PULL||RFC 00/11] perf library and regression testing improvements

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Arnaldo Carvalho de Melo
Date: Tuesday, January 4, 2011 - 8:30 am

Em Tue, Jan 04, 2011 at 04:10:17PM +0100, Stephane Eranian escreveu:

With the patch below now we have all as:

[acme@felicio linux]$ find tools/ -name "*.[ch]" | xargs grep 'include.\+perf_event\.h'
tools/perf/util/session.h:#include "../../../include/linux/perf_event.h"
tools/perf/util/header.h:#include "../../../include/linux/perf_event.h"
tools/perf/util/evsel.h:#include "../../../include/linux/perf_event.h"
tools/perf/perf.h:#include "../../include/linux/perf_event.h"
[acme@felicio linux]$

Can you try it so that I can get your Acked-by and Tested-by?

diff --git a/tools/perf/util/evsel.h b/tools/perf/util/evsel.h
index 863d78d..a0ccd69 100644
--- a/tools/perf/util/evsel.h
+++ b/tools/perf/util/evsel.h
@@ -3,7 +3,7 @@
 
 #include <linux/list.h>
 #include <stdbool.h>
-#include <linux/perf_event.h>
+#include "../../../include/linux/perf_event.h"
 #include "types.h"
 #include "xyarray.h"
  
diff --git a/tools/perf/util/parse-events.h b/tools/perf/util/parse-events.h
index 1c9043c..cefef9a 100644
--- a/tools/perf/util/parse-events.h
+++ b/tools/perf/util/parse-events.h
@@ -4,9 +4,9 @@
  * Parse symbolic events/counts passed in as options:
  */
 
-#include <linux/perf_event.h>
+#include <linux/list.h>
+#include "types.h"
 
-struct list_head;
 struct perf_evsel;
 
 extern struct list_head evsel_list;
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[GIT PULL||RFC 00/11] perf library and regression testing ..., Arnaldo Carvalho de Melo, (Mon Jan 3, 8:48 pm)
[PATCH 01/11] perf tools: Introduce event selectors, Arnaldo Carvalho de Melo, (Mon Jan 3, 8:48 pm)
[PATCH 06/11] perf evsel: Introduce per cpu and per thread ..., Arnaldo Carvalho de Melo, (Mon Jan 3, 8:48 pm)
[PATCH 07/11] perf tools: Refactor cpumap to hold nr and t ..., Arnaldo Carvalho de Melo, (Mon Jan 3, 8:48 pm)
[PATCH 08/11] perf tools: Refactor all_tids to hold nr and ..., Arnaldo Carvalho de Melo, (Mon Jan 3, 8:48 pm)
[PATCH 09/11] perf evsel: Use {cpu,thread}_map to shorten ..., Arnaldo Carvalho de Melo, (Mon Jan 3, 8:48 pm)
[PATCH 10/11] perf evsel: Auto allocate resources needed f ..., Arnaldo Carvalho de Melo, (Mon Jan 3, 8:48 pm)
Re: [GIT PULL||RFC 00/11] perf library and regression test ..., Arnaldo Carvalho de Melo, (Tue Jan 4, 7:03 am)
Re: [GIT PULL||RFC 00/11] perf library and regression test ..., Arnaldo Carvalho de Melo, (Tue Jan 4, 7:12 am)
Re: [GIT PULL||RFC 00/11] perf library and regression test ..., Arnaldo Carvalho de Melo, (Tue Jan 4, 7:19 am)
Re: [GIT PULL||RFC 00/11] perf library and regression test ..., Arnaldo Carvalho de Melo, (Tue Jan 4, 7:27 am)
Re: [GIT PULL||RFC 00/11] perf library and regression test ..., Arnaldo Carvalho de Melo, (Tue Jan 4, 7:34 am)
Re: [GIT PULL||RFC 00/11] perf library and regression test ..., Arnaldo Carvalho de Melo, (Tue Jan 4, 7:36 am)
Re: [GIT PULL||RFC 00/11] perf library and regression test ..., Arnaldo Carvalho de Melo, (Tue Jan 4, 8:24 am)
Re: [GIT PULL||RFC 00/11] perf library and regression test ..., Arnaldo Carvalho de Melo, (Tue Jan 4, 8:30 am)