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 066CD3090D5 for ; Mon, 1 Jun 2026 10:54:37 +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=1780311279; cv=none; b=RC2KBMM/0mAXkAGaqZJOLbUr2brwLq7y8B2p4rdE6NuB+9NQAWQnigm285UguIZsATOIfx+86K5+iMOOHcxEhHg+kSPg+3xSqyioUF9eDSia4pNGWPtDsD0oY9JLEJsSYbANBb0JFgqHL3Hz3pSrc5GCBVBTMexkShTQp0Je7E0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780311279; c=relaxed/simple; bh=WPbZdBfSaXKvWLbTCnYjyDzWnwwxXDRREyy73ldvCnY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=NsZOUDXK8/AKlzXzHoR6qwHTc1D4DPLrU4r3h5Te8MFSZCOrZGSg3gdVdMrxFeI363Q8w3DkiXpBYoCJRmrE85EkKN1DBa5MW0IIAx371UlO/4p8iRhowFxm3hZWtWzxVh9Msx0XIaUSGksWiG4uhXksFW7FV7ETNVgTYiR2pwY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=sJaleZAZ; 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=pass 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="sJaleZAZ" 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=YEwyLXTjzZfOBJVBlySRAMdn8LKwYuP0WFdTuxfS5ec=; b=sJaleZAZ63kPgm9IGu4BncqLua i1U63K+4dbfrKFnM0+70CQtBn0KzONHy8LebwqIQJgKnNwotrLP9AyyGqyiR61nn7fplkSFWNGp0n uzfv+0v0EeLgFyhNA9GUzEqi5bFJjCNYjZOR2TqfjHqSF3g02L7B9Xw/z8FxBstM1dtWOgg1rUJMi 5pFGzdE2/8DnN3JRZHBfap7NgIkFZyg6ZFYhQAifi+2zwer6VeUmHG+S3r6w1IeSBv0WELX/gt1tz bpwegmZvJG9GjrFpydIF6bbE9GtT7IeflVQbMvNDNRcOaOZP0EonNAnvXh6hIzyuJ7BUmMUhlIT35 76l8yvig==; Received: from 2001-1c00-8d85-4b00-266e-96ff-fe07-7dcc.cable.dynamic.v6.ziggo.nl ([2001:1c00:8d85:4b00:266e:96ff:fe07:7dcc] helo=noisy.programming.kicks-ass.net) by casper.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1wU0Hq-0000000B6rP-3QiY; Mon, 01 Jun 2026 10:54:26 +0000 Received: by noisy.programming.kicks-ass.net (Postfix, from userid 1000) id 796D2300454; Mon, 01 Jun 2026 12:54:25 +0200 (CEST) Date: Mon, 1 Jun 2026 12:54:25 +0200 From: Peter Zijlstra To: John Stultz , K Prateek Nayak Cc: Joel Fernandes , Qais Yousef , Ingo Molnar , Juri Lelli , Vincent Guittot , Dietmar Eggemann , Valentin Schneider , Steven Rostedt , Ben Segall , Zimuzo Ezeozue , Will Deacon , Waiman Long , Boqun Feng , "Paul E. McKenney" , Metin Kaya , Xuewen Yan , Thomas Gleixner , Daniel Lezcano , Suleiman Souhlal , kuyo chang , hupu , linux-kernel@vger.kernel.org, Mike Galbraith Subject: Re: [PATCH 5/6] sched/proxy: Remove PROXY_WAKING Message-ID: <20260601105425.GQ3493090@noisy.programming.kicks-ass.net> References: <20260526111609.433880331@infradead.org> <20260526113322.596522894@infradead.org> 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: <20260526113322.596522894@infradead.org> On Tue, May 26, 2026 at 01:16:14PM +0200, Peter Zijlstra wrote: > From: K Prateek Nayak > > Now that the proxy path uses ->is_blocked, use the '->is_blocked && > !->blocked_on' state instead of PROXY_WAKING. Notably, this is where a > blocked_on relation is broken but the donor task might still need a return > migration. > > (Not-yet-)Signed-off-by: K Prateek Nayak > Signed-off-by: Peter Zijlstra (Intel) Prateek, can I make that a normal SoB from you? I'm thinking I should merge sched/proxy into sched/core so we can get on with other stuff.