From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753973AbcGDOBq (ORCPT ); Mon, 4 Jul 2016 10:01:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:36952 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753414AbcGDOBp (ORCPT ); Mon, 4 Jul 2016 10:01:45 -0400 From: Jiri Olsa To: Arnaldo Carvalho de Melo Cc: lkml , David Ahern , Ingo Molnar , Namhyung Kim , Peter Zijlstra Subject: [PATCH 1/4] perf tools: Introduce hist_entry__init function Date: Mon, 4 Jul 2016 16:01:36 +0200 Message-Id: <1467640899-3776-2-git-send-email-jolsa@kernel.org> In-Reply-To: <1467640899-3776-1-git-send-email-jolsa@kernel.org> References: <1467640899-3776-1-git-send-email-jolsa@kernel.org> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Mon, 04 Jul 2016 14:01:44 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Move hist_entry initialization code into separate function. It'll be useful and more clear for following patches that introduce allocation callbacks. Link: http://lkml.kernel.org/n/tip-j8dz6ytir91x8qd1zk4vf7ki@git.kernel.org Signed-off-by: Jiri Olsa --- tools/perf/util/hist.c | 142 ++++++++++++++++++++++++++----------------------- 1 file changed, 75 insertions(+), 67 deletions(-) diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index e1fcc8d7c01a..ed7bea9aa68d 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -352,89 +352,97 @@ void hists__delete_entries(struct hists *hists) * histogram, sorted on item, collects periods */ -static struct hist_entry *hist_entry__new(struct hist_entry *template, - bool sample_self) +static int hist_entry__init(struct hist_entry *he, + struct hist_entry *template, + bool sample_self) { - size_t callchain_size = 0; - struct hist_entry *he; + *he = *template; - if (symbol_conf.use_callchain) - callchain_size = sizeof(struct callchain_root); - - he = zalloc(sizeof(*he) + callchain_size); + if (symbol_conf.cumulate_callchain) { + he->stat_acc = malloc(sizeof(he->stat)); + if (he->stat_acc == NULL) { + free(he); + return -ENOMEM; + } + memcpy(he->stat_acc, &he->stat, sizeof(he->stat)); + if (!sample_self) + memset(&he->stat, 0, sizeof(he->stat)); + } - if (he != NULL) { - *he = *template; + map__get(he->ms.map); - if (symbol_conf.cumulate_callchain) { - he->stat_acc = malloc(sizeof(he->stat)); - if (he->stat_acc == NULL) { - free(he); - return NULL; - } - memcpy(he->stat_acc, &he->stat, sizeof(he->stat)); - if (!sample_self) - memset(&he->stat, 0, sizeof(he->stat)); + if (he->branch_info) { + /* + * This branch info is (a part of) allocated from + * sample__resolve_bstack() and will be freed after + * adding new entries. So we need to save a copy. + */ + he->branch_info = malloc(sizeof(*he->branch_info)); + if (he->branch_info == NULL) { + map__zput(he->ms.map); + free(he->stat_acc); + free(he); + return -ENOMEM; } - map__get(he->ms.map); + memcpy(he->branch_info, template->branch_info, + sizeof(*he->branch_info)); - if (he->branch_info) { - /* - * This branch info is (a part of) allocated from - * sample__resolve_bstack() and will be freed after - * adding new entries. So we need to save a copy. - */ - he->branch_info = malloc(sizeof(*he->branch_info)); - if (he->branch_info == NULL) { - map__zput(he->ms.map); - free(he->stat_acc); - free(he); - return NULL; - } + map__get(he->branch_info->from.map); + map__get(he->branch_info->to.map); + } - memcpy(he->branch_info, template->branch_info, - sizeof(*he->branch_info)); + if (he->mem_info) { + map__get(he->mem_info->iaddr.map); + map__get(he->mem_info->daddr.map); + } - map__get(he->branch_info->from.map); - map__get(he->branch_info->to.map); - } + if (symbol_conf.use_callchain) + callchain_init(he->callchain); - if (he->mem_info) { - map__get(he->mem_info->iaddr.map); - map__get(he->mem_info->daddr.map); + if (he->raw_data) { + he->raw_data = memdup(he->raw_data, he->raw_size); + + if (he->raw_data == NULL) { + map__put(he->ms.map); + if (he->branch_info) { + map__put(he->branch_info->from.map); + map__put(he->branch_info->to.map); + free(he->branch_info); + } + if (he->mem_info) { + map__put(he->mem_info->iaddr.map); + map__put(he->mem_info->daddr.map); + } + free(he->stat_acc); + free(he); + return -ENOMEM; } + } + INIT_LIST_HEAD(&he->pairs.node); + thread__get(he->thread); - if (symbol_conf.use_callchain) - callchain_init(he->callchain); + if (!symbol_conf.report_hierarchy) + he->leaf = true; - if (he->raw_data) { - he->raw_data = memdup(he->raw_data, he->raw_size); + return 0; +} - if (he->raw_data == NULL) { - map__put(he->ms.map); - if (he->branch_info) { - map__put(he->branch_info->from.map); - map__put(he->branch_info->to.map); - free(he->branch_info); - } - if (he->mem_info) { - map__put(he->mem_info->iaddr.map); - map__put(he->mem_info->daddr.map); - } - free(he->stat_acc); - free(he); - return NULL; - } - } - INIT_LIST_HEAD(&he->pairs.node); - thread__get(he->thread); +static struct hist_entry *hist_entry__new(struct hist_entry *template, + bool sample_self) +{ + size_t callchain_size = 0; + struct hist_entry *he; + int err = 0; - if (!symbol_conf.report_hierarchy) - he->leaf = true; - } + if (symbol_conf.use_callchain) + callchain_size = sizeof(struct callchain_root); - return he; + he = zalloc(sizeof(*he) + callchain_size); + if (he) + err = hist_entry__init(he, template, sample_self); + + return err ? NULL : he; } static u8 symbol__parent_filter(const struct symbol *parent) -- 2.4.11