From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 582863A3E64 for ; Sun, 3 May 2026 07:38:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777793918; cv=none; b=DXV0I6+NOaPJjmitxZXFciwec9PcLjvcscAy1q+9Ar3zLcsulRf1n7ElVnAIQIaiz1Ri2e/RC9uZnWF2kTQWdfvFOrzchGwNV14+DptmWsQYVy2eE7i/9g2f1YJsEjO3QFxLVAVYcqhNta9JUtND31GznmBcTGpWA6O9/VJOGoM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777793918; c=relaxed/simple; bh=AAMATshSl4w1aFdabvqPRoiEIGShg0baNfkd9wuelw4=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=K8tv6xVDJkpHWfSUxld5jkq02EqXVGHDv9fWAGxAod5umZe5PGUcw343ibVxE7kX1Rj7yfjzoMhXNaOo+dkDeXPMb9pxSGnT4Qwdq4r8y7U4VdlJXAsG7aPlJyLj1ot07jO1+/A3h6lgImQuP2vkJT188mdg/d9ISlQ/M9d5eZg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=nwi3hGZJ; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="nwi3hGZJ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E42C3C2BCB4; Sun, 3 May 2026 07:38:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1777793917; bh=AAMATshSl4w1aFdabvqPRoiEIGShg0baNfkd9wuelw4=; h=Date:From:To:Cc:Subject:From; b=nwi3hGZJa3wP8J5GjGqgBONyYGgHhtVBfkrrqWFfajt2jhW22tl+3Um8IInmz1BV0 KjrY+xk6fisEOo7VkG+Okn314AxCC3Xob2Rku876+eZDBJ2LQfGPOFTLvPZtyRyeH7 hDNyJN5u1I9rqUYbyX5YCO7l+mMxmfskzmne7tlJB9eMEoU+1dFblHUQSLoFSm7CGi f4LoO4H2ecIx4Kd1UNWNLDy9dZyxti6SCEjkceaHQAdAjV4mbeL9NNJhy+dAGa53x7 XKxuZ9o5qligUP+iBoqkN1xz8qi1W/pyXki9ENNoNn5Cjp0wgkLf8Dl3fcGqPb9+1u HDMU/ZTY4ftKg== Date: Sun, 3 May 2026 09:38:32 +0200 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , Thomas Gleixner , Juri Lelli , Vincent Guittot , Dietmar Eggemann , Steven Rostedt , Mel Gorman , Tejun Heo , Valentin Schneider , Shrikanth Hegde Subject: [GIT PULL] scheduler fixes Message-ID: 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 Linus, Please pull the latest sched/urgent Git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched-urgent-2026-05-03 for you to fetch changes up to 3da56dc063cd77b9c0b40add930767fab4e389f3: Miscellaneous scheduler fixes: - Fix the delayed dequeue negative lag increase fix in the fair scheduler (Peter Zijlstra) - Fix wakeup_preempt_fair() to do proper delayed dequeue (Vincent Guittot) - Clear sched_entity::rel_deadline when initializing forked entities, which bug can cause all tasks to be EEVDF-ineligible, causing a NULL pointer dereference crash in pick_next_entity() (Zicheng Qu) Thanks, Ingo ------------------> Peter Zijlstra (1): sched/fair: Fix the negative lag increase fix Vincent Guittot (1): sched/fair: Fix wakeup_preempt_fair() vs delayed dequeue Zicheng Qu (1): sched/fair: Clear rel_deadline when initializing forked entities kernel/sched/core.c | 1 + kernel/sched/fair.c | 42 ++++++++++++++++++++++++------------------ 2 files changed, 25 insertions(+), 18 deletions(-)