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 705ED2E22BF for ; Wed, 10 Dec 2025 08:00:01 +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=1765353601; cv=none; b=VZx4kG/AUmN0ZoZcCRF9E/qnRvLzr0KsKZPI5ysik8TDEzt4RcCYa4MM6WYbFPvuIjfTSTYSF9NNi2INRHvyxbxQtoue5RrGFw9cmiaMzj2OYDXbXix9QjhGo0xfr1GWNDdbFo2dr/aIESXAZi5F8XBzct0wtv3EwOrL0mWsk/k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765353601; c=relaxed/simple; bh=Qcqhb8gVrE6okKTKz8VQYC/RLlGGLrOvmVOtFTx2Cq4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition; b=BJZk7nqjeucHN8nGWoCrEnddFEWevJpdbnsGsTZL6T4IgTyb6bigCKvyW36LnfovO1nfekignWB/22jJ4I+CJMI4hg9AvT1wI8oY7MJ3k4NDVbQ2cAnCJ8jubr0QHZex+HVO3p2Wbgi6nRFsxLs1Aegw/v1+qh2xwUmI+jKJ6yQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=OdJzEqH7; 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="OdJzEqH7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F31BAC4AF09; Wed, 10 Dec 2025 07:59:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1765353600; bh=Qcqhb8gVrE6okKTKz8VQYC/RLlGGLrOvmVOtFTx2Cq4=; h=Date:From:To:Cc:Subject:References:From; b=OdJzEqH76vVJfdF07W8yTKYnsCVfXgoLa7HcF+qtgFUDbDYVRUEsozvWF51hkkugp und55/nARD1PUBZP1qrDkFHwBXS8oTda0dEfJslH7dcO3XgTLzp7+Nh5nDr7Pt1bdD U5MKlLlyWTOtLzXNsZdPk0mXArs7DkZRmvGVxXKjHCARL/fbuWsuQLUbk0XlX+CAjJ +Q29Qr+rMmqDglX1lj6goewT7fyCFQ4FIrTC9NXg22sN6aeKDFOFwXbMAmTlw55u6x l/lbrFu3Xgz9xCTZ060jYAdAekRnrpvaYyI2VzTegTUHfHhXP645qHHkNwYNAY4EyB vdBoSLPiThAIA== Date: Wed, 10 Dec 2025 08:59:56 +0100 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , Thomas Gleixner , Darren Hart , Davidlohr Bueso , =?utf-8?Q?Andr=E9?= Almeida , Oleg Nesterov Subject: [GIT PULL] futex updates for v6.19 Message-ID: References: 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=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit Linus, Please pull the latest locking/futex Git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking-futex-2025-12-10 # HEAD: c42ba5a87bdccbca11403b7ca8bad1a57b833732 futex: Store time as ktime_t in restart block Futex changes for v6.19: - Standardize on ktime_t in restart_block::time as well (Thomas Weißschuh) - Futex selftests: - Add robust list testcases (André Almeida) - Formatting fixes/cleanups (Carlos Llamas) Thanks, Ingo ------------------> André Almeida (2): selftests/futex: Remove unused test_futex_mpol() selftests/futex: Create test for robust list Carlos Llamas (2): selftests/futex: Add newline to ksft_exit_fail_msg() selftests/futex: Skip tests if shmget unsupported Thomas Weißschuh (1): futex: Store time as ktime_t in restart block include/linux/restart_block.h | 2 +- kernel/futex/waitwake.c | 9 +- .../testing/selftests/futex/functional/.gitignore | 1 + tools/testing/selftests/futex/functional/Makefile | 3 +- .../selftests/futex/functional/futex_numa_mpol.c | 5 - .../selftests/futex/functional/futex_wait.c | 8 +- .../selftests/futex/functional/futex_waitv.c | 2 + .../selftests/futex/functional/robust_list.c | 552 +++++++++++++++++++++ 8 files changed, 567 insertions(+), 15 deletions(-) create mode 100644 tools/testing/selftests/futex/functional/robust_list.c