can't find file to patch at input line 100 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |From patchwork Wed Sep 15 14:07:29 2021 |Content-Type: text/plain; charset="utf-8" |MIME-Version: 1.0 |Content-Transfer-Encoding: 8bit |X-Patchwork-Submitter: Peter Zijlstra |X-Patchwork-Id: 45043 |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 762093857403 | for ; Wed, 15 Sep 2021 14:24:41 +0000 (GMT) |X-Original-To: libc-alpha@sourceware.org |Delivered-To: libc-alpha@sourceware.org |Received: from casper.infradead.org (casper.infradead.org | [IPv6:2001:8b0:10b:1236::1]) | by sourceware.org (Postfix) with ESMTPS id 220203857423 | for ; Wed, 15 Sep 2021 14:19:38 +0000 (GMT) |DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 220203857423 |Authentication-Results: sourceware.org; | dmarc=none (p=none dis=none) header.from=infradead.org |Authentication-Results: sourceware.org; spf=none smtp.mailfrom=infradead.org |DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; | d=infradead.org; s=casper.20170209; h=Content-Type:MIME-Version:References: | Subject:Cc:To:From:Date:Message-ID:Sender:Reply-To:Content-Transfer-Encoding: | Content-ID:Content-Description:In-Reply-To; | bh=lZsWU5/WiPPQ0FIs1LUXnpBvhYtIgVyBe+z/3y2pMc0=; b=XoFLY3OiBooYFI/YYeDIJPmb4z | LDcHtR48thQRcRMo3d0SGtYwuzSii3MxDR01o842CV4xnuarAmSzt2HU+Bu0CER1J/JL/pAP1OILL | SF7nEfJWvN5+3k35k/XyAyH+kdgLxrit1X4faQI8Yy5k3Vr/KMVP2CrMWI6HFAbEtOQxmQ3VvYsry | eNRfyYKesr9ULPAnrljuvm/Art9SUAXAJD9NRZ5W/riTwC5Ngr8qKRMHWT7h8USFEt6+c2NXBS7iG | j/I8OFQf1ej9m0QGV14pCl8Ihr58rJBHcNfbvoD0aPvgYNFO6bx1MGwmzrqaX/XM4ww/UOGueAQ/7 | miw3QdPg==; |Received: from j217100.upc-j.chello.nl ([24.132.217.100] | helo=noisy.programming.kicks-ass.net) | by casper.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) | id 1mQVjA-00Fk3r-Tk; Wed, 15 Sep 2021 14:17:40 +0000 |Received: from hirez.programming.kicks-ass.net | (hirez.programming.kicks-ass.net [192.168.1.225]) | (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) | key-exchange X25519 server-signature RSA-PSS (2048 bits)) | (Client did not present a certificate) | by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id 2E153300CD7; | Wed, 15 Sep 2021 16:17:30 +0200 (CEST) |Received: by hirez.programming.kicks-ass.net (Postfix, from userid 0) | id 4F96B28B2AEDB; Wed, 15 Sep 2021 16:17:29 +0200 (CEST) |Message-ID: <20210915141525.815507466@infradead.org> |User-Agent: quilt/0.66 |Date: Wed, 15 Sep 2021 16:07:29 +0200 |From: Peter Zijlstra |To: andrealmeid@collabora.com, tglx@linutronix.de, mingo@redhat.com, | dvhart@infradead.org, rostedt@goodmis.org, bigeasy@linutronix.de |Subject: [PATCH 19/20] selftests: futex: Add sys_futex_waitv() test |References: <20210915140710.596174479@infradead.org> |MIME-Version: 1.0 |X-Spam-Status: No, score=-2.3 required=5.0 tests=BAYES_00, CTE_8BIT_MISMATCH, | DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, SPF_HELO_NONE, | SPF_NONE, | TXREP 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: , | |Cc: dave@stgolabs.net, libc-alpha@sourceware.org, peterz@infradead.org, | linux-api@vger.kernel.org, linux-kernel@vger.kernel.org, | mtk.manpages@gmail.com, kernel@collabora.com, krisman@collabora.com |Errors-To: libc-alpha-bounces+patchwork=sourceware.org@sourceware.org |Sender: "Libc-alpha" | | |From: André Almeida | |Create a new file to test the waitv mechanism. Test both private and |shared futexes. Wake the last futex in the array, and check if the |return value from futex_waitv() is the right index. | |Signed-off-by: André Almeida |Signed-off-by: Peter Zijlstra (Intel) |Link: https://lore.kernel.org/r/20210913175249.81074-6-andrealmeid@collabora.com |--- | tools/testing/selftests/futex/functional/.gitignore | 1 | tools/testing/selftests/futex/functional/Makefile | 3 | tools/testing/selftests/futex/functional/futex_waitv.c | 158 +++++++++++++++++ | tools/testing/selftests/futex/functional/run.sh | 3 | tools/testing/selftests/futex/include/futex2test.h | 31 +++ | 5 files changed, 195 insertions(+), 1 deletion(-) | create mode 100644 tools/testing/selftests/futex/functional/futex_waitv.c | create mode 100644 tools/testing/selftests/futex/include/futex2test.h | |--- 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 107 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |--- 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/futex_waitv.c can't find file to patch at input line 280 Perhaps you used the wrong -p or --strip option? The text leading up to this was: -------------------------- |--- a/tools/testing/selftests/futex/functional/run.sh |+++ b/tools/testing/selftests/futex/functional/run.sh -------------------------- No file to patch. Skipping patch. 1 out of 1 hunk ignored patching file tools/testing/selftests/futex/include/futex2test.h