From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753066AbbKZTwQ (ORCPT ); Thu, 26 Nov 2015 14:52:16 -0500 Received: from mail.kernel.org ([198.145.29.136]:51860 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751065AbbKZTwO (ORCPT ); Thu, 26 Nov 2015 14:52:14 -0500 Date: Thu, 26 Nov 2015 16:52:10 -0300 From: Arnaldo Carvalho de Melo To: Ekaterina Tumanova Cc: linux-kernel@vger.kernel.org, borntraeger@de.ibm.com, yarygin@linux.vnet.ibm.com, a.p.zijlstra@chello.nl, mingo@redhat.com, namhyung@kernel.org, adrian.hunter@intel.com, wangnan0@huawei.com, naveen.n.rao@linux.vnet.ibm.com, dsahern@gmail.com, jolsa@kernel.org Subject: Re: [PATCH 0/2] Enhance the init of vmlinux_path and add new path Message-ID: <20151126195210.GJ28162@kernel.org> References: <1448469166-61363-1-git-send-email-tumanova@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1448469166-61363-1-git-send-email-tumanova@linux.vnet.ibm.com> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Wed, Nov 25, 2015 at 05:32:44PM +0100, Ekaterina Tumanova escreveu: > These pathset improves perf processing of the paths to vmlinux files: > 1. it refactors the vmlinux_path__init procedure, to allow a simple > usage in future: instead of adding several lines for every future vmlinux path, > make it possible to simply add a path itself (1 line) to an array. > 2. Some distibutions separate debuginfo to vmlinux.debug file. This patchset > adds a path to vmlinux.debug, so that perf could use its symbols. > > Ekaterina Tumanova (2): > perf: Refactor vmlinux_path_init > perf: add the path to vmlinux.debug Applied both, after renaming vmlinux_path__update() to vmlinux_path__add(), as this "adds" entries to vmlinux_path. - Arnaldo