From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-in-13.arcor-online.net (mail-in-13.arcor-online.net [151.189.21.53]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.arcor.de", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTP id 795F5DDEBA for ; Sun, 13 May 2007 00:08:20 +1000 (EST) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v623) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <906e6eae6ea4048df8679ff77cb5881e@kernel.crashing.org> From: Segher Boessenkool Subject: Re: [RFC/PATCH] Fixup WARNINGs related to COMMON symbol Date: Sat, 12 May 2007 13:48:14 +0200 To: Kumar Gala Cc: linuxppc-dev@ozlabs.org, Paul Mackerras List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , > - .comm fee_restarts,4 > + .section .bss > + .align 2 > +fee_restarts: > + .space 4 > + .text Please use .previous instead of .text, it makes things easier if ever the code section needs to change here. Segher