mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Prarit Bhargava <prarit@redhat.com>
To: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org, Andi Kleen <ak@linux.intel.com>,
	Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
	x86@kernel.org, Peter Zijlstra <peterz@infradead.org>,
	Dave Hansen <dave.hansen@intel.com>,
	Piotr Luc <piotr.luc@intel.com>, Kan Liang <kan.liang@intel.com>,
	Borislav Petkov <bp@suse.de>,
	Stephane Eranian <eranian@google.com>,
	Arvind Yadav <arvind.yadav.cs@gmail.com>,
	Andy Lutomirski <luto@kernel.org>,
	Christian Borntraeger <borntraeger@de.ibm.com>,
	"Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>,
	Tom Lendacky <thomas.lendacky@amd.com>,
	He Chen <he.chen@linux.intel.com>,
	Mathias Krause <minipli@googlemail.com>,
	Tim Chen <tim.c.chen@linux.intel.com>,
	Vitaly Kuznetsov <vkuznets@redhat.com>
Subject: Re: [PATCH 2/3 v3] x86/topology: Avoid wasting 128k for package id array
Date: Mon, 23 Oct 2017 15:59:57 -0400	[thread overview]
Message-ID: <5d202083-ae7c-1815-102a-fb06db6f6efd@redhat.com> (raw)
In-Reply-To: <alpine.DEB.2.20.1710201058570.1882@nanos>



On 10/20/2017 05:03 AM, Thomas Gleixner wrote:
> On Thu, 19 Oct 2017, Prarit Bhargava wrote:
>>  static void remove_siblinginfo(int cpu)
>>  {
>> -	int sibling;
>> +	int phys_pkg_id, sibling;
>>  	struct cpuinfo_x86 *c = &cpu_data(cpu);
>>  
>>  	for_each_cpu(sibling, topology_core_cpumask(cpu)) {
>> @@ -1529,6 +1526,12 @@ static void remove_siblinginfo(int cpu)
>>  	cpumask_clear(topology_core_cpumask(cpu));
>>  	c->phys_proc_id = 0;
>>  	c->cpu_core_id = 0;
>> +
>> +	phys_pkg_id = c->phys_pkg_id;
>> +	c->phys_pkg_id = U16_MAX;
> 
> This leaves c->logical_proc_set = 1, which is inconsistent at best. I have
> no idea why we need this logical_proc_set flag at all.
> 
>> +	if (topology_phys_to_logical_pkg(phys_pkg_id) < 0)
>> +		logical_packages--;
> 
> Now this has another issue. Depending on hotplug ordering the logical
> package association can change across hotplug operations. I don't know it
> that's an issue, but this needs to be analyzed before we merge that.
> 

Thanks for making me look at this Thomas.

Andi, it looks like this is unfortunately an issue.  I have a reworked
patchset that fixes by dynamically allocating a u16
logical_to_physical_package array that

a)  maps the logical to physical package IDs,
b) is dynamically sized to the value of logical_packages, and,
c) is of size logical_packages (not MAX_APICS)

This will resolve the problem that Thomas has pointed out, and it
would address the issue of wasting memory.

I'm waiting for a 4S & 8S system to test the LTP hotplug tests on
and then I'll post.  Andi, I'll send it to you in private email for
a quick review.

P.

> Thanks,
> 
> 	tglx
> 
> 

  reply	other threads:[~2017-10-23 20:00 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-19 15:57 [PATCH 0/3 v3] x86/smpboot: Fix panic in __max_logical_packages estimate Prarit Bhargava
2017-10-19 15:57 ` [PATCH 1/3 v3] perf/x86/intel/uncore: Cache logical pkg id in uncore driver Prarit Bhargava
2017-10-19 15:57 ` [PATCH 2/3 v3] x86/topology: Avoid wasting 128k for package id array Prarit Bhargava
2017-10-20  9:03   ` Thomas Gleixner
2017-10-23 19:59     ` Prarit Bhargava [this message]
2017-10-19 15:57 ` [PATCH 3/3 v3] x86/smpboot: Fix __max_logical_packages estimate Prarit Bhargava

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5d202083-ae7c-1815-102a-fb06db6f6efd@redhat.com \
    --to=prarit@redhat.com \
    --cc=ak@linux.intel.com \
    --cc=arvind.yadav.cs@gmail.com \
    --cc=borntraeger@de.ibm.com \
    --cc=bp@suse.de \
    --cc=dave.hansen@intel.com \
    --cc=eranian@google.com \
    --cc=he.chen@linux.intel.com \
    --cc=hpa@zytor.com \
    --cc=kan.liang@intel.com \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@kernel.org \
    --cc=mingo@redhat.com \
    --cc=minipli@googlemail.com \
    --cc=peterz@infradead.org \
    --cc=piotr.luc@intel.com \
    --cc=tglx@linutronix.de \
    --cc=thomas.lendacky@amd.com \
    --cc=tim.c.chen@linux.intel.com \
    --cc=vkuznets@redhat.com \
    --cc=x86@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®