Re: [PATCH 5/5] perf tools: Share process map groups within process threads

From: Namhyung Kim
Date: Mon Mar 17 2014 - 03:25:32 EST


On Fri, 14 Mar 2014 15:00:06 +0100, Jiri Olsa wrote:
> + if (!mg) {
> + struct thread *leader = thread__get_leader(thread);
> +
> + if (!leader)
> + return NULL;
> +
> + if (leader->mg)
> + mg = leader->mg;
> + else
> + mg = thread__map_groups_alloc(leader);
> +
> + if (leader != thread)
> + thread->mg = mg;
> +
> + mg->refcnt++;

What's the value of mg->refcnt here in case of leader != thread and
leader->mg was not allocated originally? I think it's 1 - but shouldn't
it be 2 since it's referenced from both of leader and the thread now?

Thanks,
Namhyung
--
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/