Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752743AbbG2QfM (ORCPT ); Wed, 29 Jul 2015 12:35:12 -0400 Received: from casper.infradead.org ([85.118.1.10]:50590 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751228AbbG2QfL (ORCPT ); Wed, 29 Jul 2015 12:35:11 -0400 Date: Wed, 29 Jul 2015 18:35:02 +0200 From: Peter Zijlstra To: Vikas Shivappa Cc: linux-kernel@vger.kernel.org, vikas.shivappa@intel.com, x86@kernel.org, hpa@zytor.com, tglx@linutronix.de, mingo@kernel.org, tj@kernel.org, matt.fleming@intel.com, will.auld@intel.com, glenn.p.williamson@intel.com, kanaka.d.juvva@intel.com Subject: Re: [PATCH 9/9] x86/intel_rdt: Intel haswell Cache Allocation enumeration Message-ID: <20150729163502.GY25159@twins.programming.kicks-ass.net> References: <1435789270-27010-1-git-send-email-vikas.shivappa@linux.intel.com> <1435789270-27010-10-git-send-email-vikas.shivappa@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1435789270-27010-10-git-send-email-vikas.shivappa@linux.intel.com> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 937 Lines: 24 On Wed, Jul 01, 2015 at 03:21:10PM -0700, Vikas Shivappa wrote: > + boot_cpu_data.x86_cache_max_closid = 4; > + boot_cpu_data.x86_cache_max_cbm_len = 20; That's just vile. And I'm surprised it even works, I would've expected boot_cpu_data to be const. So the CQM code has paranoid things like: max_rmid = MAX_INT; for_each_possible_cpu(cpu) max_rmid = min(max_rmid, cpu_data(cpu)->x86_cache_max_rmid); And then uses max_rmid. This has the advantage that if you mix parts in a multi-socket environment and hotplug socket 0 to a later part which a bigger {rm,clos}id your allocation isn't suddenly too small. Please do similar things and only ever look at cpu_data once, at init time. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/