From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754234Ab3K0Lcx (ORCPT ); Wed, 27 Nov 2013 06:32:53 -0500 Received: from mail-bk0-f46.google.com ([209.85.214.46]:52252 "EHLO mail-bk0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753273Ab3K0Lcw (ORCPT ); Wed, 27 Nov 2013 06:32:52 -0500 Date: Wed, 27 Nov 2013 12:32:48 +0100 From: Ingo Molnar To: Adrian Hunter Cc: Arnaldo Carvalho de Melo , Peter Zijlstra , Ingo Molnar , linux-kernel@vger.kernel.org, David Ahern , Frederic Weisbecker , Jiri Olsa , Mike Galbraith , Namhyung Kim , Paul Mackerras , Stephane Eranian Subject: Re: [PATCH] perf tools: Fix not finding kcore in buildid cache Message-ID: <20131127113248.GB10495@gmail.com> References: <1385471964-4037-1-git-send-email-adrian.hunter@intel.com> <20131126161553.GB7775@gmail.com> <5295AACE.2080606@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5295AACE.2080606@intel.com> 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 * Adrian Hunter wrote: > On 26/11/13 18:15, Ingo Molnar wrote: > > > > * Adrian Hunter wrote: > > > >> The logic was not looking in the buildid cache for kcore > >> if the host kernel buildid did not match the recorded > >> kernel buildid. > > > > It would be nice to also include the specific failure mode in the > > changelog: exactly how can users run into this. That will be more > > useful to most people reading these changelogs than a more abstract > > bug description. > > The preconditions for the problem are that kcore is in the buildid > cache and that the running kernel has a different buildid e.g. > > $ perf buildid-list | grep kernel.kallsyms > b18fbe769dea12513028a4287dae02efc1582c29 [kernel.kallsyms] > > $ perf record -o /tmp/junk true >/dev/null 2>&1 ; perf buildid-list -i /tmp/junk | grep kernel.kallsyms > 504f9fd9328c40714995ce76fe1354c6e90136ce [kernel.kallsyms] > > > > Before the patch: > > > $ perf script -v >out.txt > build id event received for [kernel.kallsyms]: b18fbe769dea12513028a4287dae02efc1582c29 > > Using /home/ahunter/.debug/[kernel.kallsyms]/b18fbe769dea12513028a4287dae02efc1582c29 for symbols > > perf script stopped > > > After the patch: > > > $ perf script -v >out.txt > build id event received for [kernel.kallsyms]: b18fbe769dea12513028a4287dae02efc1582c29 > > Using /home/ahunter/.debug/[kernel.kcore]/b18fbe769dea12513028a4287dae02efc1582c29/2013112617084061/kcore for kernel object code > Using /home/ahunter/.debug/[kernel.kcore]/b18fbe769dea12513028a4287dae02efc1582c29/2013112617084061/kallsyms for symbols > > perf script stopped So the result of the patch is that kernel symbols get resolved/annotated correctly, as expected from the live kcore feature, right? Thanks, Ingo