From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BE7F8330664 for ; Sat, 7 Mar 2026 12:55:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=90.155.50.34 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772888142; cv=none; b=iqfdQOwQgaPwBPnYzfuhLVrhJDwvFsEU2dKxSIgB3ZyluzJ+z4sUfmwjLuRFenLJPYkO4C3G5W5LVF/MYgW1pYXmSqTZ32vrF7a4+SkoVAyRruZd5PE5DDyXNl8lFGpriO/MK2Xv06Tv9rnVY5SqIhykJfC3zT0zkLLP8gnnkpw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772888142; c=relaxed/simple; bh=gXdUOScNRvM1qpTdWZaidhUOloEy2PADuc0S+3YAy3o=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=ucXIGhLbX6klBWD9QUQqQk2qmi1WmeRcPcci+UyUkmgWFq8m4WMsyLVMP8vex/oUhQqPKBgXLjQ7Nb7BnpHT0qXbTxmV6dzxNcp3K9UMweje88MrHgCZbZa621Kw+tJgcn/Zw/sNZlPCpLCq82SF5rsE7tzWbGwDsn0wa53Q5O4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=ZYr7X2rj; arc=none smtp.client-ip=90.155.50.34 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="ZYr7X2rj" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; 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=4C5qO+zwraPqw0c4G4y+JmTXWD7IHwe7CyFLiB6PrrQ=; b=ZYr7X2rjDjm8l0iUqQ5s7f3fjj 924ODVq+7wwhRuvetZNDG3j3s/n881Rh0vcqRv0kXwNce/Sf1lraG82VPORVN/F4gh5RER2qI48d7 5Lw6IQg6vWlW7S/KCUBela5pbOVXO1vnDyGauVBLs1lkrshPBcVPpr7EGVLdfhPPz2M4IUQCgOrrj 0i9HHoDijSXzASjN1dodufj/0U4ofMmZIBewAK3qh9I8B29vY1Q9vo8AEvq9xYK5EZWLwf5xg8Tha w5Ue9Ir1HsCol7qklIOX4K6npMryfYVtghjgg1JK+wHOT1XrocbuvALzI9++6IL/bGkl5Jm/Bdo21 EkCLUBtQ==; Received: from 2001-1c00-8d85-5700-266e-96ff-fe07-7dcc.cable.dynamic.v6.ziggo.nl ([2001:1c00:8d85:5700:266e:96ff:fe07:7dcc] helo=noisy.programming.kicks-ass.net) by casper.infradead.org with esmtpsa (Exim 4.98.2 #2 (Red Hat Linux)) id 1vyrBr-00000000olh-2Iiq; Sat, 07 Mar 2026 12:55:31 +0000 Received: by noisy.programming.kicks-ass.net (Postfix, from userid 1000) id 4CA3C301150; Sat, 07 Mar 2026 13:55:30 +0100 (CET) Date: Sat, 7 Mar 2026 13:55:30 +0100 From: Peter Zijlstra To: John Stultz Cc: Juri Lelli , LKML , Ingo Molnar , Vincent Guittot , Dietmar Eggemann , Steven Rostedt , Ben Segall , Mel Gorman , Valentin Schneider , Suleiman Souhlal , K Prateek Nayak , kernel-team@android.com Subject: Re: [PATCH] [RFC]: sched/deadline: Avoid double enqueue_pushable_dl_task() warning Message-ID: <20260307125530.GW606826@noisy.programming.kicks-ass.net> References: <20260303194120.4102982-1-jstultz@google.com> <20260304095123.GP606826@noisy.programming.kicks-ass.net> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Fri, Mar 06, 2026 at 03:45:12PM -0800, John Stultz wrote: > With those two tweaks it has been running ok in testing. > > I've also split out your cleanups into a separate patch just so the > functional change is easier to review. > > Since this is proxy-exec specific, I'll include these both in my next > submission of the donor-migration logic. > > Let me know if you think I'm still missing anything subtle here. Sounds about right. Thanks!