From 28990f75e66b36faf6ce56747890009d4e250243 Mon Sep 17 00:00:00 2001 From: Thomas Gleixner Date: Tue, 30 Nov 2010 17:49:35 +0000 Subject: [PATCH] perf session: Use appropriate pointer type instead of silly typecasting There is no reason to use a struct sample_event pointer in struct sample_queue and type cast it when flushing the queue. Cc: Ingo Molnar Cc: Peter Zijlstra Cc: Frederic Weisbecker LKML-Reference: <20101130163819.969462809@linutronix.de> Signed-off-by: Thomas Gleixner Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c index daca557b9d2..525bcf6adc2 100644 --- a/tools/perf/util/session.c +++ b/tools/perf/util/session.c @@ -386,7 +386,7 @@ static event__swap_op event__swap_ops[] = { struct sample_queue { u64 timestamp; - struct sample_event *event; + event_t *event; struct list_head list; }; @@ -406,7 +406,7 @@ static void flush_sample_queue(struct perf_session *s, if (iter->timestamp > limit) break; - ops->sample((event_t *)iter->event, s); + ops->sample(iter->event, s); os->last_flush = iter->timestamp; list_del(&iter->list); -- 2.46.0