From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754401AbcIAVNe (ORCPT ); Thu, 1 Sep 2016 17:13:34 -0400 Received: from mga05.intel.com ([192.55.52.43]:11872 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757045AbcIAVIu (ORCPT ); Thu, 1 Sep 2016 17:08:50 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,268,1470726000"; d="scan'208";a="3734169" From: Srinivas Pandruvada To: rjw@rjwysocki.net, tglx@linutronix.de, mingo@redhat.com, bp@suse.de, peterz@infradead.org Cc: x86@kernel.org, linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org, tim.c.chen@linux.intel.com, Srinivas Pandruvada Subject: [PATCH v2 3/8] x86, cpu: provide a function topology_num_packages to enumerate #packages Date: Thu, 1 Sep 2016 13:33:39 -0700 Message-Id: <1472762024-88771-4-git-send-email-srinivas.pandruvada@linux.intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1472762024-88771-1-git-send-email-srinivas.pandruvada@linux.intel.com> References: <1472762024-88771-1-git-send-email-srinivas.pandruvada@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Tim Chen We compute the the number of active packages during boot and topology update. Provide a function to export this info for functions that need this topology info. Signed-off-by: Tim Chen Signed-off-by: Srinivas Pandruvada --- arch/x86/include/asm/topology.h | 1 + arch/x86/kernel/smpboot.c | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/arch/x86/include/asm/topology.h b/arch/x86/include/asm/topology.h index 98b669d..0bcf3b7 100644 --- a/arch/x86/include/asm/topology.h +++ b/arch/x86/include/asm/topology.h @@ -129,6 +129,7 @@ static inline int topology_max_smt_threads(void) } int topology_update_package_map(unsigned int apicid, unsigned int cpu); +extern int topology_num_packages(void); extern int topology_phys_to_logical_pkg(unsigned int pkg); #else #define topology_max_packages() (1) diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 3782bd4..292df31 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c @@ -297,6 +297,11 @@ found: return 0; } +int topology_num_packages(void) +{ + return logical_packages; +} + /** * topology_phys_to_logical_pkg - Map a physical package id to a logical * -- 2.7.4