From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 05E33C06516 for ; Thu, 4 Jul 2019 12:05:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D30662189E for ; Thu, 4 Jul 2019 12:05:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727698AbfGDMF1 (ORCPT ); Thu, 4 Jul 2019 08:05:27 -0400 Received: from foss.arm.com ([217.140.110.172]:39914 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727618AbfGDMF1 (ORCPT ); Thu, 4 Jul 2019 08:05:27 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 8570D28; Thu, 4 Jul 2019 05:05:26 -0700 (PDT) Received: from [0.0.0.0] (e107985-lin.cambridge.arm.com [10.1.194.38]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id EDFA43F718; Thu, 4 Jul 2019 05:05:23 -0700 (PDT) Subject: Re: [RFC PATCH 2/6] sched/dl: Capacity-aware migrations To: Luca Abeni , linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , "Rafael J . Wysocki" , Ingo Molnar , Peter Zijlstra , Vincent Guittot , "Paul E . McKenney" , Joel Fernandes , Quentin Perret , Luc Van Oostenryck , Morten Rasmussen , Juri Lelli , Daniel Bristot de Oliveira , Patrick Bellasi , Tommaso Cucinotta References: <20190506044836.2914-1-luca.abeni@santannapisa.it> <20190506044836.2914-3-luca.abeni@santannapisa.it> From: Dietmar Eggemann Message-ID: Date: Thu, 4 Jul 2019 14:05:22 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.0 MIME-Version: 1.0 In-Reply-To: <20190506044836.2914-3-luca.abeni@santannapisa.it> Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 5/6/19 6:48 AM, Luca Abeni wrote: [...] > diff --git a/kernel/sched/deadline.c b/kernel/sched/deadline.c > index 5b981eeeb944..3436f3d8fa8f 100644 > --- a/kernel/sched/deadline.c > +++ b/kernel/sched/deadline.c > @@ -1584,6 +1584,9 @@ select_task_rq_dl(struct task_struct *p, int cpu, int sd_flag, int flags) > if (sd_flag != SD_BALANCE_WAKE) > goto out; > > + if (dl_entity_is_special(&p->dl)) > + goto out; I wonder if this is really required. The if condition 1591 if (unlikely(dl_task(curr)) && 1592 (curr->nr_cpus_allowed < 2 || 1593 !dl_entity_preempt(&p->dl, &curr->dl)) && 1594 (p->nr_cpus_allowed > 1)) { further below uses '!dl_entity_preempt(&p->dl, &curr->dl))' which returns 'dl_entity_is_special(a) || ...' A BUG_ON(dl_entity_is_special(&p->dl)) in this if condition hasn't triggered on my platform yet. [...]