Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp2048036ybv; Fri, 14 Feb 2020 10:25:55 -0800 (PST) X-Google-Smtp-Source: APXvYqxvkkqED8a2EOuuoPYJu2ZK5HLR+n3lAKlnbzO2sNzy8/SR+GneIqUv9kUXA7N2mmIbDPr/ X-Received: by 2002:aca:4ece:: with SMTP id c197mr2806300oib.53.1581704755567; Fri, 14 Feb 2020 10:25:55 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1581704755; cv=none; d=google.com; s=arc-20160816; b=tVndxTSP9KWtLW6vFxdeDOhhJwIlDcJUiDpFzDq998kJAWa5VJ3nAblFklPDyxVqSd DIgJzFQ8fRhas8cyNtnokCUKGEKZp7D3rREVtbaI9EEZjhRE+Dj4UNevdehK9YnGP6tH VypIDnf7wZkZm8NyCMZlC3SAcDJrk60W56u2wamDIwVKi7ZWY3P1uGa+2SBn0I8Y1EJ2 kRUk9ZdtpjAhwomuS3qtKP+c2QrepQOM68bTwcfubJxmwjiB3534s0YfE2N6J2YAu2Q1 D1Fv3wIDfhxgJqDO7M0J0NIKH5ebeLfu5pj7JH7aC3GOFpNV+tjATh6zm5bHmZ4jzBJU BCbw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=PSkAbuFB0VUwtbt7IQ8tAeF7l4p0diqDpDCM7FAcRJM=; b=u+0gVIyeb+PL47YLLiH7Cfl1bfQC96y7PUs30gbNWnCpH5SwFiKhyoO22URQTqZPfR BnVaaCblGJmooxV8vSTHvz+J4V5codLUjyjXGlluZIDMh4Ujo59vRqdecuyqoJ/zB5QB T8V2H6lGCWVamUKfTJLFvvqbc+thhWBFnWB9sf8Oz0cSj+fdcI74xqLJ4I9/UVNpKOIq GpaExrHl3Y1cpeEi/GnxMTY51BRHx5OOkwLr4wFekmEhSmzYrA0J8ED5xv8q+/613Ss+ B8IAu5NXm3LGBpTmt1v4SBglLHk+gGe0rbLsmrfOenPhn4IcrbnrVbtNb69Zt7+Z1tnK DjRg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id q189si2975634oic.235.2020.02.14.10.25.43; Fri, 14 Feb 2020 10:25:55 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2405619AbgBNSZD (ORCPT + 99 others); Fri, 14 Feb 2020 13:25:03 -0500 Received: from foss.arm.com ([217.140.110.172]:43378 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2390403AbgBNSY4 (ORCPT ); Fri, 14 Feb 2020 13:24:56 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 739E7101E; Fri, 14 Feb 2020 10:24:56 -0800 (PST) Received: from eglon.cambridge.arm.com (eglon.cambridge.arm.com [10.1.196.105]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 251A23F68E; Fri, 14 Feb 2020 10:24:55 -0800 (PST) From: James Morse To: x86@kernel.org, linux-kernel@vger.kernel.org Cc: Fenghua Yu , Reinette Chatre , Thomas Gleixner , Ingo Molnar , Borislav Petkov , "H . Peter Anvin" , Babu Moger , James Morse Subject: [PATCH 10/10] cacheinfo: Move resctrl's get_cache_id() to the cacheinfo header file Date: Fri, 14 Feb 2020 18:24:01 +0000 Message-Id: <20200214182401.39008-11-james.morse@arm.com> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200214182401.39008-1-james.morse@arm.com> References: <20200214182401.39008-1-james.morse@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org resctrl/core.c defines get_cache_id() for use in its cpu-hotplug callbacks. This gets the id attribute of the cache at the corresponding level of a cpu. Later rework means this private function needs to be shared. Move it to the header file. The name conflicts with a different definition in intel_cacheinfo.c, name it get_cpu_cacheinfo_id() to show its relation with get_cpu_cacheinfo(). Now this is visible on other architectures, check the id attribute has actually been set. Signed-off-by: James Morse --- arch/x86/kernel/cpu/resctrl/core.c | 17 ++--------------- include/linux/cacheinfo.h | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/arch/x86/kernel/cpu/resctrl/core.c b/arch/x86/kernel/cpu/resctrl/core.c index 7c9c4bd5fd32..f2968fb6fb9a 100644 --- a/arch/x86/kernel/cpu/resctrl/core.c +++ b/arch/x86/kernel/cpu/resctrl/core.c @@ -349,19 +349,6 @@ static void rdt_get_cdp_l2_config(void) rdt_get_cdp_config(RDT_RESOURCE_L2, RDT_RESOURCE_L2CODE); } -static int get_cache_id(int cpu, int level) -{ - struct cpu_cacheinfo *ci = get_cpu_cacheinfo(cpu); - int i; - - for (i = 0; i < ci->num_leaves; i++) { - if (ci->info_list[i].level == level) - return ci->info_list[i].id; - } - - return -1; -} - static void mba_wrmsr_amd(struct rdt_domain *d, struct msr_param *m, struct rdt_resource *r) { @@ -559,7 +546,7 @@ static int domain_setup_mon_state(struct rdt_resource *r, struct rdt_domain *d) */ static void domain_add_cpu(int cpu, struct rdt_resource *r) { - int id = get_cache_id(cpu, r->cache_level); + int id = get_cpu_cacheinfo_id(cpu, r->cache_level); struct list_head *add_pos = NULL; struct rdt_domain *d; @@ -603,7 +590,7 @@ static void domain_add_cpu(int cpu, struct rdt_resource *r) static void domain_remove_cpu(int cpu, struct rdt_resource *r) { - int id = get_cache_id(cpu, r->cache_level); + int id = get_cpu_cacheinfo_id(cpu, r->cache_level); struct rdt_domain *d; d = rdt_find_domain(r, id, NULL); diff --git a/include/linux/cacheinfo.h b/include/linux/cacheinfo.h index 46b92cd61d0c..e210225ab7a8 100644 --- a/include/linux/cacheinfo.h +++ b/include/linux/cacheinfo.h @@ -3,6 +3,7 @@ #define _LINUX_CACHEINFO_H #include +#include #include #include @@ -119,4 +120,21 @@ int acpi_find_last_cache_level(unsigned int cpu); const struct attribute_group *cache_get_priv_group(struct cacheinfo *this_leaf); +/* Get the id of a particular cache on @cpu. cpuhp lock must held. */ +static inline int get_cpu_cacheinfo_id(int cpu, int level) +{ + struct cpu_cacheinfo *ci = get_cpu_cacheinfo(cpu); + int i; + + for (i = 0; i < ci->num_leaves; i++) { + if (ci->info_list[i].level == level){ + if (ci->info_list[i].attributes & CACHE_ID) + return ci->info_list[i].id; + return -1; + } + } + + return -1; +} + #endif /* _LINUX_CACHEINFO_H */ -- 2.24.1