From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756539AbZCCPfO (ORCPT ); Tue, 3 Mar 2009 10:35:14 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753609AbZCCPe7 (ORCPT ); Tue, 3 Mar 2009 10:34:59 -0500 Received: from mx3.mail.elte.hu ([157.181.1.138]:43220 "EHLO mx3.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752858AbZCCPe6 (ORCPT ); Tue, 3 Mar 2009 10:34:58 -0500 Date: Tue, 3 Mar 2009 16:34:33 +0100 From: Ingo Molnar To: Dimitri Sivanich Cc: Thomas Gleixner , "H. Peter Anvin" , Andrew Morton , john stultz , linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/6 v6] SGI RTC: add generic system interrupt Message-ID: <20090303153433.GA29454@elte.hu> References: <20090303151044.GA20016@sgi.com> <20090303151357.GA20120@sgi.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090303151357.GA20120@sgi.com> User-Agent: Mutt/1.5.18 (2008-05-17) X-ELTE-VirusStatus: clean X-ELTE-SpamScore: -1.5 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-1.5 required=5.9 tests=BAYES_00 autolearn=no SpamAssassin version=3.2.3 -1.5 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Dimitri Sivanich wrote: > This patch allocates a system interrupt vector for various > platform specific uses. this is really ugly. Also, why are all these symbols exported? There's no need to build the UV RTC driver as a module. It's either built-in or not built-in - it's small enough. this stuff: > +/* Function pointer for generic interrupt vector handling */ > +static void (*generic_interrupt_extension)(void); > +static char generic_show_string[28]; > +static char generic_show_prefix[6]; > + > +int is_generic_interrupt_registered() > +{ > + if (generic_interrupt_extension) > + return 1; > + else > + return 0; > +} > + > +char *generic_interrupt_string(void) > +{ > + return generic_show_string; > +} > + > +char *generic_interrupt_prefix(void) > +{ > + return generic_show_prefix; > +} is SMP unsafe, etc. etc. - not something we should ever call from a module. We just shouldnt do it in this form. What necessiates it? All we need is: > + /* generic IPI for platform specific use */ > + alloc_intr_gate(GENERIC_INTERRUPT_VECTOR, generic_interrupt); plus one trivial callback function - and then the UV platform uses it for its own purpose. It's not like two platforms will be running at once so there's no locking needed, etc. > +#ifdef CONFIG_X86_64 > +extern void generic_interrupt(void); > +#endif in any case please make it symmetric across 32-bit and 64-bit - even though UV is 64-bit only. Ingo