From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753258AbcJHU5i (ORCPT ); Sat, 8 Oct 2016 16:57:38 -0400 Received: from mx2.suse.de ([195.135.220.15]:35848 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752272AbcJHU53 (ORCPT ); Sat, 8 Oct 2016 16:57:29 -0400 Date: Sat, 8 Oct 2016 22:57:22 +0200 From: Borislav Petkov To: Fenghua Yu Cc: Thomas Gleixner , "H. Peter Anvin" , Ingo Molnar , Tony Luck , Peter Zijlstra , Stephane Eranian , Dave Hansen , Nilay Vaish , Shaohua Li , David Carrillo-Cisneros , Ravi V Shankar , Sai Prakhya , Vikas Shivappa , linux-kernel , x86 Subject: Re: [PATCH v3 06/18] x86/intel_rdt: Add CONFIG, Makefile, and basic initialization Message-ID: <20161008205722.fixddvp7bfu7wv5u@pd.tnic> References: <1475894763-64683-1-git-send-email-fenghua.yu@intel.com> <1475894763-64683-7-git-send-email-fenghua.yu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1475894763-64683-7-git-send-email-fenghua.yu@intel.com> User-Agent: NeoMutt/ (1.7.0) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Oct 07, 2016 at 07:45:51PM -0700, Fenghua Yu wrote: > From: Fenghua Yu > > Introduce CONFIG_INTEL_RDT (default: no, dependent on X86 and > CPU_SUP_INTEL) to control inclusion of Resource Director Technology in > the build. > > Simple init() routine just checks which features are present. If they are > pr_info() one line summary for each feature. > > Signed-off-by: Fenghua Yu > Signed-off-by: Tony Luck > --- > arch/x86/Kconfig | 12 +++++++++ > arch/x86/kernel/cpu/Makefile | 2 ++ > arch/x86/kernel/cpu/intel_rdt.c | 56 +++++++++++++++++++++++++++++++++++++++++ > 3 files changed, 70 insertions(+) > create mode 100644 arch/x86/kernel/cpu/intel_rdt.c ... > +static inline bool get_rdt_resources(struct cpuinfo_x86 *c) > +{ > + bool ret = false; > + > + if (!cpu_has(c, X86_FEATURE_RDT_A)) > + return false; > + if (cpu_has(c, X86_FEATURE_CAT_L3)) > + ret = true; > + > + return ret; > +} > + > +static int __init intel_rdt_late_init(void) > +{ > + struct cpuinfo_x86 *c = &boot_cpu_data; No need for that - you can do directly if (boot_cpu_has(...)) in get_rdt_resources() and here. > + > + if (!get_rdt_resources(c)) > + return -ENODEV; > + > + pr_info("Intel cache allocation detected\n"); So this reads stupid: Intel cache allocation? Reads like Intel can do cache allocation. But it does already, even before that RDT stuff. So you need to think of a more sensible name for it: "Intel cache partitioning support detected" or some descriptive name which actually denotes what the technology is. Everybody can allocate lines in the cache :) > + if (cpu_has(c, X86_FEATURE_CDP_L3)) > + pr_info("Intel code data prioritization detected\n"); Ditto. -- Regards/Gruss, Boris. SUSE Linux GmbH, GF: Felix Imendörffer, Jane Smithard, Graham Norton, HRB 21284 (AG Nürnberg) --