From 48895f954f1bf25f4709055b86f16e25f02b569b Mon Sep 17 00:00:00 2001 From: Ingo Molnar Date: Thu, 12 Aug 2010 21:50:00 +0200 Subject: [PATCH] --- yaml --- r: 209272 b: refs/heads/master c: 88d89da64951377962334b684634cfc1468aa93f h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/tools/perf/util/include/linux/types.h | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index d1edfc70a8f0..5dd918c2139f 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: f46a6804135795f77d096ab0128f27531c7d051c +refs/heads/master: 88d89da64951377962334b684634cfc1468aa93f diff --git a/trunk/tools/perf/util/include/linux/types.h b/trunk/tools/perf/util/include/linux/types.h index 196862a81a21..12de3b8112f9 100644 --- a/trunk/tools/perf/util/include/linux/types.h +++ b/trunk/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