can't find file to patch at input line 96 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |From patchwork Thu Jun 3 19:59:23 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Almeida?= | |X-Patchwork-Id: 43679 |Return-Path: |X-Original-To: patchwork@sourceware.org |Delivered-To: patchwork@sourceware.org |Received: from server2.sourceware.org (localhost [IPv6:::1]) | by sourceware.org (Postfix) with ESMTP id 41E373990024 | for ; Thu, 3 Jun 2021 20:12:07 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 41E373990024 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1622751127; | bh=veYZzpkyCZDBlyJ6+eYKBP4Ozyqo+V9qCq9ZCb2n+EE=; | h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: | List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: | From; | b=xRB6Y9gtleTQXv05A1NzHUD6LImpLCkdqNPEdFFFE3uy3590F4tncMaWB8vxm2aiI | QUAZj9FhLnrYM5ku62gYHIuZP2q8cLeuRsV0KvYpFp+ETtfn/IpU6VXWHKNxMfkZ7k | XGMolALzhjgSL+7yH1itMnUnP9KMZgnrHbl0FmJo= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) | by sourceware.org (Postfix) with ESMTPS id 16E7C398EC27 | for ; Thu, 3 Jun 2021 20:01:38 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 16E7C398EC27 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id BA2A11F434CD |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v4 14/15] perf bench: Add futex2 benchmark tests |Date: Thu, 3 Jun 2021 16:59:23 -0300 |Message-Id: <20210603195924.361327-15-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.31.1 |In-Reply-To: <20210603195924.361327-1-andrealmeid@collabora.com> |References: <20210603195924.361327-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, | KAM_DMARC_STATUS, KAM_MANYTO, SPF_HELO_PASS, SPF_PASS, TXREP, | UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.2 |X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on | server2.sourceware.org |X-BeenThere: libc-alpha@sourceware.org |X-Mailman-Version: 2.1.29 |Precedence: list |List-Id: Libc-alpha mailing list |List-Unsubscribe: , | |List-Archive: |List-Post: |List-Help: |List-Subscribe: , | |X-Patchwork-Original-From: =?utf-8?q?Andr=C3=A9_Almeida_via_Libc-alpha?= | |From: =?utf-8?q?Andr=C3=A9_Almeida?= |Reply-To: =?utf-8?q?Andr=C3=A9_Almeida?= |Cc: fweimer@redhat.com, shuah@kernel.org, Davidlohr Bueso , | libc-alpha@sourceware.org, corbet@lwn.net, linux-api@vger.kernel.org, | z.figura12@gmail.com, | =?utf-8?q?Andr=C3=A9_Almeida?= , | malteskarupke@fastmail.fm, acme@kernel.org, linux-kselftest@vger.kernel.org, | Andrey Semashev , joel@joelfernandes.org, | Peter Oskolkov , kernel@collabora.com, krisman@collabora.com, | pgriffais@valvesoftware.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |Add support at the existing futex benchmarking code base to enable |futex2 calls. `perf bench` tests can be used not only as a way to |measure the performance of implementation, but also as stress testing |for the kernel infrastructure. | |Signed-off-by: André Almeida |--- | tools/arch/x86/include/asm/unistd_64.h | 12 ++++++ | tools/perf/bench/bench.h | 4 ++ | tools/perf/bench/futex-hash.c | 24 +++++++++-- | tools/perf/bench/futex-requeue.c | 57 ++++++++++++++++++++------ | tools/perf/bench/futex-wake-parallel.c | 41 +++++++++++++++--- | tools/perf/bench/futex-wake.c | 37 +++++++++++++---- | tools/perf/bench/futex.h | 47 +++++++++++++++++++++ | tools/perf/builtin-bench.c | 18 ++++++-- | 8 files changed, 206 insertions(+), 34 deletions(-) | |diff --git a/tools/arch/x86/include/asm/unistd_64.h b/tools/arch/x86/include/asm/unistd_64.h |index 4205ed4158bf..191d43d84f04 100644 |--- a/tools/arch/x86/include/asm/unistd_64.h |+++ b/tools/arch/x86/include/asm/unistd_64.h -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 116 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/perf/bench/bench.h b/tools/perf/bench/bench.h |index eac36afab2b3..12346844b354 100644 |--- a/tools/perf/bench/bench.h |+++ b/tools/perf/bench/bench.h -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 134 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/perf/bench/futex-hash.c b/tools/perf/bench/futex-hash.c |index b65373ce5c4f..1068749af40c 100644 |--- a/tools/perf/bench/futex-hash.c |+++ b/tools/perf/bench/futex-hash.c -------------------------- No file to patch. Skipping patch. 5 out of 5 hunks ignored can't find file to patch at input line 194 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/perf/bench/futex-requeue.c b/tools/perf/bench/futex-requeue.c |index 5fa23295ee5f..6cdd649b54f4 100644 |--- a/tools/perf/bench/futex-requeue.c |+++ b/tools/perf/bench/futex-requeue.c -------------------------- No file to patch. Skipping patch. 9 out of 9 hunks ignored can't find file to patch at input line 324 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/perf/bench/futex-wake-parallel.c b/tools/perf/bench/futex-wake-parallel.c |index 6e6f5247e1fe..cac90fc0bfb3 100644 |--- a/tools/perf/bench/futex-wake-parallel.c |+++ b/tools/perf/bench/futex-wake-parallel.c -------------------------- No file to patch. Skipping patch. 7 out of 7 hunks ignored can't find file to patch at input line 416 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/perf/bench/futex-wake.c b/tools/perf/bench/futex-wake.c |index 6d217868f53c..546d2818eed8 100644 |--- a/tools/perf/bench/futex-wake.c |+++ b/tools/perf/bench/futex-wake.c -------------------------- No file to patch. Skipping patch. 6 out of 6 hunks ignored can't find file to patch at input line 497 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/perf/bench/futex.h b/tools/perf/bench/futex.h |index 31b53cc7d5bc..6b2213cf3f64 100644 |--- a/tools/perf/bench/futex.h |+++ b/tools/perf/bench/futex.h -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 553 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/perf/builtin-bench.c b/tools/perf/builtin-bench.c |index 62a7b7420a44..e41a95ad2db6 100644 |--- a/tools/perf/builtin-bench.c |+++ b/tools/perf/builtin-bench.c -------------------------- No file to patch. Skipping patch. 3 out of 3 hunks ignored