From: tip-bot for Ingo Molnar on
Commit-ID: 88d89da64951377962334b684634cfc1468aa93f
Gitweb: http://git.kernel.org/tip/88d89da64951377962334b684634cfc1468aa93f
Author: Ingo Molnar <mingo(a)elte.hu>
AuthorDate: Thu, 12 Aug 2010 21:50:00 +0200
Committer: Ingo Molnar <mingo(a)elte.hu>
CommitDate: Thu, 12 Aug 2010 21:50:00 +0200

perf: Add back list_head data types

This commit:

de5d9bf: Move list types from <linux/list.h> to <linux/types.h>.

Moved the list head data types out of list.h, breaking the build.
Add them to the perf types.h as well.

Cc: Arnaldo Carvalho de Melo <acme(a)redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra(a)chello.nl>
Cc: Frederic Weisbecker <fweisbec(a)gmail.com>
Cc: Paul Mackerras <paulus(a)samba.org>
Cc: Steven Rostedt <rostedt(a)goodmis.org>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo(a)elte.hu>
---
tools/perf/util/include/linux/types.h | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/tools/perf/util/include/linux/types.h b/tools/perf/util/include/linux/types.h
index 196862a..12de3b8 100644
--- a/tools/perf/util/include/linux/types.h
+++ b/tools/perf/util/include/linux/types.h
@@ -6,4 +6,16 @@
#define DECLARE_BITMAP(name,bits) \
unsigned long name[BITS_TO_LONGS(bits)]

+struct list_head {
+ struct list_head *next, *prev;
+};
+
+struct hlist_head {
+ struct hlist_node *first;
+};
+
+struct hlist_node {
+ struct hlist_node *next, **pprev;
+};
+
#endif
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/