Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030196AbbEVL2m (ORCPT ); Fri, 22 May 2015 07:28:42 -0400 Received: from [198.137.202.9] ([198.137.202.9]:49610 "EHLO bombadil.infradead.org" rhost-flags-FAIL-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1751888AbbEVL2l (ORCPT ); Fri, 22 May 2015 07:28:41 -0400 Date: Fri, 22 May 2015 13:28:00 +0200 From: Peter Zijlstra To: Stephane Eranian Cc: Ingo Molnar , Vince Weaver , Jiri Olsa , LKML Subject: Re: [PATCH 02/10] perf/x86: Improve HT workaround GP counter constraint Message-ID: <20150522112800.GO18673@twins.programming.kicks-ass.net> References: <20150521111710.475482798@infradead.org> <20150521111932.704264975@infradead.org> <20150522112146.GZ3644@twins.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150522112146.GZ3644@twins.programming.kicks-ass.net> 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: 1223 Lines: 33 On Fri, May 22, 2015 at 01:21:46PM +0200, Peter Zijlstra wrote: > @@ -821,8 +828,24 @@ int x86_schedule_events(struct cpu_hw_ev > > /* slow path */ > if (i != n) { > + int gpmax = x86_pmu.num_counters / 2; > + > + /* > + * Do not allow scheduling of more than half the available > + * generic counters. > + * > + * This helps avoid counter starvation of sibling thread by > + * ensuring at most half the counters cannot be in exclusive > + * mode. There is no designated counters for the limits. Any > + * N/2 counters can be used. This helps with events with > + * specific counter constraints. > + */ > + if (is_ht_workaround_enabled() && !cpuc->is_fake && > + READ_ONCE(cpuc->excl_cntrs->exclusive_present)) > + gpmax /= 2; > + > unsched = perf_assign_events(cpuc->event_constraint, n, wmin, > - wmax, assign); > + wmax, gpmax, assign); > } > Hmm, I divide by 2 twice.. no wonder it doesn't quite work as expected. -- 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/