From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS, URIBL_BLOCKED,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1CB24C04EB9 for ; Wed, 5 Dec 2018 12:20:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C752720850 for ; Wed, 5 Dec 2018 12:20:20 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="MEMo5iEM" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C752720850 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727829AbeLEMUT (ORCPT ); Wed, 5 Dec 2018 07:20:19 -0500 Received: from mail.kernel.org ([198.145.29.99]:43282 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726918AbeLEMUT (ORCPT ); Wed, 5 Dec 2018 07:20:19 -0500 Received: from quaco.ghostprotocols.net (unknown [179.97.41.186]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9BB82206B7; Wed, 5 Dec 2018 12:20:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544012418; bh=ptLvgWpeRZu6cYY+1puDC5J7kKNEdN4gzsLdx7G97II=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MEMo5iEMSqztoLfNdE99LEMjsNNvI2wD9TzO46bOg+XRixl8Gxiaj1AoDq0Y5IH4U g2+xN1DJcsVuRlm6IuzgZReJpKN67wKYfrDoW0+13RNAiq9cP+5VZs0J6cBKK9PTnf 0SjUwj0hSjDAC46cKz4Vra0rZqe8bPxwhHyEAJB4= Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id E155D4042C; Wed, 5 Dec 2018 09:20:15 -0300 (-03) Date: Wed, 5 Dec 2018 09:20:15 -0300 From: Arnaldo Carvalho de Melo To: Namhyung Kim Cc: Mark Drayton , Peter Zijlstra , Ingo Molnar , Alexander Shishkin , Jiri Olsa , linux-kernel@vger.kernel.org, kernel-team@lge.com, Song Liu Subject: Re: [PATCH] perf: allow specifying proc-map-timeout in config file Message-ID: <20181205122015.GA28389@kernel.org> References: <20181204203420.1683114-1-mbd@fb.com> <20181205024222.GA32453@danjae.aot.lge.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181205024222.GA32453@danjae.aot.lge.com> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Wed, Dec 05, 2018 at 11:42:22AM +0900, Namhyung Kim escreveu: > On Tue, Dec 04, 2018 at 12:34:20PM -0800, Mark Drayton wrote: > > The default timeout of 500ms for parsing /proc//maps files is too > > short for profiling many of our services. This can be overridden by > > passing --proc-map-timeout to the relevant command but it'd be nice to > > globally increase our default value. This patch permits setting a > > different default with the core.proc-map-timeout config file parameter. > > Signed-off-by: Mark Drayton > Acked-by: Namhyung Kim Thanks, added both yours and Song's Acked-by, - Arnaldo