From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 8A36442050 for ; Sun, 7 Jun 2026 04:48:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780807683; cv=none; b=pgtAXWifc6BcucDBoq6CT229/CqHxw/CpoxkmjVvnyPaptVkulrXqhdZBzqrU8dSzKwW5nqYiuSnfzwA3gW8MJwOfd5tzBvlxtVCLbMD4Z4sUSk/Ag0i0/1JONf8H8ldPkLyO5/KwHSjpK/FhhLBAEs8UadDzXsaFjCdO7dW760= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780807683; c=relaxed/simple; bh=/G0D+BgAuDhSIXYV4HIlrPB7SNPLqTq9KoQfMCHq4eQ=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=Mi4Q8yzMdFcsr2018rld4NqD9Xuiy2Y4A8E/O1v1fSW14l9+HI68koeFCApbKDKWHKcIxJxR5OnCQUVWqRRcxOP82Wh5dL7THIBMuRaBfkcCnvp9c5bONtbKHOQ5KVOnkZ+JkjUPTtYDW52ScQ3L7UvPflwJWcElV+ymJYhTG8I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=E5jdUTDh; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="E5jdUTDh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B0EB61F00893; Sun, 7 Jun 2026 04:48:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1780807682; bh=ZeM2uo66PAN8QgWgMQ2KA8X0I149dNgNwh/kJfDZBf4=; h=Date:From:To:Cc:Subject; b=E5jdUTDhe0bF9AZBagRqJq7ITJOk5jNOV2PmBqFvEvQS/6So/nPj99hux3G+2PFI7 s1xuiYluPBMtH1ayF1Q7GiBTXeoy7mJmrtxSqgcOx3x7t/yoL/xRZpvmG/DZBfAmsQ mbovnx047XEofiD8k1vFtgYa/p6w3KvA/IXSgbqFQFhO78mBVi2JTybUUHsohAPOhO 3B1WxMrYXBYqCQe9KM2go5tFRXq5UTfgd32jxMyq2NdzH5qECbboPa+jsggsb2qzpz UGIFzdOKrFYxfAFSA9Cb27o45nDlL+RgmJBfGlV2C76RPC9xTbQSkQNydM+ED/yC13 POcOyAGfJDq7Q== Date: Sun, 7 Jun 2026 06:47:57 +0200 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , Thomas Gleixner , Will Deacon , Waiman Long , Boqun Feng Subject: [GIT PULL] locking 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 locking/urgent Git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking-urgent-2026-06-07 for you to fetch changes up to 40a25d59e85b3c8709ac2424d44f65610467871e: Misc locking fixes: - Fix a NULL pointer dereference bug in the FUTEX_CMP_REQUEUE_PI code (Ji'an Zhou) - Fix a NULL pointer dereference bug in the rtmutex code (Davidlohr Bueso) Thanks, Ingo ------------------> Davidlohr Bueso (1): locking/rtmutex: Skip remove_waiter() when waiter is not enqueued Ji'an Zhou (1): futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock kernel/futex/requeue.c | 6 ++++++ kernel/locking/rtmutex.c | 3 +++ kernel/locking/rtmutex_api.c | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-)