From nobody Tue Sep 16 10:52:57 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 65C3DC4708D for ; Wed, 4 Jan 2023 16:36:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235310AbjADQgG (ORCPT ); Wed, 4 Jan 2023 11:36:06 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59888 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235030AbjADQgC (ORCPT ); Wed, 4 Jan 2023 11:36:02 -0500 Received: from smtpout.efficios.com (smtpout.efficios.com [167.114.26.122]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4D712DF41; Wed, 4 Jan 2023 08:35:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=efficios.com; s=smtpout1; t=1672850156; bh=TFVyM2m/xyzX8+yA6smgHYIu+Z3FjYZKZtEo+/BxGyU=; h=From:To:Cc:Subject:Date:From; b=aSrHrh7s2/BiKlIyu77Rpv0YWtsCqp8BnME8PC0wGNv8FRgkFQzbXZGE1N+4y4FuG ZNkB33f9xc7gJ+MyejSuxBQpPp7ddnDXjE1KcDlFcHTGSMRdSv8gXJoWLoKEbTCupz oBnrBXc9dYicGFROYyO+xkzN10Cxw6pHEBk32OSLJv7pY60oe7dvk95MsIa17rX0Ak h0azNFAnd4B9LcQAtmT6M1m5+GxqmQfd1x6g+wE2bEvS0nCxPzKmzYhCsv14qzkaXo ESIB8eZNUy+ZoIV3GlEVoCKkwR7XvxRcveKcxI6pzAZyIHIqNasbIQP/mtMC0hpVjN yHpYLkQtbG9Fg== Received: from localhost.localdomain (192-222-180-24.qc.cable.ebox.net [192.222.180.24]) by smtpout.efficios.com (Postfix) with ESMTPSA id 4NnFbJ2WkXzdct; Wed, 4 Jan 2023 11:35:56 -0500 (EST) From: Mathieu Desnoyers To: Peter Zijlstra Cc: linux-kernel@vger.kernel.org, Thomas Gleixner , "Paul E . McKenney" , Boqun Feng , "H . Peter Anvin" , Paul Turner , linux-api@vger.kernel.org, Christian Brauner , Florian Weimer , David.Laight@ACULAB.COM, carlos@redhat.com, Peter Oskolkov , Alexander Mikhalitsyn , Chris Kennelly , Mathieu Desnoyers , kernel test robot Subject: [PATCH tip] selftests/rseq: Revert "selftests/rseq: Add mm_numa_cid to test script" Date: Wed, 4 Jan 2023 11:35:42 -0500 Message-Id: <20230104163542.10004-1-mathieu.desnoyers@efficios.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" The mm_numa_cid related rseq patches from the series were not picked up into the tip tree, so enabling the mm_numa_cid test needs to be reverted. This reverts commit b344b8f2d88dbf095caf97ac57fd3645843fa70f. Reported-by: kernel test robot Link: https://lore.kernel.org/oe-lkp/202301040903.2dd1e25b-oliver.sang@inte= l.com Signed-off-by: Mathieu Desnoyers --- tools/testing/selftests/rseq/run_param_test.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tools/testing/selftests/rseq/run_param_test.sh b/tools/testing= /selftests/rseq/run_param_test.sh index 603b3b69d20c..8d31426ab41f 100755 --- a/tools/testing/selftests/rseq/run_param_test.sh +++ b/tools/testing/selftests/rseq/run_param_test.sh @@ -47,11 +47,6 @@ function do_tests() ./param_test_mm_cid ${TEST_LIST[$i]} -r ${REPS} -t ${NR_THREADS} ${@} ${= EXTRA_ARGS} || exit 1 echo "Running mm_cid compare-twice test ${TEST_NAME[$i]}" ./param_test_mm_cid_compare_twice ${TEST_LIST[$i]} -r ${REPS} -t ${NR_TH= READS} ${@} ${EXTRA_ARGS} || exit 1 - - echo "Running mm_numa_cid test ${TEST_NAME[$i]}" - ./param_test_mm_numa_cid ${TEST_LIST[$i]} -r ${REPS} -t ${NR_THREADS} ${= @} ${EXTRA_ARGS} || exit 1 - echo "Running mm_numa_cid compare-twice test ${TEST_NAME[$i]}" - ./param_test_mm_numa_cid_compare_twice ${TEST_LIST[$i]} -r ${REPS} -t ${= NR_THREADS} ${@} ${EXTRA_ARGS} || exit 1 let "i++" done } --=20 2.25.1