can't find file to patch at input line 98 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |From patchwork Fri Jul 9 00:13:27 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: 44286 |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 13C0C3982C9E | for ; Fri, 9 Jul 2021 00:22:20 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 13C0C3982C9E |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1625790140; | bh=6oXY9TcEsKmtiBK4PjyUdliWVSOXSP1TmKYX/6a/vpE=; | 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=ZJt8bfYgwYH9IVQ0nOrbcJF1ukOSINHugjfZ9v1AOg7gfQj3H+or4Z29P1yL0Do6X | VqfWYYNZvUSxs02uxRo77qYjHH7ceyfO/08mxTQO2HZWdj6XmBfGK0DAuAWksr1KFV | +GWhWBbS6cvVptYdpPxF7VpyVsZxNQRgTKVtjbgU= |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk | [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) | by sourceware.org (Postfix) with ESMTPS id 18B203982C89 | for ; Fri, 9 Jul 2021 00:15:00 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 18B203982C89 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 3716A1F41DE0 |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v5 10/11] perf bench: Add futex2 benchmark tests |Date: Thu, 8 Jul 2021 21:13:27 -0300 |Message-Id: <20210709001328.329716-11-andrealmeid@collabora.com> |X-Mailer: git-send-email 2.32.0 |In-Reply-To: <20210709001328.329716-1-andrealmeid@collabora.com> |References: <20210709001328.329716-1-andrealmeid@collabora.com> |MIME-Version: 1.0 |X-Spam-Status: No, score=-12.2 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.4 |X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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?= , | Nicholas Piggin , 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 118 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 136 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 196 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..ee5e0da5ba50 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 326 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 418 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 499 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 555 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