can't find file to patch at input line 94 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |From patchwork Fri Jul 9 00:13:26 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: 44285 |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 475A23982CA9 | for ; Fri, 9 Jul 2021 00:21:35 +0000 (GMT) |DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 475A23982CA9 |DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; | s=default; t=1625790095; | bh=nulQ6XReEbxYU+TMDQPcHRTV8oDfnM43hw5J8/H/6pU=; | 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=yHDdA7OHZzfXacVNlH14VTDSxmLl+o+RuwaJCD6P7l1CyVoVTslydPvcrLGVvLzF8 | ATeZ2gs2zaEO06O9ddSsZEEaY5BlN0TKY26ytdUv0D+aR5Nkt5gE4vrNiYRp7ZUrxw | PNvKgcnAtV9c1AalhzmukGTmIe2csNC4rrZ72J+M= |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 A08163982C88 | for ; Fri, 9 Jul 2021 00:14:53 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A08163982C88 |Received: from [127.0.0.1] (localhost [127.0.0.1]) | (Authenticated sender: tonyk) with ESMTPSA id 996E21F433BD |To: Thomas Gleixner , Ingo Molnar , | Peter Zijlstra , Darren Hart , | linux-kernel@vger.kernel.org, Steven Rostedt , | Sebastian Andrzej Siewior |Subject: [PATCH v5 09/11] selftests: futex2: Add requeue test |Date: Thu, 8 Jul 2021 21:13:26 -0300 |Message-Id: <20210709001328.329716-10-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 testing for futex_requeue(). The first test just requeue from one |waiter to another one, and wake it. The second performs both wake and |requeue, and we check return values to see if the operation |woke/requeued the expected number of waiters. | |Signed-off-by: André Almeida |--- | .../selftests/futex/functional/.gitignore | 1 + | .../selftests/futex/functional/Makefile | 3 +- | .../futex/functional/futex2_requeue.c | 164 ++++++++++++++++++ | .../selftests/futex/include/futex2test.h | 16 ++ | 4 files changed, 183 insertions(+), 1 deletion(-) | create mode 100644 tools/testing/selftests/futex/functional/futex2_requeue.c | |diff --git a/tools/testing/selftests/futex/functional/.gitignore b/tools/testing/selftests/futex/functional/.gitignore |index 22c572de8d10..d63b5f74bd6f 100644 |--- a/tools/testing/selftests/futex/functional/.gitignore |+++ b/tools/testing/selftests/futex/functional/.gitignore -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored can't find file to patch at input line 103 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |diff --git a/tools/testing/selftests/futex/functional/Makefile b/tools/testing/selftests/futex/functional/Makefile |index 240b53d8cb07..e162e40ce38f 100644 |--- a/tools/testing/selftests/futex/functional/Makefile |+++ b/tools/testing/selftests/futex/functional/Makefile -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored patching file tools/testing/selftests/futex/functional/futex2_requeue.c patching file tools/testing/selftests/futex/include/futex2test.h