Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755403Ab0KHSMA (ORCPT ); Mon, 8 Nov 2010 13:12:00 -0500 Received: from wolverine02.qualcomm.com ([199.106.114.251]:20910 "EHLO wolverine02.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753067Ab0KHSL6 (ORCPT ); Mon, 8 Nov 2010 13:11:58 -0500 X-IronPort-AV: E=McAfee;i="5400,1158,6161"; a="61075890" Subject: Re: [PATCHv2 2/3] ARM: Allow machines to override __delay() From: Daniel Walker To: Stephen Boyd Cc: Russell King , Nicolas Pitre , Kevin Hilman , linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org, Saravana Kannan , Santosh Shilimkar , Colin Cross , linux-arm-kernel@lists.infradead.org In-Reply-To: <4CD4CD21.8080801@codeaurora.org> References: <1288300770-18350-1-git-send-email-sboyd@codeaurora.org> <1288300770-18350-3-git-send-email-sboyd@codeaurora.org> <1288899002.21823.3.camel@c-dwalke-linux.qualcomm.com> <4CD31E67.60107@codeaurora.org> <1288905414.21823.12.camel@c-dwalke-linux.qualcomm.com> <4CD47C6E.3050702@codeaurora.org> <1289000592.15381.23.camel@m0nster> <4CD4CD21.8080801@codeaurora.org> Content-Type: text/plain; charset="UTF-8" Date: Mon, 08 Nov 2010 10:11:50 -0800 Message-ID: <1289239910.6024.12.camel@c-dwalke-linux.qualcomm.com> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2992 Lines: 73 On Fri, 2010-11-05 at 20:36 -0700, Stephen Boyd wrote: > On 11/05/2010 04:43 PM, Daniel Walker wrote: > > On Fri, 2010-11-05 at 14:51 -0700, Stephen Boyd wrote: > >> Ok. Doing that increases the size of my vmlinux. > >> > >> $ size vmlinux.orig vmlinux.new > >> text data bss dec hex filename > >> 7091426 594512 1244648 8930586 88451a vmlinux.orig > >> 7091514 594512 1244648 8930674 884572 vmlinux.new > > > > This is what I get, > > > > text data bss dec hex filename > > 2168427 104288 186176 2458891 25850b ../build-test/vmlinux.orig > > 2168379 104288 186176 2458843 2584db ../build-test/vmlinux.new > > > > Your patch has something wrong with it, which I fixed. Details below, > > > [snip] > >> - */ > >> -void __delay(unsigned long loops) > >> -{ > >> - delay_fn(loops); > >> -} > >> EXPORT_SYMBOL(__delay); > > > > You need to modify this EXPORT_SYMBOL to delay_fn since __delay doesn't > > exist anymore. > > Wait. Doesn't this mean we're exporting delay_fn instead of __delay now? > i.e. the symbol name has changed and modules can no longer call __delay? > That sounds bad. The modules would just call the new symbol. It would be a problem for binary modules, but we don't really cater to binary modules. Like you suggest below you could change the name to __delay(). > If I make that change, my kernel size is exactly the same before and > after. It may sound like a win since you got a decrease and I got a net > zero, but I'm not sure since the symbol has changed. I could make I can't imagine how it's a net zero change for you. The change is removing two global functions. > __delay a function pointer and assign it directly but I'm not very > interested to expose a function pointer to modules allowing them to > modify it at any time (easily). Actually, I should probably mark > set_delay_fn __init so it gets thrown away after init when its far too > late to switch the delay function anyway. That would give you the space > savings you want and allow me to keep the delay_fn static to delay.c I don't think we need to protect other code authors to that degree. You could put down a comment letting people know it's bad to alter __delay after bootup .. I doubt this API will be used all that often.. Marking it __init only saves run time space it doesn't reduce the image size. However, since set_delay_fn is likely to be used in __init sections already, and it's inline, means the code is likely to get removed in that case too. So doing it the way I'm suggesting give you a smaller image size, and smaller runtime size. Daniel -- Sent by a consultant of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum. -- 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/