From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030512AbWEZHZc (ORCPT ); Fri, 26 May 2006 03:25:32 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1030513AbWEZHZc (ORCPT ); Fri, 26 May 2006 03:25:32 -0400 Received: from public.id2-vpn.continvity.gns.novell.com ([195.33.99.129]:4515 "EHLO emea1-mh.id2.novell.com") by vger.kernel.org with ESMTP id S1030511AbWEZHZc (ORCPT ); Fri, 26 May 2006 03:25:32 -0400 Message-Id: <4476C9B9.76E4.0078.0@novell.com> X-Mailer: Novell GroupWise Internet Agent 7.0.1 Beta Date: Fri, 26 May 2006 09:26:17 +0200 From: "Jan Beulich" To: "Andrew Morton" Cc: , "Andreas Kleen" , , Subject: Re: [PATCH 6/6] reliable stack trace support (i386 entry.S annotations) References: <4471D691.76E4.0078.0@novell.com> <20060524222359.06f467e8.akpm@osdl.org> In-Reply-To: <20060524222359.06f467e8.akpm@osdl.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org >>> Andrew Morton 25.05.06 07:23 >>> >"Jan Beulich" wrote: >> >> #define SAVE_ALL \ >> cld; \ >> pushl %es; \ >> + CFI_ADJUST_CFA_OFFSET 4;\ >> + /*CFI_REL_OFFSET es, 0;*/\ >> pushl %ds; \ > >arch/i386/kernel/entry.S: Assembler messages: >arch/i386/kernel/entry.S:757: Error: CFI instruction used without previous .cfi_startproc >arch/i386/kernel/entry.S:757: Warning: rest of line ignored; first ignored character is `4' >arch/i386/kernel/entry.S:757: Error: CFI instruction used without previous .cfi_startproc >arch/i386/kernel/entry.S:757: Warning: rest of line ignored; first ignored character is `4' >arch/i386/kernel/entry.S:757: Error: CFI instruction used without previous .cfi_startproc >arch/i386/kernel/entry.S:757: Warning: rest of line ignored; first ignored character is `4' >arch/i386/kernel/entry.S:757: Error: CFI instruction used without previous .cfi_startproc > >etcetera. And > >arch/i386/kernel/entry.S:757: Error: no such instruction: `eax,0' >arch/i386/kernel/entry.S:757: Error: no such instruction: `ebp,0' > > >bix:/usr/src/25> as --version >GNU assembler 2.14.90.0.6 20030820 Still doesn't make sense to me, assuming the merge didn't corrupt anything. The oldest assembler I'm using is 2.15.90.0.1.1, but as said before your assembler clearly also supports .cfi_*. Any chance I could see the offending entry.S? Jan