Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752785AbaAZIvZ (ORCPT ); Sun, 26 Jan 2014 03:51:25 -0500 Received: from mail-ig0-f177.google.com ([209.85.213.177]:35765 "EHLO mail-ig0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752465AbaAZIvY (ORCPT ); Sun, 26 Jan 2014 03:51:24 -0500 MIME-Version: 1.0 In-Reply-To: <20140126083631.GA29339@gmail.com> References: <20140123221316.GA23367@redhat.com> <20140125074107.GA10565@gmail.com> <20140125153048.GA8536@redhat.com> <20140126083631.GA29339@gmail.com> Date: Sun, 26 Jan 2014 00:51:23 -0800 X-Google-Sender-Auth: pTx2mA9aOqox_GCtVZGWoxYGsiY Message-ID: Subject: Re: disabled APICs being counted as processors ? From: Yinghai Lu To: Ingo Molnar Cc: David Rientjes , Dave Jones , "the arch/x86 maintainers" , Linux Kernel Content-Type: text/plain; charset=ISO-8859-1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Jan 26, 2014 at 12:36 AM, Ingo Molnar wrote: > > No, this message is printed in prefill_possible_map() which > _generates_ cpu_possible_map, so '8' is the number of bits in > cpu_possible_map. > > So the problem is that the counting of disabled but hotpluggable CPUs > is over-eager. Since I haven't actually seen _true_ hotplug CPU > hardware yet, I'd argue we do the change below - allocating space for > never-present CPUs is stupid. If there's true hot-plug CPUs around > that could come online after we've booted, then we want to know about > them explicitly. > > > diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c > index a32da80..75a351a 100644 > --- a/arch/x86/kernel/smpboot.c > +++ b/arch/x86/kernel/smpboot.c > @@ -1223,10 +1223,7 @@ __init void prefill_possible_map(void) > i = setup_max_cpus ?: 1; > if (setup_possible_cpus == -1) { > possible = num_processors; > -#ifdef CONFIG_HOTPLUG_CPU > - if (setup_max_cpus) > - possible += disabled_cpus; > -#else > +#ifndef CONFIG_HOTPLUG_CPU > if (possible > i) > possible = i; > #endif Agreed. Most happens when one BIOS support different configuration. Like system support 10 cores cpu and 15 cores cpus or system could be configured with 4 sockets or 8 sockets Thanks Yinghai -- 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/