From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757187AbaAHQX2 (ORCPT ); Wed, 8 Jan 2014 11:23:28 -0500 Received: from mx1.redhat.com ([209.132.183.28]:43712 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756406AbaAHQXZ (ORCPT ); Wed, 8 Jan 2014 11:23:25 -0500 Date: Wed, 8 Jan 2014 17:22:53 +0100 From: Jiri Olsa To: Arnaldo Carvalho de Melo Cc: Namhyung Kim , Peter Zijlstra , Paul Mackerras , Ingo Molnar , Namhyung Kim , LKML , Arun Sharma , Frederic Weisbecker , Rodrigo Campos Subject: Re: [PATCH 01/28] perf tools: Insert filtered entries to hists also Message-ID: <20140108162253.GB21500@krava.brq.redhat.com> References: <1389170793-21926-1-git-send-email-namhyung@kernel.org> <1389170793-21926-2-git-send-email-namhyung@kernel.org> <20140108124113.GA15464@ghostprotocols.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140108124113.GA15464@ghostprotocols.net> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jan 08, 2014 at 09:41:13AM -0300, Arnaldo Carvalho de Melo wrote: > Em Wed, Jan 08, 2014 at 05:46:06PM +0900, Namhyung Kim escreveu: > > Currently if a sample was filtered by command line option, it just > > dropped. But this affects final output in that the percentage can be > > different since the filtered entries were not included to the total. > > > > For example, if an original output looked like below: > > Humm, if one says that he/she is interested on just samples for a and b, > the current behaviour will state how many of the filtered samples are > for a and b, which is valid. > > I bet the number of samples will reflect that as well, but you filtered > it out, yes, it stays there, so the percentages are relative to the > number of samples. > > So I think this change in behaviour is wrong, no? > hi, haven't checked the implementation yet, but it kind of does what I'd expect for symbol filtering: perf report ... 22.00% yes libc-2.17.so [.] __strlen_sse2 11.79% yes libc-2.17.so [.] fputs_unlocked 9.65% yes libc-2.17.so [.] __GI___mempcpy 1.91% yes yes [.] fputs_unlocked@plt ... search (press '/') for fputs_unlocked (with Namhyung's change): 11.79% yes libc-2.17.so [.] fputs_unlocked 1.91% yes yes [.] fputs_unlocked@plt while the current one shows: 86.08% yes libc-2.17.so [.] fputs_unlocked 13.92% yes yes [.] fputs_unlocked@plt which annoys me when searching for 'invisible' symbol within tons of others.. I had to do that grep thing you showed. I'd like to have the Namhyung's change behaviour as default, but I'll be happy with some switch as well ;-) thanks, jirka