diff options
Diffstat (limited to 'tools/perf/ui')
| -rw-r--r-- | tools/perf/ui/hist.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/tools/perf/ui/hist.c b/tools/perf/ui/hist.c index 59addd52d9cd..ddb2c6fbdf91 100644 --- a/tools/perf/ui/hist.c +++ b/tools/perf/ui/hist.c @@ -210,6 +210,8 @@ static int __hpp__sort_acc(struct hist_entry *a, struct hist_entry *b,  			return 0;  		ret = b->callchain->max_depth - a->callchain->max_depth; +		if (callchain_param.order == ORDER_CALLER) +			ret = -ret;  	}  	return ret;  } |