diff options
author | Jiri Olsa <[email protected]> | 2014-05-05 12:34:12 +0200 |
---|---|---|
committer | Jiri Olsa <[email protected]> | 2014-05-05 17:46:41 +0200 |
commit | 1b7ae1c941af21ec386ea7c7e812ba430652731c (patch) | |
tree | 924d8e4dc27d9110b03c87e08039c15fe6cc7f20 | |
parent | 8be26c539f0d4c77a798b20515ad6404d72de74d (diff) |
perf tools: Remove min define from perf.h
It's defined in tools/perf/util/include/linux/kernel.h header.
Acked-by: Arnaldo Carvalho de Melo <[email protected]>
Acked-by: Peter Zijlstra <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Corey Ashford <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Jiri Olsa <[email protected]>
-rw-r--r-- | tools/perf/perf.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/perf/perf.h b/tools/perf/perf.h index a547f3819a12..50aa88ded254 100644 --- a/tools/perf/perf.h +++ b/tools/perf/perf.h @@ -203,12 +203,6 @@ static inline unsigned long long rdclock(void) */ #define asmlinkage -#define min(x, y) ({ \ - typeof(x) _min1 = (x); \ - typeof(y) _min2 = (y); \ - (void) (&_min1 == &_min2); \ - _min1 < _min2 ? _min1 : _min2; }) - extern bool test_attr__enabled; void test_attr__init(void); void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu, |