From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932444AbeCMDLJ (ORCPT ); Mon, 12 Mar 2018 23:11:09 -0400 Received: from mail.cn.fujitsu.com ([183.91.158.132]:32252 "EHLO heian.cn.fujitsu.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S932294AbeCMDLH (ORCPT ); Mon, 12 Mar 2018 23:11:07 -0400 X-IronPort-AV: E=Sophos;i="5.43,368,1503331200"; d="scan'208";a="37765287" Subject: Re: [PATCH V3 0/4] genirq/affinity: irq vector spread among online CPUs as far as possible To: Thomas Gleixner , Ming Lei CC: Artem Bityutskiy , Jens Axboe , Christoph Hellwig , , , Laurence Oberman , "Rafael J. Wysocki" References: <20180308105358.1506-1-ming.lei@redhat.com> <1520515113.20980.31.camel@gmail.com> <20180308133440.GA2713@ming.t460p> <20180309012458.GD5228@ming.t460p> <20180309120833.GB30257@ming.t460p> From: Dou Liyang Message-ID: <5e5f3852-5314-c479-245e-d0a575e533a5@cn.fujitsu.com> Date: Tue, 13 Mar 2018 11:11:02 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="gbk"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.167.226.106] X-yoursite-MailScanner-ID: E1A0F48AE766.AABDC X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: douly.fnst@cn.fujitsu.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Thomas, At 03/09/2018 11:08 PM, Thomas Gleixner wrote: [...] > > I'm not sure if there is a clear indicator whether physcial hotplug is > supported or not, but the ACPI folks (x86) and architecture maintainers +cc Rafael > should be able to answer that question. I have a machine which says: > > smpboot: Allowing 128 CPUs, 96 hotplug CPUs > > There is definitely no way to hotplug anything on that machine and sure the AFAIK, in ACPI based dynamic reconfiguration, there is no clear indicator. In theory, If the ACPI tables have the hotpluggable CPU resources, the OS can support physical hotplug. For your machine, Did your CPUs support multi-threading, but not enable it? And, sometimes we should not trust the number of possible CPUs. I also met the situation that BIOS told to ACPI that it could support physical CPUs hotplug, But actually, there was no hardware slots in the machine. the ACPI tables like user inputs which should be validated when we use. > existing spread algorithm will waste vectors to no end. > > Sure then there is virt, which can pretend to have a gazillion of possible > hotpluggable CPUs, but virt is an insanity on its own. Though someone might > come up with reasonable heuristics for that as well. > > Thoughts? Do we have to map the vectors to CPU statically? Can we map them when we hotplug/enable the possible CPU? Thanks, dou