|
@@ -958,10 +958,11 @@ out:
|
|
|
int64_t
|
|
|
hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
|
|
|
{
|
|
|
+ struct hists *hists = left->hists;
|
|
|
struct perf_hpp_fmt *fmt;
|
|
|
int64_t cmp = 0;
|
|
|
|
|
|
- perf_hpp_list__for_each_sort_list(&perf_hpp_list, fmt) {
|
|
|
+ hists__for_each_sort_list(hists, fmt) {
|
|
|
cmp = fmt->cmp(fmt, left, right);
|
|
|
if (cmp)
|
|
|
break;
|
|
@@ -973,10 +974,11 @@ hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
|
|
|
int64_t
|
|
|
hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
|
|
|
{
|
|
|
+ struct hists *hists = left->hists;
|
|
|
struct perf_hpp_fmt *fmt;
|
|
|
int64_t cmp = 0;
|
|
|
|
|
|
- perf_hpp_list__for_each_sort_list(&perf_hpp_list, fmt) {
|
|
|
+ hists__for_each_sort_list(hists, fmt) {
|
|
|
cmp = fmt->collapse(fmt, left, right);
|
|
|
if (cmp)
|
|
|
break;
|
|
@@ -1117,10 +1119,11 @@ void hists__collapse_resort(struct hists *hists, struct ui_progress *prog)
|
|
|
|
|
|
static int hist_entry__sort(struct hist_entry *a, struct hist_entry *b)
|
|
|
{
|
|
|
+ struct hists *hists = a->hists;
|
|
|
struct perf_hpp_fmt *fmt;
|
|
|
int64_t cmp = 0;
|
|
|
|
|
|
- perf_hpp_list__for_each_sort_list(&perf_hpp_list, fmt) {
|
|
|
+ hists__for_each_sort_list(hists, fmt) {
|
|
|
if (perf_hpp__should_skip(fmt, a->hists))
|
|
|
continue;
|
|
|
|