From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758591AbcIWFaf (ORCPT ); Fri, 23 Sep 2016 01:30:35 -0400 Received: from terminus.zytor.com ([198.137.202.10]:49110 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754636AbcIWFad (ORCPT ); Fri, 23 Sep 2016 01:30:33 -0400 Date: Thu, 22 Sep 2016 22:30:16 -0700 From: tip-bot for Jiri Olsa Message-ID: Cc: linux-kernel@vger.kernel.org, namhyung@kernel.org, tglx@linutronix.de, jmario@redhat.com, hpa@zytor.com, mingo@kernel.org, jolsa@kernel.org, dsahern@gmail.com, andi@firstfloor.org, dzickus@redhat.com, a.p.zijlstra@chello.nl, acme@redhat.com Reply-To: mingo@kernel.org, hpa@zytor.com, jolsa@kernel.org, namhyung@kernel.org, linux-kernel@vger.kernel.org, tglx@linutronix.de, jmario@redhat.com, a.p.zijlstra@chello.nl, acme@redhat.com, dzickus@redhat.com, dsahern@gmail.com, andi@firstfloor.org In-Reply-To: <1474558645-19956-8-git-send-email-jolsa@kernel.org> References: <1474558645-19956-8-git-send-email-jolsa@kernel.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf tools: Make several display functions global Git-Commit-ID: 98ba1609298ccc849ddfe727c675c3a7b48b8dbc 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: 98ba1609298ccc849ddfe727c675c3a7b48b8dbc Gitweb: http://git.kernel.org/tip/98ba1609298ccc849ddfe727c675c3a7b48b8dbc Author: Jiri Olsa AuthorDate: Thu, 22 Sep 2016 17:36:35 +0200 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 22 Sep 2016 13:08:58 -0300 perf tools: Make several display functions 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-8-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/ui/browsers/hists.c | 2 +- tools/perf/ui/hist.c | 2 +- tools/perf/util/hist.h | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/perf/ui/browsers/hists.c b/tools/perf/ui/browsers/hists.c index a6d5d24..fb8e42c 100644 --- a/tools/perf/ui/browsers/hists.c +++ b/tools/perf/ui/browsers/hists.c @@ -1080,7 +1080,7 @@ struct hpp_arg { bool current_entry; }; -static int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...) +int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...) { struct hpp_arg *arg = hpp->ptr; int ret, len; diff --git a/tools/perf/ui/hist.c b/tools/perf/ui/hist.c index 60c4a4d..3738839 100644 --- a/tools/perf/ui/hist.c +++ b/tools/perf/ui/hist.c @@ -237,7 +237,7 @@ static int hpp__header_fn(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, return scnprintf(hpp->buf, hpp->size, "%*s", len, fmt->name); } -static int hpp_color_scnprintf(struct perf_hpp *hpp, const char *fmt, ...) +int hpp_color_scnprintf(struct perf_hpp *hpp, const char *fmt, ...) { va_list args; ssize_t ssize = hpp->size; diff --git a/tools/perf/util/hist.h b/tools/perf/util/hist.h index defa957..6150b94 100644 --- a/tools/perf/util/hist.h +++ b/tools/perf/util/hist.h @@ -485,5 +485,7 @@ static inline struct rb_node *rb_hierarchy_next(struct rb_node *node) #define HIERARCHY_INDENT 3 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, ...); #endif /* __PERF_HIST_H */