Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756586AbZJ2U0U (ORCPT ); Thu, 29 Oct 2009 16:26:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754758AbZJ2U0U (ORCPT ); Thu, 29 Oct 2009 16:26:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:31471 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754694AbZJ2U0T (ORCPT ); Thu, 29 Oct 2009 16:26:19 -0400 Message-ID: <4AE9FA43.1040803@redhat.com> Date: Thu, 29 Oct 2009 13:25:39 -0700 From: Josh Stone User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.4pre) Gecko/20091014 Fedora/3.0-2.8.b4.fc11 Lightning/1.0pre Thunderbird/3.0b4 MIME-Version: 1.0 To: Masami Hiramatsu CC: Ingo Molnar , Arnaldo Carvalho de Melo , =?ISO-8859-1?Q?Fr=E9d=E9ric_Weisbecker?= , lkml , Steven Rostedt , Jim Keniston , Ananth N Mavinakayanahalli , Christoph Hellwig , "Frank Ch. Eigler" , "H. Peter Anvin" , Jason Baron , "K.Prasad" , Peter Zijlstra , Srikar Dronamraju , systemtap , DLE Subject: Re: [PATCH -tip perf/probes 00/10] x86 insn decoder bugfixes References: <20091027204156.30545.96425.stgit@harusame> <20091029085348.GD26970@elte.hu> <4AE9C919.4070003@redhat.com> <4AE9F6BF.8000501@redhat.com> In-Reply-To: <4AE9F6BF.8000501@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1338 Lines: 32 On 10/29/2009 01:10 PM, Masami Hiramatsu wrote: > Masami Hiramatsu wrote: >> Ingo Molnar wrote: >>> Another problem i noticed is that a vmlinux without DEBUG_INFO will fail >>> in this way: >>> >>> aldebaran:~/linux/linux> perf probe schedule >>> Fatal: Failed to call dwarf_init(). Maybe, not a dwarf file. >> >> Ah, really? I think I broke need_dwarf logic somehow... > > Hmm, I've found that is for searching (implicitly) inlined symbols, > this means "the behavior is by (bad) design" :-( > > I think it should be search the symbol in Elf (or kallsyms) first, > and only if it fails, use Dwarf for searching the symbol again. > > Or, it may be enough that just trying to setup probe and if it fails > use Dwarf. This way doesn't require any vmlinux access. Just beware that functions can exist in the symbol table and as inlines at the same time. For example, we've seen compat_sys_recvmsg get inlined into compat_sys_socketcall, while it's still compiled as a standalone function too. So if you have the dwarf, you should still try to see if inlined versions exist. Josh -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/