Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751873AbcDZAry (ORCPT ); Mon, 25 Apr 2016 20:47:54 -0400 Received: from mail.kernel.org ([198.145.29.136]:52090 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751267AbcDZArv (ORCPT ); Mon, 25 Apr 2016 20:47:51 -0400 Date: Mon, 25 Apr 2016 21:47:47 -0300 From: Arnaldo Carvalho de Melo To: Alexei Starovoitov Cc: Arnaldo Carvalho de Melo , David Ahern , Peter Zijlstra , Frederic Weisbecker , Ingo Molnar , Adrian Hunter , Brendan Gregg , 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: <20160426004747.GC16708@kernel.org> References: <20160425161425.GA25218@kernel.org> <20160425162706.GB25218@kernel.org> <20160425192229.GC25218@kernel.org> <20160425200646.GA23875@ast-mbp.thefacebook.com> <20160425201750.GD25218@kernel.org> <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> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160426004358.GA29875@ast-mbp.thefacebook.com> 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: 1371 Lines: 37 Em Mon, Apr 25, 2016 at 05:44:00PM -0700, Alexei Starovoitov escreveu: > On Mon, Apr 25, 2016 at 09:29:28PM -0300, Arnaldo Carvalho de Melo wrote: > > Em Mon, Apr 25, 2016 at 05:07:26PM -0700, Alexei Starovoitov escreveu: > > > > + { > > > > + .procname = "perf_event_max_stack", > > > > + .data = NULL, /* filled in by handler */ > > > > + .maxlen = sizeof(sysctl_perf_event_max_stack), > > > > + .mode = 0644, > > > > + .proc_handler = perf_event_max_stack_handler, > > > > + .extra1 = &zero, > > > > + }, > > > > > you need to define a max value otherwise perf_callchain_entry__sizeof > > > will overflow. Sure it's root only facility, but still not nice. > > > 1M? Anything above 1M stack frames would be insane anyway. > > > The rest looks good. Thanks! > > > > Something else? ;-) > > all looks good to me. Thanks a bunch! Thanks for checking! > > Because we only allocate the callchain percpu data structures when there > > is a user, which allows for changing the max easily, its just a matter > > of having no callchain users at that point. > > > > Reported-and-Tested-by: Brendan Gregg > > Acked-by: Alexei Starovoitov > > yep :) > hopefully Brendan can give it another spin. Agreed, and I'm calling it a day anyway, Brendan, please consider retesting, thanks, - Arnaldo