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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E46A3C4332F for ; Wed, 8 Nov 2023 16:57:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232119AbjKHQ5i (ORCPT ); Wed, 8 Nov 2023 11:57:38 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39164 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229581AbjKHQ5g (ORCPT ); Wed, 8 Nov 2023 11:57:36 -0500 Received: from desiato.infradead.org (desiato.infradead.org [IPv6:2001:8b0:10b:1:d65d:64ff:fe57:4e05]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F6051FF6 for ; Wed, 8 Nov 2023 08:57:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=desiato.20200630; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=35zz3oaC91rkzRiAUrt+HIVdUt7lDfuhbKttZJT5BXE=; b=iCRu/Z0zqhemawD3JWB3WeQc+d hN/ghnUAh47hQyEVZ0pxykyeNooBxiy+seDezHlNog9AwrdyGGjfAEQCGxvvdO7F9ZLLdnU8JumA6 xIVXbsak3TAwCPCI1MaHhLOOLFaAlZamWSPLt3Z3dsKrV1zfpzZ8EaWY5QrZ3PpHaOjmqZuZjxj+d ZZiUXtzPeXWUcMaoAABNot9pvZo9JgRTgnv3Z6MluTnRD1uVwl/B5mXuMgRajr8+LfsBjswnJEZM0 qQd2KFH8lcybPq6O9CIRjBbUsds/OrfkEOj46qjarvYonl8TebwLWetokRwcP3Q381tXCTzs6HfUI VT3fFbCQ==; Received: from j130084.upc-j.chello.nl ([24.132.130.84] helo=noisy.programming.kicks-ass.net) by desiato.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1r0lrh-00DdMB-2t; Wed, 08 Nov 2023 16:57:18 +0000 Received: by noisy.programming.kicks-ass.net (Postfix, from userid 1000) id 8D6BA30049D; Wed, 8 Nov 2023 17:57:17 +0100 (CET) Date: Wed, 8 Nov 2023 17:57:17 +0100 From: Peter Zijlstra To: Juri Lelli Cc: Daniel Bristot de Oliveira , Daniel Bristot de Oliveira , Steven Rostedt , Joel Fernandes , Ingo Molnar , Vincent Guittot , Dietmar Eggemann , Ben Segall , Mel Gorman , Valentin Schneider , linux-kernel@vger.kernel.org, Luca Abeni , Tommaso Cucinotta , Thomas Gleixner , Vineeth Pillai , Shuah Khan , Phil Auld Subject: Re: [PATCH v5 6/7] sched/deadline: Deferrable dl server Message-ID: <20231108165717.GM3818@noisy.programming.kicks-ass.net> References: <20231107114732.5dd350ec@gandalf.local.home> <7d1ea71b-5218-4ee0-bc89-f02ee6bd5154@redhat.com> <3e58fad7-7f66-4e48-adcc-0fda9e9d0d07@kernel.org> <20231108124401.GQ8262@noisy.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Nov 08, 2023 at 04:14:18PM +0100, Juri Lelli wrote: > > + if (dl_se->zerolax && dl_se->runtime > dl_runtime) > > + dl_se->runtime = dl_runtime; > > + > > Anyway, I have the impression that this breaks EDF/CBS, as we are letting > the dl_server run with full dl_runtime w/o postponing the period > (essentially an u = 1 reservation until runtime is depleted). Yeah, I sorted it with Daniel, we were not trying to fix the same problem :-)