Commit e4c38fd4 authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo

perf hists: Add argument to hists__resort_cb_t callback

Add argument to hists__resort_cb_t so that we can pass data from upper
layers to the callback function. It will be used in the following
patches.
Signed-off-by: default avatarJiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jin Yao <yao.jin@linux.intel.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20190204141808.23031-2-jolsa@kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 5f40fa97
...@@ -1970,7 +1970,7 @@ static void calc_width(struct c2c_hist_entry *c2c_he) ...@@ -1970,7 +1970,7 @@ static void calc_width(struct c2c_hist_entry *c2c_he)
set_nodestr(c2c_he); set_nodestr(c2c_he);
} }
static int filter_cb(struct hist_entry *he) static int filter_cb(struct hist_entry *he, void *arg __maybe_unused)
{ {
struct c2c_hist_entry *c2c_he; struct c2c_hist_entry *c2c_he;
...@@ -1987,7 +1987,7 @@ static int filter_cb(struct hist_entry *he) ...@@ -1987,7 +1987,7 @@ static int filter_cb(struct hist_entry *he)
return 0; return 0;
} }
static int resort_cl_cb(struct hist_entry *he) static int resort_cl_cb(struct hist_entry *he, void *arg __maybe_unused)
{ {
struct c2c_hist_entry *c2c_he; struct c2c_hist_entry *c2c_he;
struct c2c_hists *c2c_hists; struct c2c_hists *c2c_hists;
...@@ -2074,7 +2074,7 @@ static int setup_nodes(struct perf_session *session) ...@@ -2074,7 +2074,7 @@ static int setup_nodes(struct perf_session *session)
#define HAS_HITMS(__h) ((__h)->stats.lcl_hitm || (__h)->stats.rmt_hitm) #define HAS_HITMS(__h) ((__h)->stats.lcl_hitm || (__h)->stats.rmt_hitm)
static int resort_hitm_cb(struct hist_entry *he) static int resort_hitm_cb(struct hist_entry *he, void *arg __maybe_unused)
{ {
struct c2c_hist_entry *c2c_he; struct c2c_hist_entry *c2c_he;
c2c_he = container_of(he, struct c2c_hist_entry, he); c2c_he = container_of(he, struct c2c_hist_entry, he);
...@@ -2096,7 +2096,7 @@ static int hists__iterate_cb(struct hists *hists, hists__resort_cb_t cb) ...@@ -2096,7 +2096,7 @@ static int hists__iterate_cb(struct hists *hists, hists__resort_cb_t cb)
struct hist_entry *he; struct hist_entry *he;
he = rb_entry(next, struct hist_entry, rb_node); he = rb_entry(next, struct hist_entry, rb_node);
ret = cb(he); ret = cb(he, NULL);
if (ret) if (ret)
break; break;
next = rb_next(&he->rb_node); next = rb_next(&he->rb_node);
......
...@@ -1721,7 +1721,8 @@ static void __hists__insert_output_entry(struct rb_root_cached *entries, ...@@ -1721,7 +1721,8 @@ static void __hists__insert_output_entry(struct rb_root_cached *entries,
} }
static void output_resort(struct hists *hists, struct ui_progress *prog, static void output_resort(struct hists *hists, struct ui_progress *prog,
bool use_callchain, hists__resort_cb_t cb) bool use_callchain, hists__resort_cb_t cb,
void *cb_arg)
{ {
struct rb_root_cached *root; struct rb_root_cached *root;
struct rb_node *next; struct rb_node *next;
...@@ -1760,7 +1761,7 @@ static void output_resort(struct hists *hists, struct ui_progress *prog, ...@@ -1760,7 +1761,7 @@ static void output_resort(struct hists *hists, struct ui_progress *prog,
n = rb_entry(next, struct hist_entry, rb_node_in); n = rb_entry(next, struct hist_entry, rb_node_in);
next = rb_next(&n->rb_node_in); next = rb_next(&n->rb_node_in);
if (cb && cb(n)) if (cb && cb(n, cb_arg))
continue; continue;
__hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain); __hists__insert_output_entry(&hists->entries, n, min_callchain_hits, use_callchain);
...@@ -1785,18 +1786,18 @@ void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *pro ...@@ -1785,18 +1786,18 @@ void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *pro
use_callchain |= symbol_conf.show_branchflag_count; use_callchain |= symbol_conf.show_branchflag_count;
output_resort(evsel__hists(evsel), prog, use_callchain, NULL); output_resort(evsel__hists(evsel), prog, use_callchain, NULL, NULL);
} }
void hists__output_resort(struct hists *hists, struct ui_progress *prog) void hists__output_resort(struct hists *hists, struct ui_progress *prog)
{ {
output_resort(hists, prog, symbol_conf.use_callchain, NULL); output_resort(hists, prog, symbol_conf.use_callchain, NULL, NULL);
} }
void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog, void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog,
hists__resort_cb_t cb) hists__resort_cb_t cb)
{ {
output_resort(hists, prog, symbol_conf.use_callchain, cb); output_resort(hists, prog, symbol_conf.use_callchain, cb, NULL);
} }
static bool can_goto_child(struct hist_entry *he, enum hierarchy_move_dir hmd) static bool can_goto_child(struct hist_entry *he, enum hierarchy_move_dir hmd)
......
...@@ -163,7 +163,7 @@ int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp, ...@@ -163,7 +163,7 @@ int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
struct perf_hpp_fmt *fmt, int printed); struct perf_hpp_fmt *fmt, int printed);
void hist_entry__delete(struct hist_entry *he); void hist_entry__delete(struct hist_entry *he);
typedef int (*hists__resort_cb_t)(struct hist_entry *he); typedef int (*hists__resort_cb_t)(struct hist_entry *he, void *arg);
void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog); void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog);
void hists__output_resort(struct hists *hists, struct ui_progress *prog); void hists__output_resort(struct hists *hists, struct ui_progress *prog);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment