Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754558AbaKDPu3 (ORCPT ); Tue, 4 Nov 2014 10:50:29 -0500 Received: from service87.mimecast.com ([91.220.42.44]:46118 "EHLO service87.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754538AbaKDPuY convert rfc822-to-8bit (ORCPT ); Tue, 4 Nov 2014 10:50:24 -0500 Message-ID: <5458F5C8.1030405@arm.com> Date: Tue, 04 Nov 2014 15:50:32 +0000 From: Juri Lelli User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: Peter Zijlstra , Wanpeng Li CC: Wanpeng Li , Ingo Molnar , Kirill Tkhai , "linux-kernel@vger.kernel.org" , "juri.lelli@gmail.com" Subject: Re: [PATCH RFC] sched/deadline: support dl task migrate during cpu hotplug References: <1414740497-7232-1-git-send-email-wanpeng.li@linux.intel.com> <20141103104111.GA23531@worktop.programming.kicks-ass.net> <20141103235747.GA26702@kernel> <20141104083225.GG10501@worktop.programming.kicks-ass.net> <20141104082345.GA22062@kernel> <20141104101022.GH10501@worktop.programming.kicks-ass.net> <5458D506.4080702@gmail.com> <20141104154623.GK10501@worktop.programming.kicks-ass.net> In-Reply-To: <20141104154623.GK10501@worktop.programming.kicks-ass.net> X-OriginalArrivalTime: 04 Nov 2014 15:50:19.0760 (UTC) FILETIME=[0930E700:01CFF847] X-MC-Unique: 114110415502201501 Content-Type: text/plain; charset=WINDOWS-1252 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On 04/11/14 15:46, Peter Zijlstra wrote: > On Tue, Nov 04, 2014 at 09:30:46PM +0800, Wanpeng Li wrote: > > >> + if (!rq->online) { >> + struct rq *latest_rq = NULL; >> + int cpu; >> + u64 dmin = LONG_MAX; >> + >> + for_each_cpu(cpu, &p->cpus_allowed) >> + if (cpu_online(cpu) && >> + cpu_rq(cpu)->dl.earliest_dl.curr < dmin) { >> + latest_rq = cpu_rq(cpu); >> + dmin = latest_rq->dl.earliest_dl.curr; >> + } > > I would have expected something using find_later_rq(), but I might be > mistaken, I'll let Juri suggest something. > Yeah, we should be able to reuse something that we already have. I'm actually sorry that I'm not responsive on this, but I'm really busy on other things this week. I hope to be able to find some time soon to test this all. Thanks, - Juri >> + >> + if (!latest_rq) >> + goto unlock; >> + >> + raw_spin_lock(&latest_rq->lock); >> + >> + deactivate_task(rq, p, 0); >> + set_task_cpu(p, latest_rq->cpu); >> + activate_task(latest_rq, p, 0); >> + >> + raw_spin_unlock(&latest_rq->lock); >> + } >> + >> unlock: >> raw_spin_unlock(&rq->lock); > -- 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/