From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759498AbYJ3Vyh (ORCPT ); Thu, 30 Oct 2008 17:54:37 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753266AbYJ3Vy3 (ORCPT ); Thu, 30 Oct 2008 17:54:29 -0400 Received: from mx3.mail.elte.hu ([157.181.1.138]:56283 "EHLO mx3.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752960AbYJ3Vy2 (ORCPT ); Thu, 30 Oct 2008 17:54:28 -0400 Date: Thu, 30 Oct 2008 22:54:21 +0100 From: Ingo Molnar To: James Bottomley Cc: linux-kernel , Jens Axboe Subject: Re: [PATCH] fix smp generic helper voyager breakage Message-ID: <20081030215421.GG30303@elte.hu> References: <1225400980.19324.24.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1225400980.19324.24.camel@localhost.localdomain> 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,DNS_FROM_SECURITYSAGE autolearn=no SpamAssassin version=3.2.3 -1.5 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] 0.0 DNS_FROM_SECURITYSAGE RBL: Envelope sender in blackholes.securitysage.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * James Bottomley wrote: > +++ b/arch/x86/Kconfig > @@ -167,9 +167,11 @@ config GENERIC_PENDING_IRQ > config X86_SMP > bool > depends on SMP && ((X86_32 && !X86_VOYAGER) || X86_64) > - select USE_GENERIC_SMP_HELPERS > default y > > +config USE_GENERIC_SMP_HELPERS > + def_bool y > + uhm, that's a bogus change - USE_GENERIC_SMP_HELPERS must not be set on UP. This will break all UP compilations, on all x86 UP boxes: kernel/softirq.c: In function '__try_remote_softirq': kernel/softirq.c:522: error: implicit declaration of function '__smp_call_function_single' so i've removed your patch for now. Ingo