From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759753Ab3DCJKv (ORCPT ); Wed, 3 Apr 2013 05:10:51 -0400 Received: from LGEMRELSE7Q.lge.com ([156.147.1.151]:43270 "EHLO LGEMRELSE7Q.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758532Ab3DCJKs (ORCPT ); Wed, 3 Apr 2013 05:10:48 -0400 X-AuditID: 9c930197-b7b50ae00000018c-f4-515bf212ac9d From: Namhyung Kim To: Jiri Olsa Cc: Arnaldo Carvalho de Melo , Peter Zijlstra , Paul Mackerras , Ingo Molnar , Namhyung Kim , LKML , Stephane Eranian , Andi Kleen , David Ahern Subject: Re: [PATCH 6/9] perf sort: Add 'addr' sort key References: <1364816125-12212-1-git-send-email-namhyung@kernel.org> <1364816125-12212-7-git-send-email-namhyung@kernel.org> <20130401204022.GB1022@krava.redhat.com> <87wqslfzk4.fsf@sejong.aot.lge.com> <20130402084014.GA26618@krava.redhat.com> Date: Wed, 03 Apr 2013 18:10:41 +0900 In-Reply-To: <20130402084014.GA26618@krava.redhat.com> (Jiri Olsa's message of "Tue, 2 Apr 2013 10:40:14 +0200") Message-ID: <87txnodlny.fsf@sejong.aot.lge.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Brightmail-Tracker: AAAAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Jiri, On Tue, 2 Apr 2013 10:40:14 +0200, Jiri Olsa wrote: > On Tue, Apr 02, 2013 at 11:15:23AM +0900, Namhyung Kim wrote: >> On Mon, 1 Apr 2013 22:40:23 +0200, Jiri Olsa wrote: >> > On Mon, Apr 01, 2013 at 08:35:22PM +0900, Namhyung Kim wrote: >> >> From: Namhyung Kim >> >> >> >> New addr sort key provides a way to sort the entries by the symbol >> >> addresses. It can be helpful to figure out symbol resolution problem >> >> when a dso cannot do it properly as well as finding hotpath in a dso >> >> and/or a function. >> > >> > maybe it's just the recent mem profiling patches, but wouldn't >> > it be better to use 'ip' instead of 'addr'? >> > >> > also it's following code getting the data: >> > ... >> > if (sample_type & PERF_SAMPLE_IP) >> > data->ip = perf_instruction_pointer(regs); >> > ... >> > >> > same for the "perf sort: Add 'addr_to/from' sort key" patch >> >> I'm not sure I understand what you mean exactly. >> >> I used hist_entry->ip but it was set by al->addr which was converted >> from the original sample ip to a relative ip by map->map_ip(). >> >> I can change it to use ->unmap_ip() before printing. Is that your >> concern? > > what I meant was the 'addr' name itself for -s option, like use: > '-s ip' instead of '-s addr' Well, I don't know what's better. But the 'addr' looks more natural to me and it's requested originally. And the 'ip' can have multiple meaning. :) Thanks, Namhyung