From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S938821AbXG1CCQ (ORCPT ); Fri, 27 Jul 2007 22:02:16 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S938471AbXG1CCF (ORCPT ); Fri, 27 Jul 2007 22:02:05 -0400 Received: from ebiederm.dsl.xmission.com ([166.70.28.69]:49165 "EHLO ebiederm.dsl.xmission.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934704AbXG1CCE (ORCPT ); Fri, 27 Jul 2007 22:02:04 -0400 From: ebiederm@xmission.com (Eric W. Biederman) To: Maxim Levitsky Cc: linux-kernel@vger.kernel.org, Vivek Goyal , Kexec Mailing List Subject: Re: [BUG] i386 relocable kernel breakes /proc/kcore debugging References: <200707280443.44048.maximlevitsky@gmail.com> Date: Fri, 27 Jul 2007 19:58:56 -0600 In-Reply-To: <200707280443.44048.maximlevitsky@gmail.com> (Maxim Levitsky's message of "Sat, 28 Jul 2007 04:43:43 +0300") Message-ID: User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Maxim Levitsky writes: > Hello, > > Today I noticed that gdb gets confused when I try to load a vmlinux image. > gdb 'thinks' that all kernel symbols are below 0x80000000 , while they are at > 0xC000.... > > Turning CONFIG_RELOCATABLE off fixes that, so I assume that is the reason for > that. > > I am using 2.6.23-rc1, although I don't think that older versions are better. > > Best regards, > Maxim Levitsky Weird. Vivek could this be related to the problem of problematic core dumps we were seeing earlier? Eric > PS: > This is what gdb says: > > (gdb) disassemble sys_open > Dump of assembler code for function sys_open: > 0x8026fa60 : Cannot access memory at address 0x8026fa60 > > While real address of sys_open is: > > [root@MAIN linux-2.6]# nm ./.obj/vmlinux | grep sys_open > ......... > c016ea60 T sys_open > > Strange, but gdb recordnizes the above address directly: > > (gdb) disassemble 0xc016ea60 > Dump of assembler code for function sys_open: > 0xc016ea60 : sub $0x4,%esp > 0xc016ea63 : mov 0x10(%esp),%eax > ...............