Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751777AbdGBNhm (ORCPT ); Sun, 2 Jul 2017 09:37:42 -0400 Received: from Galois.linutronix.de ([146.0.238.70]:39674 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750818AbdGBNhk (ORCPT ); Sun, 2 Jul 2017 09:37:40 -0400 Date: Sun, 2 Jul 2017 15:37:26 +0200 (CEST) From: Thomas Gleixner To: Vikas Shivappa cc: x86@kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com, peterz@infradead.org, ravi.v.shankar@intel.com, vikas.shivappa@intel.com, tony.luck@intel.com, fenghua.yu@intel.com, andi.kleen@intel.com Subject: Re: [PATCH 17/21] x86/intel_rdt/cqm: Add sched_in support In-Reply-To: <1498503368-20173-18-git-send-email-vikas.shivappa@linux.intel.com> Message-ID: References: <1498503368-20173-1-git-send-email-vikas.shivappa@linux.intel.com> <1498503368-20173-18-git-send-email-vikas.shivappa@linux.intel.com> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2307 Lines: 78 On Mon, 26 Jun 2017, Vikas Shivappa wrote: > DECLARE_PER_CPU(struct intel_pqr_state, pqr_state); > DECLARE_PER_CPU_READ_MOSTLY(int, cpu_closid); > +DECLARE_PER_CPU_READ_MOSTLY(int, cpu_rmid); > DECLARE_STATIC_KEY_FALSE(rdt_alloc_enable_key); > +DECLARE_STATIC_KEY_FALSE(rdt_mon_enable_key); > +DECLARE_STATIC_KEY_FALSE(rdt_enable_key); Please make this a two stage change. Add rdt_enable_key first and then the monitoring stuff. Ideally you introduce rdt_enable_key here and in the control code in one go. > +static void __intel_rdt_sched_in(void) > { > - if (static_branch_likely(&rdt_alloc_enable_key)) { > - struct intel_pqr_state *state = this_cpu_ptr(&pqr_state); > - int closid; > + struct intel_pqr_state *state = this_cpu_ptr(&pqr_state); > + u32 closid = 0; > + u32 rmid = 0; > > + if (static_branch_likely(&rdt_alloc_enable_key)) { > /* > * If this task has a closid assigned, use it. > * Else use the closid assigned to this cpu. > @@ -55,14 +59,31 @@ static inline void intel_rdt_sched_in(void) > closid = current->closid; > if (closid == 0) > closid = this_cpu_read(cpu_closid); > + } > + > + if (static_branch_likely(&rdt_mon_enable_key)) { > + /* > + * If this task has a rmid assigned, use it. > + * Else use the rmid assigned to this cpu. > + */ > + rmid = current->rmid; > + if (rmid == 0) > + rmid = this_cpu_read(cpu_rmid); > + } > > - if (closid != state->closid) { > - state->closid = closid; > - wrmsr(IA32_PQR_ASSOC, state->rmid, closid); > - } > + if (closid != state->closid || rmid != state->rmid) { > + state->closid = closid; > + state->rmid = rmid; > + wrmsr(IA32_PQR_ASSOC, rmid, closid); This can be written smarter. struct intel_pqr_state newstate = this_cpu_read(rdt_cpu_default); struct intel_pqr_state *curstate = this_cpu_ptr(&pqr_state); if (static_branch_likely(&rdt_alloc_enable_key)) { if (current->closid) newstate.closid = current->closid; } if (static_branch_likely(&rdt_mon_enable_key)) { if (current->rmid) newstate.rmid = current->rmid; } if (newstate != *curstate) { *curstate = newstate; wrmsr(IA32_PQR_ASSOC, newstate.rmid, newstate.closid); } The unconditional read of rdt_cpu_default is the right thing to do because the default behaviour is exactly this. Thanks, tglx