Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753112AbcD0Mxm (ORCPT ); Wed, 27 Apr 2016 08:53:42 -0400 Received: from mail.kernel.org ([198.145.29.136]:35873 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753031AbcD0Mxk (ORCPT ); Wed, 27 Apr 2016 08:53:40 -0400 Date: Wed, 27 Apr 2016 09:53:30 -0300 From: Arnaldo Carvalho de Melo To: Peter Zijlstra Cc: Brendan Gregg , Arnaldo Carvalho de Melo , Alexei Starovoitov , David Ahern , Frederic Weisbecker , Ingo Molnar , Adrian Hunter , Alexander Shishkin , Alexei Starovoitov , He Kuang , Jiri Olsa , Masami Hiramatsu , Milian Wolff , Namhyung Kim , Stephane Eranian , Thomas Gleixner , Vince Weaver , Wang Nan , Zefan Li , Linux Kernel Mailing List Subject: Re: [PATCH/RFC v3] perf core: Allow setting up max frame stack depth via sysctl Message-ID: <20160427125330.GL11033@kernel.org> References: <20160425215947.GA25915@ast-mbp.thefacebook.com> <20160425234138.GA16708@kernel.org> <20160426000724.GA28705@ast-mbp.thefacebook.com> <20160426002928.GB16708@kernel.org> <20160426004358.GA29875@ast-mbp.thefacebook.com> <20160426004747.GC16708@kernel.org> <20160426210500.GK11033@kernel.org> <20160426215536.GP3430@twins.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160426215536.GP3430@twins.programming.kicks-ass.net> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1137 Lines: 26 Em Tue, Apr 26, 2016 at 11:55:36PM +0200, Peter Zijlstra escreveu: > On Tue, Apr 26, 2016 at 06:05:00PM -0300, Arnaldo Carvalho de Melo wrote: > > > I started with max depth = 512, and even that was still truncated, and > > > had to profile again at 1024 to capture the full stacks. Seems to > ^^^^^^ > > And since you talked about userspace without frame pointers, have you > > played with '--call-graph lbr'? > That seems to be at odds with his requirements; he needs 1024 entries to > capture full stacks, LBR is limited to 16/32 or so entries. That's 2 > orders of magnitude difference. Duh, you're right, must've confused with that BTS thing, but as you said in another message, that generates way too much info, have to read more about it and the PT as well :-\ Anyway, for syscall backtraces, using 16 or 32 as the default in 'perf trace', seems interesting, automatically switching to DWARF (or FP if configured by the user in a system built with -fno-omit-frame-pointer) if, say, --max-stack 38, say, is specified. Have to take a look at how to do that for raw_syscalls:sys_enter. - Arnaldo