From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752778AbbBXVXo (ORCPT ); Tue, 24 Feb 2015 16:23:44 -0500 Received: from smtprelay0245.hostedemail.com ([216.40.44.245]:42968 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751444AbbBXVXm (ORCPT ); Tue, 24 Feb 2015 16:23:42 -0500 X-Session-Marker: 6E657665747340676F6F646D69732E6F7267 X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,rostedt@goodmis.org,:::::::::::::::::,RULES_HIT:41:355:379:541:599:800:960:973:988:989:1260:1277:1311:1313:1314:1345:1359:1437:1515:1516:1518:1534:1539:1593:1594:1711:1730:1747:1777:1792:2393:2553:2559:2562:2895:2898:3138:3139:3140:3141:3142:3352:3622:3865:3866:3867:3870:3871:3872:3874:5007:6119:6261:7875:7901:7903:10004:10400:10848:10967:11026:11232:11473:11658:11914:12043:12517:12519:12740:13069:13255:13311:13357:13868:14096:14097:21067:21080,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0 X-HE-Tag: fowl11_2f792b14ba58 X-Filterd-Recvd-Size: 1907 Date: Tue, 24 Feb 2015 16:23:39 -0500 From: Steven Rostedt To: LKML Cc: Ingo Molnar , Peter Zijlstra , Thomas Gleixner , Clark Williams , linux-rt-users , Mike Galbraith , "Paul E. McKenney" , =?UTF-8?B?SsO2cm4=?= Engel Subject: Re: [RFC][PATCH v2] sched/rt: Use IPI to trigger RT task push migration instead of pulling Message-ID: <20150224162339.36670d94@gandalf.local.home> In-Reply-To: <20150224133946.3948c4b7@gandalf.local.home> References: <20150224133946.3948c4b7@gandalf.local.home> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 24 Feb 2015 13:39:46 -0500 Steven Rostedt wrote: > @@ -1775,6 +1946,15 @@ static int pull_rt_task(struct rq *this_ > */ > smp_rmb(); > > + /* Use local just in case a feature is switched in the middle of this */ > + if ((use_ipi = sched_feat(RT_PUSH_IPI))) { > + /* Make sure the update to pending is visible here. */ > + smp_rmb(); While porting this to the -rt kernel, I noticed that this rmb is unneeded. It's already called above for a different reason :-p -- Steve > + > + /* If a push ipi is out, then we must do the old method */ > + push_pending = READ_ONCE(this_rq->rt.push_csd_pending); > + } > + > for_each_cpu(cpu, this_rq->rd->rto_mask) { > if (this_cpu == cpu) > continue;