From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Wed, 30 May 2012 23:28:01 +0200 (CEST) Received: from h9.dl5rb.org.uk ([81.2.74.9]:56962 "EHLO h5.dl5rb.org.uk" rhost-flags-OK-OK-OK-FAIL) by eddie.linux-mips.org with ESMTP id S1903565Ab2E3V16 (ORCPT ); Wed, 30 May 2012 23:27:58 +0200 Received: from h5.dl5rb.org.uk (h5.dl5rb.org.uk [127.0.0.1]) by h5.dl5rb.org.uk (8.14.5/8.14.3) with ESMTP id q4ULRorO007362; Wed, 30 May 2012 22:27:50 +0100 Received: (from ralf@localhost) by h5.dl5rb.org.uk (8.14.5/8.14.5/Submit) id q4ULRn7K007361; Wed, 30 May 2012 22:27:49 +0100 Date: Wed, 30 May 2012 22:27:49 +0100 From: Ralf Baechle To: David Daney Cc: "Steven J. Hill" , linux-mips@linux-mips.org Subject: Re: [PATCH] MIPS: Refactor 'clear_page' and 'copy_page' functions. Message-ID: <20120530212749.GA7339@linux-mips.org> References: <1337891904-24093-1-git-send-email-sjhill@mips.com> <4FC6628F.9060807@cavium.com> <20120530210141.GH30086@linux-mips.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120530210141.GH30086@linux-mips.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-archive-position: 33490 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: ralf@linux-mips.org Precedence: bulk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: linux-mips X-List-ID: linux-mips List-subscribe: List-owner: List-post: List-archive: X-list: linux-mips Return-Path: On Wed, May 30, 2012 at 10:01:41PM +0100, Ralf Baechle wrote: > > On 05/24/2012 01:38 PM, Steven J. Hill wrote: > > >From: "Steven J. Hill" > > > > > >Remove usage of the '__attribute__((alias("...")))' hack that aliased > > >to integer arrays containing micro-assembled instructions. This hack > > >breaks when building a microMIPS kernel. It also makes the code much > > >easier to understand. > > > > > >Signed-off-by: Steven J. Hill > > > > Looks good to (and even works for) me: > > > > Acked-by: David Daney > > I have to admit that the attribute hack was a desperate attempt at > avoiding the last bit of assembler code for the page functions. But somehow > the patch isn't quite ripe yet. Building malta_defconfig from > 7a3434a78b36be2d398a46fb505a3196a9df4a60 with this patch applied on top > I'm getting: > > MODPOST 413 modules > ERROR: "copy_page" [fs/fuse/fuse.ko] undefined! > ERROR: "clear_page" [fs/fuse/fuse.ko] undefined! > ERROR: "clear_page" [drivers/net/ethernet/toshiba/tc35815.ko] undefined! And with that fixed (trivial) I'm getting: AS arch/mips/mm/page-funcs.o arch/mips/mm/page-funcs.S: Assembler messages: arch/mips/mm/page-funcs.S:29: Warning: .end symbol does not match .ent symbol. arch/mips/mm/page-funcs.S:48: Warning: .end symbol does not match .ent symbol. {standard input}: Error: .size expression for clear_page does not evaluate to a constant {standard input}: Error: .size expression for copy_page does not evaluate to a constant Ralf