[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20151008122011.GB6784@krava.landal.opennet>
Date: Thu, 8 Oct 2015 14:20:11 +0200
From: Jiri Olsa <jolsa@...hat.com>
To: Namhyung Kim <namhyung@...nel.org>
Cc: Arnaldo Carvalho de Melo <acme@...nel.org>,
Ingo Molnar <mingo@...nel.org>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
LKML <linux-kernel@...r.kernel.org>,
Frederic Weisbecker <fweisbec@...il.com>,
Stephane Eranian <eranian@...gle.com>,
David Ahern <dsahern@...il.com>,
Andi Kleen <andi@...stfloor.org>
Subject: Re: [RFC/PATCH 15/38] perf tools: Introduce
machine__find*_thread_by_time()
On Fri, Oct 02, 2015 at 02:18:56PM +0900, Namhyung Kim wrote:
SNIP
> diff --git a/tools/perf/util/thread.c b/tools/perf/util/thread.c
> index 674792e8fa2f..ad7c2a00bff8 100644
> --- a/tools/perf/util/thread.c
> +++ b/tools/perf/util/thread.c
> @@ -160,6 +160,9 @@ int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp,
>
> /* Override the default :tid entry */
> if (!thread->comm_set) {
> + if (!thread->start_time)
> + thread->start_time = timestamp;
> +
> err = comm__override(curr, str, timestamp, exec);
> if (err)
> return err;
> @@ -266,6 +269,7 @@ int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp)
> }
>
> thread->ppid = parent->tid;
> + thread->start_time = timestamp;
> return thread__clone_map_groups(thread, parent);
> }
>
> diff --git a/tools/perf/util/thread.h b/tools/perf/util/thread.h
> index b8f794d97b75..97026a9660ec 100644
> --- a/tools/perf/util/thread.h
> +++ b/tools/perf/util/thread.h
> @@ -28,6 +28,7 @@ struct thread {
> bool dead; /* thread is in dead_threads list */
> struct list_head comm_list;
> u64 db_id;
> + u64 start_time;
introducing start_time could be in separate patch
would ease up the review a bit
jirka
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists