From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752993Ab0LVNJ4 (ORCPT ); Wed, 22 Dec 2010 08:09:56 -0500 Received: from casper.infradead.org ([85.118.1.10]:45342 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752664Ab0LVNJz convert rfc822-to-8bit (ORCPT ); Wed, 22 Dec 2010 08:09:55 -0500 Subject: Re: [PATCH] kernel: clean up USE_GENERIC_SMP_HELPERS From: Peter Zijlstra To: Amerigo Wang Cc: linux-kernel@vger.kernel.org, David Howells , Koichi Yasutake , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org, Yinghai Lu , Tejun Heo , Andrew Morton , Jens Axboe , Heiko Carstens , Venkatesh Pallipadi , linux-am33-list@redhat.com In-Reply-To: <1291010778-5669-1-git-send-email-amwang@redhat.com> References: <1291010778-5669-1-git-send-email-amwang@redhat.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT Date: Wed, 22 Dec 2010 14:08:53 +0100 Message-ID: <1293023333.2170.120.camel@laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2010-11-29 at 14:06 +0800, Amerigo Wang wrote: > For arch which needs USE_GENERIC_SMP_HELPERS, it has to > select USE_GENERIC_SMP_HELPERS, rather than leaving a choice > to user, since they don't provide their own implementions. > > config MN10300_CURRENT_IN_E2 > diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig > index e330da2..736beea 100644 > --- a/arch/x86/Kconfig > +++ b/arch/x86/Kconfig > @@ -65,6 +65,7 @@ config X86 > select HAVE_SPARSE_IRQ > select GENERIC_IRQ_PROBE > select GENERIC_PENDING_IRQ if SMP > + select USE_GENERIC_SMP_HELPERS if SMP > > config INSTRUCTION_DECODER > def_bool (KPROBES || PERF_EVENTS) > @@ -203,10 +204,6 @@ config HAVE_INTEL_TXT > def_bool y > depends on EXPERIMENTAL && DMAR && ACPI > > -config USE_GENERIC_SMP_HELPERS > - def_bool y > - depends on SMP > - > config X86_32_SMP > def_bool y > depends on X86_32 && SMP That changelog and the patch don't match, the patch is a total NOP, users never see that config option.