From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758359AbcIWFa6 (ORCPT ); Fri, 23 Sep 2016 01:30:58 -0400 Received: from terminus.zytor.com ([198.137.202.10]:49150 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755125AbcIWFa4 (ORCPT ); Fri, 23 Sep 2016 01:30:56 -0400 Date: Thu, 22 Sep 2016 22:30:43 -0700 From: tip-bot for Jiri Olsa Message-ID: Cc: tglx@linutronix.de, linux-kernel@vger.kernel.org, andi@firstfloor.org, a.p.zijlstra@chello.nl, hpa@zytor.com, dsahern@gmail.com, jolsa@kernel.org, acme@redhat.com, mingo@kernel.org, jmario@redhat.com, dzickus@redhat.com, namhyung@kernel.org Reply-To: namhyung@kernel.org, dzickus@redhat.com, jmario@redhat.com, mingo@kernel.org, jolsa@kernel.org, acme@redhat.com, a.p.zijlstra@chello.nl, andi@firstfloor.org, hpa@zytor.com, dsahern@gmail.com, linux-kernel@vger.kernel.org, tglx@linutronix.de In-Reply-To: <1474558645-19956-9-git-send-email-jolsa@kernel.org> References: <1474558645-19956-9-git-send-email-jolsa@kernel.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf hists: Make __hist_entry__snprintf function global Git-Commit-ID: bd28d0c59805b88001fcc8ad5c6f913d86d8e5c2 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: bd28d0c59805b88001fcc8ad5c6f913d86d8e5c2 Gitweb: http://git.kernel.org/tip/bd28d0c59805b88001fcc8ad5c6f913d86d8e5c2 Author: Jiri Olsa AuthorDate: Thu, 22 Sep 2016 17:36:36 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 22 Sep 2016 13:08:58 -0300 perf hists: Make __hist_entry__snprintf function global Will be used from external places in the upcoming c2c patch series. Signed-off-by: Jiri Olsa Cc: Andi Kleen Cc: David Ahern Cc: Don Zickus Cc: Joe Mario Cc: Namhyung Kim Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/1474558645-19956-9-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/ui/stdio/hist.c | 4 ++-- tools/perf/util/hist.h | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/perf/ui/stdio/hist.c b/tools/perf/ui/stdio/hist.c index 189665c..a2a50ef 100644 --- a/tools/perf/ui/stdio/hist.c +++ b/tools/perf/ui/stdio/hist.c @@ -373,8 +373,8 @@ static size_t hist_entry_callchain__fprintf(struct hist_entry *he, return 0; } -static int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp, - struct perf_hpp_list *hpp_list) +int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp, + struct perf_hpp_list *hpp_list) { const char *sep = symbol_conf.field_sep; struct perf_hpp_fmt *fmt; diff --git a/tools/perf/util/hist.h b/tools/perf/util/hist.h index 6150b94..ecc4c0c 100644 --- a/tools/perf/util/hist.h +++ b/tools/perf/util/hist.h @@ -487,5 +487,7 @@ static inline struct rb_node *rb_hierarchy_next(struct rb_node *node) bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit); int hpp_color_scnprintf(struct perf_hpp *hpp, const char *fmt, ...); int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...); +int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp, + struct perf_hpp_list *hpp_list); #endif /* __PERF_HIST_H */