Re: [PATCH 14/40] perf tools: Introduce machine__find*_thread_by_time()

From: Jiri Olsa
Date: Mon May 18 2015 - 15:52:53 EST


On Mon, May 18, 2015 at 09:30:29AM +0900, Namhyung Kim wrote:

SNIP

> +static struct thread *
> +__machine__findnew_thread_by_time(struct machine *machine, pid_t pid, pid_t tid,
> + u64 timestamp, bool create)
> +{
> + struct thread *curr, *pos, *new;
> + struct thread *th = NULL;
> + struct rb_node **p;
> + struct rb_node *parent = NULL;
> +
> + if (!perf_has_index)
> + return ____machine__findnew_thread(machine, pid, tid, create);
> +
> + /* lookup current thread first */
> + curr = ____machine__findnew_thread(machine, pid, tid, false);
> + if (curr && timestamp >= curr->start_time)
> + return curr;
> +
> + /* and then check dead threads tree & list */
> + p = &machine->dead_threads.rb_node;
> + while (*p != NULL) {
> + parent = *p;
> + th = rb_entry(parent, struct thread, rb_node);
> +
> + if (th->tid == tid) {
> + list_for_each_entry(pos, &th->tid_node, tid_node) {
> + if (timestamp >= pos->start_time &&
> + pos->start_time > th->start_time) {
> + th = pos;
> + break;
> + }

hum, how do we know, there's not another thread on the list
fitting the timestamp >= pos->start_time condition as well?

jirka
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/